source: projects/vine-app-install/tags/1.0.2/src/vine-app-install/FMain.form @ 178

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

空のメッセージ

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  { hbxTop 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  { hbxBottom HBox
81    MoveScaled(1,57,77,4)
82    Spacing = 8
83    { btnHelp Button
84      MoveScaled(1,0,15,4)
85      Text = ("&Help")
86      Picture = Picture["icon:/24/help"]
87    }
88    { Panel1 Panel
89      MoveScaled(18,0,4,4)
90      Expand = True
91    }
92    { pgbProgress ProgressBar
93      MoveScaled(24,0,20,4)
94      Visible = False
95    }
96    { btnApply Button
97      MoveScaled(45,0,15,4)
98      Text = ("&Apply")
99      Picture = Picture["icon:/24/apply"]
100    }
101    { btnClose Button
102      MoveScaled(61,0,15,4)
103      Text = ("&Close")
104      Picture = Picture["icon:/24/close"]
105    }
106  }
107}
Note: See TracBrowser for help on using the repository browser.