AbstractTableView.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright notice, this
  9. * list of conditions and the following disclaimer.
  10. *
  11. * 2. Redistributions in binary form must reproduce the above copyright notice,
  12. * this list of conditions and the following disclaimer in the documentation
  13. * and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  18. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  19. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  21. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  22. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  23. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  24. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. #pragma once
  27. #include <LibGUI/AbstractView.h>
  28. namespace GUI {
  29. class TableCellPaintingDelegate {
  30. public:
  31. virtual ~TableCellPaintingDelegate() { }
  32. virtual void paint(Painter&, const Gfx::IntRect&, const Gfx::Palette&, const ModelIndex&) = 0;
  33. };
  34. class AbstractTableView : public AbstractView {
  35. public:
  36. int row_height() const { return font().glyph_height() + vertical_padding(); }
  37. virtual int horizontal_padding() const { return m_horizontal_padding; }
  38. void set_horizontal_padding(int padding) { m_horizontal_padding = padding; }
  39. virtual int vertical_padding() const { return m_vertical_padding; }
  40. void set_vertical_padding(int padding) { m_vertical_padding = padding; }
  41. bool alternating_row_colors() const { return m_alternating_row_colors; }
  42. void set_alternating_row_colors(bool b) { m_alternating_row_colors = b; }
  43. bool highlight_selected_rows() const { return m_highlight_selected_rows; }
  44. void set_highlight_selected_rows(bool b) { m_highlight_selected_rows = b; }
  45. bool column_headers_visible() const;
  46. void set_column_headers_visible(bool);
  47. void set_column_hidden(int, bool);
  48. int column_width(int column) const;
  49. void set_column_width(int column, int width);
  50. void set_default_column_width(int column, int width);
  51. Gfx::TextAlignment column_header_alignment(int column) const;
  52. void set_column_header_alignment(int column, Gfx::TextAlignment);
  53. void set_column_painting_delegate(int column, OwnPtr<TableCellPaintingDelegate>);
  54. Gfx::IntPoint adjusted_position(const Gfx::IntPoint&) const;
  55. virtual Gfx::IntRect content_rect(const ModelIndex&) const override;
  56. Gfx::IntRect content_rect(int row, int column) const;
  57. Gfx::IntRect row_rect(int item_index) const;
  58. virtual void scroll_into_view(const ModelIndex&, bool scroll_horizontally = true, bool scroll_vertically = true) override;
  59. void scroll_into_view(const ModelIndex& index, Orientation orientation)
  60. {
  61. scroll_into_view(index, orientation == Gfx::Orientation::Horizontal, orientation == Gfx::Orientation::Vertical);
  62. }
  63. virtual ModelIndex index_at_event_position(const Gfx::IntPoint&, bool& is_toggle) const;
  64. virtual ModelIndex index_at_event_position(const Gfx::IntPoint&) const override;
  65. virtual void select_all() override;
  66. void header_did_change_section_visibility(Badge<HeaderView>, Gfx::Orientation, int section, bool visible);
  67. void header_did_change_section_size(Badge<HeaderView>, Gfx::Orientation, int section, int size);
  68. virtual void did_scroll() override;
  69. HeaderView& column_header() { return *m_column_header; }
  70. const HeaderView& column_header() const { return *m_column_header; }
  71. HeaderView& row_header() { return *m_row_header; }
  72. const HeaderView& row_header() const { return *m_row_header; }
  73. virtual void model_did_update(unsigned flags) override;
  74. protected:
  75. virtual ~AbstractTableView() override;
  76. AbstractTableView();
  77. virtual void mousedown_event(MouseEvent&) override;
  78. virtual void context_menu_event(ContextMenuEvent&) override;
  79. virtual void keydown_event(KeyEvent&) override;
  80. virtual void resize_event(ResizeEvent&) override;
  81. virtual void toggle_index(const ModelIndex&) { }
  82. void update_content_size();
  83. virtual void auto_resize_column(int column);
  84. virtual void update_column_sizes();
  85. virtual void update_row_sizes();
  86. virtual int item_count() const;
  87. TableCellPaintingDelegate* column_painting_delegate(int column) const;
  88. void move_cursor_relative(int vertical_steps, int horizontal_steps, SelectionUpdate);
  89. private:
  90. void layout_headers();
  91. RefPtr<HeaderView> m_column_header;
  92. RefPtr<HeaderView> m_row_header;
  93. RefPtr<Button> m_corner_button;
  94. HashMap<int, OwnPtr<TableCellPaintingDelegate>> m_column_painting_delegate;
  95. bool m_alternating_row_colors { true };
  96. bool m_highlight_selected_rows { true };
  97. int m_vertical_padding { 8 };
  98. int m_horizontal_padding { font().glyph_height() / 2 };
  99. };
  100. }