48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
import App from 'resource:///com/github/Aylur/ags/app.js';
|
|
|
|
import { Box, Label } from 'resource:///com/github/Aylur/ags/widget.js';
|
|
|
|
import Audio from './audio.js';
|
|
import Bluetooth from './bluetooth.js';
|
|
import KeyboardLayout from './keyboard-layout.js';
|
|
import Network from './network.js';
|
|
|
|
import EventBox from '../../misc/cursorbox.js';
|
|
import Separator from '../../misc/separator.js';
|
|
|
|
const SPACING = 4;
|
|
|
|
|
|
export default () => EventBox({
|
|
className: 'toggle-off',
|
|
|
|
onHoverLost: () => { /**/ },
|
|
|
|
onPrimaryClickRelease: () => App.toggleWindow('quick-settings'),
|
|
|
|
connections: [[App, (self, windowName, visible) => {
|
|
if (windowName === 'quick-settings') {
|
|
self.toggleClassName('toggle-on', visible);
|
|
}
|
|
}]],
|
|
|
|
child: Box({
|
|
className: 'quick-settings-toggle',
|
|
vertical: false,
|
|
children: [
|
|
Separator(SPACING),
|
|
|
|
KeyboardLayout(),
|
|
|
|
Audio(),
|
|
|
|
Bluetooth(),
|
|
|
|
Network(),
|
|
|
|
Label(' '),
|
|
|
|
Separator(SPACING),
|
|
],
|
|
}),
|
|
});
|