OSDN Git Service

TextView strict layout.
[fukui-no-namari/dialektos.git] / src / text_element_res_num.cxx
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 #include "text_element_res_num.hxx"
22
23 #include <glibmm/refptr.h>
24 #include <pangomm/font.h>
25 #include <gdkmm/gc.h>
26 #include <gtkmm/enums.h>
27 #include "text_element_res_num_map.hxx"
28 #include "text_view_drawing_set.hxx"
29
30
31 namespace dialektos {
32
33 namespace text_element {
34
35
36 void ResNum::do_draw_glyphs(text_view::DrawingSet& set,
37     const Pango::Item& item, const Pango::GlyphString& glyphs,
38     double x, double y, bool in_selection) const {
39
40   Glib::RefPtr<const Gdk::GC> gc;
41   if (in_selection) gc = set.style->get_text_gc(Gtk::STATE_SELECTED);
42   else {
43     const int count = res_num_map_->get_count(res_num_);
44     if (count < 1) gc = set.style->get_text_gc(Gtk::STATE_NORMAL);
45     else {
46       Gdk::Color color;
47       if (count > 4) color.set_rgb(0xffff, 0, 0);
48       else if (count > 0) color.set_rgb(0, 0, 0xffff);
49       Glib::RefPtr<Gdk::GC> _gc = Gdk::GC::create(set.window);
50       _gc->set_rgb_fg_color(color);
51       gc = _gc;
52     }
53   }
54
55   set.window->draw_glyphs(gc, item.get_analysis().get_font(),
56       std::ceil(x),
57       y - set.adj_value + get_metrics().get_ascent() / Pango::SCALE, glyphs);
58
59   do_draw_underline(set, gc, double(glyphs.get_width()) / Pango::SCALE, x, y);
60 }
61
62
63 } // namespace text_element
64
65 } // namespace dialektos