source: projects/vine-app-install/trunk/src/vine-app-install/FMain.form @ 442

Revision 442, 3.0 KB checked in by kazutaka, 14 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 = ("Install or remove applications")
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,8,78,48)
40    Expand = True
41    { lctCategory ListContainer
42      MoveScaled(2,7,12,37)
43      Background = Color.LightBackground
44      Mouse = Mouse.Pointing
45    }
46    { vspRight VSplit
47      MoveScaled(17,1,60,46)
48      { lctApps ListContainer
49        MoveScaled(2,3,57,17)
50        Expand = True
51      }
52      { svwDetail ScrollView
53        MoveScaled(2,21,57,24)
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,21)
62          AutoResize = True
63          Spacing = 8
64          { pbxDetail PictureBox
65            MoveScaled(2,1,6,6)
66          }
67          { tlbAppDesc TextLabel
68            MoveScaled(9,4,27,16)
69            Expand = True
70            AutoResize = True
71            Text = ("")
72          }
73          { VBox1 VBox
74            MoveScaled(37,2,15,17)
75            Spacing = 4
76            { pbxThumb PictureBox
77              MoveScaled(0,0,15,11.25)
78            }
79            { btnThumb Button
80              MoveScaled(1,13,14,3)
81              Font = Font["Underline,-2"]
82              Foreground = &H0000FF&
83              Text = ("Large image")
84              Border = False
85            }
86          }
87        }
88      }
89    }
90  }
91  { hbxBottom HBox
92    MoveScaled(1,57,90,4)
93    Spacing = 8
94    { btnHelp Button
95      MoveScaled(1,0,9,4)
96      Text = ("&Help")
97      Picture = Picture["icon:/24/help"]
98    }
99    { btnSwitch Button
100      MoveScaled(11,0,11,4)
101      ToolTip = ("Exit 'add or remove applications' and run synaptic package manager.\nTo manage all packages installed on this system, you should use synaptic package manager.")
102      Text = ("&Switch")
103      Picture = Picture["synaptic-24x24.png"]
104    }
105    { Panel1 Panel
106      MoveScaled(34,0,2,4)
107      Expand = True
108    }
109    { pgbProgress ProgressBar
110      MoveScaled(42,0,20,4)
111      Visible = False
112    }
113    { btnApply Button
114      MoveScaled(64,0,11,4)
115      Text = ("&Apply")
116      Picture = Picture["icon:/24/apply"]
117    }
118    { btnClose Button
119      MoveScaled(77,0,10,4)
120      Text = ("&Close")
121      Picture = Picture["icon:/24/close"]
122    }
123  }
124}
Note: See TracBrowser for help on using the repository browser.