summaryrefslogtreecommitdiffstats
path: root/src/JackSettingsDialog.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-24 19:26:47 +0000
committerDavid Robillard <d@drobilla.net>2007-07-24 19:26:47 +0000
commit560fac6a42644bd7584db5f53db19c936ef50ab0 (patch)
tree480f0cc071fd83a1e71b7deaa17ca6f98d2412f3 /src/JackSettingsDialog.h
parentf8b4b09e42318eed8b7cd1fe6746fa4bc542771f (diff)
downloadpatchage-560fac6a42644bd7584db5f53db19c936ef50ab0.tar.gz
patchage-560fac6a42644bd7584db5f53db19c936ef50ab0.tar.bz2
patchage-560fac6a42644bd7584db5f53db19c936ef50ab0.zip
Consistently rename all C++ files .cpp/.hpp.
Fix (some) inclusion guard names to not clash with other libs. git-svn-id: http://svn.drobilla.net/lad/patchage@613 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/JackSettingsDialog.h')
-rw-r--r--src/JackSettingsDialog.h86
1 files changed, 0 insertions, 86 deletions
diff --git a/src/JackSettingsDialog.h b/src/JackSettingsDialog.h
deleted file mode 100644
index 4900a60..0000000
--- a/src/JackSettingsDialog.h
+++ /dev/null
@@ -1,86 +0,0 @@
-/* This file is part of Patchage.
- * Copyright (C) 2007 Dave 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 JACK_SETTINGS_DIALOG_H
-#define JACK_SETTINGS_DIALOG_H
-
-#include <libglademm/xml.h>
-#include <libglademm.h>
-#include <gtkmm/dialog.h>
-#include <fstream>
-
-
-class JackSettingsDialog : public Gtk::Dialog {
-public:
- JackSettingsDialog(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& xml)
- : Gtk::Dialog(cobject)
- {
- xml->get_widget("jack_settings_command_entry", _command_entry);
- xml->get_widget("jack_settings_cancel_button", _cancel_button);
- xml->get_widget("jack_settings_ok_button", _ok_button);
-
- _cancel_button->signal_clicked().connect(sigc::mem_fun(this, &JackSettingsDialog::on_cancel));
- _ok_button->signal_clicked().connect(sigc::mem_fun(this, &JackSettingsDialog::on_ok));
- _command_entry->set_text(current_jack_command());
- }
-
-private:
- void on_cancel()
- {
- hide();
- }
-
- string current_jack_command()
- {
- string result;
-
- const char* const home = getenv("HOME");
- if (home) {
- string jackdrc_path(home);
- jackdrc_path += "/.jackdrc";
-
- ifstream jackdrc(jackdrc_path.c_str());
- std::getline(jackdrc, result);
- jackdrc.close();
- }
-
- return result;
- }
-
- void on_ok()
- {
- hide();
- const char* const home = getenv("HOME");
- if (home) {
- string jackdrc_path(home);
- jackdrc_path += "/.jackdrc";
-
- ofstream jackdrc(jackdrc_path.c_str());
- jackdrc << _command_entry->get_text() << endl;
- jackdrc.close();
- }
- }
-
-
- Gtk::Entry* _command_entry;
- Gtk::Button* _cancel_button;
- Gtk::Button* _ok_button;
-};
-
-
-#endif // JACK_SETTINGS_DIALOG_H
-