Random code cleanup
[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                 dialog = gtk.Dialog(
67                         _("New item name:"),
68                         None,
69                         gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
70                         (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)
71                 )
72
73                 entryKlasse = gtk.Entry()
74                 entryKlasse.set_text("")
75                 dialog.vbox.pack_start(entryKlasse, True, True, 0)
76
77                 dialog.vbox.show_all()
78                 if dialog.run() == gtk.RESPONSE_ACCEPT:
79                         self.view.liststorehandler.add_row(entryKlasse.get_text())
80                 dialog.destroy()
81
82         @gtk_toolbox.log_exception(_moduleLogger)
83         def del_item(self, widget = None, data1 = None, data2 = None):
84                 path, col = self.view.treeview.get_cursor()
85                 if path is None:
86                         mbox = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, _("No item selected!"))
87                         response = mbox.run()
88                         mbox.hide()
89                         mbox.destroy()
90                         return
91
92                 mbox = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_QUESTION, gtk.BUTTONS_YES_NO, _("Delete current item?"))
93                 response = mbox.run()
94                 mbox.hide()
95                 mbox.destroy()
96                 if response == gtk.RESPONSE_YES:
97                         self.view.del_active_row()
98
99         def rename_category(self, widget = None, data1 = None, data2 = None):
100                 dialog = gtk.Dialog(
101                         _("New category name:"),
102                         None,
103                         gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
104                         (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)
105                 )
106
107                 entryKlasse = gtk.Entry()
108                 entryKlasse.set_text(self.view.liststorehandler.selection.get_category())
109                 dialog.vbox.pack_start(entryKlasse, True, True, 0)
110
111                 dialog.vbox.show_all()
112                 if dialog.run() == gtk.RESPONSE_ACCEPT:
113                         _moduleLogger.info("new category name "+entryKlasse.get_text())
114                         self.view.liststorehandler.rename_category(entryKlasse.get_text())
115                 else:
116                         pass
117                 dialog.destroy()
118
119         def rename_list(self, widget = None, data1 = None, data2 = None):
120                 dialog = gtk.Dialog(
121                         _("New list name:"),
122                         None,
123                         gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
124                         (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)
125                 )
126
127                 dialog.set_position(gtk.WIN_POS_CENTER)
128                 entryKlasse = gtk.Entry()
129                 entryKlasse.set_text(self.view.liststorehandler.selection.get_list())
130                 dialog.vbox.pack_start(entryKlasse, True, True, 0)
131
132                 dialog.vbox.show_all()
133                 if dialog.run() == gtk.RESPONSE_ACCEPT:
134                         _moduleLogger.info("new list name "+entryKlasse.get_text())
135                         self.view.liststorehandler.rename_list(entryKlasse.get_text())
136                 else:
137                         pass
138                 dialog.destroy()