21 #ifndef __ANTARES_TOOLBOX_MAP_CONTROLS_ADD_TOOLS_H__
22 #define __ANTARES_TOOLBOX_MAP_CONTROLS_ADD_TOOLS_H__
24 #include "../tools/tool.h"
25 #include "../manager.h"
27 namespace Antares::Map::Private
34 const int selectedCount,
35 const int connectionSelectedCount,
37 const wxPoint& bottom);
45 T* t =
new T(pManager);
51 T* createToolToTheLeft()
53 T* t = createInstance<T>();
54 t->x(pTop.x - t->width());
56 pTop.y += t->height();
61 T* createToolToTheBottom()
63 T* t = createInstance<T>();
66 pBottom.x += t->width();
70 void createToolsForRealNodes();
71 void createToolsForConnections();
72 Tool::Tool* createCommonTools(
const bool haveRealNodes,
const bool haveConnections);
77 const int pSelectedCount;
78 const int pConnectionsSelectedCount;
A convenient container for nodes on the graph.
Definition: manager.h:44