~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/WindowsPlatform/Dialogs/EncodingSelectionForm.Designer.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
Import upstream version 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
namespace MonoDevelop.Platform
 
2
{
 
3
    partial class EncodingSelectionForm
 
4
    {
 
5
        /// <summary>
 
6
        /// Required designer variable.
 
7
        /// </summary>
 
8
        private System.ComponentModel.IContainer components = null;
 
9
 
 
10
        /// <summary>
 
11
        /// Clean up any resources being used.
 
12
        /// </summary>
 
13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 
14
        protected override void Dispose (bool disposing)
 
15
        {
 
16
            if (disposing && (components != null)) {
 
17
                components.Dispose ();
 
18
            }
 
19
            base.Dispose (disposing);
 
20
        }
 
21
 
 
22
        #region Windows Form Designer generated code
 
23
 
 
24
        /// <summary>
 
25
        /// Required method for Designer support - do not modify
 
26
        /// the contents of this method with the code editor.
 
27
        /// </summary>
 
28
        private void InitializeComponent ()
 
29
        {
 
30
            this.label1 = new System.Windows.Forms.Label ();
 
31
            this.addButton = new System.Windows.Forms.Button ();
 
32
            this.removeButton = new System.Windows.Forms.Button ();
 
33
            this.okButton = new System.Windows.Forms.Button ();
 
34
            this.cancelButton = new System.Windows.Forms.Button ();
 
35
            this.label2 = new System.Windows.Forms.Label ();
 
36
            this.shownListView = new MonoDevelop.Platform.EncodingListView ();
 
37
            this.availableListView = new MonoDevelop.Platform.EncodingListView ();
 
38
            this.upButton = new System.Windows.Forms.Button ();
 
39
            this.downButton = new System.Windows.Forms.Button ();
 
40
            this.SuspendLayout ();
 
41
            // 
 
42
            // label1
 
43
            // 
 
44
            this.label1.AutoSize = true;
 
45
            this.label1.Location = new System.Drawing.Point (10, 12);
 
46
            this.label1.Name = "label1";
 
47
            this.label1.Size = new System.Drawing.Size (105, 15);
 
48
            this.label1.TabIndex = 0;
 
49
            this.label1.Text = "Available encodings:";
 
50
            // 
 
51
            // addButton
 
52
            // 
 
53
            this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
 
54
            this.addButton.Location = new System.Drawing.Point (291, 169);
 
55
            this.addButton.Name = "addButton";
 
56
            this.addButton.Size = new System.Drawing.Size (50, 30);
 
57
            this.addButton.TabIndex = 2;
 
58
            this.addButton.Text = ">";
 
59
            this.addButton.UseVisualStyleBackColor = true;
 
60
            this.addButton.Click += new System.EventHandler (this.addButtonClick);
 
61
            // 
 
62
            // removeButton
 
63
            // 
 
64
            this.removeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
 
65
            this.removeButton.Location = new System.Drawing.Point (291, 205);
 
66
            this.removeButton.Name = "removeButton";
 
67
            this.removeButton.Size = new System.Drawing.Size (50, 30);
 
68
            this.removeButton.TabIndex = 3;
 
69
            this.removeButton.Text = "<";
 
70
            this.removeButton.UseVisualStyleBackColor = true;
 
71
            this.removeButton.Click += new System.EventHandler (this.removeButtonClick);
 
72
            // 
 
73
            // okButton
 
74
            // 
 
75
            this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
 
76
            this.okButton.Location = new System.Drawing.Point (534, 395);
 
77
            this.okButton.Name = "okButton";
 
78
            this.okButton.Size = new System.Drawing.Size (75, 23);
 
79
            this.okButton.TabIndex = 5;
 
80
            this.okButton.Text = "OK";
 
81
            this.okButton.UseVisualStyleBackColor = true;
 
82
            this.okButton.Click += new System.EventHandler (this.okButtonClick);
 
83
            // 
 
84
            // cancelButton
 
85
            // 
 
86
            this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
 
87
            this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
 
88
            this.cancelButton.Location = new System.Drawing.Point (615, 395);
 
89
            this.cancelButton.Name = "cancelButton";
 
90
            this.cancelButton.Size = new System.Drawing.Size (75, 23);
 
91
            this.cancelButton.TabIndex = 6;
 
92
            this.cancelButton.Text = "Cancel";
 
93
            this.cancelButton.UseVisualStyleBackColor = true;
 
94
            this.cancelButton.Click += new System.EventHandler (this.cancelButtonClick);
 
95
            // 
 
96
            // label2
 
97
            // 
 
98
            this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
 
99
            this.label2.AutoSize = true;
 
100
            this.label2.Location = new System.Drawing.Point (350, 12);
 
101
            this.label2.Name = "label2";
 
102
            this.label2.Size = new System.Drawing.Size (132, 15);
 
103
            this.label2.TabIndex = 7;
 
104
            this.label2.Text = "Encodings shown in menu:";
 
105
            // 
 
106
            // shownListView
 
107
            // 
 
108
            this.shownListView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
 
109
                        | System.Windows.Forms.AnchorStyles.Right)));
 
