📄 wksp.cpp
字号:
///////////////////////////////////////////////////////////
// //
// SAGA //
// //
// System for Automated Geoscientific Analyses //
// //
// User Interface //
// //
// Program: SAGA //
// //
//-------------------------------------------------------//
// //
// WKSP.cpp //
// //
// Copyright (C) 2005 by Olaf Conrad //
// //
//-------------------------------------------------------//
// //
// This file is part of 'SAGA - System for Automated //
// Geoscientific Analyses'. SAGA is free software; you //
// can redistribute it and/or modify it under the terms //
// of the GNU General Public License as published by the //
// Free Software Foundation; version 2 of the License. //
// //
// SAGA 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 General //
// Public License along with this program; if not, //
// write to the Free Software Foundation, Inc., //
// 59 Temple Place - Suite 330, Boston, MA 02111-1307, //
// USA. //
// //
//-------------------------------------------------------//
// //
// contact: Olaf Conrad //
// Institute of Geography //
// University of Goettingen //
// Goldschmidtstr. 5 //
// 37077 Goettingen //
// Germany //
// //
// e-mail: oconrad@saga-gis.org //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
#include <wx/image.h>
#include <wx/imaglist.h>
#include <saga_api/saga_api.h>
#include "helper.h"
#include "res_commands.h"
#include "res_controls.h"
#include "res_images.h"
#include "res_dialogs.h"
#include "active.h"
#include "wksp.h"
#include "wksp_module_control.h"
#include "wksp_module_manager.h"
#include "wksp_data_control.h"
#include "wksp_data_manager.h"
#include "wksp_data_layers.h"
#include "wksp_map_control.h"
#include "wksp_map_manager.h"
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
enum
{
IMG_MODULES = 0,
IMG_DATA,
IMG_LAYERS,
IMG_MAPS
};
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
CWKSP *g_pWKSP = NULL;
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
BEGIN_EVENT_TABLE(CWKSP, wxNotebook)
EVT_NOTEBOOK_PAGE_CHANGING (ID_WND_WKSP, CWKSP::On_Page_Changing)
EVT_NOTEBOOK_PAGE_CHANGED (ID_WND_WKSP, CWKSP::On_Page_Changed)
END_EVENT_TABLE()
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
CWKSP::CWKSP(wxWindow *pParent)
: wxNotebook(pParent, ID_WND_WKSP, wxDefaultPosition, wxDefaultSize, NOTEBOOK_STYLE|wxNB_MULTILINE, LNG("[CAP] Workspace"))
{
g_pWKSP = this;
//-----------------------------------------------------
AssignImageList(new wxImageList(IMG_SIZE_NOTEBOOK, IMG_SIZE_NOTEBOOK, true, 0));
IMG_ADD_TO_NOTEBOOK(ID_IMG_NB_WKSP_MODULES);
IMG_ADD_TO_NOTEBOOK(ID_IMG_NB_WKSP_DATA);
IMG_ADD_TO_NOTEBOOK(ID_IMG_NB_WKSP_LAYERS);
IMG_ADD_TO_NOTEBOOK(ID_IMG_NB_WKSP_MAPS);
//-----------------------------------------------------
m_pModules = new CWKSP_Module_Control(this);
m_pData = new CWKSP_Data_Control (this);
m_pLayers = new CWKSP_Data_Layers (this);
m_pMaps = new CWKSP_Map_Control (this);
}
//---------------------------------------------------------
void CWKSP::Add_Pages(void)
{
AddPage(m_pModules, LNG("[CAP] Modules"), false, IMG_MODULES);
AddPage(m_pData , LNG("[CAP] Data") , false, IMG_DATA);
AddPage(m_pLayers , LNG("[CAP] Layers") , false, IMG_LAYERS);
AddPage(m_pMaps , LNG("[CAP] Maps") , false, IMG_MAPS);
}
//---------------------------------------------------------
CWKSP::~CWKSP(void)
{
g_pWKSP = NULL;
}
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
void CWKSP::On_Page_Changing(wxNotebookEvent &event)
{
event.Skip();
}
//---------------------------------------------------------
void CWKSP::On_Page_Changed(wxNotebookEvent &event)
{
event.Skip();
if( event.GetSelection() >= 0 && g_pACTIVE && GetPage(event.GetSelection()) != m_pLayers )
{
g_pACTIVE->Set_Active(((CWKSP_Base_Control *)GetPage(event.GetSelection()))->Get_Item_Selected());
}
}
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
void CWKSP::On_Command(wxCommandEvent &event)
{
switch( event.GetId() )
{
default:
if( !g_pACTIVE->Get_Item() || !g_pACTIVE->Get_Item()->On_Command(event.GetId()) )
{
m_pModules->On_Command(event);
m_pData ->On_Command(event);
m_pMaps ->On_Command(event);
}
break;
case ID_CMD_WKSP_OPEN:
Open();
break;
}
}
void CWKSP::On_Command_UI(wxUpdateUIEvent &event)
{
switch( event.GetId() )
{
default:
if( !g_pACTIVE->Get_Item() || !g_pACTIVE->Get_Item()->On_Command_UI(event) )
{
m_pModules->On_Command_UI(event);
m_pData ->On_Command_UI(event);
m_pMaps ->On_Command_UI(event);
}
break;
case ID_CMD_WKSP_OPEN:
break;
}
}
//---------------------------------------------------------
void CWKSP::On_Command_Module(wxCommandEvent &event)
{
m_pModules->On_Execute(event);
}
void CWKSP::On_Command_UI_Module(wxUpdateUIEvent &event)
{
m_pModules->On_Execute_UI(event);
}
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
bool CWKSP::Open(void)
{
wxArrayString File_Paths;
if( DLG_Open(File_Paths, ID_DLG_WKSP_OPEN) )
{
MSG_General_Add_Line();
for(size_t i=0; i<File_Paths.GetCount(); i++)
{
Open(File_Paths[i]);
}
return( true );
}
return( false );
}
//---------------------------------------------------------
bool CWKSP::Open(const wxChar *File_Name)
{
return( m_pModules ->Get_Manager()->Open(File_Name)
|| m_pData ->Get_Manager()->Open(File_Name)
);
}
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -