Source code for usf.screens.configure

################################################################################
# copyright 2009 Gabriel Pettier <gabriel.pettier@gmail.com>                   #
#                                                                              #
# This file is part of Ultimate Smash Friends.                                 #
#                                                                              #
# Ultimate Smash Friends 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 3 of the License, or (at your   #
# option) any later version.                                                   #
#                                                                              #
# Ultimate Smash Friends 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 #
# Ultimate Smash Friends.  If not, see <http://www.gnu.org/licenses/>.         #
################################################################################

'''
The Base Configuration screen, show buttons to other configuration screens.

'''

from usf.screens.screen import Screen

from usf.widgets.box import VBox
from usf.widgets.button import Button

from usf.translation import _

[docs]class Configure(Screen):
[docs] def init(self): self.add(VBox()) self.name = _("configure") #I18N:option screen self.widget.add(Button(_('Audio'))) self.widget.add(Button(_('Display'))) self.widget.add(Button(_('Keyboard'))) self.widget.add(Button(_('Back')), margin=100)
[docs] def callback(self, action): if action.text == _('Audio'): return {'goto': 'sound'} if action.text == _('Display'): return {'goto': 'display'} if action.text == _('Keyboard'): return {'goto': 'keyboard'} if action.text == _('Back'): return {'goto': 'back'}