summaryrefslogtreecommitdiffstats
path: root/src/gui/WindowFactory.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-28 01:10:26 +0000
committerDavid Robillard <d@drobilla.net>2012-04-28 01:10:26 +0000
commit70f4bcdde45e94dbe27300a5069994aebc523cab (patch)
tree049b88a7adfb4c11d4fb3643024422ce8b20ab32 /src/gui/WindowFactory.hpp
parentb08a8a15fd136ab8323e282484a5a96d698dc808 (diff)
downloadingen-70f4bcdde45e94dbe27300a5069994aebc523cab.tar.gz
ingen-70f4bcdde45e94dbe27300a5069994aebc523cab.tar.bz2
ingen-70f4bcdde45e94dbe27300a5069994aebc523cab.zip
Remove using declarations from headers.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4288 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/WindowFactory.hpp')
-rw-r--r--src/gui/WindowFactory.hpp58
1 files changed, 27 insertions, 31 deletions
diff --git a/src/gui/WindowFactory.hpp b/src/gui/WindowFactory.hpp
index 18117570..69e66e72 100644
--- a/src/gui/WindowFactory.hpp
+++ b/src/gui/WindowFactory.hpp
@@ -24,16 +24,11 @@
#include "ingen/GraphObject.hpp"
#include "raul/SharedPtr.hpp"
-using namespace Ingen::Shared;
-
namespace Raul { class Path; }
namespace Ingen {
namespace Client { class PatchModel; class NodeModel; class ObjectModel; }
-using Ingen::Client::PatchModel;
-using Ingen::Client::NodeModel;
-using Ingen::Client::ObjectModel;
namespace GUI {
@@ -62,25 +57,26 @@ public:
size_t num_open_patch_windows();
- PatchBox* patch_box(SharedPtr<const PatchModel> patch);
- PatchWindow* patch_window(SharedPtr<const PatchModel> patch);
- PatchWindow* parent_patch_window(SharedPtr<const NodeModel> node);
- NodeControlWindow* control_window(SharedPtr<const NodeModel> node);
+ PatchBox* patch_box(SharedPtr<const Client::PatchModel> patch);
+ PatchWindow* patch_window(SharedPtr<const Client::PatchModel> patch);
+ PatchWindow* parent_patch_window(SharedPtr<const Client::NodeModel> node);
+ NodeControlWindow* control_window(SharedPtr<const Client::NodeModel> node);
- void present_patch(SharedPtr<const PatchModel> model,
- PatchWindow* preferred = NULL,
- SharedPtr<PatchView> view = SharedPtr<PatchView>());
+ void present_patch(
+ SharedPtr<const Client::PatchModel> model,
+ PatchWindow* preferred = NULL,
+ SharedPtr<PatchView> view = SharedPtr<PatchView>());
- void present_controls(SharedPtr<const NodeModel> node);
+ void present_controls(SharedPtr<const Client::NodeModel> node);
typedef GraphObject::Properties Properties;
- void present_load_plugin(SharedPtr<const PatchModel> patch, Properties data=Properties());
- void present_load_patch(SharedPtr<const PatchModel> patch, Properties data=Properties());
- void present_load_subpatch(SharedPtr<const PatchModel> patch, Properties data=Properties());
- void present_new_subpatch(SharedPtr<const PatchModel> patch, Properties data=Properties());
- void present_rename(SharedPtr<const ObjectModel> object);
- void present_properties(SharedPtr<const ObjectModel> object);
+ void present_load_plugin(SharedPtr<const Client::PatchModel> patch, Properties data=Properties());
+ void present_load_patch(SharedPtr<const Client::PatchModel> patch, Properties data=Properties());
+ void present_load_subpatch(SharedPtr<const Client::PatchModel> patch, Properties data=Properties());
+ void present_new_subpatch(SharedPtr<const Client::PatchModel> patch, Properties data=Properties());
+ void present_rename(SharedPtr<const Client::ObjectModel> object);
+ void present_properties(SharedPtr<const Client::ObjectModel> object);
bool remove_patch_window(PatchWindow* win, GdkEventAny* ignored = NULL);
@@ -92,22 +88,22 @@ private:
typedef std::map<Raul::Path, PatchWindow*> PatchWindowMap;
typedef std::map<Raul::Path, NodeControlWindow*> ControlWindowMap;
- PatchWindow* new_patch_window(SharedPtr<const PatchModel> patch,
- SharedPtr<PatchView> view);
+ PatchWindow* new_patch_window(SharedPtr<const Client::PatchModel> patch,
+ SharedPtr<PatchView> view);
- NodeControlWindow* new_control_window(SharedPtr<const NodeModel> node);
+ NodeControlWindow* new_control_window(SharedPtr<const Client::NodeModel> node);
bool remove_control_window(NodeControlWindow* win,
GdkEventAny* ignored);
- App& _app;
- PatchBox* _main_box;
- PatchWindowMap _patch_windows;
- ControlWindowMap _control_windows;
- LoadPluginWindow* _load_plugin_win;
- LoadPatchWindow* _load_patch_win;
- NewSubpatchWindow* _new_subpatch_win;
- PropertiesWindow* _properties_win;
- RenameWindow* _rename_win;
+ App& _app;
+ PatchBox* _main_box;
+ PatchWindowMap _patch_windows;
+ ControlWindowMap _control_windows;
+ LoadPluginWindow* _load_plugin_win;
+ LoadPatchWindow* _load_patch_win;
+ NewSubpatchWindow* _new_subpatch_win;
+ PropertiesWindow* _properties_win;
+ RenameWindow* _rename_win;
};
} // namespace GUI