source: projects/update-watch/tags/2.0.0/src/update-watch/FList.form @ 4265

Revision 4265, 1.4 KB checked in by kazutaka, 13 years ago (diff)

update to 1.9.3
fix fatal error when creating list of updated packages

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      Picture = Picture["icon:/48/refresh"]
17    }
18    { tlbTitle TextLabel
19      MoveScaled(8,1,42,5)
20      Expand = True
21      AutoResize = True
22      Text = ("Reading package information...")
23      Alignment = Align.Normal
24    }
25  }
26  { cvwPackage ColumnView
27    MoveScaled(1,9,53,26)
28    Enabled = False
29    Expand = True
30    Mode = Select.None
31    Sorted = True
32    Header = False
33    Resizable = True
34  }
35  { tlbInfo TextLabel
36    MoveScaled(1,36,53,2)
37    AutoResize = True
38    Text = ("")
39    Alignment = Align.Normal
40  }
41  { hbxBottom HBox
42    MoveScaled(1,39,53,4)
43    Spacing = 8
44    { btnHelp Button
45      MoveScaled(0,0,5,4)
46      Text = ("&Help")
47    }
48    { Panel2 Panel
49      MoveScaled(6,0,1,4)
50      Expand = True
51    }
52    { btnUpgrade Button
53      MoveScaled(8,0,9,4)
54      Visible = False
55      Text = ("&Upgrade all")
56    }
57    { btnRun Button
58      MoveScaled(18,0,9,4)
59      Visible = False
60      Text = ("&Run package manager")
61    }
62    { btnReboot Button
63      MoveScaled(28,0,9,4)
64      Visible = False
65      Text = ("&Reboot now")
66    }
67    { btnClose Button
68      MoveScaled(44,0,8,4)
69      Text = ("&Close")
70    }
71  }
72}
Note: See TracBrowser for help on using the repository browser.