~lars-laprican/mintmenu/trunk

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
#!/usr/bin/env python

try:
	import sys
	import gtk
	import gtk.glade
	import pango
	import os
	import gnomeapplet
	import gettext
	import gnomevfs
	import traceback
	import time
	import gc
	import xdg.Config

	import pygtk
	pygtk.require( "2.0" )

#	from keybinder import tomboy_keybinder_bind as keybinder_bind
except Exception, e:
	print e
	sys.exit( 1 )

# Rename the process
try:
	import dl
	libc = dl.open( "/lib/libc.so.6" )
	libc.call( "prctl", 15, os.path.basename( __file__ )+"\0", 0, 0, 0 )
	libc.close()
except ImportError:
	pass


NAME = "mintMenu"
VERSION = "2.4"
PATH = os.path.abspath( os.path.dirname( sys.argv[0] ) )

sys.path.append( os.path.join( PATH , "plugins") )
sys.path.append( os.path.join( PATH , "plugins", "old") )

# FIXME: Get the windowmanager from somewhere, don't take GNOME for granted
xdg.Config.setWindowManager( "GNOME" )

from easybuttons import iconManager
from easygconf import EasyGConf
from execute import *

_ = gettext.gettext

class MainWindow( object ):
	"""This is the main class for the application"""

	def __init__( self, toggleButton ):

		self.path = os.path.abspath( os.path.dirname( sys.argv[0] ) )
		sys.path.append( os.path.join( self.path, "plugins") )

		gettext.textdomain( "mintMenu" )
		gettext.bindtextdomain( "mintMenu" , self.getLocalePath() )

		self.toggle = toggleButton
		# Load glade file and extract widgets
		gladefile 	= os.path.join( self.path, "mintMenu_frontend.glade" )
		wTree 		= gtk.glade.XML( gladefile, "mainWindow" )
		self.window 	= wTree.get_widget( "mainWindow" )
		self.paneholder = wTree.get_widget( "paneholder" )
		self.sidepane 	= wTree.get_widget( "sidepane" )
		self.pinbutton	= wTree.get_widget( "pin_button" )
		self.pinholder	= wTree.get_widget( "pinholder" )
		self.border	= wTree.get_widget( "border" )

		self.panesToColor = [ ]
		self.headingsToColor = [ ]
		
		self.window.connect( "map-event", self.onMap )
		self.window.connect( "show", self.onShow )
		self.window.connect( "unmap-event", self.onUnmap )
		self.window.connect( "button-press-event", self.onButtonPress )
		self.window.connect( "key-press-event", self.onKeyPress )
		self.window.connect( "grab-broken-event", self.onGrabBroken )

		self.window.stick()

		plugindir = os.path.join( os.path.expanduser( "~" ), ".linuxmint/mintMenu/plugins" )
		sys.path.append( plugindir )

		dic = {"on_window1_destroy" : gtk.main_quit,
		       "on_pin_button_toggled" : self.PinMenu}
		wTree.signal_autoconnect( dic )

		self.gconf = EasyGConf( "/apps/mintMenu/" )

		self.getSetGconfEntries()
		self.SetupMintMenuBorder()

		self.tooltips = gtk.Tooltips()
		if self.globalEnableTooltips and self.enableTooltips:
			self.tooltips.enable()
		else:
			self.tooltips.disable()

		self.PopulatePlugins();

		self.gconf.notifyAdd( "plugins_list", self.RegenPlugins )
		self.gconf.notifyAdd( "show_side_pane", self.toggleShowSidepane )
		self.gconf.notifyAdd( "/apps/panel/global/tooltips_enabled", self.toggleTooltipsEnabled )
		self.gconf.notifyAdd( "tooltips_enabled", self.toggleTooltipsEnabled )

		self.gconf.notifyAdd( "use_custom_color", self.toggleUseCustomColor )
		self.gconf.notifyAdd( "custom_border_color", self.toggleCustomBorderColor )
		self.gconf.notifyAdd( "custom_heading_color", self.toggleCustomHeadingColor )
		self.gconf.notifyAdd( "custom_color", self.toggleCustomBackgroundColor )
		self.gconf.notifyAdd( "border_width", self.toggleBorderWidth )
		
	def toggleTooltipsEnabled( self, client, connection_id, entry, args ):
		if entry.get_key() == "/apps/panel/global/tooltips_enabled":
			self.globalEnableTooltips = entry.get_value().get_bool()
		else:
			self.enableTooltips = entry.get_value().get_bool()

		if self.globalEnableTooltips and self.enableTooltips:
			self.tooltips.enable()
		else:
			self.tooltips.disable()

	def toggleShowSidepane( self, client, connection_id, entry, args ):
		self.sidepanevisible = entry.get_value().get_bool()
		if self.sidepanevisible == False and self.pinmenu == False:
			self.sidepane.hide()
		else:
			self.sidepane.show()

	def toggleBorderWidth( self, client, connection_id, entry, args ):
		self.borderwidth = entry.get_value().get_int()
		self.SetupMintMenuBorder()

	def toggleUseCustomColor( self, client, connection_id, entry, args ):
		self.usecustomcolor = entry.get_value().get_bool()
		self.SetupMintMenuBorder()
		self.SetPaneColors( self.panesToColor )
		self.SetHeadingStyle( self.headingsToColor )


	def toggleCustomBorderColor( self, client, connection_id, entry, args ):
		self.custombordercolor = entry.get_value().get_string()
		self.SetupMintMenuBorder()

	def toggleCustomBackgroundColor( self, client, connection_id, entry, args ):
		self.customcolor = entry.get_value().get_string()
		self.SetPaneColors( self.panesToColor )

	def toggleCustomHeadingColor( self, client, connection_id, entry, args ):
		self.customheadingcolor = entry.get_value().get_string()
		self.SetHeadingStyle( self.headingsToColor )


	def getSetGconfEntries( self ):
		self.pluginlist           = self.gconf.get( "list-string", "plugins_list", [ 'newpane', 'places', 'system_management', 'newpane', 'applications' ] )
		self.dottedfile           = os.path.join( self.path, "dotted.png")

		self.usecustomcolor       = self.gconf.get( "bool", "use_custom_color", True )
		self.customcolor          = self.gconf.get( "color", "custom_color", "#FFFFFF" )
		self.customheadingcolor   = self.gconf.get( "color", "custom_heading_color", "#005555" )
		self.custombordercolor    = self.gconf.get( "color", "custom_border_color", "#005555" )

		self.borderwidth          = self.gconf.get( "int", "border_width", 1 )
		self.offset               = self.gconf.get( "int", "mintMenu_offset", 0 )
		self.pinmenu              = self.gconf.get( "bool", "pin_menu", False )
		self.enableTooltips       = self.gconf.get( "bool", "tooltips_enabled", True )
		self.globalEnableTooltips = self.gconf.get( "bool", "/apps/panel/global/tooltips_enabled", True )
		self.sidepanevisible      = self.gconf.get( "bool", "show_side_pane", False )


	def PinMenu(self, *args, **kargs):
		self.pinmenu = self.pinbutton.get_active()
		self.gconf.set("bool", "pin_menu", self.pinmenu)
		
		if self.pinmenu == True:
			self.sidepane.show()
		elif not self.sidepanevisible:
			self.sidepane.hide()


	def SetupMintMenuBorder( self ):
		if self.usecustomcolor:
			self.window.modify_bg( gtk.STATE_NORMAL, gtk.gdk.color_parse( self.custombordercolor ) )
		else:		
			self.window.modify_bg( gtk.STATE_NORMAL, self.window.rc_get_style().bg[ gtk.STATE_SELECTED ] )
		self.border.set_padding( self.borderwidth, self.borderwidth, self.borderwidth, self.borderwidth )
		self.SetPaneColors( [ self.sidepane ] )

		self.pinbutton.set_active( self.pinmenu )

		if self.sidepanevisible == False and self.pinmenu == False:
			self.sidepane.hide()
		else:
			self.sidepane.show()


	def PopulatePlugins( self ):
		self.panesToColor = [ ]
		self.headingsToColor = [ ]
		start = time.time()
		PluginPane = gtk.EventBox()
		PluginPane.show()
		PaneLadder = gtk.VBox( False, 0 )
		PluginPane.add( PaneLadder )
		self.SetPaneColors( [ PluginPane ] )
		ImageBox = gtk.EventBox()
		self.SetPaneColors( [ ImageBox ] )
		ImageBox.show()

		seperatorImage = gtk.gdk.pixbuf_new_from_file( self.dottedfile )

		self.plugins = {}

		for plugin in self.pluginlist:
			if plugin in self.plugins:
				print "Duplicate plugin in list: ", plugin
				continue

			if plugin != "newpane":
				try:
					X = __import__( plugin )
					# If no parameter passed to plugin it is autonomous
					if X.pluginclass.__init__.func_code.co_argcount == 1:
						MyPlugin = X.pluginclass()
					else:
						# pass mintMenu and togglebutton instance so that the plugin can use it
						MyPlugin = X.pluginclass( self, self.toggle )

					if not MyPlugin.icon:
						MyPlugin.icon = "gnome-logo-icon.png"

					if hasattr( MyPlugin, "hideseparator" ) and not MyPlugin.hideseparator:
						Image1 = gtk.Image()
						Image1.set_from_pixbuf( seperatorImage )
						if not ImageBox.get_child():
							ImageBox.add( Image1 )
							Image1.show()
				
					print "Loading plugin '" + plugin + "' : sucessful"
				except Exception, e:
					MyPlugin = gtk.EventBox() #Fake class for MyPlugin
					MyPlugin.heading = _("Couldn't load plugin \"%(plugin)s\"") % { "plugin": plugin }
					MyPlugin.content_holder = gtk.EventBox()

					# create traceback
					info = sys.exc_info()

					errorLabel = gtk.Label( "\n".join(traceback.format_exception( info[0], info[1], info[2] )).replace("\\n", "\n") )
					errorLabel.set_selectable( True )
					errorLabel.set_line_wrap( True )
					errorLabel.set_alignment( 0.0, 0.0 )
					errorLabel.set_padding( 5, 5 )
					errorLabel.show()

					MyPlugin.content_holder.add( errorLabel )
					MyPlugin.add( MyPlugin.content_holder )
					MyPlugin.width = 270
					MyPlugin.icon = 'gnome-logo-icon.png'
					print "Unable to load " + plugin + " plugin :-("


				self.SetPaneColors( [MyPlugin.content_holder] )


				MyPlugin.content_holder.show()

				if MyPlugin.heading != "":
					VBox1 = gtk.VBox( False, 0 )
					Label1 = gtk.Label( MyPlugin.heading )
					Align1 = gtk.Alignment( 0, 0.5, 0, 0 )
					Align1.set_padding( 0, 0, 0, 0 )
					Align1.add( Label1 )
					self.SetHeadingStyle( [Label1] )
					Align1.show()
					Label1.show()

					if not hasattr( MyPlugin, 'sticky' ) or MyPlugin.sticky == True:
						heading = gtk.EventBox()
						Align1.set_padding( 0, 0, 10, 0 )
						self.SetPaneColors( [heading] )
						heading.set_size_request( MyPlugin.width, 30 )
					else:
						heading = gtk.Button()
						heading.set_relief( gtk.RELIEF_NONE )
						heading.set_size_request( MyPlugin.width, -1 )
						heading.connect( "button_press_event", self.TogglePluginView, VBox1, MyPlugin.icon, MyPlugin.heading, MyPlugin )

					heading.add( Align1 )
					heading.show()
					VBox1.pack_start( heading, False )
					VBox1.show()
					MyPlugin.container = VBox1
					#Add plugin to Plugin Box under heading button
					MyPlugin.content_holder.reparent( VBox1 )

					#Add plugin to main window
					PaneLadder.pack_start( VBox1 )
					PaneLadder.show()

				if MyPlugin.window:
					MyPlugin.window.destroy()

				try:
					if hasattr( MyPlugin, 'do_plugin' ):
						MyPlugin.do_plugin()
					if hasattr( MyPlugin, 'height' ):
						MyPlugin.content_holder.set_size_request( -1, MyPlugin.height )
					if hasattr( MyPlugin, 'itemstocolor' ):
						self.SetPaneColors( MyPlugin.itemstocolor )
					if hasattr( MyPlugin, 'minimized' ) and MyPlugin.minimized:
						self.HidePlugin( MyPlugin.container, MyPlugin.icon, MyPlugin.heading, MyPlugin )
				except:
					# create traceback
					info = sys.exc_info()

					error = _("Couldn't initialize plugin \"%(plugin)s\":\n%(error)s") % { "plugin" : plugin, "error" : "\n".join(traceback.format_exception( info[0], info[1], info[2] )).replace("\\n", "\n") }
					msgDlg = gtk.MessageDialog( None, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, error )
					msgDlg.run();
					msgDlg.destroy();

				self.plugins[plugin] = MyPlugin

			else:
				self.paneholder.pack_start( ImageBox, False, False, 0 )
				self.paneholder.pack_start( PluginPane, False, False, 0 )
				PluginPane = gtk.EventBox()
				PaneLadder = gtk.VBox( False, 0 )
				PluginPane.add( PaneLadder )
				self.SetPaneColors( [PluginPane] )
				ImageBox = gtk.EventBox()
				self.SetPaneColors( [ImageBox] )
				ImageBox.show()
				PluginPane.show_all()

				if self.plugins and hasattr( MyPlugin, 'hideseparator' ) and not MyPlugin.hideseparator: 
					Image1 = gtk.Image()
					Image1.set_from_pixbuf( seperatorImage )
					Image1.show()
					ImageBox.add( Image1 )


		self.paneholder.pack_start( ImageBox, False, False, 0 )
		self.paneholder.pack_start( PluginPane, False, False, 0 )
		
		print "Loading", (time.time() - start), "s"


	def HidePlugin( self , PluginData, icon, tooltip, plugin ):
		if PluginData.flags() & gtk.VISIBLE:
			PluginData.hide()
			Button1 = gtk.Button()
			Image1 = gtk.Image()
			Image1.set_from_pixbuf( iconManager.getIcon( icon, gtk.ICON_SIZE_MENU ) )
			Button1.add( Image1 )
			Button1.show()
			self.setTooltip( Button1, tooltip )
			Image1.show()

			#Show side pane if it is hidden
			self.sidepane.show()
			Button1.connect( "button_press_event", self.TogglePluginView, PluginData, icon, tooltip, plugin )
			self.pinholder.pack_start( Button1, False, False, 0 )


	def TogglePluginView( self, widget, event, PluginData, icon, tooltip, plugin ):
		if event.button == 1:
			if PluginData.flags() & gtk.VISIBLE:
				PluginData.hide()
				if hasattr( plugin, 'SetHidden' ):
					plugin.SetHidden(True)
				Button1 = gtk.Button()
				Image1 = gtk.Image()
				Image1.set_from_pixbuf( iconManager.getIcon( icon, gtk.ICON_SIZE_MENU ) )
				Button1.add( Image1 )
				Button1.show()
				self.setTooltip( Button1, tooltip )
				Image1.show()

				#Show side pane if it is hidden
				self.sidepane.show()
				Button1.connect( "button_press_event", self.TogglePluginView, PluginData, icon, tooltip, plugin )
				self.pinholder.pack_start( Button1, False, False, 0 )
				
			else:
				PluginData.show()
				if hasattr( plugin, 'SetHidden' ):
					plugin.SetHidden(False)
				widget.destroy()
				if len( self.pinholder.get_children() ) == 1:
					if self.sidepanevisible == False and self.pinmenu == False:
						self.sidepane.hide()
					else:
						self.sidepane.show()

	def SetPaneColors( self, items ):
		for item in items:
			if item not in self.panesToColor:
				self.panesToColor.append( item )

		if self.usecustomcolor:
			for item in items:
				item.modify_bg( gtk.STATE_NORMAL, gtk.gdk.color_parse( self.customcolor ) )
		else:
			for item in items:
				item.modify_bg( gtk.STATE_NORMAL, self.paneholder.rc_get_style().bg[ gtk.STATE_NORMAL ] )
			

	def SetHeadingStyle( self, items ):
		for item in items:
			if item not in self.headingsToColor:
				self.headingsToColor.append( item )

		HeadingStyle = pango.AttrList()
		attr = pango.AttrSize( 12000, 0, -1 )
		HeadingStyle.insert( attr )

		if self.usecustomcolor:
			headingcolor = gtk.gdk.color_parse( self.customheadingcolor )
			attr = pango.AttrForeground( headingcolor.red, headingcolor.green, headingcolor.blue, 0, -1 )
			HeadingStyle.insert( attr )
