|
- /* Solmyr - H3M manager
- * Copyright (C) 2009 Xavier Gendre
- *
- * This file is part of Solmyr.
- *
- * Solmyr 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 3 of the License, or
- * (at your option) any later version.
- *
- * Solmyr 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 more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Solmyr. If not, see <http://www.gnu.org/licenses/>.
- */
-
- #ifndef H_XG_INFOBOX_1008091638
- #define H_XG_INFOBOX_1008091638
-
- #include <gtkmm/notebook.h>
- #include <gtkmm/textview.h>
-
- #include <glibmm/ustring.h>
-
- namespace Solmyr
- {
-
- class InfoBox : public Gtk::Notebook
- {
- public:
- InfoBox();
- virtual ~InfoBox() {}
-
- void set_details(Glib::ustring, Glib::ustring);
-
- protected:
- // Signal handlers
-
- // Child widgets
- Gtk::TextView m_details;
- };
-
- }
-
- #endif // H_XG_INFOBOX_1008091638
|