509 lines
18 KiB
Python
509 lines
18 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import wx
|
|
import wx.gizmos
|
|
import wx.grid
|
|
import wx.propgrid as wxpg
|
|
import wx.lib.plot as wxplot
|
|
import wx.lib.agw.aui as aui
|
|
import gettext
|
|
import json
|
|
import os
|
|
# import wx.aui as aui
|
|
|
|
_ = gettext.gettext
|
|
|
|
ID_NEW = wx.NewId()
|
|
ID_SAVE = wx.NewId()
|
|
ID_OPEN = wx.NewId()
|
|
|
|
ID_TEST = wx.NewId()
|
|
ID_ADD_MODEL_ROOT = wx.NewId()
|
|
ID_ADD_MODEL_SELECTED = wx.NewId()
|
|
ID_DUPLICATE_MODEL = wx.NewId()
|
|
ID_DUPLICATE_TREE = wx.NewId()
|
|
ID_DELETE_MODEL = wx.NewId()
|
|
|
|
ID_PROCESS_MODEL = wx.NewId()
|
|
ID_STOP_MODEL = wx.NewId()
|
|
|
|
ID_SHOW_RESULT = wx.NewId()
|
|
|
|
ID_SHOW_PLOT = wx.NewId()
|
|
ID_ADD_PLOT = wx.NewId()
|
|
ID_ADD_CURVES = wx.NewId()
|
|
ID_ADD_MARKERS = wx.NewId()
|
|
|
|
ID_ENGLISH_LANG = wx.NewId()
|
|
ID_RUSSIAN_LANG = wx.NewId()
|
|
|
|
ID_ABOUT = wx.NewId()
|
|
|
|
ID_EXPORT_CSV = wx.NewId()
|
|
|
|
ID_SAVE_PLOT = wx.NewId()
|
|
|
|
class TreeListCtrl(wx.gizmos.TreeListCtrl):
|
|
def __iter__(self):
|
|
return TreeListCtrlIterator(self)
|
|
|
|
class TreeListCtrlIterator:
|
|
def __init__(self, owner):
|
|
self.owner = owner
|
|
self.item = self.owner.GetRootItem()
|
|
|
|
def __iter__(self):
|
|
return self
|
|
|
|
def next(self):
|
|
if not self.item.IsOk():
|
|
raise StopIteration
|
|
item = self.item
|
|
self.item = self.owner.GetNext(self.item)
|
|
return item
|
|
|
|
class Icons:
|
|
"""
|
|
Пустой класс для хранения идентификаторов иконок, чтобы к ним можно было
|
|
удобно обращаться:
|
|
icons = Icons()
|
|
icons.open = wxIcon(...)
|
|
"""
|
|
pass
|
|
|
|
class PropertyCtrl(wxpg.PropertyGrid):
|
|
|
|
def GetPosition(self):
|
|
return self.GetPanel().GetPosition()
|
|
|
|
def Clear(self):
|
|
wxpg.PropertyGrid.Clear(self)
|
|
|
|
class MainFrame(wx.Frame):
|
|
def __init__(self, parent):
|
|
wx.Frame.__init__ (self, parent, title = 'Opal', size = wx.Size(873,594))
|
|
|
|
self.settings = {}
|
|
self.LoadSettings()
|
|
|
|
lang = self.settings['locale']
|
|
if not lang:
|
|
locale = wx.Locale(wx.LANGUAGE_DEFAULT)
|
|
lang = locale.GetCanonicalName()
|
|
self.settings['locale'] = lang
|
|
Lang = gettext.translation('opal', './locale', languages=[lang], fallback=True)
|
|
Lang.install(unicode=True)
|
|
global _
|
|
_ = Lang.ugettext
|
|
self.lang = Lang
|
|
|
|
self.auimgr = aui.AuiManager()
|
|
self.auimgr.SetManagedWindow(self)
|
|
self.auimgr.GetArtProvider().SetMetric(aui.AUI_DOCKART_SASH_SIZE, 3)
|
|
|
|
self.SetSizeHintsSz(wx.DefaultSize, wx.DefaultSize)
|
|
|
|
self.ilist, self.icons = self.LoadIcons()
|
|
|
|
# Спецификации
|
|
|
|
self.m_specs = wx.TreeCtrl(self, size = (200, -1), style = wx.TR_DEFAULT_STYLE)
|
|
# self.m_specs.SetMinSize(wx.Size(200,-1))
|
|
|
|
self.auimgr.AddPane(self.m_specs,
|
|
aui.AuiPaneInfo().Name("m_specs").Left().Layer(1).CloseButton(False))
|
|
|
|
# Пользовательские модели
|
|
|
|
self.m_user_models = TreeListCtrl(self, size = (200, -1),
|
|
style = wx.TR_DEFAULT_STYLE | wx.TR_HIDE_ROOT
|
|
| wx.TR_FULL_ROW_HIGHLIGHT | wx.TR_ROW_LINES | wx.TR_MULTIPLE)
|
|
self.m_user_models.AddColumn(_("Model name"))
|
|
self.m_user_models.AddColumn(_("Status"))
|
|
self.m_user_models.AddColumn(_("Progress"))
|
|
self.m_user_models.AddColumn(_("Comment"))
|
|
self.m_user_models.SetMainColumn(0)
|
|
self.m_user_models.SetImageList(self.ilist)
|
|
|
|
self.auimgr.AddPane(self.m_user_models,
|
|
aui.AuiPaneInfo().Name("m_user_models").CenterPane().Position(1))
|
|
|
|
# Параметры модели
|
|
|
|
self.m_params = PropertyCtrl(self, size = (-1, 300))
|
|
|
|
self.auimgr.AddPane(self.m_params,
|
|
aui.AuiPaneInfo().Name("m_params").CloseButton(False).
|
|
CenterPane().Bottom().Position(2))
|
|
|
|
# Быстрые результаты
|
|
|
|
self.m_quick_result = PropertyCtrl(self, size = (200, -1))
|
|
|
|
self.auimgr.AddPane(self.m_quick_result,
|
|
aui.AuiPaneInfo().Name("m_quick_result").CloseButton(False).
|
|
Right().Position(1).Layer(1))
|
|
|
|
# Графики
|
|
|
|
self.m_plots = wx.TreeCtrl(self, size = (200, -1),
|
|
style = wx.TR_DEFAULT_STYLE | wx.TR_HIDE_ROOT | wx.TR_EDIT_LABELS)
|
|
self.m_plots.SetImageList(self.ilist)
|
|
|
|
self.auimgr.AddPane(self.m_plots,
|
|
aui.AuiPaneInfo().Name("m_plots").CloseButton(False).
|
|
Right().Position(2).Layer(1))
|
|
|
|
# Меню, панель инструментов и панель статуса
|
|
|
|
sbar = wx.StatusBar(self)
|
|
self.SetStatusBar(sbar)
|
|
|
|
self.SetMenuBar(self.BuildMenu())
|
|
|
|
self.BuildContextMenu()
|
|
|
|
self.BuildToolBar()
|
|
|
|
layout = self.settings['layout']
|
|
if layout:
|
|
self.auimgr.LoadPerspective(layout, False)
|
|
# print 'layout loaded'
|
|
|
|
self.auimgr.GetPane('m_specs').Caption(_("Templates"))
|
|
self.auimgr.GetPane('m_user_models').Caption(_("Models"))
|
|
self.auimgr.GetPane("m_params").Caption(_("Parameters"))
|
|
self.auimgr.GetPane("m_quick_result").Caption(_("Quick results"))
|
|
self.auimgr.GetPane("m_plots").Caption(_("Plots"))
|
|
|
|
self.auimgr.Update()
|
|
|
|
def LoadIcons(self):
|
|
icons = Icons()
|
|
ilist = wx.ImageList(16, 16)
|
|
|
|
icons.mready = ilist.Add(wx.Bitmap('share/model-ready.png'))
|
|
icons.mrun = ilist.Add(wx.Bitmap('share/model-run.png'))
|
|
icons.mcomplete = ilist.Add(wx.Bitmap('share/model-complete.png'))
|
|
icons.mstopped = ilist.Add(wx.Bitmap('share/model-stop.png'))
|
|
icons.mnoexec = ilist.Add(wx.Bitmap('share/model-no-exec.png'))
|
|
|
|
icons.porg = ilist.Add(wx.Bitmap('share/plot-org.png'))
|
|
icons.pline = ilist.Add(wx.Bitmap('share/plot-line.png'))
|
|
icons.pmarker = ilist.Add(wx.Bitmap('share/plot-marker.png'))
|
|
icons.phist = ilist.Add(wx.Bitmap('share/plot-histogram.png'))
|
|
|
|
return ilist, icons
|
|
|
|
def BuildMenu(self):
|
|
menubar = wx.MenuBar()
|
|
|
|
menu = wx.Menu()
|
|
menu.Append(ID_NEW, _("&New\tCtrl+N"))
|
|
menu.Append(ID_OPEN, _("&Open\tCtrl+O"))
|
|
menu.Append(ID_SAVE, _("&Save\tCtrl+S"))
|
|
menubar.Append(menu, _('&Project'))
|
|
|
|
menu = wx.Menu()
|
|
menu.Append(ID_ADD_MODEL_ROOT, _('Add model to root'))
|
|
menu.Append(ID_ADD_MODEL_SELECTED, _('Append model to selected'))
|
|
menu.AppendSeparator()
|
|
menu.Append(ID_DUPLICATE_MODEL, _("&Duplicate\tCtrl+D"))
|
|
menu.Append(ID_DUPLICATE_TREE, _("&Duplicate with subitems\tCtrl+Shift+D"))
|
|
menu.Append(ID_DELETE_MODEL, _('Delete\tCtrl+E'))
|
|
menu.AppendSeparator()
|
|
menu.Append(ID_TEST, _("&Test\tCtrl+T"))
|
|
menubar.Append(menu, _('&Model'))
|
|
|
|
menu = wx.Menu()
|
|
menu.Append(ID_PROCESS_MODEL, _('Process\tF5'))
|
|
menu.Append(ID_STOP_MODEL, _('Stop\tF6'))
|
|
#menu.AppendSeparator()
|
|
menubar.Append(menu, _('&Run'))
|
|
|
|
menu = wx.Menu()
|
|
menu.Append(ID_SHOW_RESULT, _('Show report\tF7'))
|
|
menu.AppendSeparator()
|
|
menu.Append(ID_SHOW_PLOT, _('Show plot\tF8'))
|
|
menu.Append(ID_ADD_PLOT, _('Add plot'))
|
|
#menu.Append(ID_ADD_LINE, _('Add line'))
|
|
menubar.Append(menu, _('&Result'))
|
|
|
|
menu = wx.Menu()
|
|
submenu = wx.Menu()
|
|
submenu.Append(ID_ENGLISH_LANG, _('English'))
|
|
submenu.Append(ID_RUSSIAN_LANG, _('Russian'))
|
|
menu.AppendSubMenu(submenu, _('Language'))
|
|
# menu.Append(ID_SHOW_PLOT, _('Layout'))
|
|
# menu.Append(ID_ADD_PLOT, _('Options'))
|
|
#menu.Append(ID_ADD_LINE, _('Add line'))
|
|
menubar.Append(menu, _('&Settings'))
|
|
|
|
|
|
menu = wx.Menu()
|
|
menu.Append(ID_ABOUT, _("&About\tF1"))
|
|
menubar.Append(menu, _('&Help'))
|
|
|
|
return menubar
|
|
|
|
def BuildContextMenu(self):
|
|
menu = wx.Menu()
|
|
menu.Append(ID_ADD_MODEL_ROOT, _('Add model to root'))
|
|
menu.Append(ID_ADD_MODEL_SELECTED, _('Add model to selected'))
|
|
self.m_specs.Bind(wx.EVT_CONTEXT_MENU,
|
|
lambda x: self.m_specs.PopupMenu(menu))
|
|
|
|
menu1 = wx.Menu()
|
|
menu1.Append(ID_ADD_PLOT, _('Add plot'))
|
|
menu1.AppendSeparator()
|
|
menu1.Append(ID_ADD_CURVES, _('Add curves'))
|
|
menu1.Append(ID_ADD_MARKERS, _('Add markers'))
|
|
self.m_plots.Bind(wx.EVT_CONTEXT_MENU,
|
|
lambda x: self.m_plots.PopupMenu(menu1))
|
|
|
|
menu2 = wx.Menu()
|
|
menu2.Append(ID_SHOW_RESULT, _('Show report'))
|
|
menu2.AppendSeparator()
|
|
menu2.Append(ID_ADD_CURVES, _('Add curves'))
|
|
menu2.Append(ID_ADD_MARKERS, _('Add markers'))
|
|
self.m_user_models.Bind(wx.EVT_TREE_ITEM_RIGHT_CLICK,
|
|
lambda x: self.m_user_models.PopupMenu(menu2))
|
|
|
|
def BuildToolBar(self):
|
|
tb1 = aui.AuiToolBar(self, -1, wx.DefaultPosition, wx.DefaultSize,
|
|
agwStyle = aui.AUI_TB_DEFAULT_STYLE | aui.AUI_TB_VERTICAL)
|
|
tb1.SetToolBitmapSize(wx.Size(16, 16))
|
|
|
|
tb1.AddSimpleTool(ID_ADD_MODEL_SELECTED, "model-new", wx.Bitmap('share/model-add.png'),
|
|
_('Add specification to selected model'))
|
|
tb1.AddSimpleTool(ID_DUPLICATE_MODEL, "model-dup", wx.Bitmap('share/model-dup.png'),
|
|
_('Duplicate selected model'))
|
|
tb1.AddSimpleTool(ID_DUPLICATE_TREE, "model-dup-tree", wx.Bitmap('share/model-dup-tree.png'),
|
|
_('Duplicate selected model and all submodels'))
|
|
tb1.AddSimpleTool(ID_DELETE_MODEL, "model-del", wx.Bitmap('share/model-delete.png'),
|
|
_('Delete selected model'))
|
|
tb1.AddSeparator()
|
|
tb1.AddSimpleTool(ID_PROCESS_MODEL, "model-go", wx.Bitmap('share/model-go.png'),
|
|
_('Start processing of selected models'))
|
|
tb1.AddSimpleTool(ID_STOP_MODEL, "model-stop", wx.Bitmap('share/model-cancel.png'),
|
|
_('Stop processing of selected models'))
|
|
tb1.AddSeparator()
|
|
tb1.AddSimpleTool(ID_SHOW_PLOT, "plot-quick", wx.Bitmap('share/plot-line.png'),
|
|
_('Show quick plot for selected model'))
|
|
tb1.AddSimpleTool(ID_SHOW_RESULT, "report-show", wx.Bitmap('share/report-show.png'),
|
|
_('Show result data and table for selected model'))
|
|
tb1.AddSeparator()
|
|
tb1.AddSimpleTool(ID_ABOUT, "app-about", wx.Bitmap('share/app-about.png'),
|
|
_('Show infomation about application'))
|
|
tb1.Realize()
|
|
|
|
self.auimgr.AddPane(tb1, aui.AuiPaneInfo().Name("tb1").Caption(_("Toolbar")).
|
|
ToolbarPane().Left().Floatable(False).Movable(False).Gripper(False))
|
|
|
|
def SaveSettings(self):
|
|
self.settings['layout'] = self.auimgr.SavePerspective()
|
|
with open('settings.conf', 'w') as f:
|
|
json.dump(self.settings, f, indent = 2)
|
|
|
|
def LoadSettings(self):
|
|
default = {
|
|
'workers': 2,
|
|
'conf': 'tasks.conf',
|
|
'locale': None,
|
|
'layout': None,
|
|
}
|
|
|
|
self.settings = default
|
|
if os.path.exists('settings.conf'):
|
|
with open('settings.conf', 'r') as f:
|
|
self.settings.update(json.load(f))
|
|
|
|
class SelectModelDialog(wx.Dialog):
|
|
def __init__(self, parent):
|
|
wx.Dialog.__init__(self, parent, -1, _('Select model'))
|
|
|
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
|
self.mlist = wx.ListCtrl(self, style = wx.LC_ICON | wx.LC_SINGLE_SEL)
|
|
sizer.Add(self.mlist, 1, wx.EXPAND | wx.ALL, 0)
|
|
|
|
buttonsSizer = self.CreateButtonSizer(wx.OK | wx.CANCEL)
|
|
sizer.Add(buttonsSizer, 0, wx.EXPAND | wx.ALL, 5)
|
|
|
|
self.SetSizer(sizer)
|
|
self.Layout()
|
|
self.Centre(wx.BOTH)
|
|
|
|
class ResultFrame(wx.Frame):
|
|
def __init__(self, parent, title):
|
|
wx.Frame.__init__ (self, parent, -1, title, size = wx.Size(500, 500),
|
|
style = wx.DEFAULT_FRAME_STYLE)
|
|
|
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
|
|
|
self.scalar = PropertyCtrl(self)
|
|
self.scalar.SetMinSize((-1, 200))
|
|
|
|
self.table = wx.grid.Grid(self)
|
|
self.table.SetDefaultCellAlignment(wx.ALIGN_CENTER, wx.ALIGN_CENTER)
|
|
self.table.DisableCellEditControl()
|
|
|
|
sizer.Add(self.scalar, 0, wx.EXPAND | wx.ALL, 1)
|
|
sizer.Add(self.table, 1, wx.EXPAND | wx.ALL, 1)
|
|
|
|
self.SetMenuBar(self.BuildMenu())
|
|
|
|
self.SetSizer(sizer)
|
|
self.Layout()
|
|
self.Centre(wx.BOTH)
|
|
|
|
def BuildMenu(self):
|
|
|
|
menubar = wx.MenuBar()
|
|
|
|
menu = wx.Menu()
|
|
menu.Append(ID_EXPORT_CSV, _('CSV\tCtrl+E'))
|
|
#menu.Append(wx.NewId(), 'TeX')
|
|
menubar.Append(menu, _('Export to'))
|
|
|
|
return menubar
|
|
|
|
class LineSelectDialog(wx.Dialog):
|
|
def __init__(self, parent, title):
|
|
wx.Dialog.__init__ (self, parent, -1, title, size = wx.Size(400, 300))
|
|
|
|
bSizer = wx.BoxSizer(wx.HORIZONTAL)
|
|
|
|
self.left = wx.ListBox(self)
|
|
self.right = wx.ListBox(self, style = wx.LB_EXTENDED)
|
|
|
|
bSizer.Add(self.left, 1, wx.EXPAND | wx.ALL, 2)
|
|
bSizer.Add(self.right, 1, wx.EXPAND | wx.ALL, 2)
|
|
|
|
buttonsSizer = self.CreateButtonSizer(wx.OK | wx.CANCEL)
|
|
|
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
|
sizer.Add(bSizer, 1, wx.EXPAND | wx.ALL, 0)
|
|
sizer.Add(buttonsSizer, 0, wx.EXPAND | wx.ALL, 5)
|
|
|
|
self.SetSizer(sizer)
|
|
self.Layout()
|
|
self.Centre(wx.BOTH)
|
|
|
|
class SizeSelector(wx.Dialog):
|
|
def __init__(self, parent):
|
|
wx.Dialog.__init__(self, parent, -1, _('Image size'), size = (200, 100))
|
|
|
|
bSizer = wx.BoxSizer(wx.HORIZONTAL)
|
|
|
|
self.width = wx.SpinCtrl(self)
|
|
self.width.SetRange(1, 5000)
|
|
self.width.SetValue(800)
|
|
bSizer.Add(self.width, 1, wx.EXPAND | wx.LEFT, 5)
|
|
|
|
self.height = wx.SpinCtrl(self)
|
|
self.height.SetRange(1, 5000)
|
|
self.height.SetValue(600)
|
|
bSizer.Add(self.height, 1, wx.EXPAND | wx.RIGHT, 5)
|
|
|
|
buttonsSizer = self.CreateButtonSizer(wx.OK | wx.CANCEL)
|
|
|
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
|
sizer.AddStretchSpacer(1)
|
|
sizer.Add(bSizer, 0, wx.EXPAND | wx.ALL, 0)
|
|
sizer.AddStretchSpacer(1)
|
|
sizer.Add(buttonsSizer, 0, wx.EXPAND | wx.ALL, 5)
|
|
|
|
self.SetSizer(sizer)
|
|
self.Layout()
|
|
self.Centre(wx.BOTH)
|
|
|
|
def GetValues(self):
|
|
return self.width.GetValue(), self.height.GetValue()
|
|
|
|
HandCursorImage = wx.Image('share/cursor-openhand.png')
|
|
GrabHandCursorImage = wx.Image('share/cursor-closedhand.png')
|
|
|
|
class PlotFrame(wx.Frame):
|
|
def __init__(self, parent, title):
|
|
wx.Frame.__init__ (self, parent, -1, title, size = wx.Size(600, 400))
|
|
|
|
self.plot = wxplot.PlotCanvas(self)
|
|
|
|
# стандартные курсоры компонента настолько монстроуозные,
|
|
# что их просто необходимо заменить на что-нибудь приличное
|
|
self.plot.canvas.SetCursor(wx.STANDARD_CURSOR)
|
|
self.plot.HandCursor = wx.CursorFromImage(HandCursorImage)
|
|
self.plot.GrabHandCursor = wx.CursorFromImage(GrabHandCursorImage)
|
|
self.plot.MagCursor = wx.StockCursor(wx.CURSOR_MAGNIFIER)
|
|
|
|
self.plot.SetGridColour(wx.Color(200, 200, 200))
|
|
self.plot.SetEnableGrid(True)
|
|
self.plot.SetEnableAntiAliasing(True)
|
|
self.plot.SetEnableHiRes(True)
|
|
self.plot.SetEnableLegend(True)
|
|
self.plot.SetEnableDrag(True)
|
|
|
|
self.Centre(wx.BOTH)
|
|
|
|
menubar = wx.MenuBar()
|
|
menu = wx.Menu()
|
|
menu.Append(ID_SAVE_PLOT, _('Save to file\tCtrl+S'))
|
|
menubar.Append(menu, _('Plot'))
|
|
self.SetMenuBar(menubar)
|
|
|
|
self.plot.canvas.Bind(wx.EVT_MOUSEWHEEL, self.OnZoom)
|
|
self.plot.canvas.Bind(wx.EVT_MIDDLE_DOWN, self.OnZoomReset)
|
|
self.plot.canvas.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown)
|
|
self.plot.canvas.Bind(wx.EVT_KEY_UP, self.OnKeyUp)
|
|
|
|
def OnZoom(self, event):
|
|
x = event.GetX()
|
|
y = event.GetY()
|
|
r = event.GetWheelRotation()
|
|
x, y = self.plot.PositionScreenToUser((x, y))
|
|
delta = 0.8/1.0 if r > 0 else 1.0/0.8
|
|
self.plot.Zoom((x, y), (delta, delta))
|
|
|
|
def OnZoomReset(self, event):
|
|
self.plot.Reset()
|
|
|
|
def OnKeyDown(self, event):
|
|
if event.GetKeyCode() == wx.WXK_SHIFT:
|
|
self.plot.SetEnableDrag(False)
|
|
self.plot.SetEnableZoom(True)
|
|
|
|
def OnKeyUp(self, event):
|
|
if event.GetKeyCode() == wx.WXK_SHIFT:
|
|
self.plot.SetEnableZoom(False)
|
|
self.plot.SetEnableDrag(True)
|
|
|
|
class AboutDialog(wx.Dialog):
|
|
def __init__(self, parent):
|
|
wx.Dialog.__init__(self, parent, title = _('About Opal'), size = (300, 330))
|
|
|
|
title = 'Opal System'
|
|
version = 'Aurora version'
|
|
copyr = '(c) 2012 Anton Vakhrushev'
|
|
|
|
self.SetBackgroundColour(wx.Colour(42, 42, 40))
|
|
|
|
img = wx.StaticBitmap(self)
|
|
img.SetBitmap(wx.Bitmap('share/opal_logo.png'))
|
|
|
|
st = wx.StaticText(self, -1, title,
|
|
pos = (15, 170), size = (270, 100))
|
|
st.SetForegroundColour(wx.Colour(245, 245, 0))
|
|
st.SetFont(wx.Font(24, wx.SWISS, wx.NORMAL, wx.NORMAL, False, "Verdana"));
|
|
|
|
st = wx.StaticText(self, -1, version,
|
|
pos = (25, 215), size = (250, 20))
|
|
st.SetForegroundColour(wx.Colour(240, 240, 240))
|
|
st.SetFont(wx.Font(12, wx.SWISS, wx.NORMAL, wx.NORMAL, False, "Verdana"));
|
|
|
|
st = wx.StaticText(self, -1, copyr,
|
|
pos = (25, 255), size = (250, 30))
|
|
st.SetForegroundColour(wx.Colour(240, 240, 240))
|
|
st.SetFont(wx.Font(10, wx.SWISS, wx.NORMAL, wx.NORMAL, False, "Verdana"));
|
|
|
|
self.Centre(wx.BOTH)
|