#		else:
#			headingcolor = self.window.rc_get_style().bg[ gtk.STATE_SELECTED ]

		attr = pango.AttrWeight( pango.WEIGHT_BOLD, 0, -1 )
		HeadingStyle.insert( attr )

		for item in items:
			item.set_attributes( HeadingStyle )
			
	def setTooltip( self, widget, tip, tipPrivate = None ):
		self.tooltips.set_tip( widget, tip, tipPrivate )

	def RegenPlugins( self, *args, **kargs ):
		print
		print "Reloading Plugins..."
		for item in self.paneholder:
			if item.name != "sidepane":
				item.destroy()
				
		for plugin in self.plugins.values():
			if hasattr( plugin, "destroy" ):
				plugin.destroy()

		del plugin
		del self.plugins
		
		gc.collect()

		self.getSetGconfEntries()
		self.PopulatePlugins()

		print NAME+" reloaded"


	def show( self ):
		self.window.present()

		if ( "applications" in self.plugins ) and ( hasattr( self.plugins["applications"], "focusSearchEntry" ) ):
			self.plugins["applications"].focusSearchEntry()

	def grab( self ):
		gtk.gdk.pointer_grab( self.window.window, True, gtk.gdk.BUTTON_PRESS_MASK )
		gtk.gdk.keyboard_grab( self.window.window, False )
		self.window.grab_add()

	def ungrab( self ):
		self.window.grab_remove()
		gtk.gdk.pointer_ungrab()
		gtk.gdk.keyboard_ungrab()

	def onMap( self, widget, event ):
		self.grab()
	
	def onShow( self, widget ):
		for plugin in self.plugins.values():
			if hasattr( plugin, "onShowMenu" ):
				plugin.onShowMenu()

	def onUnmap( self, widget, event ):
		self.ungrab()
		
		for plugin in self.plugins.values():
			if hasattr( plugin, "onHideMenu" ):
				plugin.onHideMenu()

	def onKeyPress( self, widget, event ):
		print event.keyval
		print event.state
		print dir(event)
		
		return False

	def onButtonPress( self, widget, event ):
		# Check if the pointer is within the menu, else hide the menu
		winatptr = gtk.gdk.window_at_pointer()

		if winatptr:
			win = winatptr[0]
			while win:
				if win == self.window.window:
					break
				win = win.get_parent()
			if not win:
				self.hide( True )
		else:
			self.hide( True )

		return True

	def onGrabBroken( self, widget, event ):
		if event.grab_window:
			try:
				theft = event.grab_window.get_user_data()
				theft.connect( "event", self.onGrabTheftEvent )
			except:
				self.window.hide( True )

	def onGrabTheftEvent( self, widget, event ):
		if event.type == gtk.gdk.UNMAP or event.type == gtk.gdk.SELECTION_CLEAR:
			self.grab()

	def hide( self, forceHide = False ):
		if not self.pinmenu or forceHide:
			self.window.hide()
			
	def getLocalePath( self ):
		if os.path.exists( os.path.join( self.path, "locale" ) ):
			return os.path.join( self.path, "locale" )
		elif os.path.exists( "locale" ):
			return "locale"
		else:
			return "/usr/share/locale"

