source: projects/rpminstall/trunk/src/rpminstall/FMain.form @ 172

Revision 172, 1.8 KB checked in by kazutaka, 15 years ago (diff)

ボタンサイズを自動調整するように変更
アイコンサイズを調整

Line 
1# Gambas Form File 2.0
2
3{ Form Form
4  MoveScaled(0,0,62.5,31)
5  Text = ("")
6  Icon = Picture["rpminstall.png"]
7  Arrangement = Arrange.Vertical
8  Spacing = 8
9  Padding = 8
10  { HBox3 HBox
11    MoveScaled(0,0,60,7)
12    Spacing = 8
13    { PictureBox1 PictureBox
14      MoveScaled(2,1,6,6)
15      Picture = Picture["rpminstall.png"]
16      Alignment = Align.Center
17    }
18    { TextLabel1 TextLabel
19      MoveScaled(10,1,47,7)
20      Expand = True
21      AutoResize = True
22      Text = ("<big><b>Installing RPM Packages</b></big><br>\n<br>\nFollowing files will be installed")
23      Alignment = Align.Normal
24    }
25  }
26  { HBox2 HBox
27    MoveScaled(0,8,60,18)
28    Expand = True
29    Spacing = 8
30    { lvwMain ListView
31      MoveScaled(1,2,53,14)
32      Drop = True
33      Expand = True
34      Mode = Select.Multiple
35    }
36    { VBox1 VBox
37      MoveScaled(55,1,4,16)
38      Spacing = 8
39      { btnAdd Button
40        MoveScaled(0,0,4,4)
41        ToolTip = ("Add files")
42        Text = ("")
43        Picture = Picture["icon:/small/add"]
44      }
45      { btnRemove Button
46        MoveScaled(0,5,4,4)
47        ToolTip = ("Remove files")
48        Text = ("")
49        Picture = Picture["icon:/small/remove"]
50      }
51      { Panel2 Panel
52        MoveScaled(0,10,4,4)
53        Expand = True
54      }
55    }
56  }
57  { Timer #Timer
58    #X = 0
59    #Y = 208
60    Enabled = True
61    Delay = 500
62  }
63  { hbxBottom HBox
64    MoveScaled(6,27,54,4)
65    Spacing = 8
66    { btnHelp Button
67      MoveScaled(2,0,15,4)
68      Text = ("&Help")
69      Picture = Picture["icon:/24/help"]
70    }
71    { Panel1 Panel
72      MoveScaled(19,0,2,4)
73      Expand = True
74    }
75    { btnCancel Button
76      MoveScaled(22,0,15,4)
77      Text = ("&Cancel")
78      Picture = Picture["icon:/24/cancel"]
79    }
80    { btnRun Button
81      MoveScaled(38,0,15,4)
82      Text = ("&Run")
83      Picture = Picture["icon:/24/apply"]
84      Default = True
85    }
86  }
87}
Note: See TracBrowser for help on using the repository browser.