projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
aui notebook pages can be moved around
[wxWidgets.git]
/
wxPython
/
demo
/
AboutBox.py
diff --git
a/wxPython/demo/AboutBox.py
b/wxPython/demo/AboutBox.py
index ee7582227407a6851be59a95196cbd8d2ed80234..fdec097b7c412b0407edca8a0f14db9b8f02457c 100644
(file)
--- a/
wxPython/demo/AboutBox.py
+++ b/
wxPython/demo/AboutBox.py
@@
-34,6
+34,8
@@
class TestPanel(wx.Panel):
"Jane Coder",
"Vippy the Mascot" ]
"Jane Coder",
"Vippy the Mascot" ]
+ info.License = wordwrap(licenseText, 500, wx.ClientDC(self))
+
# Then we call wx.AboutBox giving it that info object
wx.AboutBox(info)
# Then we call wx.AboutBox giving it that info object
wx.AboutBox(info)
@@
-61,6
+63,8
@@
generic wxWidgets version of the dialog.
"""
"""
+licenseText = "blah " * 250 + "\n\n" +"yadda " * 100
+
if __name__ == '__main__':
import sys,os
if __name__ == '__main__':
import sys,os