diff Postarc/Postarc/Catalog/GxAddNewPostGISConnection.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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Postarc/Postarc/Catalog/GxAddNewPostGISConnection.cs	Fri Oct 05 23:55:06 2012 +0200
@@ -0,0 +1,226 @@
+/*
+ * 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/>.
+*/
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Runtime.InteropServices;
+using ESRI.ArcGIS.Catalog;
+using ESRI.ArcGIS.esriSystem;
+
+namespace Postarc.Catalog
+{
+	[Guid("980885BD-E760-4FE8-9A99-4153EA116886")]
+	public class GxAddNewPostGISConnection :
+ 		IGxBasicObject,
+		IGxObject,
+		IGxObjectUI,
+		IGxObjectWizard,
+		IGxObjectEdit, IGxObjectProperties
+	{
+		public void Invoke(int hParentWnd)
+		{
+		///	throw new NotImplementedException();
+		}
+
+		public void Attach(IGxObject Parent, IGxCatalog pCatalog)
+		{
+			//throw new NotImplementedException();
+		}
+
+		public string BaseName
+		{
+			get
+			{
+				return "AddNewPostGIS"; 
+			}
+		}
+
+		public string Category
+		{
+			get
+			{ 
+				throw new NotImplementedException();
+			}
+		}
+
+		public ESRI.ArcGIS.esriSystem.UID ClassID
+		{
+			get
+			{
+				UID clsid = new UIDClass();
+				clsid.Value = "{980885BD-E760-4FE8-9A99-4153EA116886}";
+				return clsid;
+			}
+		}
+
+		public void Detach()
+		{
+			throw new NotImplementedException();
+		}
+
+		public string FullName
+		{
+			get
+			{
+				throw new NotImplementedException();
+			}
+		}
+
+		public ESRI.ArcGIS.esriSystem.IName InternalObjectName
+		{
+			get 
+			{ 
+				throw new NotImplementedException(); 
+			}
+		}
+
+		public bool IsValid
+		{
+			get 
+			{ 
+				throw new NotImplementedException(); 
+			}
+		}
+
+		public string Name
+		{
+			get 
+			{ 
+				throw new NotImplementedException(); 
+			}
+		}
+
+		public IGxObject Parent
+		{
+			get 
+			{ 
+				throw new NotImplementedException(); 
+			}
+		}
+
+		public void Refresh()
+		{
+			throw new NotImplementedException();
+		}
+
+		public ESRI.ArcGIS.esriSystem.UID ContextMenu
+		{
+			get 
+			{ 
+				throw new NotImplementedException(); 
+			}
+		}
+
+		public int LargeImage
+		{
+			get 
+			{ 
+				throw new NotImplementedException(); 
+			}
+		}
+
+		public int LargeSelectedImage
+		{
+			get 
+			{ 
+				throw new NotImplementedException(); 
+			}
+		}
+
+		public ESRI.ArcGIS.esriSystem.UID NewMenu
+		{
+			get 
+			{ 
+				throw new NotImplementedException(); 
+			}
+		}
+
+		public int SmallImage
+		{
+			get 
+			{ 
+				throw new NotImplementedException(); 
+			}
+		}
+
+		public int SmallSelectedImage
+		{
+			get 
+			{ 
+				throw new NotImplementedException(); 
+			}
+		}
+
+		public bool CanCopy()
+		{
+			throw new NotImplementedException();
+		}
+
+		public bool CanDelete()
+		{
+			throw new NotImplementedException();
+		}
+
+		public bool CanRename()
+		{
+			throw new NotImplementedException();
+		}
+
+		public void Delete()
+		{
+			throw new NotImplementedException();
+		}
+
+		public void EditProperties(int hParent)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void Rename(string newShortName)
+		{
+			throw new NotImplementedException();
+		}
+
+		public void GetPropByIndex(int index, ref string Name, ref object value)
+		{
+			throw new NotImplementedException();
+		}
+
+		public object GetProperty(string Name)
+		{
+			throw new NotImplementedException();
+		}
+
+		public int PropertyCount
+		{
+			get { throw new NotImplementedException(); }
+		}
+
+		public void SetProperty(string Name, object value)
+		{
+			throw new NotImplementedException();
+		}
+	}
+}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)