OSDN Git Service

Change idx sub dir's time stamp when saving idx.
[fukui-no-namari/dialektos.git] / src / text_view.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 TEXT_VIEW_HXX
22 #define TEXT_VIEW_HXX
23
24 #include "text_view_popupable.hxx"
25
26
27 namespace dialektos {
28
29 namespace text_element { class Anchor; }
30
31 namespace text_view {
32
33
34 class TextView: public Popupable {
35   typedef Popupable SuperClass;
36 public:
37   TextView();
38   virtual ~TextView();
39
40   /*! @brief Gets the first number of res on the top of the widget. */
41   int get_displayed_res_num() const;
42   void jump_to_res_num(int res_num);
43
44 protected:
45   virtual void on_anchor_click_event(const text_element::Anchor& elem);
46 };
47
48
49 } // namespace text_view
50
51
52 } // namepsace dialektos
53
54
55 #endif