diff options
Diffstat (limited to 'OpenGridServices.Manager/OpenGridServices.Manager/gtk-gui/ConnectToGridServerDialog.cs')
-rw-r--r-- | OpenGridServices.Manager/OpenGridServices.Manager/gtk-gui/ConnectToGridServerDialog.cs | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/OpenGridServices.Manager/OpenGridServices.Manager/gtk-gui/ConnectToGridServerDialog.cs b/OpenGridServices.Manager/OpenGridServices.Manager/gtk-gui/ConnectToGridServerDialog.cs new file mode 100644 index 0000000..a7c8d43 --- /dev/null +++ b/OpenGridServices.Manager/OpenGridServices.Manager/gtk-gui/ConnectToGridServerDialog.cs | |||
@@ -0,0 +1,141 @@ | |||
1 | // ------------------------------------------------------------------------------ | ||
2 | // <autogenerated> | ||
3 | // This code was generated by a tool. | ||
4 | // Mono Runtime Version: 2.0.50727.42 | ||
5 | // | ||
6 | // Changes to this file may cause incorrect behavior and will be lost if | ||
7 | // the code is regenerated. | ||
8 | // </autogenerated> | ||
9 | // ------------------------------------------------------------------------------ | ||
10 | |||
11 | |||
12 | |||
13 | public partial class ConnectToGridServerDialog { | ||
14 | |||
15 | private Gtk.VBox vbox2; | ||
16 | |||
17 | private Gtk.Label label1; | ||
18 | |||
19 | private Gtk.Entry entry1; | ||
20 | |||
21 | private Gtk.Button button2; | ||
22 | |||
23 | private Gtk.Button button8; | ||
24 | |||
25 | protected virtual void Build() { | ||
26 | Stetic.Gui.Initialize(); | ||
27 | // Widget ConnectToGridServerDialog | ||
28 | this.Events = ((Gdk.EventMask)(256)); | ||
29 | this.Name = "ConnectToGridServerDialog"; | ||
30 | this.Title = Mono.Unix.Catalog.GetString("Connect to Grid server"); | ||
31 | // Internal child ConnectToGridServerDialog.VBox | ||
32 | Gtk.VBox w1 = this.VBox; | ||
33 | w1.Events = ((Gdk.EventMask)(256)); | ||
34 | w1.Name = "dialog_VBox"; | ||
35 | w1.BorderWidth = ((uint)(2)); | ||
36 | // Container child dialog_VBox.Gtk.Box+BoxChild | ||
37 | this.vbox2 = new Gtk.VBox(); | ||
38 | this.vbox2.Name = "vbox2"; | ||
39 | // Container child vbox2.Gtk.Box+BoxChild | ||
40 | this.label1 = new Gtk.Label(); | ||
41 | this.label1.Name = "label1"; | ||
42 | this.label1.LabelProp = Mono.Unix.Catalog.GetString("Please type in the grid server IP/hostname and management interface port:"); | ||
43 | this.label1.Wrap = true; | ||
44 | this.label1.Justify = ((Gtk.Justification)(2)); | ||
45 | this.vbox2.Add(this.label1); | ||
46 | Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.vbox2[this.label1])); | ||
47 | w2.Position = 0; | ||
48 | w2.Expand = false; | ||
49 | w2.Fill = false; | ||
50 | // Container child vbox2.Gtk.Box+BoxChild | ||
51 | this.entry1 = new Gtk.Entry(); | ||
52 | this.entry1.CanFocus = true; | ||
53 | this.entry1.Name = "entry1"; | ||
54 | this.entry1.Text = Mono.Unix.Catalog.GetString("gridserver:8001"); | ||
55 | this.entry1.IsEditable = true; | ||
56 | this.entry1.MaxLength = 255; | ||
57 | this.entry1.InvisibleChar = '•'; | ||
58 | this.vbox2.Add(this.entry1); | ||
59 | Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.vbox2[this.entry1])); | ||
60 | w3.Position = 1; | ||
61 | w3.Expand = false; | ||
62 | w3.Fill = false; | ||
63 | w1.Add(this.vbox2); | ||
64 | Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(w1[this.vbox2])); | ||
65 | w4.Position = 0; | ||
66 | // Internal child ConnectToGridServerDialog.ActionArea | ||
67 | Gtk.HButtonBox w5 = this.ActionArea; | ||
68 | w5.Events = ((Gdk.EventMask)(256)); | ||
69 | w5.Name = "OpenGridServices.Manager.ConnectToGridServerDialog_ActionArea"; | ||
70 | w5.Spacing = 6; | ||
71 | w5.BorderWidth = ((uint)(5)); | ||
72 | w5.LayoutStyle = ((Gtk.ButtonBoxStyle)(4)); | ||
73 | // Container child OpenGridServices.Manager.ConnectToGridServerDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild | ||
74 | this.button2 = new Gtk.Button(); | ||
75 | this.button2.CanDefault = true; | ||
76 | this.button2.CanFocus = true; | ||
77 | this.button2.Name = "button2"; | ||
78 | this.button2.UseUnderline = true; | ||
79 | // Container child button2.Gtk.Container+ContainerChild | ||
80 | Gtk.Alignment w6 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); | ||
81 | w6.Name = "GtkAlignment"; | ||
82 | // Container child GtkAlignment.Gtk.Container+ContainerChild | ||
83 | Gtk.HBox w7 = new Gtk.HBox(); | ||
84 | w7.Name = "GtkHBox"; | ||
85 | w7.Spacing = 2; | ||
86 | // Container child GtkHBox.Gtk.Container+ContainerChild | ||
87 | Gtk.Image w8 = new Gtk.Image(); | ||
88 | w8.Name = "image11"; | ||
89 | w8.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-apply", 16, 0); | ||
90 | w7.Add(w8); | ||
91 | // Container child GtkHBox.Gtk.Container+ContainerChild | ||
92 | Gtk.Label w10 = new Gtk.Label(); | ||
93 | w10.Name = "GtkLabel"; | ||
94 | w10.LabelProp = Mono.Unix.Catalog.GetString("Connect"); | ||
95 | w10.UseUnderline = true; | ||
96 | w7.Add(w10); | ||
97 | w6.Add(w7); | ||
98 | this.button2.Add(w6); | ||
99 | this.AddActionWidget(this.button2, 0); | ||
100 | Gtk.ButtonBox.ButtonBoxChild w14 = ((Gtk.ButtonBox.ButtonBoxChild)(w5[this.button2])); | ||
101 | w14.Expand = false; | ||
102 | w14.Fill = false; | ||
103 | // Container child OpenGridServices.Manager.ConnectToGridServerDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild | ||
104 | this.button8 = new Gtk.Button(); | ||
105 | this.button8.CanDefault = true; | ||
106 | this.button8.CanFocus = true; | ||
107 | this.button8.Name = "button8"; | ||
108 | this.button8.UseUnderline = true; | ||
109 | // Container child button8.Gtk.Container+ContainerChild | ||
110 | Gtk.Alignment w15 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); | ||
111 | w15.Name = "GtkAlignment1"; | ||
112 | // Container child GtkAlignment1.Gtk.Container+ContainerChild | ||
113 | Gtk.HBox w16 = new Gtk.HBox(); | ||
114 | w16.Name = "GtkHBox1"; | ||
115 | w16.Spacing = 2; | ||
116 | // Container child GtkHBox1.Gtk.Container+ContainerChild | ||
117 | Gtk.Image w17 = new Gtk.Image(); | ||
118 | w17.Name = "image12"; | ||
119 | w17.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-cancel", 16, 0); | ||
120 | w16.Add(w17); | ||
121 | // Container child GtkHBox1.Gtk.Container+ContainerChild | ||
122 | Gtk.Label w19 = new Gtk.Label(); | ||
123 | w19.Name = "GtkLabel1"; | ||
124 | w19.LabelProp = Mono.Unix.Catalog.GetString("Cancel"); | ||
125 | w19.UseUnderline = true; | ||
126 | w16.Add(w19); | ||
127 | w15.Add(w16); | ||
128 | this.button8.Add(w15); | ||
129 | this.AddActionWidget(this.button8, 0); | ||
130 | Gtk.ButtonBox.ButtonBoxChild w23 = ((Gtk.ButtonBox.ButtonBoxChild)(w5[this.button8])); | ||
131 | w23.Position = 1; | ||
132 | w23.Expand = false; | ||
133 | w23.Fill = false; | ||
134 | if ((this.Child != null)) { | ||
135 | this.Child.ShowAll(); | ||
136 | } | ||
137 | this.DefaultWidth = 476; | ||
138 | this.DefaultHeight = 107; | ||
139 | this.Show(); | ||
140 | } | ||
141 | } | ||