From cc22c290c759b2f47eaaf3623e9f9fb15326349e Mon Sep 17 00:00:00 2001 From: WilliamLiu <1476879092@qq.com> Date: Thu, 20 Aug 2020 16:14:26 +0800 Subject: [PATCH] 2.02 --- about_gui.py | 97 ++++++++++++++++++++++++++++------------------------ 1 file changed, 53 insertions(+), 44 deletions(-) diff --git a/about_gui.py b/about_gui.py index 8163605..b409c13 100644 --- a/about_gui.py +++ b/about_gui.py @@ -1,44 +1,53 @@ -# -*- coding: utf-8 -*- - -########################################################################### -# Python code generated with wxFormBuilder (version Oct 26 2018) -# http://www.wxformbuilder.org/ -## -# PLEASE DO *NOT* EDIT THIS FILE! -########################################################################### - -import wx -import wx.xrc -import wx.richtext -import wx.adv - -########################################################################### -# Class AboutGui -########################################################################### - - -class AboutGui (wx.Frame): - - def __init__(self, parent): - wx.Frame.__init__(self, parent, id=wx.ID_ANY, title=u"About", pos=wx.DefaultPosition, size=wx.Size( - 490, 314), style=wx.DEFAULT_FRAME_STYLE | wx.TAB_TRAVERSAL) - - self.SetSizeHints(wx.DefaultSize, wx.DefaultSize) - - bSizer2 = wx.BoxSizer(wx.VERTICAL) - - self.about_txt = wx.richtext.RichTextCtrl( - self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 | wx.VSCROLL | wx.HSCROLL | wx.NO_BORDER | wx.WANTS_CHARS) - bSizer2.Add(self.about_txt, 1, wx.EXPAND | wx.ALL, 5) - - self.m_hyperlink1 = wx.adv.HyperlinkCtrl( - self, wx.ID_ANY, u"Github", u"https://github.com/nachifur/Mulimg_viewer", wx.DefaultPosition, wx.DefaultSize, wx.adv.HL_DEFAULT_STYLE) - bSizer2.Add(self.m_hyperlink1, 0, wx.ALL, 5) - - self.SetSizer(bSizer2) - self.Layout() - - self.Centre(wx.BOTH) - - def __del__(self): - pass +# -*- coding: utf-8 -*- + +########################################################################### +## Python code generated with wxFormBuilder (version Oct 26 2018) +## http://www.wxformbuilder.org/ +## +## PLEASE DO *NOT* EDIT THIS FILE! +########################################################################### + +import wx +import wx.xrc +import wx.richtext +import wx.adv + +########################################################################### +## Class AboutGui +########################################################################### + +class AboutGui ( wx.Frame ): + + def __init__( self, parent ): + wx.Frame.__init__ ( self, parent, id = wx.ID_ANY, title = u"About", pos = wx.DefaultPosition, size = wx.Size( 490,350 ), style = wx.DEFAULT_FRAME_STYLE|wx.TAB_TRAVERSAL ) + + self.SetSizeHints( wx.DefaultSize, wx.DefaultSize ) + + fgSizer1 = wx.FlexGridSizer( 0, 1, 0, 0 ) + fgSizer1.SetFlexibleDirection( wx.BOTH ) + fgSizer1.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.about_txt = wx.richtext.RichTextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.Size( 490,280 ), 0|wx.VSCROLL|wx.HSCROLL|wx.NO_BORDER|wx.WANTS_CHARS ) + fgSizer1.Add( self.about_txt, 1, wx.EXPAND |wx.ALL, 5 ) + + wSizer1 = wx.WrapSizer( wx.HORIZONTAL, wx.WRAPSIZER_DEFAULT_FLAGS ) + + self.m_hyperlink1 = wx.adv.HyperlinkCtrl( self, wx.ID_ANY, u"Github", u"https://github.com/nachifur/Mulimg_viewer", wx.DefaultPosition, wx.DefaultSize, wx.adv.HL_DEFAULT_STYLE ) + wSizer1.Add( self.m_hyperlink1, 0, wx.ALL, 5 ) + + self.m_hyperlink2 = wx.adv.HyperlinkCtrl( self, wx.ID_ANY, u"License", u"https://github.com/nachifur/Mulimg_viewer/blob/master/LICENSE", wx.DefaultPosition, wx.DefaultSize, wx.adv.HL_DEFAULT_STYLE ) + wSizer1.Add( self.m_hyperlink2, 0, wx.ALL, 5 ) + + + fgSizer1.Add( wSizer1, 1, wx.EXPAND, 5 ) + + + self.SetSizer( fgSizer1 ) + self.Layout() + + self.Centre( wx.BOTH ) + + def __del__( self ): + pass + +