Found a better name for the find callback
[gonvert] / src / gonvert_glade.py
1 #!/usr/bin/env python
2 # -*- coding: UTF8 -*-
3
4 import os
5 import pickle
6 import string
7 import sys
8 import gettext
9 import logging
10
11 import gobject
12 import gtk
13 import gtk.glade
14 import gtk.gdk
15
16 import constants
17 import unit_data
18
19
20 _moduleLogger = logging.getLogger("gonvert_glade")
21
22 gettext.bindtextdomain('gonvert', '/usr/share/locale')
23 gettext.textdomain('gonvert')
24 _ = gettext.gettext
25
26
27 def change_menu_label(widgets, labelname, newtext):
28         item_label = widgets.get_widget(labelname).get_children()[0]
29         item_label.set_text(newtext)
30
31
32 class Gonvert(object):
33
34         _glade_files = [
35                 os.path.join(os.path.dirname(__file__), "gonvert.glade"),
36                 os.path.join(os.path.dirname(__file__), "../data/gonvert.glade"),
37                 os.path.join(os.path.dirname(__file__), "../lib/gonvert.glade"),
38                 '/usr/lib/gonvert/gonvert.glade',
39         ]
40
41         def __init__(self):
42                 self._unitDataInCategory = None
43                 self._calcsuppress = False
44                 self._unit_sort_direction = False
45                 self._value_sort_direction = False
46                 self._units_sort_direction = False
47
48                 self._find_result = [] # empty find result list
49                 self._find_count = 0 # default to find result number zero
50
51                 self._selected_category = '' # preset to no selected category
52                 self._selected_units = {} # empty dictionary for later use
53
54                 #check to see if glade file is in current directory (user must be
55                 # running from download untar directory)
56                 for gladePath in self._glade_files:
57                         if os.path.isfile(gladePath):
58                                 homepath = os.path.dirname(gladePath)
59                                 pixmapspath = "/".join((homepath, "pixmaps"))
60                                 widgets = gtk.glade.XML(gladePath)
61                                 break
62                 else:
63                         return
64
65                 self._mainWindow = widgets.get_widget('mainWindow')
66
67                 change_menu_label(widgets, 'fileMenuItem', _('File'))
68                 change_menu_label(widgets, 'exitMenuItem', _('Exit'))
69                 change_menu_label(widgets, 'toolsMenuItem', _('Tools'))
70                 change_menu_label(widgets, 'clearSelectionMenuItem', _('Clear selections'))
71                 change_menu_label(widgets, 'writeUnitsMenuItem', _('Write Units'))
72                 change_menu_label(widgets, 'helpMenuItem', _('Help'))
73                 change_menu_label(widgets, 'aboutMenuItem', _('About'))
74                 change_menu_label(widgets, 'findButton', _('Find'))
75
76                 self._shortlistcheck = widgets.get_widget('shortlistcheck')
77                 self._toggleShortList = widgets.get_widget('toggleShortList')
78
79                 self._categoryView = widgets.get_widget('categoryView')
80
81                 self._unitsView = widgets.get_widget('unitsView')
82                 self._unitsView_selection = self._unitsView.get_selection()
83
84                 self._unitName = widgets.get_widget('unitName')
85                 self._unitValue = widgets.get_widget('unitValue')
86                 self._previousUnitName = widgets.get_widget('previousUnitName')
87                 self._previousUnitValue = widgets.get_widget('previousUnitValue')
88                 messagebox = widgets.get_widget('msgbox')
89                 messageboxtext = widgets.get_widget('msgboxtext')
90
91                 self._unitSymbol = widgets.get_widget('unitSymbol')
92                 self._previousUnitSymbol = widgets.get_widget('previousUnitSymbol')
93
94                 self._unitDescription = widgets.get_widget('unitDescription')
95
96                 self._findEntry = widgets.get_widget('findEntry')
97                 self._findLabel = widgets.get_widget('findLabel')
98                 findButton = widgets.get_widget('findButton')
99                 ToolTips = gtk.Tooltips()
100                 ToolTips.set_tip(findButton, _(u'Find unit (F6)'))
101
102                 #insert a self._categoryColumnumn into the units list even though the heading will not be seen
103                 renderer = gtk.CellRendererText()
104                 self._unitNameColumn = gtk.TreeViewColumn(_('Unit Name'), renderer)
105                 self._unitNameColumn.set_property('resizable', 1)
106                 self._unitNameColumn.add_attribute(renderer, 'text', 0)
107                 self._unitNameColumn.set_clickable(True)
108                 self._unitNameColumn.connect("clicked", self._on_click_unit_column)
109                 self._unitsView.append_column(self._unitNameColumn)
110
111                 self._unitValueColumn = gtk.TreeViewColumn(_('Value'), renderer)
112                 self._unitValueColumn.set_property('resizable', 1)
113                 self._unitValueColumn.add_attribute(renderer, 'text', 1)
114                 self._unitValueColumn.set_clickable(True)
115                 self._unitValueColumn.connect("clicked", self._on_click_unit_column)
116                 self._unitsView.append_column(self._unitValueColumn)
117
118                 self._unitSymbolColumn = gtk.TreeViewColumn(_('Units'), renderer)
119                 self._unitSymbolColumn.set_property('resizable', 1)
120                 self._unitSymbolColumn.add_attribute(renderer, 'text', 2)
121                 self._unitSymbolColumn.set_clickable(True)
122                 self._unitSymbolColumn.connect("clicked", self._on_click_unit_column)
123                 self._unitsView.append_column(self._unitSymbolColumn)
124
125                 #Insert a column into the category list even though the heading will not be seen
126                 renderer = gtk.CellRendererText()
127                 self._categoryColumn = gtk.TreeViewColumn('Title', renderer)
128                 self._categoryColumn.set_property('resizable', 1)
129                 self._categoryColumn.add_attribute(renderer, 'text', 0)
130                 self._categoryView.append_column(self._categoryColumn)
131
132                 self._categoryModel = gtk.ListStore(gobject.TYPE_STRING)
133                 self._categoryView.set_model(self._categoryModel)
134                 #colourize each row differently for easier reading
135                 self._categoryView.set_property('rules_hint', 1)
136
137                 #Populate the catagories list
138                 for key in unit_data.UNIT_CATEGORIES:
139                         iter = self._categoryModel.append()
140                         self._categoryModel.set(iter, 0, key)
141
142                 #--------- connections to GUI ----------------
143                 dic = {
144                         "on_exit_menu_activate": self._on_user_exit,
145                         "on_main_window_destroy": self._on_user_exit,
146                         "on_categoryView_select_row": self._on_click_category,
147                         "on_unitsView__on_click_unit_column": self._on_click_unit_column,
148                         "on_unitValue_changed": self._on_unit_value_changed,
149                         "on_previousUnitValue_changed": self._on_previous_unit_value_changed,
150                         "on_writeUnitsMenuItem_activate": self._on_user_write_units,
151                         "on_findButton_clicked": self._on_find_activate,
152                         "on_findEntry_activated": self._on_find_activate,
153                         "on_findEntry_changed": self._on_findEntry_changed,
154                         "on_aboutMenuItem_activate": self._on_about_clicked,
155                         "on_messagebox_ok_clicked": self.messagebox_ok_clicked,
156                         "on_clearSelectionMenuItem_activate": self._on_user_clear_selections,
157                         "on_unitsView_cursor_changed": self._on_click_unit,
158                         "on_unitsView_button_released": self._on_button_released,
159                         "on_shortlistcheck_toggled": self._on_shortlist_changed,
160                         "on_toggleShortList_activate": self._on_edit_shortlist,
161                 }
162                 widgets.signal_autoconnect(dic)
163
164                 self._mainWindow.set_title('gonvert- %s - Unit Conversion Utility' % constants.__version__)
165                 iconPath = pixmapspath + '/gonvert.png'
166                 if os.path.exists(iconPath):
167                         self._mainWindow.set_icon(gtk.gdk.pixbuf_new_from_file(iconPath))
168                 else:
169                         _moduleLogger.warn("Error: Could not find gonvert icon: %s" % iconPath)
170
171                 self._load_settings()
172
173         def _load_settings(self):
174                 #Restore window size from previously saved settings if it exists and is valid.
175                 windowDatPath = "/".join((constants._data_path_, "window.dat"))
176                 if os.path.exists(windowDatPath):
177                         #Retrieving previous window settings from ~/.gonvert/window.dat
178                         saved_window = pickle.load(open(windowDatPath, "r"))
179                         #If the 'size' has been stored, then extract size from saved_window.
180                         if 'size' in saved_window:
181                                 a, b = saved_window['size']
182                                 self._mainWindow.resize(a, b)
183                         else:
184                                 #Maximize if no previous size was found
185                                 #self._mainWindow.maximize()
186                                 pass
187                 else:
188                         #Maximize if no previous window.dat file was found
189                         #self._mainWindow.maximize()
190                         pass
191
192                 #Restore selections from previously saved settings if it exists and is valid.
193                 historical_catergory_found = False
194                 selectionsDatPath = "/".join((constants._data_path_, "selections.dat"))
195                 if os.path.exists(selectionsDatPath):
196                         #Retrieving previous selections from ~/.gonvert/selections.dat
197                         selections = pickle.load(open(selectionsDatPath, 'r'))
198                         #Restoring previous selections.
199                         #If the 'selected_unts' has been stored, then extract self._selected_units from selections.
200                         if 'selected_units' in selections:
201                                 self._selected_units = selections['selected_units']
202                         #Make sure that the 'self._selected_category' has been stored.
203                         if 'selected_category' in selections:
204                                 #Match an available category to the previously selected category.
205                                 for counter in range(len(unit_data.UNIT_CATEGORIES)):
206                                         if selections['selected_category'] == unit_data.UNIT_CATEGORIES[counter]:
207                                                 # Restore the previously selected category.
208                                                 self._categoryView.set_cursor(counter, self._categoryColumn, False)
209                                                 self._categoryView.grab_focus()
210                                 historical_catergory_found = True
211
212                 if not historical_catergory_found:
213                         print "Couldn't find saved category, using default."
214                         #If historical records were not kept then default to
215                         # put the focus on the first category
216                         self._categoryView.set_cursor(0, self._categoryColumn, False)
217                         self._categoryView.grab_focus()
218
219                 self.restore_units()
220
221         def _save_settings(self):
222                 """
223                 This routine saves the selections to a file, and
224                 should therefore only be called when exiting the program.
225
226                 Update selections dictionary which consists of the following keys:
227                 'self._selected_category': full name of selected category
228                 'self._selected_units': self._selected_units dictionary which contains:
229                 [categoryname: #1 displayed unit, #2 displayed unit]
230                 """
231                 #Determine the contents of the selected category row
232                 selected, iter = self._categoryView.get_selection().get_selected()
233                 self._selected_category = self._categoryModel.get_value(iter, 0)
234
235                 selections = {
236                         'selected_category': self._selected_category,
237                         'selected_units': self._selected_units
238                 }
239                 selectionsDatPath = "/".join((constants._data_path_, "selections.dat"))
240                 pickle.dump(selections, open(selectionsDatPath, 'w'))
241
242                 #Get last size of app and save it
243                 window_settings = {
244                         'size': self._mainWindow.get_size()
245                 }
246                 windowDatPath = "/".join((constants._data_path_, "window.dat"))
247                 pickle.dump(window_settings, open(windowDatPath, 'w'))
248
249         def _on_shortlist_changed(self, a):
250                 raise NotImplementedError("%s" % self._shortlistcheck.get_active())
251
252         def _on_edit_shortlist(self, a):
253                 raise NotImplementedError("%s" % self._toggleShortList.get_active())
254
255         def _on_user_clear_selections(self, a):
256                 selectionsDatPath = "/".join((constants._data_path_, "selections.dat"))
257                 os.remove(selectionsDatPath)
258                 self._selected_units = {}
259
260         def _on_user_exit(self, a):
261                 try:
262                         self._save_settings()
263                 finally:
264                         gtk.main_quit()
265
266         def _on_findEntry_changed(self, a):
267                 """
268                 Clear out find results since the user wants to look for something new
269                 """
270                 # switch to "new find" state
271                 self._find_result = []
272                 self._find_count = 0
273
274                 # Clear our user message
275                 self._findLabel.set_text('')
276
277         def _find_first(self):
278                 assert len(self._find_result) == 0
279                 assert self._find_count == 0
280                 findString = string.lower(string.strip(self._findEntry.get_text()))
281                 if not findString:
282                         return
283
284                 # Gather info on all the matching units from all categories
285                 for catIndex, category in enumerate(unit_data.UNIT_CATEGORIES):
286                         units = unit_data.get_units(category)
287                         for unitIndex, unit in enumerate(units):
288                                 loweredUnit = unit.lower()
289                                 if loweredUnit in findString or findString in loweredUnit:
290                                         self._find_result.append((category, unit, catIndex, unitIndex))
291
292                 if not self._find_result:
293                         return
294
295                 self._select_found_unit()
296
297         def _find_wrap_around(self):
298                 assert 0 < len(self._find_result)
299                 assert self._find_count + 1 == len(self._find_result)
300                 #select first result
301                 self._find_count = 0
302                 self._select_found_unit()
303
304         def _find_next(self):
305                 assert 0 < len(self._find_result)
306                 assert self._find_count + 1 < len(self._find_result)
307                 self._find_count += 1
308                 self._select_found_unit()
309
310         def _select_found_unit(self):
311                 assert 0 < len(self._find_result)
312                 #check if next find is in a new category (prevent category changes when unnecessary
313                 if self._selected_category != self._find_result[self._find_count][0]:
314                         self._categoryView.set_cursor(self._find_result[self._find_count][2], self._categoryColumn, False)
315                 self._unitsView.set_cursor(self._find_result[self._find_count][3], self._unitNameColumn, True)
316
317         def _on_find_activate(self, a):
318                 """
319                 check if 'new find' or 'last find' or 'next-find'
320
321                 new-find = run the find algorithm which also selects the first found unit
322                          = self._find_count = 0 and self._find_result = []
323
324                 last-find = restart from top again
325                           = self._find_count = len(self._find_result)
326
327                 next-find = continue to next found location
328                            = self._find_count = 0 and len(self._find_result)>0
329                 """
330                 if len(self._find_result) == 0:
331                         self._find_first()
332                 else:
333                         if self._find_count == len(self._find_result)-1:
334                                 self._find_wrap_around()
335                         else:
336                                 self._find_next()
337
338                 if not self._find_result:
339                         self._findLabel.set_text('Text not found')
340                 else:
341                         resultsLeft = len(self._find_result) - self._find_count - 1
342                         self._findLabel.set_text(
343                                 '%s result(s) left' % (resultsLeft, )
344                         )
345
346         def _on_click_unit_column(self, col):
347                 """
348                 Sort the contents of the col when the user clicks on the title.
349                 """
350                 #Determine which column requires sorting
351                 if col is self._unitNameColumn:
352                         selectedUnitColumn = 0
353                         self._unitNameColumn.set_sort_indicator(True)
354                         self._unitValueColumn.set_sort_indicator(False)
355                         self._unitSymbolColumn.set_sort_indicator(False)
356                         self._unitNameColumn.set_sort_order(not self._unit_sort_direction)
357                 elif col is self._unitValueColumn:
358                         selectedUnitColumn = 1
359                         self._unitNameColumn.set_sort_indicator(False)
360                         self._unitValueColumn.set_sort_indicator(True)
361                         self._unitSymbolColumn.set_sort_indicator(False)
362                         self._unitValueColumn.set_sort_order(not self._value_sort_direction)
363                 elif col is self._unitSymbolColumn:
364                         selectedUnitColumn = 2
365                         self._unitNameColumn.set_sort_indicator(False)
366                         self._unitValueColumn.set_sort_indicator(False)
367                         self._unitSymbolColumn.set_sort_indicator(True)
368                         self._unitSymbolColumn.set_sort_order(not self._units_sort_direction)
369                 else:
370                         assert False, "Unknown column: %s" % (col.get_title(), )
371
372                 #declare a spot to hold the sorted list
373                 sorted_list = []
374
375                 #point to the first row
376                 iter = self._unitModel.get_iter_first()
377                 row = 0
378
379                 while iter:
380                         #grab all text from columns for sorting
381
382                         #get the text from each column
383                         unit_text = self._unitModel.get_value(iter, 0)
384                         units_text = self._unitModel.get_value(iter, 2)
385
386                         #do not bother sorting if the value column is empty
387                         if self._unitModel.get_value(iter, 1) == '' and selectedUnitColumn == 1:
388                                 return
389
390                         #special sorting exceptions for ascii values (instead of float values)
391                         if self._selected_category == "Computer Numbers":
392                                 value_text = self._unitModel.get_value(iter, 1)
393                         else:
394                                 if self._unitModel.get_value(iter, 1) == None or self._unitModel.get_value(iter, 1) == '':
395                                         value_text = ''
396                                 else:
397                                         value_text = float(self._unitModel.get_value(iter, 1))
398
399                         if selectedUnitColumn == 0:
400                                 sorted_list.append((unit_text, value_text, units_text))
401                         elif selectedUnitColumn == 1:
402                                 sorted_list.append((value_text, unit_text, units_text))
403                         else:
404                                 sorted_list.append((units_text, value_text, unit_text))
405
406                         #point to the next row in the self._unitModel
407                         iter = self._unitModel.iter_next(iter)
408                         row = row+1
409
410                 #check if no calculations have been made yet (don't bother sorting)
411                 if row == 0:
412                         return
413                 else:
414                         if selectedUnitColumn == 0:
415                                 if not self._unit_sort_direction:
416                                         sorted_list.sort(lambda (x, xx, xxx), (y, yy, yyy): cmp(string.lower(x), string.lower(y)))
417                                         self._unit_sort_direction = True
418                                 else:
419                                         sorted_list.sort(lambda (x, xx, xxx), (y, yy, yyy): cmp(string.lower(y), string.lower(x)))
420                                         self._unit_sort_direction = False
421                         elif selectedUnitColumn == 1:
422                                 sorted_list.sort()
423                                 if not self._value_sort_direction:
424                                         self._value_sort_direction = True
425                                 else:
426                                         sorted_list.reverse()
427                                         self._value_sort_direction = False
428                         else:
429                                 if not self._units_sort_direction:
430                                         sorted_list.sort(lambda (x, xx, xxx), (y, yy, yyy): cmp(string.lower(x), string.lower(y)))
431                                         self._units_sort_direction = True
432                                 else:
433                                         sorted_list.sort(lambda (x, xx, xxx), (y, yy, yyy): cmp(string.lower(y), string.lower(x)))
434                                         self._units_sort_direction = False
435
436                         #Clear out the previous list of units
437                         self._unitModel = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
438                         self._unitsView.set_model(self._unitModel)
439
440                         #colourize each row differently for easier reading
441                         self._unitsView.set_property('rules_hint', 1)
442
443                         #Clear out the description
444                         text_model = gtk.TextBuffer(None)
445                         self._unitDescription.set_buffer(text_model)
446
447                         if selectedUnitColumn == 0:
448                                 for unit, value, units in sorted_list:
449                                         iter = self._unitModel.append()
450                                         self._unitModel.set(iter, 0, unit, 1, str(value), 2, units)
451                         elif selectedUnitColumn == 1:
452                                 for value, unit, units in sorted_list:
453                                         iter = self._unitModel.append()
454                                         self._unitModel.set(iter, 0, unit, 1, str(value), 2, units)
455                         else:
456                                 for units, value, unit in sorted_list:
457                                         iter = self._unitModel.append()
458                                         self._unitModel.set(iter, 0, unit, 1, str(value), 2, units)
459                 return
460
461         def _on_click_category(self, row):
462                 #Clear out the previous list of units
463                 self._unitModel = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
464                 self._unitsView.set_model(self._unitModel)
465
466                 #Colourize each row alternately for easier reading
467                 self._unitsView.set_property('rules_hint', 1)
468
469                 #Clear out the description
470                 text_model = gtk.TextBuffer(None)
471                 self._unitDescription.set_buffer(text_model)
472
473                 #Determine the contents of the selected category row
474                 selected, iter = row.get_selection().get_selected()
475
476                 self._selected_category = self._categoryModel.get_value(iter, 0)
477
478                 self._unit_sort_direction = False
479                 self._value_sort_direction = False
480                 self._units_sort_direction = False
481                 self._unitNameColumn.set_sort_indicator(False)
482                 self._unitValueColumn.set_sort_indicator(False)
483                 self._unitSymbolColumn.set_sort_indicator(False)
484
485                 self._unitDataInCategory = unit_data.UNIT_DESCRIPTIONS[selected.get_value(iter, 0)]
486                 keys = self._unitDataInCategory.keys()
487                 keys.sort()
488                 del keys[0] # do not display .base_unit description key
489
490                 #Fill up the units descriptions and clear the value cells
491                 for key in keys:
492                         iter = self._unitModel.append()
493                         self._unitModel.set(iter, 0, key, 1, '', 2, self._unitDataInCategory[key][1])
494
495                 self._unitName.set_text('')
496                 self._unitValue.set_text('')
497                 self._previousUnitName.set_text('')
498                 self._previousUnitValue.set_text('')
499                 self._unitSymbol.set_text('')
500                 self._previousUnitSymbol.set_text('')
501
502                 self.restore_units()
503
504         def restore_units(self):
505                 # Restore the previous historical settings of previously selected units in this newly selected category
506                 #Since category has just been clicked, the list will be sorted already.
507                 if self._selected_category in self._selected_units:
508                         if self._selected_units[self._selected_category][0]:
509                                 #self._selected_units[self._selected_category] = [selected_unit, self._selected_units[self._selected_category][0]]
510
511                                 units = unit_data.UNIT_DESCRIPTIONS[self._selected_category].keys()
512                                 units.sort()
513                                 del units[0] # do not display .base_unit description key
514
515                                 #Restore oldest selection first.
516                                 if self._selected_units[self._selected_category][1]:
517                                         unit_no = 0
518                                         for unit in units:
519                                                 if unit == self._selected_units[self._selected_category][1]:
520                                                         self._unitsView.set_cursor(unit_no, self._unitNameColumn, True)
521                                                 unit_no = unit_no+1
522
523                                 #Restore newest selection second.
524                                 unit_no = 0
525                                 for unit in units:
526                                         if unit == self._selected_units[self._selected_category][0]:
527                                                 self._unitsView.set_cursor(unit_no, self._unitNameColumn, True)
528                                         unit_no = unit_no+1
529
530                 # select the text so user can start typing right away
531                 self._unitValue.grab_focus()
532                 self._unitValue.select_region(0, -1)
533
534         def _on_button_released(self, row, a):
535                 self._on_click_unit(row)
536
537         def _on_click_unit(self, row):
538                 self._calcsuppress = True #suppress calculations
539
540                 #Determine the contents of the selected row.
541                 selected, iter = self._unitsView.get_selection().get_selected()
542
543                 selected_unit = selected.get_value(iter, 0)
544
545                 unit_spec = self._unitDataInCategory[selected_unit]
546
547                 #Clear out the description
548                 text_model = gtk.TextBuffer(None)
549                 self._unitDescription.set_buffer(text_model)
550
551                 enditer = text_model.get_end_iter()
552                 text_model.insert(enditer, unit_spec[2])
553
554                 if self._unitName.get_text() != selected_unit:
555                         self._previousUnitName.set_text(self._unitName.get_text())
556                         self._previousUnitValue.set_text(self._unitValue.get_text())
557                         if self._unitSymbol.get() == None:
558                                 self._previousUnitSymbol.set_text('')
559                         else:
560                                 self._previousUnitSymbol.set_text(self._unitSymbol.get())
561                 self._unitName.set_text(selected_unit)
562
563                 self._unitValue.set_text(selected.get_value(iter, 1))
564
565                 self._unitSymbol.set_text(unit_spec[1]) # put units into label text
566                 if self._unitValue.get_text() == '':
567                         if self._selected_category == "Computer Numbers":
568                                 self._unitValue.set_text("0")
569                         else:
570                                 self._unitValue.set_text("0.0")
571
572                 #For historical purposes, record this unit as the most recent one in this category.
573                 # Also, if a previous unit exists, then shift that previous unit to oldest unit.
574                 if self._selected_category in self._selected_units:
575                         if self._selected_units[self._selected_category][0]:
576                                 self._selected_units[self._selected_category] = [selected_unit, self._selected_units[self._selected_category][0]]
577                 else:
578                         self._selected_units[self._selected_category] = [selected_unit, '']
579
580                 # select the text so user can start typing right away
581                 self._unitValue.grab_focus()
582                 self._unitValue.select_region(0, -1)
583
584                 self._calcsuppress = False #enable calculations
585
586         def messagebox_ok_clicked(self, a):
587                 messagebox.hide()
588
589         def _on_user_write_units(self, a):
590                 ''"Write the list of categories and units to stdout for documentation purposes.''"
591                 messagebox_model = gtk.TextBuffer(None)
592                 messageboxtext.set_buffer(messagebox_model)
593                 messagebox_model.insert_at_cursor(_(u'The units are being written to stdout. You can capture this printout by starting gonvert from the command line as follows: \n$ gonvert > file.txt'), -1)
594                 messagebox.show()
595                 while gtk.events_pending():
596                         gtk.mainiteration(False)
597
598                 total_categories = 0
599                 total_units = 0
600                 print 'gonvert-%s%s' % (
601                         constants.__version__,
602                         _(u' - Unit Conversion Utility  - Convertible units listing: ')
603                 )
604                 for category_key in unit_data.UNIT_CATEGORIES:
605                         total_categories = total_categories + 1
606                         print category_key, ": "
607                         self._unitDataInCategory = unit_data.UNIT_DESCRIPTIONS[category_key]
608                         unit_keys = self._unitDataInCategory.keys()
609                         unit_keys.sort()
610                         del unit_keys[0] # do not display .base_unit description key
611                         for unit_key in unit_keys:
612                                 total_units = total_units + 1
613                                 print "\t", unit_key
614                 print total_categories, ' categories'
615                 print total_units, ' units'
616
617         def _on_unit_value_changed(self, a):
618                 if self._calcsuppress:
619                         #self._calcsuppress = False
620                         return
621                 # determine if value to be calculated is empty
622                 if self._selected_category == "Computer Numbers":
623                         if self._unitValue.get_text() == '':
624                                 value = '0'
625                         else:
626                                 value = self._unitValue.get_text()
627                 else:
628                         if self._unitValue.get_text() == '':
629                                 value = 0.0
630                         else:
631                                 value = float(self._unitValue.get_text())
632
633                 if self._unitName.get_text() != '':
634                         func, arg = self._unitDataInCategory[self._unitName.get_text()][0] #retrieve the conversion function and value from the selected unit
635                         base = apply(func.to_base, (value, arg, )) #determine the base unit value
636
637                         keys = self._unitDataInCategory.keys()
638                         keys.sort()
639                         del keys[0]
640                         row = 0
641
642                         #point to the first row
643                         iter = self._unitModel.get_iter_first()
644
645                         while iter:
646                                 #get the formula from the name at the row
647                                 func, arg = self._unitDataInCategory[self._unitModel.get_value(iter, 0)][0]
648
649                                 #set the result in the value column
650                                 self._unitModel.set(iter, 1, str(apply(func.from_base, (base, arg, ))))
651
652                                 #point to the next row in the self._unitModel
653                                 iter = self._unitModel.iter_next(iter)
654
655                         # if the second row has a unit then update its value
656                         if self._previousUnitName.get_text() != '':
657                                 self._calcsuppress = True
658                                 func, arg = self._unitDataInCategory[self._previousUnitName.get_text()][0]
659                                 self._previousUnitValue.set_text(str(apply(func.from_base, (base, arg, ))))
660                                 self._calcsuppress = False
661
662         def _on_previous_unit_value_changed(self, a):
663                 if self._calcsuppress == True:
664                         #self._calcsuppress = False
665                         return
666                 # determine if value to be calculated is empty
667                 if self._selected_category == "Computer Numbers":
668                         if self._previousUnitValue.get_text() == '':
669                                 value = '0'
670                         else:
671                                 value = self._previousUnitValue.get_text()
672                 else:
673                         if self._previousUnitValue.get_text() == '':
674                                 value = 0.0
675                         else:
676                                 value = float(self._previousUnitValue.get_text())
677
678                 if self._previousUnitName.get_text() != '':
679                         func, arg = self._unitDataInCategory[self._previousUnitName.get_text()][0] #retrieve the conversion function and value from the selected unit
680                         base = apply(func.to_base, (value, arg, )) #determine the base unit value
681
682                         keys = self._unitDataInCategory.keys()
683                         keys.sort()
684                         del keys[0]
685                         row = 0
686
687                         #point to the first row
688                         iter = self._unitModel.get_iter_first()
689
690                         while iter:
691                                 #get the formula from the name at the row
692                                 func, arg = self._unitDataInCategory[self._unitModel.get_value(iter, 0)][0]
693
694                                 #set the result in the value column
695                                 self._unitModel.set(iter, 1, str(apply(func.from_base, (base, arg, ))))
696
697                                 #point to the next row in the self._unitModel
698                                 iter = self._unitModel.iter_next(iter)
699
700                         # if the second row has a unit then update its value
701                         if self._unitName.get_text() != '':
702                                 self._calcsuppress = True
703                                 func, arg = self._unitDataInCategory[self._unitName.get_text()][0]
704                                 self._unitValue.set_text(str(apply(func.from_base, (base, arg, ))))
705                                 self._calcsuppress = False
706
707         def _on_about_clicked(self, a):
708                 dlg = gtk.AboutDialog()
709                 dlg.set_name(constants.__pretty_app_name__)
710                 dlg.set_version("%s-%d" % (constants.__version__, constants.__build__))
711                 dlg.set_copyright("Copyright 2009 - GPL")
712                 dlg.set_comments("")
713                 dlg.set_website("http://unihedron.com/projects/gonvert/gonvert.php")
714                 dlg.set_authors(["Anthony Tekatch <anthony@unihedron.com>", "Ed Page <edpage@byu.net>"])
715                 dlg.run()
716                 dlg.destroy()
717
718
719 def main():
720         logging.basicConfig(level = logging.DEBUG)
721         try:
722                 os.makedirs(constants._data_path_)
723         except OSError, e:
724                 if e.errno != 17:
725                         raise
726
727         gonvert = Gonvert()
728         gtk.main()
729
730
731 if __name__ == "__main__":
732         main()