source: projects/update-watch/branch/1.x/src/update-watch/FList.form @ 3778

Revision 3778, 1.0 KB checked in by kazutaka, 13 years ago (diff)

Vine 6向けに更新開始

Line 
1# Gambas Form File 2.0
2
3{ Form Form
4  MoveScaled(0,0,55,45)
5  Text = ("List of updates")
6  Icon = Picture["update-watch.png"]
7  Arrangement = Arrange.Vertical
8  Spacing = 8
9  Padding = 8
10  { hbxTop HBox
11    MoveScaled(1,0,53,8)
12    Spacing = 8
13    { pbxIcon PictureBox
14      MoveScaled(0,1,6,6)
15      Picture = Picture["update-watch-red.png"]
16    }
17    { tlbTitle TextLabel
18      MoveScaled(7,0,30,8)
19      Expand = True
20      Text = ("<big><b>Update found</b></big><br>\n<br>\nIt may includes security fixes.<br>\nPlease update immediately.")
21      Alignment = Align.TopLeft
22    }
23  }
24  { tvwPackage TreeView
25    MoveScaled(1,9,53,22)
26    Expand = True
27    Mode = Select.None
28  }
29  { hbxBottom HBox
30    MoveScaled(1,40,53,4)
31    Spacing = 8
32    { btnHelp Button
33      MoveScaled(1,0,10,4)
34      Text = ("&Help")
35    }
36    { Panel2 Panel
37      MoveScaled(16,0,2,4)
38      Expand = True
39    }
40    { btnUpgrade Button
41      MoveScaled(22,0,12,4)
42      Text = ("&Upgrade all")
43    }
44    { btnClose Button
45      MoveScaled(44,0,8,4)
46      Text = ("&Close")
47    }
48  }
49}
Note: See TracBrowser for help on using the repository browser.