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

Revision 3917, 1.4 KB checked in by kazutaka, 13 years ago (diff)
  • update check-reboot.lua to fix rpm lua segv when apt-get upgrade again (import from 1.2.0-6vl5. Thanks iwamoto-san and daisuke-san)
  • hide column header in list of updates
  • show install/download size in List of updates window
Line 
1# Gambas Form File 2.0
2
3{ Form Form
4  MoveScaled(0,0,63,44)
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 = ("<big><b>Reading package information...</b></big>")
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 = ("")
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.