mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-22 15:26:37 +00:00
assets/images/logo[12].bmp: updated.
libroar/RoarWindowAbout.py: switch to wx.FlexGridSizer(). assets/text/TODO: updated.
This commit is contained in:
parent
345b2ede5e
commit
05da368849
Binary file not shown.
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 64 KiB |
Binary file not shown.
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 47 KiB |
@ -13,10 +13,8 @@
|
||||
c) text (edit, Unicode sets)
|
||||
11) GUI:
|
||||
a) Settings panel
|
||||
b) revisit About panel
|
||||
c) {de,in}crease cell size
|
||||
d) switch from wxPython to GTK
|
||||
e) {copy,cut,insert from,paste}
|
||||
f) {fix,reduce} flickering when viewRect > (0, 0)
|
||||
b) switch from wxPython to GTK
|
||||
c) {fix,reduce} flickering when viewRect > (0, 0)
|
||||
d) {copy,cut,insert from,paste}, {de,in}crease cell size
|
||||
|
||||
vim:ff=dos tw=0
|
||||
|
@ -17,24 +17,23 @@ class RoarWindowAbout(wx.Dialog):
|
||||
# __init__(self, parent, minSize=(320, 300), title="About roar")
|
||||
def __init__(self, parent, minSize=(320, 300), title="About roar"):
|
||||
super().__init__(parent, size=minSize, title=title)
|
||||
self.panel, self.sizer, self.sizerH = wx.Panel(self), wx.BoxSizer(wx.VERTICAL), [wx.BoxSizer(wx.HORIZONTAL), wx.BoxSizer(wx.HORIZONTAL), wx.BoxSizer(wx.HORIZONTAL)]
|
||||
self.panel, self.sizer, self.sizerV = wx.Panel(self), wx.FlexGridSizer(2, 2, 4, 4), wx.BoxSizer(wx.VERTICAL)
|
||||
|
||||
logoPathNames = glob(os.path.join("assets", "images", "logo*.bmp"))
|
||||
logoPathName = logoPathNames[random.randint(0, len(logoPathNames) - 1)]
|
||||
self.logo = wx.StaticBitmap(self.panel, -1, wx.Bitmap(logoPathName))
|
||||
self.sizerH[0].Add(self.logo, 0, wx.ALL | wx.CENTER, 4)
|
||||
|
||||
self.title = wx.StaticText(self.panel, label="roar -- mIRC art editor for Windows && Linux\nGit revision __ROAR_RELEASE_GIT_SHORT_REV__\nhttps://www.github.com/lalbornoz/roar/\nCopyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>", style=wx.ALIGN_CENTER)
|
||||
self.title.SetFont(wx.Font(8, wx.DEFAULT, wx.NORMAL, wx.NORMAL, underline=False))
|
||||
self.sizerH[1].Add(self.title, 0, wx.ALL | wx.CENTER, 3)
|
||||
|
||||
labelsText = ["&roar!", "&ROAR!", "&roaaaaaaar!", "&ROAROARAOR", "_&ROAR_"]
|
||||
labelText = labelsText[random.randint(0, len(labelsText) - 1)]
|
||||
self.buttonRoar = wx.Button(self.panel, label=labelText)
|
||||
self.buttonRoar.Bind(wx.EVT_BUTTON, self.onButtonRoar)
|
||||
self.sizerH[2].Add(self.buttonRoar, 0, wx.ALL | wx.CENTER, 2)
|
||||
self.sizerV.AddMany(((self.title, 0, wx.ALL | wx.CENTER, 4), (self.buttonRoar, 0, wx.ALL | wx.CENTER, 4),))
|
||||
|
||||
[self.sizer.Add(sizer, 0, wx.CENTER) for sizer in self.sizerH]
|
||||
self.sizer.AddMany((
|
||||
(self.logo, 0, wx.ALL | wx.CENTER, 4),
|
||||
(self.sizerV, 0, wx.ALL | wx.CENTER, 3),))
|
||||
self.panel.SetSizerAndFit(self.sizer)
|
||||
self.SetClientSize(self.sizer.ComputeFittingClientSize(self)); self.Center();
|
||||
self.SetTitle(title)
|
||||
|
Loading…
Reference in New Issue
Block a user