source: projects/vine-app-install/tags/0.5.2/FMain.form @ 99

Revision 99, 2.4 KB checked in by kazutaka, 15 years ago (diff)

fix icon size of buttons

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