Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| // -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- | |
| const Lang = imports.lang; | |
| const Gio = imports.gi.Gio; | |
| const St = imports.gi.St; | |
| const PanelMenu = imports.ui.panelMenu; | |
| const PopupMenu = imports.ui.popupMenu; | |
| const Slider = imports.ui.slider; | |
| const BUS_NAME = 'org.gnome.SettingsDaemon.Power'; | |
| const OBJECT_PATH = '/org/gnome/SettingsDaemon/Power'; | |
| const BrightnessInterface = '<node> \ | |
| <interface name="org.gnome.SettingsDaemon.Power.Screen"> \ | |
| <property name="Brightness" type="i" access="readwrite"/> \ | |
| </interface> \ | |
| </node>'; | |
| const BrightnessProxy = Gio.DBusProxy.makeProxyWrapper(BrightnessInterface); | |
| var Indicator = new Lang.Class({ | |
| Name: 'BrightnessIndicator', | |
| Extends: PanelMenu.SystemIndicator, | |
| _init() { | |
| this.parent('display-brightness-symbolic'); | |
| this._proxy = new BrightnessProxy(Gio.DBus.session, BUS_NAME, OBJECT_PATH, | |
| (proxy, error) => { | |
| if (error) { | |
| log(error.message); | |
| return; | |
| } | |
| this._proxy.connect('g-properties-changed', this._sync.bind(this)); | |
| this._sync(); | |
| }); | |
| this._item = new PopupMenu.PopupBaseMenuItem({ activate: false }); | |
| this.menu.addMenuItem(this._item); | |
| this._slider = new Slider.Slider(0); | |
| this._slider.connect('value-changed', this._sliderChanged.bind(this)); | |
| this._slider.actor.accessible_name = _("Brightness"); | |
| let icon = new St.Icon({ icon_name: 'display-brightness-symbolic', | |
| style_class: 'popup-menu-icon' }); | |
| this._item.actor.add(icon); | |
| this._item.actor.add(this._slider.actor, { expand: true }); | |
| this._item.actor.connect('button-press-event', (actor, event) => { | |
| return this._slider.startDragging(event); | |
| }); | |
| this._item.actor.connect('key-press-event', (actor, event) => { | |
| return this._slider.onKeyPressEvent(actor, event); | |
| }); | |
| }, | |
| _sliderChanged(slider, value) { | |
| let percent = value * 100; | |
| this._proxy.Brightness = percent; | |
| }, | |
| _sync() { | |
| let visible = this._proxy.Brightness >= 0; | |
| this._item.actor.visible = visible; | |
| if (visible) | |
| this._slider.setValue(this._proxy.Brightness / 100.0); | |
| }, | |
| }); |