1// SuperTux
2// Copyright (C) 2015 Hume2 <teratux.mail@gmail.com>
3//
4// This program is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17#include "gui/item_hl.hpp"
18
19#include "video/drawing_context.hpp"
20
21ItemHorizontalLine::ItemHorizontalLine() :
22 MenuItem("")
23{
24}
25
26void
27ItemHorizontalLine::draw(DrawingContext& context, const Vector& pos, int menu_width, bool active) {
28 // TODO
29 /* Draw a horizontal line with a little 3d effect */
30 context.color().draw_filled_rect(Rectf(Vector(pos.x, pos.y - 6.0f),
31 Sizef(static_cast<float>(menu_width), 4.0f)),
32 Color(0.6f, 0.7f, 1.0f, 1.0f), LAYER_GUI);
33 context.color().draw_filled_rect(Rectf(Vector(pos.x, pos.y - 6.0f),
34 Sizef(static_cast<float>(menu_width), 2.0f)),
35 Color(1.0f, 1.0f, 1.0f, 1.0f), LAYER_GUI);
36}
37
38int
39ItemHorizontalLine::get_width() const {
40 return 0;
41}
42
43/* EOF */
44