summaryrefslogtreecommitdiffstats
path: root/deluge/ui/gtkui/menubar_osx.py
blob: 43f290c4e3a65fa2e44187472d36e62d35797942 (plain)
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
#
# menubar_osx.py
#
# Copyright (C) 2007-2009 Andrew Resch <andrewresch@gmail.com>
#
# Deluge is free software.
#
# You may 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.
#
# deluge 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 deluge.    If not, write to:
# 	The Free Software Foundation, Inc.,
# 	51 Franklin Street, Fifth Floor
# 	Boston, MA  02110-1301, USA.
#
#    In addition, as a special exception, the copyright holders give
#    permission to link the code of portions of this program with the OpenSSL
#    library.
#    You must obey the GNU General Public License in all respects for all of
#    the code used other than OpenSSL. If you modify file(s) with this
#    exception, you may extend this exception to your version of the file(s),
#    but you are not obligated to do so. If you do not wish to do so, delete
#    this exception statement from your version. If you delete this exception
#    statement from all source files in the program, then also delete it here.
#
#
import gtk, gtk.glade

from deluge.configmanager import ConfigManager

def accel_swap(item, group, skey, smod, dkey, dmod):
	item.remove_accelerator(group, ord(skey), smod)
	item.add_accelerator("activate", group, ord(dkey), dmod, gtk.ACCEL_VISIBLE)

def accel_meta(item, group, key):
	accel_swap(item, group, key, gtk.gdk.CONTROL_MASK, key, gtk.gdk.META_MASK)

def menubar_osx(gtkui, osxapp):
	window = gtkui.mainwindow
	glade  = window.main_glade
	menubar = glade.get_widget("menubar")
	group = gtk.accel_groups_from_object(window.window)[0]

	config = ConfigManager("gtkui.conf")

	# NOTE: accel maps doesn't work with glade file format
	# because of libglade not setting MenuItem accel groups
	# That's why we remove / set accelerators by hand... (dirty)
	# Clean solution: migrate glades files to gtkbuilder format
	file_menu = glade.get_widget("menu_file").get_submenu()
	file_items = file_menu.get_children()
	accel_meta(file_items[0], group, 'o')
	accel_meta(file_items[1], group, 'n')
	quit_all_item = file_items[3]
	accel_swap(quit_all_item, group, 'q', gtk.gdk.SHIFT_MASK | gtk.gdk.CONTROL_MASK,
										  'q', gtk.gdk.SHIFT_MASK | gtk.gdk.META_MASK)
	for item in range(2, len(file_items)): # remove quits
		file_menu.remove(file_items[item])

	menu_widget = glade.get_widget("menu_edit")
	edit_menu = menu_widget.get_submenu()
	edit_items = edit_menu.get_children()
	pref_item = edit_items[0]
	accel_swap(pref_item, group, 'p', gtk.gdk.CONTROL_MASK, ',', gtk.gdk.META_MASK)
	edit_menu.remove(pref_item)

	conn_item = edit_items[1]
	accel_meta(conn_item, group, 'm')
	edit_menu.remove(conn_item)

	menubar.remove(menu_widget)

	help_menu = glade.get_widget("menu_help").get_submenu()
	help_items = help_menu.get_children()
	about_item = help_items[4]
	help_menu.remove(about_item)
	help_menu.remove(help_items[3]) # separator

	menubar.hide()
	osxapp.set_menu_bar(menubar)
	# populate app menu
	osxapp.insert_app_menu_item(about_item, 0)
	osxapp.insert_app_menu_item(gtk.SeparatorMenuItem(), 1)
	osxapp.insert_app_menu_item(pref_item, 2)
	if not config["classic_mode"]:
		osxapp.insert_app_menu_item(conn_item, 3)
	if quit_all_item.get_visible():
		osxapp.insert_app_menu_item(gtk.SeparatorMenuItem(), 4)
		osxapp.insert_app_menu_item(quit_all_item, 5)