view Postarc/Postarc/GUI/FormNewPostGISFeatClass.Designer.cs @ 0:1aca3d413885 tip

Initial import of Postarc
author Christian Lins <christian.lins@intevation.de>
date Fri, 05 Oct 2012 23:55:06 +0200
parents
children
line wrap: on
line source
/*
 * Postarc
 *
 * Author:
 * Christian Lins <christian.lins@intevation.de>
 *
 * Copyright:
 * Copyright (C) 2012 Intevation GmbH <http://www.intevation.de/>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

namespace Postarc.GUI
{
	partial class FormNewPostGISFeatClass
	{
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.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)
		{
			if (disposing && (components != null))
			{
				components.Dispose();
			}
			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()
		{
                    this.cmbDatabaseConnections = new System.Windows.Forms.ComboBox();
                    this.lblDatabaseConnections = new System.Windows.Forms.Label();
                    this.grpFeatureClass = new System.Windows.Forms.GroupBox();
                    this.txtFCName = new System.Windows.Forms.TextBox();
                    this.label4 = new System.Windows.Forms.Label();
                    this.cmbGeometryType = new System.Windows.Forms.ComboBox();
                    this.label3 = new System.Windows.Forms.Label();
                    this.txtLayerName = new System.Windows.Forms.TextBox();
                    this.label2 = new System.Windows.Forms.Label();
                    this.btnEditConnections = new System.Windows.Forms.Button();
                    this.btnCreate = new System.Windows.Forms.Button();
                    this.grpPostGIS = new System.Windows.Forms.GroupBox();
                    this.cmbGeometryTable = new System.Windows.Forms.ComboBox();
                    this.lblGeometryTable = new System.Windows.Forms.Label();
                    this.grpFeatureClass.SuspendLayout();
                    this.grpPostGIS.SuspendLayout();
                    this.SuspendLayout();
                    // 
                    // cmbDatabaseConnections
                    // 
                    this.cmbDatabaseConnections.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
                    this.cmbDatabaseConnections.FormattingEnabled = true;
                    this.cmbDatabaseConnections.Location = new System.Drawing.Point(128, 19);
                    this.cmbDatabaseConnections.Name = "cmbDatabaseConnections";
                    this.cmbDatabaseConnections.Size = new System.Drawing.Size(207, 21);
                    this.cmbDatabaseConnections.TabIndex = 0;
                    this.cmbDatabaseConnections.SelectedIndexChanged += new System.EventHandler(this.cmbDatabaseConnections_SelectedIndexChanged);
                    // 
                    // lblDatabaseConnections
                    // 
                    this.lblDatabaseConnections.AutoSize = true;
                    this.lblDatabaseConnections.Location = new System.Drawing.Point(10, 22);
                    this.lblDatabaseConnections.Name = "lblDatabaseConnections";
                    this.lblDatabaseConnections.Size = new System.Drawing.Size(112, 13);
                    this.lblDatabaseConnections.TabIndex = 1;
                    this.lblDatabaseConnections.Text = "Database connection:";
                    // 
                    // grpFeatureClass
                    // 
                    this.grpFeatureClass.Controls.Add(this.txtFCName);
                    this.grpFeatureClass.Controls.Add(this.label4);
                    this.grpFeatureClass.Controls.Add(this.cmbGeometryType);
                    this.grpFeatureClass.Controls.Add(this.label3);
                    this.grpFeatureClass.Controls.Add(this.txtLayerName);
                    this.grpFeatureClass.Controls.Add(this.label2);
                    this.grpFeatureClass.Location = new System.Drawing.Point(12, 109);
                    this.grpFeatureClass.Name = "grpFeatureClass";
                    this.grpFeatureClass.Size = new System.Drawing.Size(402, 106);
                    this.grpFeatureClass.TabIndex = 3;
                    this.grpFeatureClass.TabStop = false;
                    this.grpFeatureClass.Text = "FeatureClass Properties";
                    // 
                    // txtFCName
                    // 
                    this.txtFCName.Location = new System.Drawing.Point(115, 45);
                    this.txtFCName.Name = "txtFCName";
                    this.txtFCName.Size = new System.Drawing.Size(269, 20);
                    this.txtFCName.TabIndex = 4;
                    this.txtFCName.Text = "NewFeatureClass";
                    // 
                    // label4
                    // 
                    this.label4.AutoSize = true;
                    this.label4.Location = new System.Drawing.Point(9, 48);
                    this.label4.Name = "label4";
                    this.label4.Size = new System.Drawing.Size(100, 13);
                    this.label4.TabIndex = 7;
                    this.label4.Text = "FeatureClass name:";
                    // 
                    // cmbGeometryType
                    // 
                    this.cmbGeometryType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
                    this.cmbGeometryType.FormattingEnabled = true;
                    this.cmbGeometryType.Items.AddRange(new object[] {
            "POINT",
            "POLYGON",
            "POLYLINE"});
                    this.cmbGeometryType.Location = new System.Drawing.Point(115, 71);
                    this.cmbGeometryType.Name = "cmbGeometryType";
                    this.cmbGeometryType.Size = new System.Drawing.Size(121, 21);
                    this.cmbGeometryType.TabIndex = 5;
                    // 
                    // label3
                    // 
                    this.label3.AutoSize = true;
                    this.label3.Location = new System.Drawing.Point(9, 74);
                    this.label3.Name = "label3";
                    this.label3.Size = new System.Drawing.Size(78, 13);
                    this.label3.TabIndex = 5;
                    this.label3.Text = "Geometry type:";
                    // 
                    // txtLayerName
                    // 
                    this.txtLayerName.Location = new System.Drawing.Point(115, 19);
                    this.txtLayerName.Name = "txtLayerName";
                    this.txtLayerName.Size = new System.Drawing.Size(269, 20);
                    this.txtLayerName.TabIndex = 3;
                    this.txtLayerName.Text = "Unnamed PostGIS FeatureClass";
                    // 
                    // label2
                    // 
                    this.label2.AutoSize = true;
                    this.label2.Location = new System.Drawing.Point(9, 22);
                    this.label2.Name = "label2";
                    this.label2.Size = new System.Drawing.Size(65, 13);
                    this.label2.TabIndex = 3;
                    this.label2.Text = "Layer name:";
                    // 
                    // btnEditConnections
                    // 
                    this.btnEditConnections.Location = new System.Drawing.Point(341, 17);
                    this.btnEditConnections.Name = "btnEditConnections";
                    this.btnEditConnections.Size = new System.Drawing.Size(47, 23);
                    this.btnEditConnections.TabIndex = 1;
                    this.btnEditConnections.Text = "&Edit";
                    this.btnEditConnections.UseVisualStyleBackColor = true;
                    this.btnEditConnections.Click += new System.EventHandler(this.btnEditConnections_Click);
                    // 
                    // btnCreate
                    // 
                    this.btnCreate.Location = new System.Drawing.Point(339, 221);
                    this.btnCreate.Name = "btnCreate";
                    this.btnCreate.Size = new System.Drawing.Size(75, 23);
                    this.btnCreate.TabIndex = 6;
                    this.btnCreate.Text = "&Create";
                    this.btnCreate.UseVisualStyleBackColor = true;
                    this.btnCreate.Click += new System.EventHandler(this.btnCreate_Click);
                    // 
                    // grpPostGIS
                    // 
                    this.grpPostGIS.Controls.Add(this.cmbGeometryTable);
                    this.grpPostGIS.Controls.Add(this.lblGeometryTable);
                    this.grpPostGIS.Controls.Add(this.cmbDatabaseConnections);
                    this.grpPostGIS.Controls.Add(this.lblDatabaseConnections);
                    this.grpPostGIS.Controls.Add(this.btnEditConnections);
                    this.grpPostGIS.Location = new System.Drawing.Point(12, 12);
                    this.grpPostGIS.Name = "grpPostGIS";
                    this.grpPostGIS.Size = new System.Drawing.Size(402, 91);
                    this.grpPostGIS.TabIndex = 6;
                    this.grpPostGIS.TabStop = false;
                    this.grpPostGIS.Text = "PostGIS Properties";
                    // 
                    // cmbGeometryTable
                    // 
                    this.cmbGeometryTable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
                    this.cmbGeometryTable.FormattingEnabled = true;
                    this.cmbGeometryTable.Location = new System.Drawing.Point(128, 53);
                    this.cmbGeometryTable.Name = "cmbGeometryTable";
                    this.cmbGeometryTable.Size = new System.Drawing.Size(207, 21);
                    this.cmbGeometryTable.TabIndex = 2;
                    // 
                    // lblGeometryTable
                    // 
                    this.lblGeometryTable.AutoSize = true;
                    this.lblGeometryTable.Location = new System.Drawing.Point(10, 56);
                    this.lblGeometryTable.Name = "lblGeometryTable";
                    this.lblGeometryTable.Size = new System.Drawing.Size(81, 13);
                    this.lblGeometryTable.TabIndex = 5;
                    this.lblGeometryTable.Text = "Geometry table:";
                    // 
                    // FormNewPostGISFeatClass
                    // 
                    this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
                    this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
                    this.ClientSize = new System.Drawing.Size(426, 253);
                    this.Controls.Add(this.grpPostGIS);
                    this.Controls.Add(this.btnCreate);
                    this.Controls.Add(this.grpFeatureClass);
                    this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
                    this.MaximizeBox = false;
                    this.MinimizeBox = false;
                    this.Name = "FormNewPostGISFeatClass";
                    this.Text = "New PostGIS FeatureClass";
                    this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormNewPostGISFeatClass_FormClosing);
                    this.Shown += new System.EventHandler(this.FormNewPostGISFeatClass_Shown);
                    this.grpFeatureClass.ResumeLayout(false);
                    this.grpFeatureClass.PerformLayout();
                    this.grpPostGIS.ResumeLayout(false);
                    this.grpPostGIS.PerformLayout();
                    this.ResumeLayout(false);

		}

		#endregion

		private System.Windows.Forms.ComboBox cmbDatabaseConnections;
		private System.Windows.Forms.Label lblDatabaseConnections;
		private System.Windows.Forms.GroupBox grpFeatureClass;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Button btnEditConnections;
		private System.Windows.Forms.TextBox txtLayerName;
		private System.Windows.Forms.ComboBox cmbGeometryType;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.TextBox txtFCName;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Button btnCreate;
		private System.Windows.Forms.GroupBox grpPostGIS;
		private System.Windows.Forms.ComboBox cmbGeometryTable;
		private System.Windows.Forms.Label lblGeometryTable;
	}
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)