summaryrefslogtreecommitdiffstats
path: root/src/gui/App.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-01-07 03:25:15 +0000
committerDavid Robillard <d@drobilla.net>2014-01-07 03:25:15 +0000
commitd30907023903bc7b4a2de16d3fe5d7674861e394 (patch)
tree8395666227b585b7988361e541e689237b57bb97 /src/gui/App.hpp
parent9a030ad5599aa88c3034d44b63359c7469785eda (diff)
downloadingen-d30907023903bc7b4a2de16d3fe5d7674861e394.tar.gz
ingen-d30907023903bc7b4a2de16d3fe5d7674861e394.tar.bz2
ingen-d30907023903bc7b4a2de16d3fe5d7674861e394.zip
Remove unused plugin icon stuff.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5295 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/App.hpp')
-rw-r--r--src/gui/App.hpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/gui/App.hpp b/src/gui/App.hpp
index 11915949..dbb0465c 100644
--- a/src/gui/App.hpp
+++ b/src/gui/App.hpp
@@ -106,8 +106,6 @@ public:
Style* style() const { return _style; }
WindowFactory* window_factory() const { return _window_factory; }
- Glib::RefPtr<Gdk::Pixbuf> icon_from_path(const std::string& path, int size);
-
Ingen::Forge& forge() const { return _world->forge(); }
SPtr<Ingen::Interface> interface() const { return _world->interface(); }
SPtr<Client::SigClientInterface> client() const { return _client; }
@@ -124,21 +122,6 @@ public:
inline Ingen::Log& log() const { return _world->log(); }
protected:
-
- /** This is needed for the icon map. */
- template <typename A, typename B>
- struct LexicalCompare {
- bool operator()(const std::pair<A, B>& p1, const std::pair<A, B>& p2) {
- return (p1.first < p2.first) ||
- ((p1.first == p2.first) && (p1.second < p2.second));
- }
- };
-
- typedef std::map< std::pair<std::string, int>,
- Gdk::Pixbuf*,
- LexicalCompare<std::string, int> > Icons;
- Icons _icons;
-
explicit App(Ingen::World* world);
bool animate();
@@ -148,8 +131,6 @@ protected:
const Raul::URI& key,
const Atom& value);
- static void* icon_destroyed(void* data);
-
static Gtk::Main* _main;
SPtr<Client::SigClientInterface> _client;