summaryrefslogtreecommitdiff
path: root/timer-applet/src/timerapplet/controllers/GlobalController.py
blob: fd3af2b1c1beebdcdc3b7a1a96bb9001c659d476 (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
# Copyright (C) 2008 Jimmy Do <jimmydo@users.sourceforge.net>
#
# 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

from gettext import gettext as _
import gtk
from timerapplet import core
from timerapplet import ui
from timerapplet import utils
from timerapplet import config

class GlobalController(object):
    def __init__(self):
        self._presets_store = core.PresetsStore(config.PRESETS_PATH)
        self._manage_presets_dialog = ui.ManagePresetsDialog(config.GLADE_PATH,
                                                             self._presets_store.get_model(),
                                                             lambda row_iter: utils.get_preset_display_text(self._presets_store,
                                                                                                            row_iter))
        
        self._manage_presets_dialog.connect('clicked-add', self._on_mgr_clicked_add)
        self._manage_presets_dialog.connect('clicked-edit', self._on_mgr_clicked_edit)
        self._manage_presets_dialog.connect('clicked-remove', self._on_mgr_clicked_remove)
        
        gtk.window_set_default_icon_from_file(config.ICON_PATH)

    def get_presets_store(self):
        return self._presets_store
        
    def get_manage_presets_dialog(self):
        return self._manage_presets_dialog

    def _on_mgr_clicked_add(self, sender, data=None):
        add_dialog = ui.AddEditPresetDialog(
            config.GLADE_PATH,
            _('Add Preset'),
            lambda name: utils.is_valid_preset_name(name, self._presets_store))
        
        result = add_dialog.get_preset()
        if result is not None:
            (name, hours, minutes, seconds, command, next_timer, auto_start) = result
            self._presets_store.add_preset(name, hours, minutes, seconds,
                                           command, next_timer, auto_start)
        
    def _on_mgr_clicked_edit(self, sender, row_path, data=None):
        row_iter = self._presets_store.get_model().get_iter(row_path)
        (name, hours, minutes, seconds, command, next_timer, auto_start) = \
                self._presets_store.get_preset(row_iter)

        edit_dialog = ui.AddEditPresetDialog(config.GLADE_PATH,
                                             _('Edit Preset'),
                                             lambda name: utils.is_valid_preset_name(name,
                                                                                     self._presets_store,
                                                                                     (name,)),
                                             name,
                                             hours,
                                             minutes,
                                             seconds,
                                             command,
                                             next_timer,
                                             auto_start
                                            )
            
        result = edit_dialog.get_preset()
        if result is not None:
            (name, hours, minutes, seconds, command, next_timer, auto_start) = result
            self._presets_store.modify_preset(row_iter, name, hours, minutes,
                                              seconds, command, next_timer,
                                              auto_start)

    def _on_mgr_clicked_remove(self, sender, row_path, data=None):
        row_iter = self._presets_store.get_model().get_iter(row_path)
        self._presets_store.remove_preset(row_iter)

    # TODO
    def _on_mgr_next_timer_is_being_edited(self, sender, row_path, data=None):
        """Show a dropdown widget to help completing the next timer."""
        raise NotImplementedError("Not implemented, yet")