class MenuWin( object ):
	def __init__( self, applet, iid ):
		self.applet = applet

		self.gconf = EasyGConf( "/apps/mintMenu/" )
		self.gconf.notifyAdd( "applet_text", self.gconfEntriesChanged )
		self.gconf.notifyAdd( "applet_icon_name", self.gconfEntriesChanged )
		self.gconf.notifyAdd( "hide_applet_icon", self.gconfEntriesChanged )
		self.gconf.notifyAdd( "applet_icon_size", self.gconfEntriesChanged )
		self.getGconfEntries()

		if self.customIcon:
			icon = iconManager.getIcon( self.customIcon, 1 )
		else:
			icon = None
		if not icon:
			icon = iconManager.getIcon( "distributor-logo", 1 )
		if icon:
			gtk.window_set_default_icon( icon )
		
		self.createPanelButton()
		
		self.applet.set_applet_flags( gnomeapplet.EXPAND_MINOR )
		self.applet.connect( "button-press-event", self.showMenu )
		self.applet.connect( "change-orient", self.changeOrientation )
		self.applet.connect( "change-background", self.changeBackground )
		self.mainwin = MainWindow( self.button_box )
		self.mainwin.window.connect( "map-event", lambda *args: self.applet.set_state( gtk.STATE_SELECTED ) )
		self.mainwin.window.connect( "unmap-event", lambda *args: self.applet.set_state( gtk.STATE_NORMAL ) )
		self.mainwin.window.connect( "size-allocate", lambda *args: self.positionMenu() )

		self.propxml = """
		        <popup name="button3">
					<menuitem name="Item 1" verb="Preferences" label="%s" pixtype="stock" pixname="gtk-preferences" />
					<menuitem name="Item 1" verb="Edit" label="%s" pixtype="stock" pixname="gtk-edit" />
					<menuitem name="Item 2" verb="Reload" label="%s" pixtype="stock" pixname="gtk-refresh" />
					<menuitem name="Item 3" verb="About" label="%s" pixtype="stock" pixname="gtk-about" />
		        </popup>
		        """ % ( _("_Preferences"), _("_Edit Menu"), _("_Reload Plugins"), _("_About") )
		self.verbs = [ ("Preferences", self.showPreferences), ("Edit", self.showMenuEditor), ("About", self.showAboutDialog), ("Reload",self.mainwin.RegenPlugins) ]

