OSDN Git Service

c4af6a966419b53a73bc688778c5ae367c9c05af
[fukui-no-namari/dialektos.git] / src / application_window.hxx
1 /*
2  * Copyright (C) 2009 by Aiwota Programmer
3  * aiwotaprog@tetteke.tk
4  *
5  * This file is part of Dialektos.
6  *
7  * Dialektos is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * Dialektos is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with Dialektos.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #ifndef APPLICATION_WINDOW_HXX
22 #define APPLICATION_WINDOW_HXX
23
24 #include <gtkmm/window.h>
25 #include <boost/ptr_container/ptr_vector.hpp>
26 #include "history_data.hxx"
27
28
29 namespace dialektos {
30
31 namespace bbs_detail {
32   class Base;
33 }
34
35
36 class ApplicationWindow: public Gtk::Window {
37 public:
38   virtual ~ApplicationWindow();
39   static ApplicationWindow* find(const bbs_detail::Base& bbs);
40   static void load();
41   virtual void save_state() const = 0;
42 protected:
43   ApplicationWindow();
44   static void regist(ApplicationWindow* window);
45   static void save();
46   virtual bool on_delete_event(GdkEventAny*);
47 private:
48   virtual bool is_same(const bbs_detail::Base& bbs) const = 0;
49   virtual std::string get_uri() const = 0;
50 protected:
51   static boost::ptr_vector<ApplicationWindow> windows;
52   static history::Data histories;
53 };
54
55
56 } // namespace dialektos
57
58
59 #endif