Version: 0.6.0
geoprocessingui.h
1 /******************************************************************************
2  * Project: wxGIS (GIS Toolbox)
3  * Purpose: geoprocessingui header.
4  * Author: Dmitry Baryshnikov (aka Bishop), polimax@mail.ru
5  ******************************************************************************
6 * Copyright (C) 2009-2010 Dmitry Baryshnikov
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20  ****************************************************************************/
21 
22 #pragma once
23 
24 #include "wxgis/catalogui/catalogui.h"
25 #include "wxgis/geoprocessing/geoprocessing.h"
26 
27 #define SASHCTRLID 1012
28 #define TOOLEXECUTECTRLID 1013
29 //#define TOOLBOXVIEWCTRLID 1014
30 #define TOOLVIEWCTRLID 1015
31 #define TASKSVIEWCTRLID 1016
32 
36 /*
37 class IToolManagerUI
38 {
39 public:
40  virtual ~IToolManagerUI(void){}; /*
46  virtual IGPToolSPtr GetGPTool(wxString sToolName) = 0; /*
53  virtual void ExecuteTool(wxWindow* pParentWnd, IGPToolSPtr pTool, bool bSync) = 0; /*
60  virtual bool PrepareTool(wxWindow* pParentWnd, IGPToolSPtr pTool, bool bSync) = 0;
61  //TODO: brief advise or unadvise event receiver for process events -> to task_manager
62  virtual long Advise(wxEvtHandler* pEvtHandler) = 0;
63  virtual void Unadvise(long nCookie) = 0;
64 };
65 */
66 
67