-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprefs.js
executable file
·126 lines (94 loc) · 3.95 KB
/
prefs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
* IP Finder gnome extension
* https://github.com/LinxGem33/IP-Finder
*
* Copyright (C) 2017 LinxGem33 (Andy C)
*
* This file is part of IP Finder gnome extension.
* IP Finder gnome extension is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* IP Finder gnome extension is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with IP Finder gnome extension. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
const Gio = imports.gi.Gio;
const Gtk = imports.gi.Gtk;
const GObject = imports.gi.GObject;
const Lang = imports.lang;
const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();
const Convenience = Me.imports.convenience;
const Gettext = imports.gettext.domain('IP-Finder');
const _ = Gettext.gettext;
const SETTINGS_COMPACT_MODE = 'compact-mode';
const SETTINGS_REFRESH_RATE = 'refresh-rate';
const SETTINGS_POSITION = 'position-in-panel';
const IPMenuSettingsWidget = new GObject.Class({
Name: 'IPMenu.Prefs.IPMenuSettingsWidget',
GTypeName: 'IPMenuSettingsWidget',
Extends: Gtk.Grid,
_init: function (params) {
this.parent(params);
this.margin = 24;
this.row_spacing = 6;
this.orientation = Gtk.Orientation.VERTICAL;
this._settings = Convenience.getSettings(Me.metadata['settings-schema']);
let presentLabel = '<b>' + _("Display Options") + '</b>';
this.add(new Gtk.Label({
label: presentLabel, use_markup: true,
halign: Gtk.Align.START
}));
let vbox = new Gtk.VBox();
this.add(vbox);
let checkContainer = new Gtk.HBox({spacing: 5});
let checkLabel = new Gtk.Label({label: _('Only Show Flag on Panel')});
let checkButton = new Gtk.CheckButton();
checkContainer.pack_start(checkLabel, 0,0,0);
checkContainer.pack_end(checkButton, 0,0,0);
this._settings.bind(SETTINGS_COMPACT_MODE, checkButton, 'active', Gio.SettingsBindFlags.DEFAULT);
vbox.add(checkContainer);
let positionContainer = new Gtk.HBox({spacing: 5});
let positionLabel = new Gtk.Label({label: _('IP Finder Position on the Panel')});
let positionSelector = new Gtk.ComboBoxText();
positionContainer.pack_start(positionLabel, 0,0,0);
positionContainer.pack_end(positionSelector, 0,0,0);
[_("left"),_("center"),_("right")].forEach(function(item) {
positionSelector.append_text(item);
});
positionSelector.set_active(this._settings.get_enum(SETTINGS_POSITION));
let self = this;
positionSelector.connect('changed', function(pos) {
self._settings.set_enum(SETTINGS_POSITION, positionSelector.get_active());
});
vbox.add(positionContainer);
//
let frequencyContainer = new Gtk.HBox({spacing: 5});
let frequencyLabel = new Gtk.Label({label: _('How Often to check for IP changes (in secs)')});
let frequencySelector = new Gtk.SpinButton();
frequencyContainer.pack_start(frequencyLabel, 0,0,0);
frequencyContainer.pack_end(frequencySelector, 0,0,0);
frequencySelector.set_numeric(true);
frequencySelector.set_value(this._settings.get_value(SETTINGS_REFRESH_RATE));
frequencySelector.set_range(30, 30000);
frequencySelector.set_increments(10,100);
this._settings.bind(SETTINGS_REFRESH_RATE, frequencySelector, 'value', Gio.SettingsBindFlags.DEFAULT);
vbox.add(frequencyContainer);
},
});
function init() {
Convenience.initTranslations("IP-Finder");
}
function buildPrefsWidget() {
let widget = new IPMenuSettingsWidget();
widget.show_all();
return widget;
}