#		keybinder_bind( "<Super>", self.toggleMenu )

	def createPanelButton( self ):
		if self.customIcon:
			self.button_icon = gtk.image_new_from_icon_name( self.customIcon, self.iconSize )
		else:
			self.button_icon = gtk.image_new_from_icon_name( "distributor-logo", self.iconSize )
			
		
		self.systemlabel = gtk.Label( self.buttonText )
		
		
		if self.applet.get_orient() == gnomeapplet.ORIENT_UP or self.applet.get_orient() == gnomeapplet.ORIENT_DOWN:
			self.button_box = gtk.HBox()
			self.button_box.pack_start( self.button_icon, False, False )
			self.button_box.pack_start( self.systemlabel, False, False )
		
			self.button_icon.set_padding( 5, 0 )
		# if we have a vertical panel
		elif self.applet.get_orient() == gnomeapplet.ORIENT_LEFT:
			self.button_box = gtk.VBox()
			self.systemlabel.set_angle( 90 )
			self.button_box.pack_start( self.systemlabel )
			self.button_box.pack_start( self.button_icon )
			self.button_icon.set_padding( 5, 0 )
		elif self.applet.get_orient() == gnomeapplet.ORIENT_RIGHT:
			self.button_box = gtk.VBox()
			self.systemlabel.set_angle( 270 )
			self.button_box.pack_start( self.button_icon )
			self.button_box.pack_start( self.systemlabel )
			self.button_icon.set_padding( 0, 5 )
			
		self.button_box.set_homogeneous( False )
		self.button_box.show_all()
		self.sizeButton()

		self.applet.add( self.button_box )


	def getGconfEntries( self, *args, **kargs ):
		self.hideIcon	=  self.gconf.get( "bool", "hide_applet_icon", False )
		self.buttonText =  self.gconf.get( "string", "applet_text", " Cassandra" )
		self.customIcon =  self.gconf.get( "string", "applet_icon_name", "distributor-logo" )
		self.setIconSize( self.gconf.get( "int", "applet_icon_size", 1 ) )

	def setIconSize( self, icon_size):
		if icon_size >= 4:
			self.iconSize = gtk.ICON_SIZE_DIALOG
		elif icon_size == 3:
			self.iconSize = gtk.ICON_SIZE_DND
		elif icon_size == 2:
			self.iconSize = gtk.ICON_SIZE_BUTTON
		else:
			self.iconSize = gtk.ICON_SIZE_MENU

	def changeBackground( self, applet, type, color, pixmap ):
		# get reset style
		self.applet.set_style(None)
		rc_style = gtk.RcStyle()
		self.applet.modify_style(rc_style)

		if gnomeapplet.COLOR_BACKGROUND == type:
			applet.modify_bg( gtk.STATE_NORMAL, color )
		elif gnomeapplet.PIXMAP_BACKGROUND == type:
			style = applet.style
			style.bg_pixmap[ gtk.STATE_NORMAL ] = pixmap
			applet.set_style( style )


	def changeOrientation( self, *args, **kargs ):

		if self.applet.get_orient() == gnomeapplet.ORIENT_UP or self.applet.get_orient() == gnomeapplet.ORIENT_DOWN:
			tmpbox = gtk.HBox()
			self.systemlabel.set_angle( 0 )
			self.button_box.reorder_child( self.button_icon, 0 )
			self.button_icon.set_padding( 5, 0 )
		elif self.applet.get_orient() == gnomeapplet.ORIENT_LEFT:
			tmpbox = gtk.VBox()
			self.systemlabel.set_angle( 90 )
			self.button_box.reorder_child( self.button_icon, 1 )
			self.button_icon.set_padding( 0, 5 )
		elif self.applet.get_orient() == gnomeapplet.ORIENT_RIGHT:
			tmpbox = gtk.VBox()
			self.systemlabel.set_angle( 270 )
			self.button_box.reorder_child( self.button_icon, 0 )
			self.button_icon.set_padding( 0, 5 )


		tmpbox.set_homogeneous( False )
		
		# reparent all the hboxes to the new tmpbox
		for i in self.button_box:
			i.reparent( tmpbox )

		self.button_box.destroy()
		
		self.button_box = tmpbox
		self.button_box.show()

		# this call makes sure width stays intact
		self.updateButton()
		self.applet.add( self.button_box )


	def updateButton( self ):
		self.systemlabel.set_text( self.buttonText )

		self.button_icon.clear()
		if self.customIcon:
			self.button_icon.set_from_icon_name( self.customIcon, self.iconSize )
		else:
			self.button_icon.set_from_icon_name( "distributor-logo", self.iconSize )

		self.sizeButton()

	def sizeButton( self ):
		if self.hideIcon:
			self.button_icon.hide()
		else:
			self.button_icon.show()
		# This code calculates width and height for the button_box
		# and takes the orientation in account
		if self.applet.get_orient() == gnomeapplet.ORIENT_UP or self.applet.get_orient() == gnomeapplet.ORIENT_DOWN:
			if self.hideIcon:
				self.applet.set_size_request( self.systemlabel.size_request()[0] + 2, -1 )
			else:
				self.applet.set_size_request( self.systemlabel.size_request()[0] + self.button_icon.size_request()[0] + 5, self.button_icon.size_request()[1] )
		else:
			if self.hideIcon:
				self.applet.set_size_request( self.button_icon.size_request()[0], self.systemlabel.size_request()[1] + 2 )
			else:
				self.applet.set_size_request( self.button_icon.size_request()[0], self.systemlabel.size_request()[1] + self.button_icon.size_request()[1] + 5 )

	def gconfEntriesChanged( self, *args ):
		self.getGconfEntries()
		self.updateButton()


	def showAboutDialog( self, uicomponent, verb ):

		gtk.about_dialog_set_email_hook( lambda dialog, mail: gnomevfs.url_show( "mailto:" + mail ) )
		gtk.about_dialog_set_url_hook( lambda dialog, url: gnomevfs.url_show( url ) )
		about = gtk.AboutDialog()
		about.set_name( NAME )
		about.set_version( VERSION )
		about.set_comments( _("a Slab-like GNOME Menu for Linux Mint") )
		about.set_authors( ["Clement Lefebvre <root@linuxmint.com>", "Lars-Peter Clausen <lars@laprican.de>"] )
		about.set_translator_credits( _("translator-credits") )
		about.set_website( "http://linuxmint.com" )
		about.set_copyright( _("Based on USP from S.Chanderbally") )
		about.set_logo_icon_name( "distributor-logo" )
		about.connect( "response", lambda dialog, r: dialog.destroy() )
		about.show()


	def showPreferences( self, uicomponent, verb ):
