diff --git a/gooey/gui/windows/basic_config_panel.py b/gooey/gui/windows/basic_config_panel.py deleted file mode 100644 index 488afd2..0000000 --- a/gooey/gui/windows/basic_config_panel.py +++ /dev/null @@ -1,52 +0,0 @@ -''' -Created on Dec 9, 2013 - -@author: Chris -''' - -import wx - -from gooey.gui.lang import i18n -from gooey.gui.option_reader import OptionReader - - -class BasicConfigPanel(wx.Panel, OptionReader): - def __init__(self, parent, **kwargs): - wx.Panel.__init__(self, parent, **kwargs) - - self.header_msg = None - self.cmd_textbox = None - - self._init_properties() - self._init_components() - self._do_layout() - - def _init_components(self): - self.header_msg = self._bold_static_text(i18n.translate('simple_config')) - self.cmd_textbox = wx.TextCtrl(self, -1, "") - - def _init_properties(self): - self.SetBackgroundColour('#F0F0F0') - - def _do_layout(self): - sizer = wx.BoxSizer(wx.VERTICAL) - sizer.AddSpacer(50) - sizer.Add(self.header_msg, 0, wx.LEFT, 20) - sizer.AddSpacer(10) - h_sizer = wx.BoxSizer(wx.HORIZONTAL) - h_sizer.Add(self.cmd_textbox, 1, wx.ALL | wx.EXPAND) - sizer.Add(h_sizer, 0, wx.LEFT | wx.RIGHT | wx.BOTTOM | wx.EXPAND, 20) - self.SetSizer(sizer) - - def _bold_static_text(self, text_label): - text = wx.StaticText(self, label=text_label) - font_size = text.GetFont().GetPointSize() - bold = wx.Font(font_size, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_BOLD) - text.SetFont(bold) - return text - - def GetOptions(self): - return self.cmd_textbox.GetValue() - - def RegisterController(self, controller): - pass