Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/waxy/demos/AboutBox.py
blob: 7cdea24d096409a2ea98a4985703d1114f6f076f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env python

from waxy import *

class MainFrame(Frame): # frame has a sizer built in

    def Body(self):

        self.CenterOnScreen()

        self.CreateStatusBar()
        self.SetStatusText("This is the statusbar")

        menubar = MenuBar(self)
        menu1 = Menu(self)
        menu1.Append("E&xit", self.CloseWindow, "Exit demo",hotkey="Ctrl+Q")
        menubar.Append(menu1, "&File")
        
        
        b = Button(self, "About Box1",self.About1,default=True)
        self.AddComponent(b)
        
        b = Button(self, "About Box2",self.About2,default=True)
        self.AddComponent(b)
        
        self.Pack()
        self.SetSize((640, 480))

        
    def About1(self,event):
        
        licenseText = "blah " * 250 + "\n\n" +"yadda " * 100
        
        AboutBox(self,name='Hello World',
                 version='1.2.3',
                 copyright="(C) 2006 Programmers and Coders Everywhere",
                 description=(
            "A \"hello world\" program is a software program that prints out "
            "\"Hello world!\" on a display device. It is used in many introductory "
            "tutorials for teaching a programming language."
            
            "\n\nSuch a program is typically one of the simplest programs possible "
            "in a computer language. A \"hello world\" program can be a useful "
            "sanity test to make sure that a language's compiler, development "
            "environment, and run-time environment are correctly installed."),
            url="http://en.wikipedia.org/wiki/Hello_world",
            webtitle="Hello World home page",
            developers=[ "Joe Programmer",
                            "Jane Coder",
                            "Vippy the Mascot" ],
            license=licenseText)
        
        
    def About2(self,event):
        
        licenseText = "blah " * 250 + "\n\n" +"yadda " * 100
        
        info={}
        info['name']='Hello World'
        info['version']='1.2.3'
        info['copyright']="(C) 2006 Programmers and Coders Everywhere"
        info['description']=(
            "A \"hello world\" program is a software program that prints out "
            "\"Hello world!\" on a display device. It is used in many introductory "
            "tutorials for teaching a programming language."
            
            "\n\nSuch a program is typically one of the simplest programs possible "
            "in a computer language. A \"hello world\" program can be a useful "
            "sanity test to make sure that a language's compiler, development "
            "environment, and run-time environment are correctly installed.")
        info['url']="http://en.wikipedia.org/wiki/Hello_world"
        info['webtitle']="Hello World home page"
        info['developers']=[ "Joe Programmer",
                            "Jane Coder",
                            "Vippy the Mascot" ]
        info['license']=licenseText
        
        
        AboutBox(self,info)
        
        
        

    def CloseWindow(self,event):
        self.Close()

if __name__=="__main__":
    app = Application(MainFrame, title="AboutBox")
    app.Run()