~ubuntu-branches/ubuntu/natty/miro/natty

« back to all changes in this revision

Viewing changes to windows/plat/frontends/widgets/prefpanelset.py

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2011-01-22 02:46:33 UTC
  • mfrom: (1.4.10 upstream) (1.7.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20110122024633-kjme8u93y2il5nmf
Tags: 3.5.1-1ubuntu1
* Merge from debian.  Remaining ubuntu changes:
  - Use python 2.7 instead of python 2.6
  - Relax dependency on python-dbus to >= 0.83.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Miro - an RSS based video player application
 
2
# Copyright (C) 2005-2010 Participatory Culture Foundation
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
17
#
 
18
# In addition, as a special exception, the copyright holders give
 
19
# permission to link the code of portions of this program with the OpenSSL
 
20
# library.
 
21
#
 
22
# You must obey the GNU General Public License in all respects for all of
 
23
# the code used other than OpenSSL. If you modify file(s) with this
 
24
# exception, you may extend this exception to your version of the file(s),
 
25
# but you are not obligated to do so. If you do not wish to do so, delete
 
26
# this exception statement from your version. If you delete this exception
 
27
# statement from all source files in the program, then also delete it here.
 
28
 
 
29
from miro.gtcache import gettext as _
 
30
from miro.plat.frontends.widgets import widgetset
 
31
from miro.plat import options
 
32
from miro.plat import fontinfo
 
33
from miro.frontends.widgets.prefpanel import attach_boolean, attach_radio, \
 
34
        attach_combo
 
35
from miro.frontends.widgets import widgetutil
 
36
from miro import config
 
37
from miro import prefs
 
38
 
 
39
def _general_panel():
 
40
    extras = []
 
41
    show_cbx = widgetset.Checkbox(_("Enable tray icon"))
 
42
    attach_boolean(show_cbx, options.SHOW_TRAYICON)
 
43
    extras.append(show_cbx)
 
44
 
 
45
    lab = widgetset.Label(_("When I click the red close button:"))
 
46
    extras.append(widgetutil.align_left(lab))
 
47
    rbg = widgetset.RadioButtonGroup()
 
48
    rad_close = widgetset.RadioButton(_("Close to tray so that downloads can continue."), rbg)
 
49
    rad_quit = widgetset.RadioButton(_("Quit %(appname)s completely.", {'appname': config.get(prefs.SHORT_APP_NAME)}), rbg)
 
50
 
 
51
    attach_radio([(rad_close, True), (rad_quit, False)], prefs.MINIMIZE_TO_TRAY)
 
52
    extras.append(widgetutil.align_left(rad_close, left_pad=20))
 
53
    extras.append(widgetutil.align_left(rad_quit, left_pad=20))
 
54
    return extras
 
55
 
 
56
def _playback_panel():
 
57
    extras = []
 
58
    font_infos = [(_('System Default'), None)]
 
59
    font_infos.extend(fontinfo.get_all_font_info())
 
60
    subtitle_font_menu = widgetset.OptionMenu(
 
61
            [name for (name, path) in font_infos])
 
62
    attach_combo(subtitle_font_menu, prefs.SUBTITLE_FONT,
 
63
            [path for (name, path) in font_infos])
 
64
    lab = widgetset.Label(_("Subtitle font:"))
 
65
    extras.append(widgetutil.build_control_line((lab, subtitle_font_menu)))
 
66
    return extras
 
67
 
 
68
def get_platform_specific(panel_name):
 
69
    if panel_name == "general":
 
70
        return _general_panel()
 
71
    elif panel_name == "playback":
 
72
        return _playback_panel()