forked from gabrielfalcao/guake
-
Notifications
You must be signed in to change notification settings - Fork 1
/
guake.py
1423 lines (1203 loc) · 53.1 KB
/
guake.py
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8; -*-
"""
Copyright (C) 2007,2008,2009,2010 Lincoln de Sousa <[email protected]>
Copyright (C) 2007 Gabriel Falcão <[email protected]>
This program 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 2 of the
License, or (at your option) any later version.
This program 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 this program; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
"""
import pygtk
import gobject
pygtk.require('2.0')
gobject.threads_init()
import gtk
import vte
from pango import FontDescription
import pynotify
import gconf
import dbus
import os
import sys
import signal
from thread import start_new_thread
from time import sleep
import posix
import globalhotkeys
from simplegladeapp import SimpleGladeApp, bindtextdomain
from prefs import PrefsDialog, LKEY, GKEY
from dbusiface import DbusManager, DBUS_NAME, DBUS_PATH
from common import test_gconf, pixmapfile, gladefile, ShowableError, _
from guake_globals import NAME, VERSION, LOCALE_DIR, KEY, GCONF_PATH, \
TERMINAL_MATCH_EXPRS, TERMINAL_MATCH_TAGS, \
ALIGN_LEFT, ALIGN_RIGHT, ALIGN_CENTER
pynotify.init('Guake!')
GNOME_FONT_PATH = '/desktop/gnome/interface/monospace_font_name'
# Loading translation
bindtextdomain(NAME, LOCALE_DIR)
class PromptQuitDialog(gtk.MessageDialog):
"""Prompts the user whether to quit or not if there are procs running.
"""
def __init__(self, parent, running_procs):
super(PromptQuitDialog, self).__init__(
parent,
gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
gtk.MESSAGE_QUESTION, gtk.BUTTONS_YES_NO)
self.set_keep_above(True)
self.set_markup(_('Do you really want to quit Guake!?'))
if running_procs == 1:
self.format_secondary_markup(
_("<b>There is one process still running.</b>")
)
elif running_procs > 1:
self.format_secondary_markup(
_("<b>There are %d processes running.</b>" % running_procs)
)
class AboutDialog(SimpleGladeApp):
"""The About Guake dialog class
"""
def __init__(self):
super(AboutDialog, self).__init__(gladefile('about.glade'),
root='aboutdialog')
dialog = self.get_widget('aboutdialog')
# images
ipath = pixmapfile('guake-notification.png')
img = gtk.gdk.pixbuf_new_from_file(ipath)
dialog.set_property('logo', img)
dialog.set_name('Guake!')
dialog.set_version(VERSION)
class GConfHandler(object):
"""Handles gconf changes, if any gconf variable is changed, a
different method is called to handle this change.
"""
def __init__(self, guake):
"""Constructor of GConfHandler, just add the guake dir to the
gconf client and bind the keys to its handler methods.
"""
self.guake = guake
client = gconf.client_get_default()
client.add_dir(GCONF_PATH, gconf.CLIENT_PRELOAD_RECURSIVE)
notify_add = client.notify_add
# these keys does not need to be watched.
#notify_add(KEY('/general/default_shell'), self.shell_changed)
#notify_add(KEY('/general/use_login_shell'), self.login_shell_toggled)
#notify_add(KEY('/general/use_popup'), self.popup_toggled)
#notify_add(KEY('/general/window_losefocus'), self.losefocus_toggled)
notify_add(KEY('/general/show_resizer'), self.show_resizer_toggled)
notify_add(KEY('/general/use_trayicon'), self.trayicon_toggled)
notify_add(KEY('/general/window_ontop'), self.ontop_toggled)
notify_add(KEY('/general/window_tabbar'), self.tabbar_toggled)
notify_add(KEY('/general/window_height'), self.size_changed)
notify_add(KEY('/general/use_scrollbar'), self.scrollbar_toggled)
notify_add(KEY('/general/history_size'), self.history_size_changed)
notify_add(KEY('/general/scroll_output'), self.keystroke_output)
notify_add(KEY('/general/scroll_keystroke'), self.keystroke_toggled)
notify_add(KEY('/general/use_default_font'), self.default_font_toggled)
notify_add(KEY('/style/font/style'), self.fstyle_changed)
notify_add(KEY('/style/font/color'), self.fcolor_changed)
notify_add(KEY('/style/font/palette'), self.fpalette_changed)
notify_add(KEY('/style/background/color'), self.bgcolor_changed)
notify_add(KEY('/style/background/image'), self.bgimage_changed)
notify_add(KEY('/style/background/transparency'),
self.bgtransparency_changed)
notify_add(KEY('/general/compat_backspace'), self.backspace_changed)
notify_add(KEY('/general/compat_delete'), self.delete_changed)
def show_resizer_toggled(self, client, connection_id, entry, data):
"""If the gconf var show_resizer be changed, this method will
be called and will show/hide the resizer.
"""
if entry.value.get_bool():
self.guake.resizer.show()
else:
self.guake.resizer.hide()
def trayicon_toggled(self, client, connection_id, entry, data):
"""If the gconf var use_trayicon be changed, this method will
be called and will show/hide the trayicon.
"""
self.guake.tray_icon.set_visible(entry.value.get_bool())
def ontop_toggled(self, client, connection_id, entry, data):
"""If the gconf var window_ontop be changed, this method will
be called and will set the keep_above attribute in guake's
main window.
"""
self.guake.window.set_keep_above(entry.value.get_bool())
def tabbar_toggled(self, client, connection_id, entry, data):
"""If the gconf var use_tabbar be changed, this method will be
called and will show/hide the tabbar.
"""
if entry.value.get_bool():
self.guake.toolbar.show()
else:
self.guake.toolbar.hide()
def alignment_changed(self, client, connection_id, entry, data):
"""If the gconf var window_halignment be changed, this method will
be called and will call the move function in guake.
"""
window_rect = self.guake.get_final_window_rect()
self.guake.window.move(window_rect.x, window_rect.y)
def size_changed(self, client, connection_id, entry, data):
"""If the gconf var window_height or window_width are changed,
this method will be called and will call the resize function
in guake.
"""
window_rect = self.guake.get_final_window_rect()
self.guake.window.move(window_rect.x, window_rect.y)
self.guake.window.resize(window_rect.width, window_rect.height)
def scrollbar_toggled(self, client, connection_id, entry, data):
"""If the gconf var use_scrollbar be changed, this method will
be called and will show/hide scrollbars of all terminals open.
"""
for i in self.guake.term_list:
# There is an hbox in each tab of the main notebook and it
# contains a Terminal and a Scrollbar. Since only have the
# Terminal here, we're going to use this to get the
# scrollbar and hide/show it.
hbox = i.get_parent()
terminal, scrollbar = hbox.get_children()
if entry.value.get_bool():
scrollbar.show()
else:
scrollbar.hide()
def history_size_changed(self, client, connection_id, entry, data):
"""If the gconf var history_size be changed, this method will
be called and will set the scrollback_lines property of all
terminals open.
"""
for i in self.guake.term_list:
i.set_scrollback_lines(entry.value.get_int())
def keystroke_output(self, client, connection_id, entry, data):
"""If the gconf var scroll_output be changed, this method will
be called and will set the scroll_on_output in all terminals
open.
"""
for i in self.guake.term_list:
i.set_scroll_on_output(entry.value.get_bool())
def keystroke_toggled(self, client, connection_id, entry, data):
"""If the gconf var scroll_keystroke be changed, this method
will be called and will set the scroll_on_keystroke in all
terminals open.
"""
for i in self.guake.term_list:
i.set_scroll_on_keystroke(entry.value.get_bool())
def default_font_toggled(self, client, connection_id, entry, data):
"""If the gconf var use_default_font be changed, this method
will be called and will change the font style to the gnome
default or to the choosen font in style/font/style in all
terminals open.
"""
if entry.value.get_bool():
key = GNOME_FONT_PATH
else:
key = KEY('/style/font/style')
font = FontDescription(client.get_string(key))
for i in self.guake.term_list:
i.set_font(font)
def fstyle_changed(self, client, connection_id, entry, data):
"""If the gconf var style/font/style be changed, this method
will be called and will change the font style in all terminals
open.
"""
font = FontDescription(entry.value.get_string())
for i in self.guake.term_list:
i.set_font(font)
def fcolor_changed(self, client, connection_id, entry, data):
"""If the gconf var style/font/color be changed, this method
will be called and will change the font color in all terminals
open.
"""
fgcolor = gtk.gdk.color_parse(entry.value.get_string())
for i in self.guake.term_list:
i.set_color_dim(fgcolor)
i.set_color_foreground(fgcolor)
i.set_color_bold(fgcolor)
def fpalette_changed(self, client, connection_id, entry, data):
"""If the gconf var style/font/palette be changed, this method
will be called and will change the color scheme in all terminals
open.
"""
fgcolor = gtk.gdk.color_parse(
client.get_string(KEY('/style/font/color')))
bgcolor = gtk.gdk.color_parse(
client.get_string(KEY('/style/background/color')))
palette = [gtk.gdk.color_parse(color) for color in
entry.value.get_string().split(':')]
for i in self.guake.term_list:
i.set_colors(fgcolor, bgcolor, palette)
def bgcolor_changed(self, client, connection_id, entry, data):
"""If the gconf var style/background/color be changed, this
method will be called and will change the background color in
all terminals open.
"""
bgcolor = gtk.gdk.color_parse(entry.value.get_string())
for i in self.guake.term_list:
i.set_color_background(bgcolor)
i.set_background_tint_color(bgcolor)
def bgimage_changed(self, client, connection_id, entry, data):
"""If the gconf var style/background/image be changed, this
method will be called and will change the background image and
will set the transparent flag to false if an image is set in
all terminals open.
"""
image = entry.value.get_string()
for i in self.guake.term_list:
if image and os.path.exists(image):
i.set_background_image_file(image)
i.set_background_transparent(False)
else:
"""We need to clear the image if it's not set but there is
a bug in vte python bidnings which doesn't allow None to be
passed to set_background_image (C GTK function expects NULL).
The user will need to restart Guake after clearing the image.
i.set_background_image(None)
"""
if self.guake.has_argb:
i.set_background_transparent(False)
else:
i.set_background_transparent(True)
def bgtransparency_changed(self, client, connection_id, entry, data):
"""If the gconf var style/background/transparency be changed, this
method will be called and will set the saturation and transparency
properties in all terminals open.
"""
transparency = entry.value.get_int()
for i in self.guake.term_list:
i.set_background_saturation(transparency / 100.0)
if self.guake.has_argb:
i.set_opacity(int((100 - transparency) / 100.0 * 65535))
def backspace_changed(self, client, connection_id, entry, data):
"""If the gconf var compat_backspace be changed, this method
will be called and will change the binding configuration in
all terminals open.
"""
for i in self.guake.term_list:
i.set_backspace_binding(entry.value.get_string())
def delete_changed(self, client, connection_id, entry, data):
"""If the gconf var compat_delete be changed, this method
will be called and will change the binding configuration in
all terminals open.
"""
for i in self.guake.term_list:
i.set_delete_binding(entry.value.get_string())
class GConfKeyHandler(object):
"""Handles changes in keyboard shortcuts.
"""
def __init__(self, guake):
"""Constructor of Keyboard, only receives the guake instance
to be used in internal methods.
"""
self.guake = guake
self.accel_group = None # see reload_accelerators
self.client = gconf.client_get_default()
notify_add = self.client.notify_add
notify_add(GKEY('show_hide'), self.reload_globals)
keys = ['toggle_fullscreen', 'new_tab', 'close_tab', 'rename_tab',
'previous_tab', 'next_tab', 'clipboard_copy', 'clipboard_paste',
'quit',
]
for i in range(10):
keys.append('tab_' + str(i))
for key in keys:
notify_add(LKEY(key), self.reload_accelerators)
self.client.notify(LKEY(key))
def reload_globals(self, client, connection_id, entry, data):
"""Unbind all global hotkeys and rebind the show_hide
method. If more global hotkeys should be added, just connect
the gconf key to the watch system and add.
"""
self.guake.hotkeys.unbind_all()
key = entry.get_value().get_string()
if not self.guake.hotkeys.bind(key, self.guake.show_hide):
raise ShowableError(_('key binding error'),
_('Unable to bind global <b>%s</b> key') % key,
-1)
def reload_accelerators(self, *args):
"""Reassign an accel_group to guake main window and guake
context menu and calls the load_accelerators method.
"""
if self.accel_group:
self.guake.window.remove_accel_group(self.accel_group)
self.accel_group = gtk.AccelGroup()
self.guake.window.add_accel_group(self.accel_group)
self.guake.context_menu.set_accel_group(self.accel_group)
self.load_accelerators()
def load_accelerators(self):
"""Reads all gconf paths under /apps/guake/keybindings/local
and adds to the main accel_group.
"""
gets = lambda x:self.client.get_string(LKEY(x))
key, mask = gtk.accelerator_parse(gets('quit'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.accel_quit)
key, mask = gtk.accelerator_parse(gets('new_tab'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.accel_add)
key, mask = gtk.accelerator_parse(gets('close_tab'))
if key > 0:
self.accel_group.connect_group(
key, mask, gtk.ACCEL_VISIBLE,
self.guake.close_tab)
key, mask = gtk.accelerator_parse(gets('previous_tab'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.accel_prev)
key, mask = gtk.accelerator_parse(gets('next_tab'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.accel_next)
key, mask = gtk.accelerator_parse(gets('tab_0'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.goto_tab(0))
key, mask = gtk.accelerator_parse(gets('tab_1'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.goto_tab(1))
key, mask = gtk.accelerator_parse(gets('tab_9'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.goto_tab(9))
key, mask = gtk.accelerator_parse(gets('tab_8'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.goto_tab(8))
key, mask = gtk.accelerator_parse(gets('tab_7'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.goto_tab(7))
key, mask = gtk.accelerator_parse(gets('tab_6'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.goto_tab(6))
key, mask = gtk.accelerator_parse(gets('tab_5'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.goto_tab(5))
key, mask = gtk.accelerator_parse(gets('tab_4'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.goto_tab(4))
key, mask = gtk.accelerator_parse(gets('tab_3'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.goto_tab(3))
key, mask = gtk.accelerator_parse(gets('tab_2'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.goto_tab(2))
key, mask = gtk.accelerator_parse(gets('rename_tab'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.accel_rename)
key, mask = gtk.accelerator_parse(gets('clipboard_copy'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.accel_copy_clipboard)
key, mask = gtk.accelerator_parse(gets('clipboard_paste'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.accel_paste_clipboard)
key, mask = gtk.accelerator_parse(gets('toggle_fullscreen'))
if key > 0:
self.accel_group.connect_group(key, mask, gtk.ACCEL_VISIBLE,
self.guake.accel_toggle_fullscreen)
class GuakeTerminal(vte.Terminal):
"""Just a vte.Terminal with some properties already set.
"""
def __init__(self):
super(GuakeTerminal, self).__init__()
self.configure_terminal()
self.add_matches()
self.connect('button-press-event', self.button_press)
self.matched_value = ''
def configure_terminal(self):
"""Sets all customized properties on the terminal
"""
client = gconf.client_get_default()
word_chars = client.get_string(KEY('/general/word_chars'))
self.set_word_chars(word_chars)
self.set_audible_bell(False)
self.set_visible_bell(False)
self.set_sensitive(True)
self.set_flags(gtk.CAN_DEFAULT)
self.set_flags(gtk.CAN_FOCUS)
def add_matches(self):
"""Adds all regular expressions declared in
guake_globals.TERMINAL_MATCH_EXPRS to the terminal to make vte
highlight text that matches them.
"""
for expr in TERMINAL_MATCH_EXPRS:
tag = self.match_add(expr)
self.match_set_cursor_type(tag, gtk.gdk.HAND2)
def button_press(self, terminal, event):
"""Handles the button press event in the terminal widget. If
any match string is caught, another aplication is open to
handle the matched resource uri.
"""
self.matched_value = ''
matched_string = self.match_check(
int(event.x / self.get_char_width()),
int(event.y / self.get_char_height()))
if event.button == 1 \
and event.get_state() & gtk.gdk.CONTROL_MASK \
and matched_string:
value, tag = matched_string
if TERMINAL_MATCH_TAGS[tag] == 'schema':
# value here should not be changed, it is right and
# ready to be used.
pass
elif TERMINAL_MATCH_TAGS[tag] == 'http':
value = 'http://%s' % value
elif TERMINAL_MATCH_TAGS[tag] == 'email':
value = 'mailto:%s' % value
gtk.show_uri(self.window.get_screen(), value,
gtk.gdk.x11_get_server_time(self.window))
elif event.button == 3 and matched_string:
self.matched_value = matched_string[0]
class GuakeTerminalBox(gtk.HBox):
"""A box to group the terminal and a scrollbar.
"""
def __init__(self):
super(GuakeTerminalBox, self).__init__()
self.terminal = GuakeTerminal()
self.add_terminal()
self.add_scroll_bar()
def add_terminal(self):
"""Packs the terminal widget.
"""
self.pack_start(self.terminal, True, True)
self.terminal.show()
def add_scroll_bar(self):
"""Packs the scrollbar.
"""
adj = self.terminal.get_adjustment()
scroll = gtk.VScrollbar(adj)
scroll.set_no_show_all(True)
self.pack_start(scroll, False, False)
class Guake(SimpleGladeApp):
"""Guake main class. Handles specialy the main window.
"""
def __init__(self):
super(Guake, self).__init__(gladefile('guake.glade'))
self.client = gconf.client_get_default()
# setting global hotkey and showing a pretty notification =)
globalhotkeys.init()
# trayicon!
img = pixmapfile('guake-tray.png')
self.tray_icon = gtk.status_icon_new_from_file(img)
self.tray_icon.set_tooltip(_('Guake Terminal'))
self.tray_icon.connect('popup-menu', self.show_menu)
self.tray_icon.connect('activate', self.show_hide)
# adding images from a different path.
ipath = pixmapfile('guake.png')
self.get_widget('image1').set_from_file(ipath)
ipath = pixmapfile('add_tab.png')
self.get_widget('image2').set_from_file(ipath)
# important widgets
self.window = self.get_widget('window-root')
self.notebook = self.get_widget('notebook-teminals')
self.tabs = self.get_widget('hbox-tabs')
self.toolbar = self.get_widget('toolbar')
self.mainframe = self.get_widget('mainframe')
self.resizer = self.get_widget('resizer')
# check and set ARGB for real transparency
screen = self.window.get_screen()
colormap = screen.get_rgba_colormap()
if colormap != None and screen.is_composited():
self.window.set_colormap(colormap)
self.has_argb = True
else:
self.has_argb = False
# List of vte.Terminal widgets, it will be useful when needed
# to get a widget by the current page in self.notebook
self.term_list = []
# This is the pid of shells forked by each terminal. Will be
# used to kill the process when closing a tab
self.pid_list = []
# It's intended to know which tab was selected to
# close/rename. This attribute will be set in
# self.show_tab_menu
self.selected_tab = None
# holds the number of created tabs. This counter will not be
# reset to avoid problems of repeated tab names.
self.tab_counter = 0
# holds fullscreen status
self.fullscreen = False
# holds the timestamp of the losefocus event
self.losefocus_time = 0
# double click stuff
def double_click(hbox, event):
"""Handles double clicks on tabs area and when receive
one, calls add_tab.
"""
if event.button == 1 and event.type == gtk.gdk._2BUTTON_PRESS:
self.add_tab()
evtbox = self.get_widget('event-tabs')
evtbox.connect('button-press-event', double_click)
# Flag to prevent guake hide when window_losefocus is true and
# user tries to use the context menu.
self.showing_context_menu = False
def hide_context_menu(menu):
"""Turn context menu flag off to make sure it is not being
shown.
"""
self.showing_context_menu = False
self.get_widget('context-menu').connect('hide', hide_context_menu)
self.get_widget('tab-menu').connect('hide', hide_context_menu)
self.window.connect('focus-out-event', self.on_window_losefocus)
# Handling the delete-event of the main window to avoid
# problems when closing it.
def destroy(*args):
self.hide()
return True
self.window.connect('delete-event', destroy)
# Flag to completly disable losefocus hiding
self.disable_losefocus_hiding = False
# this line is important to resize the main window and make it
# smaller.
self.window.set_geometry_hints(min_width=1, min_height=1)
# resizer stuff
self.resizer.connect('motion-notify-event', self.on_resizer_drag)
# adding the first tab on guake
self.add_tab()
# loading and setting up configuration stuff
GConfHandler(self)
GConfKeyHandler(self)
self.hotkeys = globalhotkeys.GlobalHotkey()
self.load_config()
key = self.client.get_string(GKEY('show_hide'))
keyval, mask = gtk.accelerator_parse(key)
label = gtk.accelerator_get_label(keyval, mask)
filename = pixmapfile('guake-notification.png')
if not self.hotkeys.bind(key, self.show_hide):
notification = pynotify.Notification(
_('Guake!'),
_('A problem happened when binding <b>%s</b> key.\n'
'Please use Guake Preferences dialog to choose another '
'key (The trayicon was enabled)') % label, filename)
self.client.set_bool(KEY('/general/use_trayicon'), True)
notification.show()
elif self.client.get_bool(KEY('/general/use_popup')):
# Pop-up that shows that guake is working properly (if not
# unset in the preferences windows)
notification = pynotify.Notification(
_('Guake!'),
_('Guake is now running,\n'
'press <b>%s</b> to use it.') % label, filename)
notification.show()
def execute_command(self, command, tab=None):
"""Execute the `command' in the `tab'. If tab is None, the
command will be executed in the currently selected
tab. Command should end with '\n', otherwise it will be
appended to the string.
"""
if not self.term_list:
self.add_tab()
if command[-1] != '\n':
command += '\n'
index = self.notebook.get_current_page()
self.term_list[tab or index].feed_child(command)
def on_resizer_drag(self, widget, event):
"""Method that handles the resize drag. It does not actuall
moves the main window. It just set the new window size in
gconf.
"""
(x, y), mod = event.device.get_state(widget.window)
if not 'GDK_BUTTON1_MASK' in mod.value_names:
return
max_height = self.window.get_screen().get_height()
percent = y / (max_height / 100)
if percent < 1:
percent = 1
self.client.set_int(KEY('/general/window_height'), int(percent))
def on_window_losefocus(self, window, event):
"""Hides terminal main window when it loses the focus and if
the window_losefocus gconf variable is True.
"""
if self.disable_losefocus_hiding or self.showing_context_menu:
return
value = self.client.get_bool(KEY('/general/window_losefocus'))
visible = window.get_property('visible')
if value and visible:
self.losefocus_time = \
gtk.gdk.x11_get_server_time(self.window.window)
self.hide()
def show_menu(self, status_icon, button, activate_time):
"""Show the tray icon menu.
"""
menu = self.get_widget('tray-menu')
menu.popup(None, None, gtk.status_icon_position_menu,
button, activate_time, status_icon)
def show_context_menu(self, terminal, event):
"""Show the context menu, only with a right click on a vte
Terminal.
"""
if event.button != 3:
return False
self.showing_context_menu = True
guake_clipboard = gtk.clipboard_get()
if not guake_clipboard.wait_is_text_available():
self.get_widget('context_paste').set_sensitive(False)
else:
self.get_widget('context_paste').set_sensitive(True)
context_menu = self.get_widget('context-menu')
context_menu.popup(None, None, None, 3, gtk.get_current_event_time())
return True
def show_rename_dialog(self, target, event):
"""On double-click over a tab, show the rename dialog.
"""
if event.button == 1:
if event.type == gtk.gdk._2BUTTON_PRESS:
self.accel_rename()
self.set_terminal_focus()
self.selected_tab.pressed()
return
def show_tab_menu(self, target, event):
"""Shows the tab menu with a right click. After that, the
focus come back to the terminal.
"""
if event.button == 3:
self.showing_context_menu = True
self.selected_tab = target
menu = self.get_widget('tab-menu')
menu.popup(None, None, None, 3, event.get_time())
self.set_terminal_focus()
def show_about(self, *args):
"""Hides the main window and creates an instance of the About
Dialog.
"""
self.hide()
AboutDialog()
def show_prefs(self, *args):
"""Hides the main window and creates an instance of the
Preferences window.
"""
self.hide()
PrefsDialog().show()
def show_hide(self, *args):
"""Toggles the main window visibility
"""
event_time = self.hotkeys.get_current_event_time()
if self.losefocus_time and \
self.losefocus_time >= event_time and \
(self.losefocus_time - event_time) < 10:
self.losefocus_time = 0
return
if not self.window.get_property('visible'):
self.show()
self.set_terminal_focus()
else:
self.hide()
def show(self):
"""Shows the main window and grabs the focus on it.
"""
# setting window in all desktops
self.get_widget('window-root').stick()
# add tab must be called before window.show to avoid a
# blank screen before adding the tab.
if not self.term_list:
self.add_tab()
window_rect = self.get_final_window_rect()
self.window.resize(window_rect.width, window_rect.height)
self.window.show_all()
self.window.move(window_rect.x, window_rect.y)
try:
# does it work in other gtk backends
time = gtk.gdk.x11_get_server_time(self.window.window)
except AttributeError:
time = 0
self.window.window.show()
self.window.window.focus(time)
# This is here because vte color configuration works only
# after the widget is shown.
self.client.notify(KEY('/style/font/color'))
self.client.notify(KEY('/style/background/color'))
def hide(self):
"""Hides the main window of the terminal and sets the visible
flag to False.
"""
self.window.hide() # Don't use hide_all here!
def get_final_window_rect(self):
"""Gets the final size of the main window of guake. The height
is the window_height property, width is window_width and the
horizontal alignment is given by window_alignment.
"""
screen = self.window.get_screen()
height = self.client.get_int(KEY('/general/window_height'))
#width = 100
width = 96
halignment = self.client.get_int(KEY('/general/window_halignment'))
# get the rectangle just from the first/default monitor in the
# future we might create a field to select which monitor you
# wanna use
window_rect = screen.get_monitor_geometry(0)
total_width = window_rect.width
window_rect.height = window_rect.height * height / 100
window_rect.width = window_rect.width * width / 100
if width < total_width:
if halignment == ALIGN_CENTER:
window_rect.x = (total_width - window_rect.width) / 2
elif halignment == ALIGN_LEFT:
window_rect.x = 0
elif halignment == ALIGN_RIGHT:
window_rect.x = total_width - window_rect.width
window_rect.y = 0
return window_rect
def get_running_fg_processes(self):
"""Get the number processes for each terminal/tab. The code is taken
from gnome-terminal.
"""
total_procs = 0
term_idx = 0
for terminal in self.term_list:
fdpty = terminal.get_pty()
term_pid = self.pid_list[term_idx]
fgpid = posix.tcgetpgrp(fdpty)
if not (fgpid == -1 or fgpid == term_pid):
total_procs += 1
term_idx += 1
return total_procs
# -- configuration --
def load_config(self):
""""Just a proxy for all the configuration stuff.
"""
self.client.notify(KEY('/general/use_trayicon'))
self.client.notify(KEY('/general/prompt_on_quit'))
self.client.notify(KEY('/general/window_tabbar'))
self.client.notify(KEY('/general/window_ontop'))
self.client.notify(KEY('/general/window_height'))
self.client.notify(KEY('/general/use_scrollbar'))
self.client.notify(KEY('/general/history_size'))
self.client.notify(KEY('/general/show_resizer'))
self.client.notify(KEY('/style/font/style'))
self.client.notify(KEY('/style/font/color'))
self.client.notify(KEY('/style/font/palette'))
self.client.notify(KEY('/style/background/color'))
self.client.notify(KEY('/style/background/image'))
self.client.notify(KEY('/style/background/transparency'))
self.client.notify(KEY('/general/use_default_font'))
self.client.notify(KEY('/general/compat_backspace'))
self.client.notify(KEY('/general/compat_delete'))
def accel_quit(self, *args):
"""Callback to prompt the user whether to quit Guake or not.
"""
if self.client.get_bool(KEY('/general/prompt_on_quit')):
procs = self.get_running_fg_processes()
if procs >= 1:
dialog = PromptQuitDialog(self.window, procs)
response = dialog.run() == gtk.RESPONSE_YES
dialog.destroy()
if response:
gtk.main_quit()
else:
gtk.main_quit()
else:
gtk.main_quit()
def accel_add(self, *args):
"""Callback to add a new tab. Called by the accel key.
"""
self.add_tab()
return True
def accel_prev(self, *args):
"""Callback to go to the previous tab. Called by the accel key.
"""
if self.notebook.get_current_page() == 0:
self.notebook.set_current_page(self.notebook.get_n_pages()-1)
else:
self.notebook.prev_page()
return True
def accel_next(self, *args):
"""Callback to go to the next tab. Called by the accel key.
"""
if self.notebook.get_current_page()+1 == self.notebook.get_n_pages():
self.notebook.set_current_page(0)
else:
self.notebook.next_page()
return True
def goto_tab(self, tab_index):
"""Callback to go to the specified tab. Called by the accel key.
This func is a wrapped closure, so, just bind goto_tab(2) as callback
directly.
"""
def _goto(*args):
if tab_index < len(self.tabs.get_children()):
self.notebook.set_current_page(tab_index)
return True
return _goto
def accel_rename(self, *args):
"""Callback to show the rename tab dialog. Called by the accel
key.
"""
pagepos = self.notebook.get_current_page()
self.selected_tab = self.tabs.get_children()[pagepos]
self.on_rename_activate()
return True
def accel_copy_clipboard(self, *args):
"""Callback to copy text in the shown terminal. Called by the
accel key.
"""
current_term = self.term_list[self.notebook.get_current_page()]
if current_term.get_has_selection():
current_term.copy_clipboard()
elif current_term.matched_value:
guake_clipboard = gtk.clipboard_get()