-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathViewerWindow.Designer.cs
209 lines (197 loc) · 8.52 KB
/
ViewerWindow.Designer.cs
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/**
Copyright (c) 2012 - 2019, David Skorvaga
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
namespace WmsViewer
{
public partial class ViewerWindow
{
/// <summary>
/// Required designer variable.
/// </summary>
private IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">True if managed resources should be disposed; otherwise false.</param>
protected override void Dispose(bool disposing)
{
try
{
if (disposing && components != null)
{
components.Dispose();
}
}
finally
{
base.Dispose(disposing);
}
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
canvas = new PictureBox();
canvas.Size = new Size(530, 528);
viewport = new CentricView(canvas.Width, canvas.Height, 0, 0, 1);
invoker = new PreviousViewports();
viewChangeButtons = new WmsViewer.ViewChangeButtons(viewport, invoker, canvas);
newWmsButton = new Button();
layerSettings = new WmsViewer.LayerSettings(canvas);
wmsSettings = new WmsViewer.WmsSettings(canvas);
layers = new TreeView();
statusBar = new StatusStrip();
coordinatesLabel = new ToolStripStatusLabel();
((ISupportInitialize)canvas).BeginInit();
statusBar.SuspendLayout();
SuspendLayout();
//
// canvas
//
canvas.Anchor = (AnchorStyles)(((AnchorStyles.Top | AnchorStyles.Bottom)
| AnchorStyles.Left) | AnchorStyles.Right);
canvas.BackColor = Color.White;
canvas.Location = new Point(0, 0);
canvas.Name = "canvas";
canvas.TabIndex = 0;
canvas.TabStop = false;
canvas.Paint += new PaintEventHandler(CanvasRedraw);
canvas.MouseClick += new MouseEventHandler(CanvasMouseClick);
canvas.MouseEnter += new EventHandler(CanvasEnter);
canvas.MouseDown += new MouseEventHandler(CanvasMouseDown);
canvas.MouseUp += new MouseEventHandler(CanvasMouseUp);
canvas.MouseWheel += new MouseEventHandler(CanvasMouseWheel);
canvas.Resize += new EventHandler(CanvasResize);
//
// viewChangeButtons
//
viewChangeButtons.Anchor = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Right);
viewChangeButtons.Location = new Point(532, 4);
viewChangeButtons.Name = "viewChangeButtons1";
viewChangeButtons.Size = new Size(150, 36);
viewChangeButtons.TabIndex = 8;
viewChangeButtons.Text = string.Empty;
//
// newWmsButton
//
newWmsButton.Anchor = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Right);
newWmsButton.Location = new Point(686, 11);
newWmsButton.Name = "newWmsButton";
newWmsButton.Size = new Size(73, 23);
newWmsButton.TabIndex = 4;
newWmsButton.Text = Properties.Resources.NewWms;
newWmsButton.Click += new EventHandler(NewWmsButtonClick);
//
// layerSettings
//
layerSettings.Anchor = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Right);
layerSettings.BorderStyle = BorderStyle.FixedSingle;
layerSettings.Enabled = false;
layerSettings.Location = new Point(531, 216);
layerSettings.MinimumSize = new Size(228, 236);
layerSettings.Name = "layerSettings";
layerSettings.Size = new Size(228, 236);
layerSettings.TabIndex = 6;
//
// wmsSettings
//
wmsSettings.Anchor = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Right);
wmsSettings.BorderStyle = BorderStyle.FixedSingle;
wmsSettings.Enabled = false;
wmsSettings.Location = new Point(531, 46);
wmsSettings.MinimumSize = new Size(228, 164);
wmsSettings.Name = "wmsSettings";
wmsSettings.Size = new Size(228, 164);
wmsSettings.TabIndex = 5;
//
// layers
//
layers.Anchor = (AnchorStyles)((AnchorStyles.Top | AnchorStyles.Bottom) | AnchorStyles.Right);
layers.CheckBoxes = true;
layers.Location = new Point(531, 458);
layers.Name = "layers";
layers.Size = new Size(228, 68);
layers.TabIndex = 7;
layers.AfterCheck += new TreeViewEventHandler(LayersNodeChecked);
layers.AfterSelect += new TreeViewEventHandler(LayersSelectChanged);
layers.KeyDown += new KeyEventHandler(LayersKeyDown);
//
// statusBar
//
statusBar.Items.AddRange(new ToolStripItem[] {
coordinatesLabel});
statusBar.Location = new Point(0, 527);
statusBar.Name = "statusBar";
statusBar.Size = new Size(760, 22);
statusBar.TabIndex = 0;
//
// coordinatesLabel
//
coordinatesLabel.Name = "coordinatesLabel";
coordinatesLabel.Size = new Size(0, 17);
//
// ViewerWindow
//
AutoScaleDimensions = new SizeF(6F, 13F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
ClientSize = new Size(760, 549);
Controls.Add(statusBar);
Controls.Add(layers);
Controls.Add(layerSettings);
Controls.Add(wmsSettings);
Controls.Add(viewChangeButtons);
Controls.Add(newWmsButton);
Controls.Add(canvas);
Icon = Properties.Resources.Main;
KeyPreview = true;
MinimumSize = new Size(768, 576);
Name = "ViewerWindow";
Text = Properties.Resources.ApplicationTitle;
FormClosing += new FormClosingEventHandler(ViewerWindowClosing);
KeyDown += new KeyEventHandler(ViewerWindowKeyDown);
Load += new EventHandler(ViewerWindowInit);
((ISupportInitialize)canvas).EndInit();
statusBar.ResumeLayout(false);
statusBar.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion
private PictureBox canvas;
private ViewChangeButtons viewChangeButtons;
private Button newWmsButton;
private WmsSettings wmsSettings;
private LayerSettings layerSettings;
private TreeView layers;
private StatusStrip statusBar;
private ToolStripStatusLabel coordinatesLabel;
}
}