Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/waxy/demos/ProgressDialog.py
blob: 0847d4d6a7d247eeb5fa81f5022eb2b4a9a4fbb5 (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
#!/usr/bin/env python

from waxy import *
import time

class MainFrame(Frame):
    def Body(self):
        self.AddComponent(Button(self, "one", self.OnClick))
        self.AddComponent(Button(self, "two", self.OnClick2))
        self.AddComponent(Button(self, "three", self.OnClick3))
        self.Pack()
    
    def OnClick(self, event):
        # note: does not have a Cancel button, so it cannot be interrupted
        dlg = ProgressDialog(self, title="Progress Dialog Test", 
              message="Counting from 1 to 1000", maximum=1000, modal=0)
        dlg.Show()
        cancel = True
        for i in range(1000):
            if i % 100 == 0:
                keep_going,skip = dlg.Update(i, "Counting from " + str(i) + " to 1000")
            else:
                keep_going,skip = dlg.Update(i)
                
               
            time.sleep(.01)
            if not keep_going:
                break
        dlg.Destroy()
        
    def OnClick2(self, event):
        dlg = ProgressDialog(self, title="Progress Dialog Test", 
              message="Counting from 1 to 1000", maximum=1000, abort=1)
        dlg.Show()
        cancel = True
        for i in range(1000):
            if i % 100 == 0:
                cancel = dlg.Update(i, "Counting from " + str(i) + " to 1000")
            else:
                cancel = dlg.Update(i)
            time.sleep(.01)
            if not cancel[0]:
                break
        dlg.Destroy()

    def OnClick3(self, event):
        dlg = ProgressDialog(self, title="Progress Dialog Test", 
              message="Counting from 1 to 1000", maximum=1000, abort=1, 
              show_elapsed_time=1, 
              #show_estimated_time=1, 
              show_remaining_time=1)
        dlg.Show()
        cancel = True
        for i in range(1000):
            if i % 100 == 0:
                cancel = dlg.Update(i, "Counting from " + str(i) + " to 1000")
            else:
                cancel = dlg.Update(i)
            time.sleep(.01)
            if not cancel[0]:
                dlg2 = MessageDialog(self, title="Continue?", text="Do you want to abort?", yes_no=1)
                result = dlg2.ShowModal()
                if result == "yes":
                    dlg.Destroy()
                    break
                else:
                    dlg.Resume()
                dlg2.Destroy()
        if dlg:
            dlg.Destroy()
            
            

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