controls/ProjectPropertiesPanel.py
changeset 1782 5b6ad7a7fd9d
parent 1773 38fde37c3766
child 1881 091005ec69c4
equal deleted inserted replaced
1781:b112bfdde5cc 1782:5b6ad7a7fd9d
    23 # along with this program; if not, write to the Free Software
    23 # along with this program; if not, write to the Free Software
    24 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    24 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    25 
    25 
    26 import wx
    26 import wx
    27 
    27 
    28 #-------------------------------------------------------------------------------
    28 # -------------------------------------------------------------------------------
    29 #                                 Helpers
    29 #                                 Helpers
    30 #-------------------------------------------------------------------------------
    30 # -------------------------------------------------------------------------------
    31 
    31 
    32 REQUIRED_PARAMS = ["projectName", "productName", "productVersion", "companyName"]
    32 REQUIRED_PARAMS = ["projectName", "productName", "productVersion", "companyName"]
    33 
    33 
    34 [
    34 [
    35     TITLE, EDITORTOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU, PROJECTTREE,
    35     TITLE, EDITORTOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU, PROJECTTREE,
    36     POUINSTANCEVARIABLESPANEL, LIBRARYTREE, SCALING, PAGETITLES
    36     POUINSTANCEVARIABLESPANEL, LIBRARYTREE, SCALING, PAGETITLES
    37 ] = range(10)
    37 ] = range(10)
    38 
    38 
    39 #-------------------------------------------------------------------------------
    39 
       
    40 # -------------------------------------------------------------------------------
    40 #                       Project Properties Panel
    41 #                       Project Properties Panel
    41 #-------------------------------------------------------------------------------
    42 # -------------------------------------------------------------------------------
    42 
    43 
    43 
    44 
    44 class ProjectPropertiesPanel(wx.Notebook):
    45 class ProjectPropertiesPanel(wx.Notebook):
    45 
    46 
    46     def AddSizerParams(self, parent, sizer, params):
    47     def AddSizerParams(self, parent, sizer, params):