summaryrefslogtreecommitdiffstats
path: root/src/GladeFile.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-20 03:27:08 +0000
committerDavid Robillard <d@drobilla.net>2011-05-20 03:27:08 +0000
commitf514dcc9e339cbffa42fcc4e1381f18205e301b5 (patch)
tree298053cc51e8bd0dc4ab5d99cbc2cfad6decc6bd /src/GladeFile.hpp
parent09ebe1211eeb0c849fcaa60497d60323640fff5d (diff)
downloadpatchage-f514dcc9e339cbffa42fcc4e1381f18205e301b5.tar.gz
patchage-f514dcc9e339cbffa42fcc4e1381f18205e301b5.tar.bz2
patchage-f514dcc9e339cbffa42fcc4e1381f18205e301b5.zip
Remove dependency on glade and glademm (migrate to GtkBuilder).
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3295 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/GladeFile.hpp')
-rw-r--r--src/GladeFile.hpp75
1 files changed, 0 insertions, 75 deletions
diff --git a/src/GladeFile.hpp b/src/GladeFile.hpp
deleted file mode 100644
index 9f850b7..0000000
--- a/src/GladeFile.hpp
+++ /dev/null
@@ -1,75 +0,0 @@
-/* This file is part of Patchage.
- * Copyright 2007-2011 David Robillard <http://drobilla.net>
- *
- * Patchage is free software; you can redistribute it and/or modify it under the
- * terms of the GNU General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option) any later
- * version.
- *
- * Patchage is distributed in the hope that it will be useful, but WITHOUT ANY
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#ifndef PATCHAGE_GLADEFILE_HPP
-#define PATCHAGE_GLADEFILE_HPP
-
-#include <fstream>
-#include <sstream>
-#include <stdexcept>
-#include <string>
-
-#include <libglademm/xml.h>
-
-#include "raul/log.hpp"
-
-#include "patchage-config.h"
-#ifdef PATCHAGE_BINLOC
-#include "binary_location.h"
-#endif
-
-class GladeFile {
-public:
- inline static bool is_readable(const std::string& filename) {
- std::ifstream fs(filename.c_str());
- const bool fail = fs.fail();
- fs.close();
- return !fail;
- }
-
- static Glib::RefPtr<Gnome::Glade::Xml> open(const std::string& base_name) {
- std::string glade_filename;
- char* loc = NULL;
-#ifdef PATCHAGE_BINLOC
- loc = binary_location();
- if (loc) {
- std::string bundle = loc;
- bundle = bundle.substr(0, bundle.find_last_of("/"));
- glade_filename = bundle + "/" + base_name + ".glade";
- free(loc);
- if (is_readable(glade_filename)) {
- Raul::info << "Loading glade file " << glade_filename << std::endl;
- return Gnome::Glade::Xml::create(glade_filename);
- }
- }
-#endif
- glade_filename = std::string(PATCHAGE_DATA_DIR) + "/" + base_name + ".glade";
- if (is_readable(glade_filename)) {
- Raul::info << "Loading glade file " << glade_filename << std::endl;
- return Gnome::Glade::Xml::create(glade_filename);
- }
-
- std::stringstream ss;
- ss << "Unable to find " << base_name << ".glade in " << loc
- << " or " << PATCHAGE_DATA_DIR << std::endl;
- throw std::runtime_error(ss.str());
- return Glib::RefPtr<Gnome::Glade::Xml>();
- //return Gnome::Glade::Xml::create(glade_filename);
- }
-};
-
-#endif // PATCHAGE_GLADEFILE_HPP