mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-01 13:26:38 +00:00
968e7d45c5
libroar/RoarWindowAbout.py: switch to wx.FlexGridSizer(). assets/text/TODO: updated.
49 lines
2.3 KiB
Python
49 lines
2.3 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# RoarWindowAbout.py
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
#
|
|
|
|
from glob import glob
|
|
import os, random, wx, wx.adv
|
|
|
|
class RoarWindowAbout(wx.Dialog):
|
|
# {{{ onButtonRoar(self, event)
|
|
def onButtonRoar(self, event):
|
|
self.Destroy()
|
|
# }}}
|
|
|
|
#
|
|
# __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.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.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))
|
|
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.sizerV.AddMany(((self.title, 0, wx.ALL | wx.CENTER, 4), (self.buttonRoar, 0, wx.ALL | wx.CENTER, 4),))
|
|
|
|
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)
|
|
|
|
soundBitePathNames = glob(os.path.join("assets", "audio", "roar*.wav"))
|
|
soundBitePathName = soundBitePathNames[random.randint(0, len(logoPathNames) - 1)]
|
|
self.soundBite = wx.adv.Sound(soundBitePathName)
|
|
if self.soundBite.IsOk():
|
|
self.soundBite.Play(wx.adv.SOUND_ASYNC)
|
|
self.ShowModal()
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|