source: projects/update-watch/trunk/src/update-watch/FList.form @ 3818

Revision 3818, 1.6 KB checked in by kazutaka, 13 years ago (diff)

lua script で apt が segv る問題への対応を反映+Trunk の内容を branch/1.x にも反映

Line 
1# Gambas Form File 2.0
2
3{ Form Form
4  MoveScaled(0,0,65,50)
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    AutoResize = True
13    Spacing = 8
14    { pbxIcon PictureBox
15      MoveScaled(0,1,6,6)
16    }
17    { tlbTitle TextLabel
18      MoveScaled(8,1,42,5)
19      Expand = True
20      AutoResize = True
21      Text = ("")
22      Alignment = Align.TopLeft
23    }
24  }
25  { cvwPackage ColumnView
26    MoveScaled(1,9,53,26)
27    Expand = True
28    Mode = Select.None
29    Sorted = True
30    Header = False
31    Resizable = True
32  }
33  { tlbInfo TextLabel
34    MoveScaled(1,36,53,2)
35    AutoResize = True
36    Text = ("<small>\xE7\xB7\x8F\xE3\x83\x80\xE3\x82\xA6\xE3\x83\xB3\xE3\x83\xAD\xE3\x83\xBC\xE3\x83\x89\xE3\x82\xB5\xE3\x82\xA4\xE3\x82\xBA: 3.4MB&nbsp;(\xE3\x82\xA4\xE3\x83\xB3\xE3\x82\xB9\xE3\x83\x88\xE3\x83\xBC\xE3\x83\xAB\xE5\xBE\x8C\xE3\x81\xAB0.5MB\xE3\x82\x92\xE6\xB6\x88\xE8\xB2\xBB)</small>")
37    Alignment = Align.Normal
38  }
39  { hbxBottom HBox
40    MoveScaled(1,39,53,4)
41    Spacing = 8
42    { btnHelp Button
43      MoveScaled(0,0,5,4)
44      Text = ("&Help")
45    }
46    { Panel2 Panel
47      MoveScaled(6,0,1,4)
48      Expand = True
49    }
50    { btnUpgrade Button
51      MoveScaled(8,0,9,4)
52      Visible = False
53      Text = ("&Upgrade all")
54    }
55    { btnRun Button
56      MoveScaled(18,0,9,4)
57      Visible = False
58      Text = ("&Run package manager")
59    }
60    { btnReboot Button
61      MoveScaled(28,0,9,4)
62      Visible = False
63      Text = ("&Reboot now")
64    }
65    { btnClose Button
66      MoveScaled(44,0,8,4)
67      Text = ("&Close")
68    }
69  }
70}
Note: See TracBrowser for help on using the repository browser.