comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:1aca3d413885
1 /*
2 * Postarc
3 *
4 * Author:
5 * Christian Lins <christian.lins@intevation.de>
6 *
7 * Copyright:
8 * Copyright (C) 2012 Intevation GmbH <http://www.intevation.de/>
9 *
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 using System;
25 using System.Collections.Generic;
26 using System.Linq;
27 using System.Text;
28 using System.Runtime.InteropServices;
29 using ESRI.ArcGIS.Catalog;
30 using ESRI.ArcGIS.esriSystem;
31
32 namespace Postarc.Catalog
33 {
34 [Guid("980885BD-E760-4FE8-9A99-4153EA116886")]
35 public class GxAddNewPostGISConnection :
36 IGxBasicObject,
37 IGxObject,
38 IGxObjectUI,
39 IGxObjectWizard,
40 IGxObjectEdit, IGxObjectProperties
41 {
42 public void Invoke(int hParentWnd)
43 {
44 /// throw new NotImplementedException();
45 }
46
47 public void Attach(IGxObject Parent, IGxCatalog pCatalog)
48 {
49 //throw new NotImplementedException();
50 }
51
52 public string BaseName
53 {
54 get
55 {
56 return "AddNewPostGIS";
57 }
58 }
59
60 public string Category
61 {
62 get
63 {
64 throw new NotImplementedException();
65 }
66 }
67
68 public ESRI.ArcGIS.esriSystem.UID ClassID
69 {
70 get
71 {
72 UID clsid = new UIDClass();
73 clsid.Value = "{980885BD-E760-4FE8-9A99-4153EA116886}";
74 return clsid;
75 }
76 }
77
78 public void Detach()
79 {
80 throw new NotImplementedException();
81 }
82
83 public string FullName
84 {
85 get
86 {
87 throw new NotImplementedException();
88 }
89 }
90
91 public ESRI.ArcGIS.esriSystem.IName InternalObjectName
92 {
93 get
94 {
95 throw new NotImplementedException();
96 }
97 }
98
99 public bool IsValid
100 {
101 get
102 {
103 throw new NotImplementedException();
104 }
105 }
106
107 public string Name
108 {
109 get
110 {
111 throw new NotImplementedException();
112 }
113 }
114
115 public IGxObject Parent
116 {
117 get
118 {
119 throw new NotImplementedException();
120 }
121 }
122
123 public void Refresh()
124 {
125 throw new NotImplementedException();
126 }
127
128 public ESRI.ArcGIS.esriSystem.UID ContextMenu
129 {
130 get
131 {
132 throw new NotImplementedException();
133 }
134 }
135
136 public int LargeImage
137 {
138 get
139 {
140 throw new NotImplementedException();
141 }
142 }
143
144 public int LargeSelectedImage
145 {
146 get
147 {
148 throw new NotImplementedException();
149 }
150 }
151
152 public ESRI.ArcGIS.esriSystem.UID NewMenu
153 {
154 get
155 {
156 throw new NotImplementedException();
157 }
158 }
159
160 public int SmallImage
161 {
162 get
163 {
164 throw new NotImplementedException();
165 }
166 }
167
168 public int SmallSelectedImage
169 {
170 get
171 {
172 throw new NotImplementedException();
173 }
174 }
175
176 public bool CanCopy()
177 {
178 throw new NotImplementedException();
179 }
180
181 public bool CanDelete()
182 {
183 throw new NotImplementedException();
184 }
185
186 public bool CanRename()
187 {
188 throw new NotImplementedException();
189 }
190
191 public void Delete()
192 {
193 throw new NotImplementedException();
194 }
195
196 public void EditProperties(int hParent)
197 {
198 throw new NotImplementedException();
199 }
200
201 public void Rename(string newShortName)
202 {
203 throw new NotImplementedException();
204 }
205
206 public void GetPropByIndex(int index, ref string Name, ref object value)
207 {
208 throw new NotImplementedException();
209 }
210
211 public object GetProperty(string Name)
212 {
213 throw new NotImplementedException();
214 }
215
216 public int PropertyCount
217 {
218 get { throw new NotImplementedException(); }
219 }
220
221 public void SetProperty(string Name, object value)
222 {
223 throw new NotImplementedException();
224 }
225 }
226 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)