Home
last modified time | relevance | path

Searched refs:m_Tools (Results 1 – 10 of 10) sorted by relevance

/dports/devel/codeblocks/codeblocks-20.03/src/sdk/
H A Dtoolsmanager.cpp68 m_Tools.DeleteContents(true); in ~ToolsManager()
69 m_Tools.Clear(); in ~ToolsManager()
200 InsertTool(m_Tools.GetCount(), tool, save); in AddTool()
206 m_Tools.Insert(position, new cbTool(*tool)); in InsertTool()
216 for (ToolsList::iterator it = m_Tools.begin(); it != m_Tools.end(); ++it) in RemoveToolByIndex()
220 m_Tools.erase(it); in RemoveToolByIndex()
230 for (ToolsList::iterator it = m_Tools.begin(); it != m_Tools.end(); ++it) in GetToolByMenuId()
242 for (ToolsList::iterator it = m_Tools.begin(); it != m_Tools.end(); ++it) in GetToolByIndex()
284 for (ToolsList::iterator it = m_Tools.begin(); it != m_Tools.end(); ++it) in SaveTools()
314 for (ToolsList::iterator it = m_Tools.begin(); it != m_Tools.end(); ++it) in BuildToolsMenu()
[all …]
/dports/math/saga/saga-8.1.3/saga-gis/src/saga_core/saga_api/
H A Dtool_library_interface.cpp128 m_Tools.Add(pTool); in Create()
140 for(size_t i=0; i<m_Tools.Get_Size(); i++) in Destroy()
142 delete((CSG_Tool *)m_Tools[i]); in Destroy()
145 m_Tools.Destroy(); in Destroy()
169 return( (int)m_Tools.Get_Size() ); in Get_Count()
177 return( (CSG_Tool *)m_Tools[i] ); in Get_Tool()
H A Dtool_chain.h183 virtual int Get_Count (void) const { return( (int)m_Tools.Get_Size() ); } in Get_Count()
191 … Index) const { return( Index >= 0 && Index < Get_Count() ? ((CSG_Tool *)m_Tools[Index])->Get_File… in Get_File_Name()
202 CSG_Array_Pointer m_Tools, m_xTools;
H A Dtool_chain.cpp1965 for(size_t i=0; i<m_Tools.Get_Size(); i++) in ~CSG_Tool_Chains()
1967 delete((CSG_Tool_Chain *)m_Tools[i]); in ~CSG_Tool_Chains()
1993 m_Tools.Add(pTool); in Add_Tool()
2003 CSG_Tool *pTool = Index >= 0 && Index < Get_Count() ? (CSG_Tool_Chain *)m_Tools[Index] : NULL; in Get_Tool()
2031 if( m_xTools.Del(pTool) || m_Tools.Del(pTool) ) in Delete_Tool()
H A Dtool.h637 CSG_Array_Pointer m_Tools, m_xTools; variable
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/wxSmith/wxwidgets/
H A Dwxsitemresdata.cpp140 delete m_Tools[i]; in ~wxsItemResData()
142 m_Tools.clear(); in ~wxsItemResData()
1038 CopyReq(m_Tools[i],Data); in Copy()
1246 m_Tools[i]->ClearSelection(); in SelectItem()
1314 Object.AddItem(m_Tools[i]); in GetXmlData()
1339 delete m_Tools[i]; in SetXmlData()
1341 m_Tools.Clear(); in SetXmlData()
1407 m_Tools.Add(Tool); in InsertNewTool()
1421 delete m_Tools[i]; in DeleteSelected()
1422 m_Tools.RemoveAt(i); in DeleteSelected()
[all …]
H A Dwxsitemresdata.h258 inline int GetToolsCount() { return (int)m_Tools.Count(); } in GetToolsCount()
261 …inline wxsTool* GetTool(int Index) { return ((Index>=0)&&(Index<GetToolsCount())) ? m_Tools[Index]… in GetTool()
378 ToolArrayT m_Tools; variable
/dports/science/gchemutils/gnome-chemistry-utils-0.14.16/libs/gcp/
H A Dapplication.cc490 map<string, Tool*>::iterator tool = m_Tools.begin(), endtool = m_Tools.end(); in ~Application()
493 m_Tools.clear (); in ~Application()
525 if (m_Tools[toolname]) { in ActivateTool()
527 if (m_pActiveTool != m_Tools[toolname]) { in ActivateTool()
530 m_pActiveTool = m_Tools[toolname]; in ActivateTool()
540 if (m_pActiveTool == m_Tools[toolname]) in ActivateTool()
542 m_Tools[toolname]->Activate (false); in ActivateTool()
920 map<string, Tool*>::iterator i = m_Tools.begin (), end = m_Tools.end (); in InitTools()
959 Tool *new_tool = m_Tools[new_tool_name]; in OnToolChanged()
980 m_pActiveTool = m_Tools["Select"]; in BuildTools()
[all …]
H A Dapplication.h198 Tool* GetTool (const std::string& name) {return m_Tools[name];} in GetTool()
206 void SetTool (const std::string& toolname, Tool* tool) {m_Tools[toolname] = tool;} in SetTool()
455 std::map <std::string, Tool*> m_Tools; variable
/dports/devel/codeblocks/codeblocks-20.03/src/include/
H A Dtoolsmanager.h35 int GetToolsCount() const { return m_Tools.GetCount(); } in GetToolsCount()
52 ToolsList m_Tools; variable