item_hl.cpp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. #include "gui/item_hl.hpp"
  17. #include "video/drawing_context.hpp"
  18. ItemHorizontalLine::ItemHorizontalLine() :
  19. MenuItem("")
  20. {
  21. }
  22. void
  23. ItemHorizontalLine::draw(DrawingContext& context, const Vector& pos, int menu_width, bool active) {
  24. // TODO
  25. /* Draw a horizontal line with a little 3d effect */
  26. context.color().draw_filled_rect(Rectf(Vector(pos.x, pos.y - 6.0f),
  27. Sizef(static_cast<float>(menu_width), 4.0f)),
  28. Color(0.6f, 0.7f, 1.0f, 1.0f), LAYER_GUI);
  29. context.color().draw_filled_rect(Rectf(Vector(pos.x, pos.y - 6.0f),
  30. Sizef(static_cast<float>(menu_width), 2.0f)),
  31. Color(1.0f, 1.0f, 1.0f, 1.0f), LAYER_GUI);
  32. }
  33. int
  34. ItemHorizontalLine::get_width() const {
  35. return 0;
  36. }
  37. /* EOF */