110
            this.shownListView.FullRowSelect = true;
 
111
            this.shownListView.Location = new System.Drawing.Point (350, 39);
 
112
            this.shownListView.MultiSelect = false;
 
113
            this.shownListView.Name = "shownListView";
 
114
            this.shownListView.Size = new System.Drawing.Size (280, 343);
 
115
            this.shownListView.TabIndex = 4;
 
116
            this.shownListView.UseCompatibleStateImageBehavior = false;
 
117
            this.shownListView.View = System.Windows.Forms.View.Details;
 
118
            // 
 
119
            // availableListView
 
120
            // 
 
121
            this.availableListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
 
122
                        | System.Windows.Forms.AnchorStyles.Left)
 
123
                        | System.Windows.Forms.AnchorStyles.Right)));
 
124
            this.availableListView.FullRowSelect = true;
 
125
            this.availableListView.Location = new System.Drawing.Point (10, 40);
 
126
            this.availableListView.MultiSelect = false;
 
127
            this.availableListView.Name = "availableListView";
 
128
            this.availableListView.Size = new System.Drawing.Size (270, 342);
 
129
            this.availableListView.TabIndex = 1;
 
130
            this.availableListView.UseCompatibleStateImageBehavior = false;
 
131
            this.availableListView.View = System.Windows.Forms.View.Details;
 
132
            // 
 
133
            // upButton
 
134
            // 
 
135
            this.upButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
 
136
            this.upButton.Location = new System.Drawing.Point (640, 169);
 
137
            this.upButton.Name = "upButton";
 
138
            this.upButton.Size = new System.Drawing.Size (50, 30);
 
139
            this.upButton.TabIndex = 8;
 
140
            this.upButton.Text = "Up";
 
141
            this.upButton.UseVisualStyleBackColor = true;
 
142
            this.upButton.Click += new System.EventHandler (this.upButtonClick);
 
143
            // 
 
144
            // downButton
 
145
            // 
 
146
            this.downButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
 
147
            this.downButton.Location = new System.Drawing.Point (640, 205);
 
148
            this.downButton.Name = "downButton";
 
149
            this.downButton.Size = new System.Drawing.Size (50, 30);
 
150
            this.downButton.TabIndex = 9;
 
151
            this.downButton.Text = "Down";
 
152
            this.downButton.UseVisualStyleBackColor = true;
 
153
            this.downButton.Click += new System.EventHandler (this.downButtonClick);
 
154
            // 
 
155
            // EncodingSelectionForm
 
156
            // 
 
157
            this.AcceptButton = this.okButton;
 
158
            this.AutoScaleDimensions = new System.Drawing.SizeF (6F, 15F);
 
159
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 
160
            this.CancelButton = this.cancelButton;
 
161
            this.ClientSize = new System.Drawing.Size (703, 431);
 
162
            this.Controls.Add (this.downButton);
 
163
            this.Controls.Add (this.upButton);
 
164
            this.Controls.Add (this.label2);
 
165
            this.Controls.Add (this.shownListView);
 
166
            this.Controls.Add (this.cancelButton);
 
167
            this.Controls.Add (this.okButton);
 
168
            this.Controls.Add (this.removeButton);
 
169
            this.Controls.Add (this.addButton);
 
170
            this.Controls.Add (this.availableListView);
 
171
            this.Controls.Add (this.label1);
 
172
            this.Name = "EncodingSelectionForm";
 
173
            this.ShowInTaskbar = false;
 
174
            this.Text = "Select Text Encodings";
 
175
            this.ResumeLayout (false);
 
176
            this.PerformLayout ();
 
177
 
 
178
        }
 
179
 
 
180
        #endregion
 
181
 
 
182
        private System.Windows.Forms.Label label1;
 
183
        private EncodingListView availableListView;
 
184
        private System.Windows.Forms.Button addButton;
 
185
        private System.Windows.Forms.Button removeButton;
 
186
        private System.Windows.Forms.Button okButton;
 
187
        private System.Windows.Forms.Button cancelButton;
 
188
        private EncodingListView shownListView;
 
189
        private System.Windows.Forms.Label label2;
 
190
        private System.Windows.Forms.Button upButton;
 
191
        private System.Windows.Forms.Button downButton;
 
192
    }
 
193
}
 
 
b'\\ No newline at end of file'