Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MonoDevelop.Refactoring.Rename.RenameItemDialog.cs « gtk-gui « MonoDevelop.Refactoring « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae107ee523bf5887737cea6e2a302ad81c9e9374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187

// This file has been generated by the GUI designer. Do not modify.
namespace MonoDevelop.Refactoring.Rename
{
	public partial class RenameItemDialog
	{
		private global::Gtk.VBox vbox;
		
		private global::Gtk.HBox hbox;
		
		private global::Gtk.Label labelNewName;
		
		private global::Gtk.Entry entry;
		
		private global::Gtk.CheckButton renameFileFlag;
		
		private global::Gtk.CheckButton includeOverloadsCheckbox;
		
		private global::Gtk.HBox hbox1;
		
		private global::MonoDevelop.Components.ImageView imageWarning;
		
		private global::Gtk.Label labelWarning;
		
		private global::Gtk.Button buttonCancel;
		
		private global::Gtk.Button buttonPreview;
		
		private global::Gtk.Button buttonOk;

		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget MonoDevelop.Refactoring.Rename.RenameItemDialog
			this.Name = "MonoDevelop.Refactoring.Rename.RenameItemDialog";
			this.Title = global::Mono.Unix.Catalog.GetString ("Rename {0}");
			this.WindowPosition = ((global::Gtk.WindowPosition)(4));
			this.BorderWidth = ((uint)(6));
			// Internal child MonoDevelop.Refactoring.Rename.RenameItemDialog.VBox
			global::Gtk.VBox w1 = this.VBox;
			w1.Name = "dialog1_VBox";
			w1.BorderWidth = ((uint)(2));
			// Container child dialog1_VBox.Gtk.Box+BoxChild
			this.vbox = new global::Gtk.VBox ();
			this.vbox.Name = "vbox";
			this.vbox.Spacing = 6;
			this.vbox.BorderWidth = ((uint)(6));
			// Container child vbox.Gtk.Box+BoxChild
			this.hbox = new global::Gtk.HBox ();
			this.hbox.Name = "hbox";
			this.hbox.Spacing = 6;
			// Container child hbox.Gtk.Box+BoxChild
			this.labelNewName = new global::Gtk.Label ();
			this.labelNewName.Name = "labelNewName";
			this.labelNewName.LabelProp = global::Mono.Unix.Catalog.GetString ("New na_me:");
			this.labelNewName.UseUnderline = true;
			this.hbox.Add (this.labelNewName);
			global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox [this.labelNewName]));
			w2.Position = 0;
			w2.Expand = false;
			w2.Fill = false;
			// Container child hbox.Gtk.Box+BoxChild
			this.entry = new global::Gtk.Entry ();
			this.entry.CanFocus = true;
			this.entry.Name = "entry";
			this.entry.IsEditable = true;
			this.entry.InvisibleChar = '●';
			this.hbox.Add (this.entry);
			global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox [this.entry]));
			w3.Position = 1;
			this.vbox.Add (this.hbox);
			global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox [this.hbox]));
			w4.Position = 0;
			w4.Expand = false;
			w4.Fill = false;
			// Container child vbox.Gtk.Box+BoxChild
			this.renameFileFlag = new global::Gtk.CheckButton ();
			this.renameFileFlag.CanFocus = true;
			this.renameFileFlag.Name = "renameFileFlag";
			this.renameFileFlag.Label = global::Mono.Unix.Catalog.GetString ("Rename file that contains public class");
			this.renameFileFlag.Active = true;
			this.renameFileFlag.DrawIndicator = true;
			this.renameFileFlag.UseUnderline = true;
			this.vbox.Add (this.renameFileFlag);
			global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox [this.renameFileFlag]));
			w5.Position = 1;
			w5.Expand = false;
			w5.Fill = false;
			// Container child vbox.Gtk.Box+BoxChild
			this.includeOverloadsCheckbox = new global::Gtk.CheckButton ();
			this.includeOverloadsCheckbox.CanFocus = true;
			this.includeOverloadsCheckbox.Name = "includeOverloadsCheckbox";
			this.includeOverloadsCheckbox.Label = global::Mono.Unix.Catalog.GetString ("Include overloads");
			this.includeOverloadsCheckbox.Active = true;
			this.includeOverloadsCheckbox.DrawIndicator = true;
			this.includeOverloadsCheckbox.UseUnderline = true;
			this.vbox.Add (this.includeOverloadsCheckbox);
			global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox [this.includeOverloadsCheckbox]));
			w6.Position = 2;
			w6.Expand = false;
			w6.Fill = false;
			// Container child vbox.Gtk.Box+BoxChild
			this.hbox1 = new global::Gtk.HBox ();
			this.hbox1.Name = "hbox1";
			this.hbox1.Spacing = 6;
			// Container child hbox1.Gtk.Box+BoxChild
			this.imageWarning = new global::MonoDevelop.Components.ImageView ();
			this.imageWarning.Name = "imageWarning";
			this.imageWarning.IconId = "md-warning";
			this.imageWarning.IconSize = ((global::Gtk.IconSize)(4));
			this.hbox1.Add (this.imageWarning);
			global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.imageWarning]));
			w7.Position = 0;
			w7.Expand = false;
			w7.Fill = false;
			// Container child hbox1.Gtk.Box+BoxChild
			this.labelWarning = new global::Gtk.Label ();
			this.labelWarning.Name = "labelWarning";
			this.hbox1.Add (this.labelWarning);
			global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.labelWarning]));
			w8.Position = 1;
			w8.Expand = false;
			w8.Fill = false;
			this.vbox.Add (this.hbox1);
			global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox [this.hbox1]));
			w9.Position = 3;
			w9.Expand = false;
			w9.Fill = false;
			w1.Add (this.vbox);
			global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(w1 [this.vbox]));
			w10.Position = 0;
			w10.Expand = false;
			w10.Fill = false;
			// Internal child MonoDevelop.Refactoring.Rename.RenameItemDialog.ActionArea
			global::Gtk.HButtonBox w11 = this.ActionArea;
			w11.Name = "dialog1_ActionArea";
			w11.Spacing = 10;
			w11.BorderWidth = ((uint)(5));
			w11.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonCancel = new global::Gtk.Button ();
			this.buttonCancel.CanDefault = true;
			this.buttonCancel.CanFocus = true;
			this.buttonCancel.Name = "buttonCancel";
			this.buttonCancel.UseStock = true;
			this.buttonCancel.UseUnderline = true;
			this.buttonCancel.Label = "gtk-cancel";
			this.AddActionWidget (this.buttonCancel, -6);
			global::Gtk.ButtonBox.ButtonBoxChild w12 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w11 [this.buttonCancel]));
			w12.Expand = false;
			w12.Fill = false;
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonPreview = new global::Gtk.Button ();
			this.buttonPreview.CanFocus = true;
			this.buttonPreview.Name = "buttonPreview";
			this.buttonPreview.UseUnderline = true;
			this.buttonPreview.Label = global::Mono.Unix.Catalog.GetString ("_Preview");
			this.AddActionWidget (this.buttonPreview, 0);
			global::Gtk.ButtonBox.ButtonBoxChild w13 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w11 [this.buttonPreview]));
			w13.Position = 1;
			w13.Expand = false;
			w13.Fill = false;
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonOk = new global::Gtk.Button ();
			this.buttonOk.CanDefault = true;
			this.buttonOk.CanFocus = true;
			this.buttonOk.Name = "buttonOk";
			this.buttonOk.UseStock = true;
			this.buttonOk.UseUnderline = true;
			this.buttonOk.Label = "gtk-ok";
			this.AddActionWidget (this.buttonOk, -5);
			global::Gtk.ButtonBox.ButtonBoxChild w14 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w11 [this.buttonOk]));
			w14.Position = 2;
			w14.Expand = false;
			w14.Fill = false;
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.DefaultWidth = 365;
			this.DefaultHeight = 174;
			this.labelNewName.MnemonicWidget = this.entry;
			this.renameFileFlag.Hide ();
			this.includeOverloadsCheckbox.Hide ();
			this.Hide ();
		}
	}
}