#ifndef PREFERENCESWINDOW_H_ #define PREFERENCESWINDOW_H_ #include #include #include #include #include #include class PreferencesWindow { public: PreferencesWindow(); virtual ~PreferencesWindow(); // The window. This is public so we can hook into events and // call kit.run(window) against it, if needed. Gtk::Window *window; private: // Contains the Xml reference for this window and it's widgets. Glib::RefPtr refXml; // Widgets in the window. // Methods void on_ok_button_clicked(); }; #endif /*PREFERENCESWINDOW_H_*/