Version: 0.6.0
gxobjcmd.h
1 /******************************************************************************
2  * Project: wxGIS (GIS Catalog)
3  * Purpose: GxObject Commands
4  * Author: Dmitry Baryshnikov (aka Bishop), polimax@mail.ru
5  ******************************************************************************
6 * Copyright (C) 2011-2012 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 #pragma once
22 #include "wxgis/framework/command.h"
23 #include "wxgis/framework/applicationbase.h"
24 
25 
29 /*
30 class wxGISRasterCmd :
31  public wxGISCommand
32 {
33  DECLARE_DYNAMIC_CLASS(wxGISRasterCmd)
34 
35 public:
36  wxGISRasterCmd(void);
37  virtual ~wxGISRasterCmd(void);
38  //wxGISCommand
39  virtual wxIcon GetBitmap(void);
40  virtual wxString GetCaption(void);
41  virtual wxString GetCategory(void);
42  virtual bool GetChecked(void);
43  virtual bool GetEnabled(void);
44  virtual wxString GetMessage(void);
45  virtual wxGISEnumCommandKind GetKind(void);
46  virtual void OnClick(void);
47  virtual bool OnCreate(wxGISApplicationBase* pApp);
48  virtual wxString GetTooltip(void);
49  virtual unsigned char GetCount(void);
50 private:
51  wxGISApplicationBase* m_pApp;
52  //wxIcon m_IconFolderUp, m_IconFolderConn, m_IconFolderConnDel, m_IconDel, m_IconGoPrev, m_IconGoNext;
53  // wxIcon m_IconFolderNew, m_IconEdit, m_IconViewRefresh, m_IconProps;
54  // wxIcon m_LargeFolderIcon, m_SmallFolderIcon;
55  // wxIcon m_CopyIcon, m_CutIcon, m_PasteIcon;
56 };
57 */