Geography and Gtk3 : better options popup display.

svn: r20418
This commit is contained in:
Serge Noiraud
2012-09-19 14:10:56 +00:00
parent 7b9465098f
commit 77e8bee449
5 changed files with 16 additions and 16 deletions

View File

@@ -957,7 +957,7 @@ class GeoGraphyView(OsmGps, NavigationView):
table.set_border_width(12) table.set_border_width(12)
table.set_col_spacings(6) table.set_col_spacings(6)
table.set_row_spacings(6) table.set_row_spacings(6)
configdialog.add_text(table, _('Nothing for this view.'), 1) configdialog.add_text(table, _('Nothing for this view.'), 0)
return _('Specific parameters'), table return _('Specific parameters'), table
def map_options(self, configdialog): def map_options(self, configdialog):
@@ -976,21 +976,21 @@ class GeoGraphyView(OsmGps, NavigationView):
table.set_row_spacings(6) table.set_row_spacings(6)
configdialog.add_text(table, configdialog.add_text(table,
_('Where to save the tiles for offline mode.'), _('Where to save the tiles for offline mode.'),
1) 0, line_wrap=False)
configdialog.add_entry(table, '', configdialog.add_entry(table, '',
2, 'geography.path') 1, 'geography.path')
configdialog.add_text(table, configdialog.add_text(table,
_('If you have no more space in your file system\n' _('If you have no more space in your file system. '
'You can remove all tiles placed in the above path.\n' 'You can remove all tiles placed in the above path.\n'
'Be careful! If you have no internet, you\'ll get no map.'), 'Be careful! If you have no internet, you\'ll get no map.'),
3) 2, line_wrap=False)
configdialog.add_slider(table, configdialog.add_slider(table,
_('Zoom used when centering'), _('Zoom used when centering'),
4, 'geography.zoom_when_center', 3, 'geography.zoom_when_center',
(2, 16)) (2, 16))
configdialog.add_slider(table, configdialog.add_slider(table,
_('The maximum number of places to show'), _('The maximum number of places to show'),
5, 'geography.max_places', 4, 'geography.max_places',
(1000, 10000)) (1000, 10000))
# there is no button. I need to found a solution for this. # there is no button. I need to found a solution for this.
# it can be very dangerous ! if someone put / in geography.path ... # it can be very dangerous ! if someone put / in geography.path ...

View File

@@ -518,7 +518,7 @@ class GeoClose(GeoGraphyView):
'The value 9 means about 42 miles or 67 kms.\n' 'The value 9 means about 42 miles or 67 kms.\n'
'The value 1 means about 4.6 miles or 7.5 kms.\n' 'The value 1 means about 4.6 miles or 7.5 kms.\n'
'The value is in tenth of degree.'), 'The value is in tenth of degree.'),
1) 1, line_wrap=False)
self.config_meeting_slider = configdialog.add_slider(table, self.config_meeting_slider = configdialog.add_slider(table,
"", "",
2, 'geography.maximum_meeting_zone', 2, 'geography.maximum_meeting_zone',

View File

@@ -707,7 +707,7 @@ class GeoFamClose(GeoGraphyView):
'The value 9 means about 42 miles or 67 kms.\n' 'The value 9 means about 42 miles or 67 kms.\n'
'The value 1 means about 4.6 miles or 7.5 kms.\n' 'The value 1 means about 4.6 miles or 7.5 kms.\n'
'The value is in tenth of degree.'), 'The value is in tenth of degree.'),
1) 1, line_wrap=False)
self.config_meeting_slider = configdialog.add_slider(table, self.config_meeting_slider = configdialog.add_slider(table,
"", "",
2, 'geography.maximum_meeting_zone', 2, 'geography.maximum_meeting_zone',

View File

@@ -635,15 +635,15 @@ class GeoMoves(GeoGraphyView):
table.set_row_spacings(6) table.set_row_spacings(6)
configdialog.add_text(table, configdialog.add_text(table,
_('The maximum number of generations.\n'), _('The maximum number of generations.\n'),
1) 1, line_wrap=False)
self.max_generations = configdialog.add_slider(table, configdialog.add_slider(table,
"", "",
2, 'geography.maximum_generations', 2, 'geography.maximum_generations',
(1, 20)) (1, 20))
configdialog.add_text(table, configdialog.add_text(table,
_('Time in milliseconds between drawing two generations.\n'), _('Time in milliseconds between drawing two generations.\n'),
3) 3, line_wrap=False)
self.max_generations = configdialog.add_slider(table, configdialog.add_slider(table,
"", "",
4, 'geography.generation_interval', 4, 'geography.generation_interval',
(500, 3000)) (500, 3000))

View File

@@ -517,14 +517,14 @@ class GeoPerson(GeoGraphyView):
table.set_row_spacings(6) table.set_row_spacings(6)
configdialog.add_text(table, configdialog.add_text(table,
_('Animation speed in milliseconds (big value means slower)'), _('Animation speed in milliseconds (big value means slower)'),
1) 1, line_wrap=False)
configdialog.add_slider(table, configdialog.add_slider(table,
"", "",
2, 'geography.speed', 2, 'geography.speed',
(100, 1000)) (100, 1000))
configdialog.add_text(table, configdialog.add_text(table,
_('How many steps between two markers when we are on large move ?'), _('How many steps between two markers when we are on large move ?'),
3) 3, line_wrap=False)
configdialog.add_slider(table, configdialog.add_slider(table,
"", "",
4, 'geography.steps', 4, 'geography.steps',
@@ -532,7 +532,7 @@ class GeoPerson(GeoGraphyView):
configdialog.add_text(table, configdialog.add_text(table,
_('The minimum latitude/longitude to select large move.\n' _('The minimum latitude/longitude to select large move.\n'
'The value is in tenth of degree.'), 'The value is in tenth of degree.'),
5) 5, line_wrap=False)
configdialog.add_slider(table, configdialog.add_slider(table,
"", "",
6, 'geography.maximum_lon_lat', 6, 'geography.maximum_lon_lat',