OSDN Git Service

Change idx sub dir's time stamp when saving idx.
[fukui-no-namari/dialektos.git] / src / text_element_id.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_ELEMENT_ID_HXX
22 #define TEXT_ELEMENT_ID_HXX
23
24 #include <boost/shared_ptr.hpp>
25 #include "text_element_anchor.hxx"
26
27
28 namespace dialektos {
29
30 namespace text_element {
31
32 class IDMap;
33
34 /*! @brief text element class for ID */
35 class ID: public Anchor {
36 public:
37   /*! @brief Constructor.
38    *
39    * @param range is text represented by Boost.Range concepts.
40    * @param bold is whether or not the text is bold.
41    * @param id is ID represented by Boost.Range concepts.
42    * @param id_map is id map.
43    */
44   template <typename RangeT, typename RangeT2>
45   ID(const RangeT& range, bool bold, const RangeT2& id,
46       boost::shared_ptr<const IDMap> id_map) :
47     Anchor(range, bold, id), id_map_(id_map) {
48   }
49   virtual ~ID() {}
50
51 protected:
52   /*! @brief set attributes for drawing the ID text element.
53    *
54    * @param list
55    */
56   virtual void set_attributes(Pango::AttrList& list) const;
57
58 private:
59   virtual ID* do_clone() const { return new ID(*this); }
60
61   boost::shared_ptr<const IDMap> id_map_;
62 };
63
64
65 } // namespace text_element
66
67 } // namespace dialektos
68
69 #endif