|
- /* 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_STATUSBAR_1008091346
- #define H_XG_STATUSBAR_1008091346
-
- #include <gtkmm/statusbar.h>
-
- namespace Solmyr
- {
-
- class StatusBar : public Gtk::Statusbar
- {
- public:
- StatusBar();
- virtual ~StatusBar() {}
-
- void refresh();
- void set_map_number(guint32 n) {m_map_number = n;}
- void set_display_number(guint32 n) {m_display_number = n;}
-
- protected:
- guint32 m_map_number;
- guint32 m_display_number;
- };
-
- } // namespace Solmyr
-
- #endif // H_XG_STATUSBAR_1008091346
|