Bumping to 0.3.2-1
[multilist] / src / libbottombar.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5 This file is part of Multilist.
6
7 Multilist is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 Multilist is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Multilist.  If not, see <http://www.gnu.org/licenses/>.
19
20 Copyright (C) 2008 Christoph Würstle
21 """
22
23
24 import logging
25
26 import gtk
27
28 import gtk_toolbox
29
30 try:
31         _
32 except NameError:
33         _ = lambda x: x
34
35
36 _moduleLogger = logging.getLogger(__name__)
37
38
39 class Bottombar(gtk.VBox):
40
41         __gsignals__ = {
42         }
43
44         def __init__(self, db, view, isHildon):
45                 gtk.VBox.__init__(self, homogeneous = False, spacing = 3)
46
47                 self.db = db
48                 self.isHildon = isHildon
49                 self.view = view
50
51                 _moduleLogger.info("libBottomBar, init")
52
53                 buttonHBox = gtk.HBox()
54                 self.pack_start(buttonHBox, expand = False, fill = True, padding = 3)
55
56                 button = gtk.Button(stock = gtk.STOCK_ADD)
57                 button.connect("clicked", self.new_item, None)
58                 buttonHBox.pack_start(button, expand = True, fill = True, padding = 3)
59
60                 button = gtk.Button(stock = gtk.STOCK_DELETE)
61                 button.connect("clicked", self.del_item, None)
62                 buttonHBox.pack_start(button, expand = True, fill = True, padding = 3)
63
64         @gtk_toolbox.log_exception(_moduleLogger)
65         def new_item(self, widget = None, data1 = None, data2 = None):
66                 window = gtk_toolbox.find_parent_window(self)
67                 dialog = gtk.Dialog(
68                         _("New item name:"),
69                         window,
70                         gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
71                         (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)
72                 )
73
74                 entryKlasse = gtk.Entry()
75                 entryKlasse.set_text("")
76                 dialog.vbox.pack_start(entryKlasse, True, True, 0)
77
78                 dialog.vbox.show_all()
79                 if dialog.run() == gtk.RESPONSE_ACCEPT:
80                         self.view.liststorehandler.add_row(entryKlasse.get_text())
81                 dialog.destroy()
82
83         @gtk_toolbox.log_exception(_moduleLogger)
84         def del_item(self, widget = None, data1 = None, data2 = None):
85                 window = gtk_toolbox.find_parent_window(self)
86                 path, col = self.view.treeview.get_cursor()
87                 if path is None:
88                         mbox = gtk.MessageDialog(window, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, _("No item selected!"))
89                         response = mbox.run()
90                         mbox.hide()
91                         mbox.destroy()
92                         return
93
94                 mbox = gtk.MessageDialog(window, gtk.DIALOG_MODAL, gtk.MESSAGE_QUESTION, gtk.BUTTONS_YES_NO, _("Delete current item?"))
95                 response = mbox.run()
96                 mbox.hide()
97                 mbox.destroy()
98                 if response == gtk.RESPONSE_YES:
99                         self.view.del_active_row()
100
101         def rename_category(self, widget = None, data1 = None, data2 = None):
102                 window = gtk_toolbox.find_parent_window(self)
103                 dialog = gtk.Dialog(
104                         _("New category name:"),
105                         window,
106                         gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
107                         (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)
108                 )
109
110                 entryKlasse = gtk.Entry()
111                 entryKlasse.set_text(self.view.liststorehandler.selection.get_category())
112                 dialog.vbox.pack_start(entryKlasse, True, True, 0)
113
114                 dialog.vbox.show_all()
115                 if dialog.run() == gtk.RESPONSE_ACCEPT:
116                         _moduleLogger.info("new category name "+entryKlasse.get_text())
117                         self.view.liststorehandler.rename_category(entryKlasse.get_text())
118                 else:
119                         pass
120                 dialog.destroy()
121
122         def rename_list(self, widget = None, data1 = None, data2 = None):
123                 window = gtk_toolbox.find_parent_window(self)
124                 dialog = gtk.Dialog(
125                         _("New list name:"),
126                         window,
127                         gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
128                         (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)
129                 )
130
131                 entryKlasse = gtk.Entry()
132                 entryKlasse.set_text(self.view.liststorehandler.selection.get_list())
133                 dialog.vbox.pack_start(entryKlasse, True, True, 0)
134
135                 dialog.vbox.show_all()
136                 if dialog.run() == gtk.RESPONSE_ACCEPT:
137                         _moduleLogger.info("new list name "+entryKlasse.get_text())
138                         self.view.liststorehandler.rename_list(entryKlasse.get_text())
139                 else:
140                         pass
141                 dialog.destroy()