#		Execute( "gconf-editor /apps/mintMenu" )
		Execute( os.path.join( PATH, "mintMenuConfig.py" ) )

	def showMenuEditor( self, uicomponent, verb ):
		Execute( "alacarte" )

	def showMenu( self, widget, event ):

		if event.button == 1:
			self.toggleMenu()
		# show right click menu
		elif event.button == 3:
			self.create_menu()
		# allow middle click and drag
		elif event.button == 2:
			self.mainwin.hide( True )

	def toggleMenu( self ):
			if self.applet.state & gtk.STATE_SELECTED:
				self.mainwin.hide( True )
			else:
				self.positionMenu()
				self.mainwin.show()

	def positionMenu( self ):
		# Get our own dimensions & position
		ourWidth  = self.mainwin.window.get_size()[0]
		ourHeight = self.mainwin.window.get_size()[1] + self.mainwin.offset

		# Get the dimensions/position of the widgetToAlignWith
		entryX, entryY = self.applet.window.get_origin()
		entryWidth, entryHeight =  self.applet.get_allocation().width, self.applet.get_allocation().height
		entryHeight = entryHeight + self.mainwin.offset

		# Get the screen dimensions
		screenHeight = gtk.gdk.screen_height()
		screenWidth = gtk.gdk.screen_width()

		if self.applet.get_orient() == gnomeapplet.ORIENT_UP or self.applet.get_orient() == gnomeapplet.ORIENT_DOWN:
			if entryX + ourWidth < screenWidth or  entryX + entryWidth / 2 < screenWidth / 2:
				# Align to the left of the entry
				newX = entryX
			else:
				# Align to the right of the entry
				newX = entryX + entryWidth - ourWidth
	
			if entryY + entryHeight / 2 < screenHeight / 2:
				# Align to the bottom of the entry
				newY = entryY + entryHeight
			else:
				newY = entryY - ourHeight
		else:
			if entryX + entryWidth / 2 < screenWidth / 2:
				# Align to the left of the entry
				newX = entryX + entryWidth
			else:
				# Align to the right of the entry
				newX = entryX - ourWidth
	
			if entryY + ourHeight < screenHeight or entryY + entryHeight / 2 < screenHeight / 2:
				# Align to the bottom of the entry
				newY = entryY
			else:
				newY = entryY - ourHeight + entryHeight
		# -"Move window"
		self.mainwin.window.move( newX, newY )

	# this callback is to create a context menu
	def create_menu(self):
		self.applet.setup_menu(self.propxml, self.verbs, None)

def menu_factory( applet, iid ):
	MenuWin( applet, iid )
	applet.show()

	return True

if len(sys.argv) == 2 and sys.argv[1] == "run-in-window":
	gtk.gdk.threads_init()
	main_window = gtk.Window( gtk.WINDOW_TOPLEVEL )
	main_window.set_title( NAME )
	main_window.connect( "destroy", gtk.main_quit )
	app = gnomeapplet.Applet()
	menu_factory( app, None )
	app.reparent( main_window )
	main_window.show()
	gtk.gdk.threads_enter()
	gtk.main()
	gtk.gdk.threads_leave()
else:
	gnomeapplet.bonobo_factory("OAFIID:GNOME_mintMenu_Factory",
                             gnomeapplet.Applet.__gtype__,
                             "mintMenu", "0", menu_factory)