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
RevLine 
[3780]1# Gambas Form File 2.0
2
3{ Form Form
[3917]4  MoveScaled(0,0,63,44)
[3780]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)
[3798]12    AutoResize = True
[3780]13    Spacing = 8
14    { pbxIcon PictureBox
15      MoveScaled(0,1,6,6)
16    }
17    { tlbTitle TextLabel
[3798]18      MoveScaled(8,1,42,5)
[3780]19      Expand = True
[3798]20      AutoResize = True
[3917]21      Text = ("<big><b>Reading package information...</b></big>")
[3780]22      Alignment = Align.TopLeft
23    }
24  }
[3798]25  { cvwPackage ColumnView
[3818]26    MoveScaled(1,9,53,26)
[3780]27    Expand = True
28    Mode = Select.None
[3818]29    Sorted = True
30    Header = False
[3798]31    Resizable = True
[3780]32  }
[3818]33  { tlbInfo TextLabel
34    MoveScaled(1,36,53,2)
35    AutoResize = True
[3917]36    Text = ("")
[3818]37    Alignment = Align.Normal
38  }
[3780]39  { hbxBottom HBox
[3818]40    MoveScaled(1,39,53,4)
[3780]41    Spacing = 8
42    { btnHelp Button
[3798]43      MoveScaled(0,0,5,4)
[3780]44      Text = ("&Help")
45    }
46    { Panel2 Panel
[3798]47      MoveScaled(6,0,1,4)
[3780]48      Expand = True
49    }
50    { btnUpgrade Button
[3798]51      MoveScaled(8,0,9,4)
52      Visible = False
[3780]53      Text = ("&Upgrade all")
54    }
[3798]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    }
[3780]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.