31 lines
792 B
JavaScript
31 lines
792 B
JavaScript
const { Box, Label } = ags.Widget;
|
|
const { toggleWindow, openWindow } = ags.App;
|
|
|
|
import { EventBox } from '../misc/cursorbox.js';
|
|
import { closeAll } from '../misc/close-all.js';
|
|
|
|
export const QsToggle = EventBox({
|
|
className: 'toggle-off',
|
|
onPrimaryClickRelease: () => toggleWindow('quick-settings'),
|
|
connections: [
|
|
[ags.App, (box, windowName, visible) => {
|
|
if (windowName == 'quick-settings') {
|
|
if (visible) {
|
|
QsToggle.toggleClassName('toggle-on', true);
|
|
openWindow('closer');
|
|
}
|
|
else {
|
|
QsToggle.toggleClassName('toggle-on', false);
|
|
closeAll();
|
|
}
|
|
}
|
|
}],
|
|
],
|
|
child: Box({
|
|
className: 'quick-settings-toggle',
|
|
vertical: false,
|
|
child: Label({
|
|
label: " ",
|
|
}),
|
|
}),
|
|
});
|