OSDN Git Service

Change idx sub dir's time stamp when saving idx.
[fukui-no-namari/dialektos.git] / src / thread_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 THREAD_WINDOW_HXX
22 #define THREAD_WINDOW_HXX
23
24 #include <boost/scoped_ptr.hpp>
25 #include <memory>
26 #include "application_framework.hxx"
27 #include "text_view.hxx"
28 #include "scrolled_container.hxx"
29 #include "http_get.hxx"
30 #include "thread_idx.hxx"
31
32
33 namespace dialektos {
34
35
36 namespace bbs_detail {
37   class Base;
38 }
39
40
41 class ThreadWindow: public ApplicationFrameWork {
42   typedef ApplicationFrameWork SuperClass;
43 public:
44   static void create(std::auto_ptr<bbs_detail::Base> bbs);
45   bool load();
46   virtual ~ThreadWindow(){}
47   virtual void save_state() const;
48 protected:
49   ThreadWindow(std::auto_ptr<bbs_detail::Base> bbs);
50
51   virtual void on_action_view_refresh();
52   virtual void on_action_view_stop();
53   void on_action_file_delete();
54   void on_action_file_board();
55 private:
56   virtual bool is_same(const bbs_detail::Base& bbs) const;
57   virtual std::string get_uri() const;
58
59   void on_http_get_end(bool);
60   void on_refresh_end(const http::StatusLine&, const http::Header&);
61
62   void save_content(const http::Response&);
63
64   boost::scoped_ptr<text_view::TextView> text_view_;
65   ScrolledContainer scrolled_;
66   boost::scoped_ptr<bbs_detail::Base> bbs_;
67   boost::scoped_ptr<http::GetInThread> http_getter_;
68   ThreadIdx idx_;
69 };
70
71
72
73 } // namespace dialektos
74
75
76 #endif