-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathProgressBar.py
49 lines (37 loc) · 1.7 KB
/
ProgressBar.py
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
from delphifmx import *
class ProgressBarForm(Form):
def __init__(self, owner):
self.stylemanager = StyleManager(self)
self.stylemanager.SetStyleFromFile("Air.style")
self.SetProps(Caption = "Progress Bar Example", OnShow = self.__form_show, OnClose = self.__form_close)
self.progressbar = ProgressBar(self)
self.progressbar.SetProps(Parent = self, Max = 100, Min = 0, Value = 0, Align = "Center", Width = 260)
self.start_button = Button(self)
self.start_button.SetProps(Parent = self, Text = "Toggle Timer", Align = "Center", Margins = Bounds(RectF(0, 0, 0, -100)), OnClick = self.__button_click)
self.timer = Timer(self)
self.timer.SetProps(Parent = self, Enabled = False, OnTimer = self.__timer_event)
def __form_show(self, sender):
self.SetProps(Width = 640, Height = 480)
def __form_close(self, sender, action):
action = "caFree"
def __timer_event(self, sender):
if hasattr(self.progressbar, 'Value'):
if self.timer.Enabled == True:
if self.progressbar.Value == self.progressbar.Max:
self.progressbar.Value = self.progressbar.Min
else:
self.progressbar.Value += 5
def __button_click(self, sender):
if self.timer.Enabled == True:
self.timer.Enabled = False
else:
self.timer.Enabled = True
def main():
Application.Initialize()
Application.Title = "Progress Bar Delphi FMX"
Application.MainForm = ProgressBarForm(Application)
Application.MainForm.Show()
Application.Run()
Application.MainForm.Destroy()
if __name__ == '__main__':
main()