-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
53 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|
||
|