source: projects/vine-app-install/tags/0.5.0/FMain.form @ 59

Revision 59, 2.3 KB checked in by kazutaka, 15 years ago (diff)

show progress bar while reading package information

Line 
1# Gambas Form File 2.0
2
3{ Form Form
4  MoveScaled(0,0,102.5,75)
5  Enabled = False
6  Mouse = Mouse.Wait
7  Text = ("")
8  Icon = Picture["vine-app-install.png"]
9  Arrangement = Arrange.Vertical
10  Spacing = 8
11  Padding = 8
12  { HBox1 HBox
13    MoveScaled(1,1,75,4)
14    { cbxState ComboBox
15      MoveScaled(2,0,22.5,4)
16      Text = ("")
17      ReadOnly = True
18      List = [("(All)"), ("Installed"), ("Not installed"), ("Marked changes")]
19    }
20    { Panel2 Panel
21      MoveScaled(29,0,5,4)
22      Expand = True
23    }
24    { tbxSearch TextBox
25      MoveScaled(43,0,24,4)
26      Foreground = &HA0A0A0&
27      Text = ("Enter search term")
28    }
29    { btnSearch Button
30      MoveScaled(68,0,4,4)
31      Text = ("")
32      Picture = Picture["icon:/medium/find"]
33      Border = False
34    }
35  }
36  { hspMain HSplit
37    MoveScaled(1,7,78,47)
38    Expand = True
39    { lctCategory ListContainer
40      MoveScaled(2,6,12,37)
41      Background = Color.LightBackground
42      Mouse = Mouse.Pointing
43    }
44    { vspRight VSplit
45      MoveScaled(17,1,60,44)
46      { lctApps ListContainer
47        MoveScaled(2,3,57,17)
48        Expand = True
49      }
50      { svwDetail ScrollView
51        MoveScaled(2,21,57,21)
52        Visible = False
53        Expand = True
54        Arrangement = Arrange.Vertical
55        Spacing = 8
56        Padding = 8
57        ScrollBar = Scroll.Vertical
58        { HBox2 HBox
59          MoveScaled(1,1,53,18)
60          AutoResize = True
61          Spacing = 8
62          { pbxDetail PictureBox
63            MoveScaled(1,1,6,6)
64          }
65          { tlbAppDesc TextLabel
66            MoveScaled(9,1,27,16)
67            Expand = True
68            AutoResize = True
69            Text = ("")
70          }
71          { pbxThumb PictureBox
72            MoveScaled(35,1,15,11.25)
73          }
74        }
75      }
76    }
77  }
78  { HBox3 HBox
79    MoveScaled(1,57,77,4)
80    Spacing = 8
81    { btnHelp Button
82      MoveScaled(1,0,15,4)
83      Enabled = False
84      Text = ("&Help")
85      Picture = Picture["icon:/medium/help"]
86    }
87    { Panel1 Panel
88      MoveScaled(18,0,4,4)
89      Expand = True
90    }
91    { pgbProgress ProgressBar
92      MoveScaled(24,0,20,4)
93      Visible = False
94    }
95    { btnApply Button
96      MoveScaled(45,0,15,4)
97      Text = ("&Apply")
98      Picture = Picture["icon:/medium/apply"]
99    }
100    { btnClose Button
101      MoveScaled(61,0,15,4)
102      Text = ("&Close")
103      Picture = Picture["icon:/medium/close"]
104    }
105  }
106}
Note: See TracBrowser for help on using the repository browser.