1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | namespace HeuristicLab.Clients.Hive.Administrator.Views {
|
---|
23 | partial class ScheduleView {
|
---|
24 | /// <summary>
|
---|
25 | /// Required designer variable.
|
---|
26 | /// </summary>
|
---|
27 | private System.ComponentModel.IContainer components = null;
|
---|
28 |
|
---|
29 | /// <summary>
|
---|
30 | /// Clean up any resources being used.
|
---|
31 | /// </summary>
|
---|
32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
33 | protected override void Dispose(bool disposing) {
|
---|
34 | if (disposing && (components != null)) {
|
---|
35 | components.Dispose();
|
---|
36 | }
|
---|
37 | base.Dispose(disposing);
|
---|
38 | }
|
---|
39 |
|
---|
40 | #region Component Designer generated code
|
---|
41 |
|
---|
42 | /// <summary>
|
---|
43 | /// Required method for Designer support - do not modify
|
---|
44 | /// the contents of this method with the code editor.
|
---|
45 | /// </summary>
|
---|
46 | private void InitializeComponent() {
|
---|
47 | this.components = new System.ComponentModel.Container();
|
---|
48 | Calendar.DrawTool drawTool1 = new Calendar.DrawTool();
|
---|
49 | this.dvOnline = new Calendar.DayView();
|
---|
50 | this.txttimeTo = new System.Windows.Forms.DateTimePicker();
|
---|
51 | this.txttimeFrom = new System.Windows.Forms.DateTimePicker();
|
---|
52 | this.dtpTo = new System.Windows.Forms.DateTimePicker();
|
---|
53 | this.groupBox1 = new System.Windows.Forms.GroupBox();
|
---|
54 | this.dtpFrom = new System.Windows.Forms.DateTimePicker();
|
---|
55 | this.chbade = new System.Windows.Forms.CheckBox();
|
---|
56 | this.btnRecurrence = new System.Windows.Forms.Button();
|
---|
57 | this.btbDelete = new System.Windows.Forms.Button();
|
---|
58 | this.label2 = new System.Windows.Forms.Label();
|
---|
59 | this.label1 = new System.Windows.Forms.Label();
|
---|
60 | this.btCreate = new System.Windows.Forms.Button();
|
---|
61 | this.btnSaveCal = new System.Windows.Forms.Button();
|
---|
62 | this.btnClearCal = new System.Windows.Forms.Button();
|
---|
63 | this.mcOnline = new System.Windows.Forms.MonthCalendar();
|
---|
64 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
65 | this.groupBox1.SuspendLayout();
|
---|
66 | this.SuspendLayout();
|
---|
67 | //
|
---|
68 | // dvOnline
|
---|
69 | //
|
---|
70 | drawTool1.DayView = this.dvOnline;
|
---|
71 | this.dvOnline.ActiveTool = drawTool1;
|
---|
72 | this.dvOnline.AmPmDisplay = false;
|
---|
73 | this.dvOnline.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
74 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
75 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
76 | this.dvOnline.AppointmentDuration = Calendar.AppointmentSlotDuration.SixtyMinutes;
|
---|
77 | this.dvOnline.AppointmentHeightMode = Calendar.AppHeightDrawMode.TrueHeightAll;
|
---|
78 | this.dvOnline.DayHeadersHeight = 15;
|
---|
79 | this.dvOnline.DaysToShow = 7;
|
---|
80 | this.dvOnline.DrawAllAppBorder = false;
|
---|
81 | this.dvOnline.EnableDurationDisplay = false;
|
---|
82 | this.dvOnline.EnableRoundedCorners = false;
|
---|
83 | this.dvOnline.EnableShadows = false;
|
---|
84 | this.dvOnline.EnableTimeIndicator = false;
|
---|
85 | this.dvOnline.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F);
|
---|
86 | this.dvOnline.Location = new System.Drawing.Point(3, 183);
|
---|
87 | this.dvOnline.MinHalfHourApp = false;
|
---|
88 | this.dvOnline.Name = "dvOnline";
|
---|
89 | this.dvOnline.SelectionEnd = new System.DateTime(((long)(0)));
|
---|
90 | this.dvOnline.SelectionStart = new System.DateTime(((long)(0)));
|
---|
91 | this.dvOnline.Size = new System.Drawing.Size(836, 354);
|
---|
92 | this.dvOnline.StartDate = new System.DateTime(((long)(0)));
|
---|
93 | this.dvOnline.TabIndex = 54;
|
---|
94 | this.dvOnline.OnSelectionChanged += new System.EventHandler<System.EventArgs>(this.dvOnline_OnSelectionChanged);
|
---|
95 | //
|
---|
96 | // txttimeTo
|
---|
97 | //
|
---|
98 | this.txttimeTo.CustomFormat = "HH:mm";
|
---|
99 | this.txttimeTo.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
---|
100 | this.txttimeTo.Location = new System.Drawing.Point(164, 45);
|
---|
101 | this.txttimeTo.Name = "txttimeTo";
|
---|
102 | this.txttimeTo.ShowUpDown = true;
|
---|
103 | this.txttimeTo.Size = new System.Drawing.Size(73, 20);
|
---|
104 | this.txttimeTo.TabIndex = 40;
|
---|
105 | //
|
---|
106 | // txttimeFrom
|
---|
107 | //
|
---|
108 | this.txttimeFrom.CustomFormat = "HH:mm";
|
---|
109 | this.txttimeFrom.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
---|
110 | this.txttimeFrom.Location = new System.Drawing.Point(164, 12);
|
---|
111 | this.txttimeFrom.Name = "txttimeFrom";
|
---|
112 | this.txttimeFrom.ShowUpDown = true;
|
---|
113 | this.txttimeFrom.Size = new System.Drawing.Size(73, 20);
|
---|
114 | this.txttimeFrom.TabIndex = 39;
|
---|
115 | //
|
---|
116 | // dtpTo
|
---|
117 | //
|
---|
118 | this.dtpTo.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
---|
119 | this.dtpTo.Location = new System.Drawing.Point(72, 45);
|
---|
120 | this.dtpTo.Name = "dtpTo";
|
---|
121 | this.dtpTo.Size = new System.Drawing.Size(89, 20);
|
---|
122 | this.dtpTo.TabIndex = 33;
|
---|
123 | //
|
---|
124 | // groupBox1
|
---|
125 | //
|
---|
126 | this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
127 | this.groupBox1.Controls.Add(this.txttimeTo);
|
---|
128 | this.groupBox1.Controls.Add(this.txttimeFrom);
|
---|
129 | this.groupBox1.Controls.Add(this.dtpTo);
|
---|
130 | this.groupBox1.Controls.Add(this.dtpFrom);
|
---|
131 | this.groupBox1.Controls.Add(this.chbade);
|
---|
132 | this.groupBox1.Controls.Add(this.btnRecurrence);
|
---|
133 | this.groupBox1.Controls.Add(this.btbDelete);
|
---|
134 | this.groupBox1.Controls.Add(this.label2);
|
---|
135 | this.groupBox1.Controls.Add(this.label1);
|
---|
136 | this.groupBox1.Controls.Add(this.btCreate);
|
---|
137 | this.groupBox1.Location = new System.Drawing.Point(375, 3);
|
---|
138 | this.groupBox1.Name = "groupBox1";
|
---|
139 | this.groupBox1.Size = new System.Drawing.Size(259, 168);
|
---|
140 | this.groupBox1.TabIndex = 56;
|
---|
141 | this.groupBox1.TabStop = false;
|
---|
142 | //
|
---|
143 | // dtpFrom
|
---|
144 | //
|
---|
145 | this.dtpFrom.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
---|
146 | this.dtpFrom.Location = new System.Drawing.Point(72, 12);
|
---|
147 | this.dtpFrom.Name = "dtpFrom";
|
---|
148 | this.dtpFrom.Size = new System.Drawing.Size(89, 20);
|
---|
149 | this.dtpFrom.TabIndex = 32;
|
---|
150 | //
|
---|
151 | // chbade
|
---|
152 | //
|
---|
153 | this.chbade.AutoSize = true;
|
---|
154 | this.chbade.Location = new System.Drawing.Point(135, 70);
|
---|
155 | this.chbade.Name = "chbade";
|
---|
156 | this.chbade.Size = new System.Drawing.Size(90, 17);
|
---|
157 | this.chbade.TabIndex = 31;
|
---|
158 | this.chbade.Text = "All Day Event";
|
---|
159 | this.chbade.UseVisualStyleBackColor = true;
|
---|
160 | this.chbade.CheckedChanged += new System.EventHandler(this.chbade_CheckedChanged);
|
---|
161 | //
|
---|
162 | // btnRecurrence
|
---|
163 | //
|
---|
164 | this.btnRecurrence.Image = HeuristicLab.Common.Resources.VSImageLibrary.Timer;
|
---|
165 | this.btnRecurrence.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
166 | this.btnRecurrence.Location = new System.Drawing.Point(135, 129);
|
---|
167 | this.btnRecurrence.Name = "btnRecurrence";
|
---|
168 | this.btnRecurrence.Size = new System.Drawing.Size(113, 26);
|
---|
169 | this.btnRecurrence.TabIndex = 30;
|
---|
170 | this.btnRecurrence.Text = "Recurrence";
|
---|
171 | this.toolTip.SetToolTip(this.btnRecurrence, "Create recurring appointments");
|
---|
172 | this.btnRecurrence.UseVisualStyleBackColor = true;
|
---|
173 | this.btnRecurrence.Click += new System.EventHandler(this.btnRecurrence_Click);
|
---|
174 | //
|
---|
175 | // btbDelete
|
---|
176 | //
|
---|
177 | this.btbDelete.Image = HeuristicLab.Common.Resources.VSImageLibrary.Delete;
|
---|
178 | this.btbDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
179 | this.btbDelete.Location = new System.Drawing.Point(8, 129);
|
---|
180 | this.btbDelete.Name = "btbDelete";
|
---|
181 | this.btbDelete.Size = new System.Drawing.Size(114, 26);
|
---|
182 | this.btbDelete.TabIndex = 25;
|
---|
183 | this.btbDelete.Text = "Delete";
|
---|
184 | this.toolTip.SetToolTip(this.btbDelete, "Delete selected appointment");
|
---|
185 | this.btbDelete.UseVisualStyleBackColor = true;
|
---|
186 | this.btbDelete.Click += new System.EventHandler(this.btbDelete_Click);
|
---|
187 | //
|
---|
188 | // label2
|
---|
189 | //
|
---|
190 | this.label2.AutoSize = true;
|
---|
191 | this.label2.Location = new System.Drawing.Point(16, 46);
|
---|
192 | this.label2.Name = "label2";
|
---|
193 | this.label2.Size = new System.Drawing.Size(55, 13);
|
---|
194 | this.label2.TabIndex = 23;
|
---|
195 | this.label2.Text = "End Time:";
|
---|
196 | //
|
---|
197 | // label1
|
---|
198 | //
|
---|
199 | this.label1.AutoSize = true;
|
---|
200 | this.label1.Location = new System.Drawing.Point(16, 15);
|
---|
201 | this.label1.Name = "label1";
|
---|
202 | this.label1.Size = new System.Drawing.Size(58, 13);
|
---|
203 | this.label1.TabIndex = 21;
|
---|
204 | this.label1.Text = "Start Time:";
|
---|
205 | //
|
---|
206 | // btCreate
|
---|
207 | //
|
---|
208 | this.btCreate.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
|
---|
209 | this.btCreate.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
210 | this.btCreate.Location = new System.Drawing.Point(6, 93);
|
---|
211 | this.btCreate.Name = "btCreate";
|
---|
212 | this.btCreate.Size = new System.Drawing.Size(242, 26);
|
---|
213 | this.btCreate.TabIndex = 20;
|
---|
214 | this.btCreate.Text = "Create Downtime";
|
---|
215 | this.toolTip.SetToolTip(this.btCreate, "Create a new downtime in the calender");
|
---|
216 | this.btCreate.UseVisualStyleBackColor = true;
|
---|
217 | this.btCreate.Click += new System.EventHandler(this.btCreate_Click);
|
---|
218 | //
|
---|
219 | // btnSaveCal
|
---|
220 | //
|
---|
221 | this.btnSaveCal.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
222 | this.btnSaveCal.Image = HeuristicLab.Common.Resources.VSImageLibrary.PublishToWeb;
|
---|
223 | this.btnSaveCal.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
224 | this.btnSaveCal.Location = new System.Drawing.Point(640, 41);
|
---|
225 | this.btnSaveCal.Name = "btnSaveCal";
|
---|
226 | this.btnSaveCal.Size = new System.Drawing.Size(199, 26);
|
---|
227 | this.btnSaveCal.TabIndex = 57;
|
---|
228 | this.btnSaveCal.Text = "Save Calendar on Server";
|
---|
229 | this.toolTip.SetToolTip(this.btnSaveCal, "Store the calender on the server");
|
---|
230 | this.btnSaveCal.UseVisualStyleBackColor = true;
|
---|
231 | this.btnSaveCal.Click += new System.EventHandler(this.btnSaveCal_Click);
|
---|
232 | //
|
---|
233 | // btnClearCal
|
---|
234 | //
|
---|
235 | this.btnClearCal.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
236 | this.btnClearCal.Image = HeuristicLab.Common.Resources.VSImageLibrary.Document;
|
---|
237 | this.btnClearCal.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
238 | this.btnClearCal.Location = new System.Drawing.Point(640, 9);
|
---|
239 | this.btnClearCal.Name = "btnClearCal";
|
---|
240 | this.btnClearCal.Size = new System.Drawing.Size(199, 26);
|
---|
241 | this.btnClearCal.TabIndex = 58;
|
---|
242 | this.btnClearCal.Text = "Clear Calendar";
|
---|
243 | this.toolTip.SetToolTip(this.btnClearCal, "Remove all appointments from calender");
|
---|
244 | this.btnClearCal.UseVisualStyleBackColor = true;
|
---|
245 | this.btnClearCal.Click += new System.EventHandler(this.btnClearCal_Click);
|
---|
246 | //
|
---|
247 | // mcOnline
|
---|
248 | //
|
---|
249 | this.mcOnline.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
250 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
251 | this.mcOnline.CalendarDimensions = new System.Drawing.Size(2, 1);
|
---|
252 | this.mcOnline.Location = new System.Drawing.Point(3, 9);
|
---|
253 | this.mcOnline.Name = "mcOnline";
|
---|
254 | this.mcOnline.TabIndex = 55;
|
---|
255 | this.mcOnline.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.mcOnline_DateChanged);
|
---|
256 | //
|
---|
257 | // ScheduleView
|
---|
258 | //
|
---|
259 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
260 | this.Controls.Add(this.dvOnline);
|
---|
261 | this.Controls.Add(this.groupBox1);
|
---|
262 | this.Controls.Add(this.btnSaveCal);
|
---|
263 | this.Controls.Add(this.btnClearCal);
|
---|
264 | this.Controls.Add(this.mcOnline);
|
---|
265 | this.Name = "ScheduleView";
|
---|
266 | this.Size = new System.Drawing.Size(842, 540);
|
---|
267 | this.groupBox1.ResumeLayout(false);
|
---|
268 | this.groupBox1.PerformLayout();
|
---|
269 | this.ResumeLayout(false);
|
---|
270 |
|
---|
271 | }
|
---|
272 |
|
---|
273 | #endregion
|
---|
274 |
|
---|
275 | private System.Windows.Forms.DateTimePicker txttimeTo;
|
---|
276 | private Calendar.DayView dvOnline;
|
---|
277 | private System.Windows.Forms.DateTimePicker txttimeFrom;
|
---|
278 | private System.Windows.Forms.DateTimePicker dtpTo;
|
---|
279 | private System.Windows.Forms.GroupBox groupBox1;
|
---|
280 | private System.Windows.Forms.DateTimePicker dtpFrom;
|
---|
281 | private System.Windows.Forms.CheckBox chbade;
|
---|
282 | private System.Windows.Forms.Button btnRecurrence;
|
---|
283 | private System.Windows.Forms.Button btbDelete;
|
---|
284 | private System.Windows.Forms.Label label2;
|
---|
285 | private System.Windows.Forms.Label label1;
|
---|
286 | private System.Windows.Forms.Button btCreate;
|
---|
287 | private System.Windows.Forms.Button btnSaveCal;
|
---|
288 | private System.Windows.Forms.Button btnClearCal;
|
---|
289 | private System.Windows.Forms.MonthCalendar mcOnline;
|
---|
290 | private System.Windows.Forms.ToolTip toolTip;
|
---|
291 | }
|
---|
292 | }
|
---|