forked from awamper/everpad-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttons_bar.js
225 lines (181 loc) · 5.39 KB
/
buttons_bar.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
const St = imports.gi.St;
const Lang = imports.lang;
const Params = imports.misc.params;
const Tweener = imports.ui.tweener;
const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();
const Utils = Me.imports.utils;
const ButtonsBarButton = new Lang.Class({
Name: 'ButtonsBarButton',
_init: function(icon_name, text, params, action) {
params = Params.parse(params, {
style_class: 'everpad-button',
track_hover: true,
reactive: true,
toggle_mode: false,
icon_style: 'everpad-snippet-buttons-bar-icon'
});
this._button_box = new St.BoxLayout();
this._sensitive = true;
this._button = new St.Button({
track_hover: params.track_hover,
reactive: params.reactive,
style_class: params.style_class,
toggle_mode: params.toggle_mode
});
this._button.add_actor(this._button_box);
if(typeof(action) == 'function') {
this._button.connect('clicked', Lang.bind(this, function() {
if(this._sensitive) action();
}));
}
this._icon = false;
this._label = false;
if(!Utils.is_blank(icon_name)) {
this._icon = new St.Icon({
icon_name: icon_name,
style_class: params.icon_style
});
this._button_box.add(this._icon, {
x_fill: false,
x_align: St.Align.START
});
}
if(!Utils.is_blank(text)) {
this._label = new St.Label();
this._label.clutter_text.set_markup(text);
this._button_box.add(this._label, {
x_fill: false,
y_align: St.Align.MIDDLE
});
if(this._icon) {
this._label.visible = false;
this._button.connect(
'enter-event',
Lang.bind(this, this._on_enter_event)
);
this._button.connect(
'leave-event',
Lang.bind(this, this._on_leave_event)
);
}
}
if(!this._icon && !this._label) {
throw new Error('icon and label are both false');
}
},
_on_enter_event: function(object, event) {
this._label.opacity = 0;
this._label.show();
Tweener.addTween(this._label, {
time: 0.3,
opacity: 255,
transition: 'easeOutQuad'
});
},
_on_leave_event: function(object, event) {
Tweener.addTween(this._label, {
time: 0.3,
opacity: 0,
transition: 'easeOutQuad',
onComplete: Lang.bind(this, function() {
this._label.hide();
})
});
},
connect: function(signal, callback) {
this.actor.connect(signal, callback);
},
set_checked: function(checked) {
if(checked) {
this.actor.add_style_pseudo_class('active');
}
else {
this.actor.remove_style_pseudo_class('active');
}
this.actor.set_checked(checked);
},
get_checked: function() {
return this.actor.get_checked();
},
set_sensitive: function(sensitive) {
this._sensitive = sensitive;
},
get label_actor() {
return this._label;
},
get label() {
return this._label.clutter_text.get_text();
},
set label(text) {
this._label.clutter_text.set_markup(text);
},
get icon_actor() {
return this._icon;
},
get icon_name() {
return this._icon.icon_name;
},
set icon_name(name) {
this._icon.icon_name;
},
get has_icon() {
return this._icon !== false ? true : false;
},
get has_label() {
return this._label !== false ? true : false;
},
get actor() {
return this._button;
},
});
const ButtonsBarLabel = new Lang.Class({
Name: 'ButtonsBarLabel',
_init: function(text, style_class) {
this._label = new St.Label({
style_class: style_class
});
this._label.clutter_text.set_markup(text);
this.actor = new St.BoxLayout();
this.actor.add(this._label);
},
get label_actor() {
return this._label;
},
get label() {
return this._label.clutter_text.get_text();
},
set label(text) {
this._label.clutter_text.set_markup(text);
},
});
const ButtonsBar = new Lang.Class({
Name: 'ButtonsBar',
_init: function(params) {
this.params = Params.parse(params, {
style_class: 'everpad-snippet-buttons-box'
});
this.actor = new St.BoxLayout({
style_class: this.params.style_class
});
this._buttons = [];
},
new_button: function(icon_name, text, params, action) {
let button = new ButtonsBarButton(icon_name, text, params, action);
return button;
},
new_label: function(text, style_class) {
let label = new ButtonsBarLabel(text, style_class);
return label;
},
add_button: function(button) {
this._buttons.push(button);
this.actor.add(button.actor, {
x_fill: false,
x_align: St.Align.START
});
},
destroy: function() {
this.actor.destroy();
}
});