 |
SAGA API
v9.8
|
Go to the documentation of this file.
53 #ifndef HEADER_INCLUDED__SAGA_API__tool_H
54 #define HEADER_INCLUDED__SAGA_API__tool_H
197 bool Reset (
bool bManager =
true);
208 bool Delete_Manager (
bool bDetachData =
false,
bool bReset =
true);
214 bool Settings_Pop (
void);
218 virtual bool needs_GUI (
void)
const {
return(
false ); }
219 bool has_GUI (
void)
const;
220 bool has_CMD (
void)
const;
222 virtual bool is_Grid (
void)
const {
return(
false ); }
227 void Set_Show_Progress (
bool bOn =
true);
232 bool Execute (
bool bAddHistory =
false);
239 CMD_Shell, CMD_Batch, CMD_Usage,
242 Python_Wrapper_Func_Name, Python_Wrapper_Func_ID,
243 Python_Wrapper_Call_Name, Python_Wrapper_Call_ID
246 CSG_String Get_Script (Script_Format Format,
bool bHeader =
true,
int Arguments = 0,
bool bWrapArgs =
true);
260 void Set_Description (
const CSG_String &String);
275 bool Dlg_Parameters (
const CSG_String &Identifier);
281 virtual bool Set_Progress (
int Position,
int Range )
const;
282 virtual bool Set_Progress (
sLong Position,
sLong Range )
const;
283 virtual bool Set_Progress (
double Position,
double Range = 1.)
const;
285 bool Stop_Execution (
bool bDialog =
true);
288 bool Message_Dlg_Confirm (
const CSG_String &Text,
const SG_Char *Caption = NULL);
290 void Message_Add (
const CSG_String &Text,
bool bNewLine =
true);
291 void Message_Fmt (
const char *Format, ...);
292 void Message_Fmt (
const wchar_t *Format, ...);
296 bool Error_Fmt (
const char *Format, ...);
297 bool Error_Fmt (
const wchar_t *Format, ...);
300 bool DataObject_Add (
CSG_Data_Object *pDataObject,
bool bUpdate =
false);
302 void DataObject_Update_All (
void);
311 static bool Process_Get_Okay (
bool bBlink =
false);
312 static void Process_Set_Text (
const CSG_String &Text);
313 static void Process_Set_Text (
const char *Format, ...);
314 static void Process_Set_Text (
const wchar_t *Format, ...);
336 static int _On_Parameter_Changed (
CSG_Parameter *pParameter,
int Flags);
341 bool m_bExecutes, m_bError_Ignore, m_bShow_Progress, m_bGUI, m_bCMD;
345 CSG_String m_ID, m_Library, m_Library_Menu, m_File_Name, m_Author, m_Version, m_Execution_Info;
348 bool _Synchronize_DataObjects (
void);
350 CSG_String _Get_Script_CMD (
bool bHeader ,
bool bAllArguments,
bool bWrapArgs,
bool bBatch);
351 void _Get_Script_CMD (
CSG_String &Script,
CSG_Parameters *pParameters,
bool bAllArguments,
bool bWrapArgs,
bool bBatch);
354 void _Get_Script_CMD_Usage (
CSG_Parameters *pParameters,
class wxCmdLineParser &Parser);
356 CSG_String _Get_Script_Python (
bool bHeader,
bool bAllArguments);
359 CSG_String _Get_Script_Python_Wrap (
bool bHeader,
bool bName,
bool bCall,
int AllArguments,
bool bWrapArgs);
363 void _Set_Output_History (
void);
392 virtual bool is_Grid (
void)
const {
return(
true ); }
397 virtual bool Set_Progress_Cells (
sLong Cell)
const;
398 virtual bool Set_Progress_Rows (
int Row)
const;
401 int Get_NX (
void)
const {
return( Get_System().Get_NX () ); }
402 int Get_NY (
void)
const {
return( Get_System().Get_NY () ); }
404 double Get_XMin (
void)
const {
return( Get_System().Get_XMin () ); }
405 double Get_YMin (
void)
const {
return( Get_System().Get_YMin () ); }
406 double Get_XMax (
void)
const {
return( Get_System().Get_XMax () ); }
407 double Get_YMax (
void)
const {
return( Get_System().Get_YMax () ); }
411 double Get_Length (
int i)
const {
return( Get_System().Get_Length (i) ); }
422 void Lock_Create (
void);
423 void Lock_Destroy (
void);
425 bool is_Locked (
int x,
int y) {
return( Lock_Get(x, y) != 0 ); }
426 char Lock_Get (
int x,
int y) {
return( m_pLock && x >= 0 && x < Get_NX() && y >= 0 && y < Get_NY() ? m_pLock->asChar(x, y) : 0 ); }
430 if( m_pLock && x >= 0 && x < Get_NX() && y >= 0 && y < Get_NY() )
432 m_pLock->Set_Value(x, y, Value);
481 #define TOOL_INTERACTIVE_KEY_LEFT 0x01
482 #define TOOL_INTERACTIVE_KEY_MIDDLE 0x02
483 #define TOOL_INTERACTIVE_KEY_RIGHT 0x04
484 #define TOOL_INTERACTIVE_KEY_SHIFT 0x08
485 #define TOOL_INTERACTIVE_KEY_ALT 0x10
486 #define TOOL_INTERACTIVE_KEY_CTRL 0x20
536 int m_Keys, m_Drag_Mode;
599 bool Get_Grid_Pos (
int &x,
int &y)
const;
601 int Get_xGrid (
void)
const;
602 int Get_yGrid (
void)
const;
631 typedef CSG_Tool * (* TSG_PFNC_TLB_Create_Tool) (
int i);
646 int Get_Count (
void);
649 CSG_Tool * Create_Tool (
int i,
bool bWithGUI =
false,
bool bWithCMD =
true);
651 bool Delete_Tools (
void);
665 #define SYMBOL_TLB_Initialize "TLB_Initialize"
668 #define SYMBOL_TLB_Finalize "TLB_Finalize"
671 #define SYMBOL_TLB_Get_Interface "TLB_Get_Interface"
675 #define TLB_INTERFACE_SKIP_TOOL ((CSG_Tool *)0x1)
678 #define TLB_INTERFACE_ESTABLISH CSG_Tool_Library_Interface TLB_Interface;\
680 extern "C" _SAGA_DLL_EXPORT CSG_Tool_Library_Interface * TLB_Get_Interface (void)\
682 return( &TLB_Interface );\
686 #define TLB_INTERFACE_INITIALIZE extern "C" _SAGA_DLL_EXPORT bool TLB_Initialize(const SG_Char *TLB_Path)\
688 return( TLB_Interface.Create(SAGA_VERSION, TLB_Path, Get_Info, Create_Tool) );\
692 #define TLB_INTERFACE_FINALIZE extern "C" _SAGA_DLL_EXPORT bool TLB_Finalize (void)\
698 #define TLB_INTERFACE TLB_INTERFACE_ESTABLISH TLB_INTERFACE_INITIALIZE TLB_INTERFACE_FINALIZE
705 #endif // #ifdef SWIG
715 #endif // #ifndef HEADER_INCLUDED__SAGA_API__tool_H
static int Get_xTo(int Direction, int x=0)
bool SG_UI_Process_Get_Okay(bool bBlink)
static int Get_yTo(int Direction, int y=0)
@ SG_UI_DATAOBJECT_UPDATE
@ PARAMETER_TYPE_Undefined
#define SAGA_API_DLL_EXPORT
static int Get_yFrom(int Direction, int y=0)
static int Get_xFrom(int Direction, int x=0)
int(* TSG_PFNC_Parameter_Changed)(CSG_Parameter *pParameter, int Flags)