GAbstractTableView.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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/GAbstractView.h>
  28. class GPainter;
  29. // FIXME: Rename this to something without "table cell" in the name.
  30. class GTableCellPaintingDelegate {
  31. public:
  32. virtual ~GTableCellPaintingDelegate() {}
  33. virtual void paint(GPainter&, const Rect&, const Palette&, const GModel&, const GModelIndex&) = 0;
  34. };
  35. class GAbstractTableView : public GAbstractView {
  36. public:
  37. int item_height() const { return 16; }
  38. bool alternating_row_colors() const { return m_alternating_row_colors; }
  39. void set_alternating_row_colors(bool b) { m_alternating_row_colors = b; }
  40. int header_height() const { return m_headers_visible ? 16 : 0; }
  41. bool headers_visible() const { return m_headers_visible; }
  42. void set_headers_visible(bool headers_visible) { m_headers_visible = headers_visible; }
  43. bool is_column_hidden(int) const;
  44. void set_column_hidden(int, bool);
  45. void set_size_columns_to_fit_content(bool b) { m_size_columns_to_fit_content = b; }
  46. bool size_columns_to_fit_content() const { return m_size_columns_to_fit_content; }
  47. void set_cell_painting_delegate(int column, OwnPtr<GTableCellPaintingDelegate>&&);
  48. int horizontal_padding() const { return m_horizontal_padding; }
  49. Point adjusted_position(const Point&) const;
  50. virtual Rect content_rect(const GModelIndex&) const override;
  51. Rect content_rect(int row, int column) const;
  52. Rect row_rect(int item_index) const;
  53. void scroll_into_view(const GModelIndex&, Orientation);
  54. virtual GModelIndex index_at_event_position(const Point&, bool& is_toggle) const;
  55. virtual GModelIndex index_at_event_position(const Point&) const override;
  56. protected:
  57. virtual ~GAbstractTableView() override;
  58. explicit GAbstractTableView(GWidget* parent);
  59. virtual void did_update_model() override;
  60. virtual void mouseup_event(GMouseEvent&) override;
  61. virtual void mousedown_event(GMouseEvent&) override;
  62. virtual void mousemove_event(GMouseEvent&) override;
  63. virtual void doubleclick_event(GMouseEvent&) override;
  64. virtual void keydown_event(GKeyEvent&) override;
  65. virtual void leave_event(CEvent&) override;
  66. virtual void context_menu_event(GContextMenuEvent&) override;
  67. virtual void toggle_index(const GModelIndex&) {}
  68. void paint_headers(GPainter&);
  69. Rect header_rect(int column) const;
  70. static const Font& header_font();
  71. void update_headers();
  72. void set_hovered_header_index(int);
  73. struct ColumnData {
  74. int width { 0 };
  75. bool has_initialized_width { false };
  76. bool visibility { true };
  77. RefPtr<GAction> visibility_action;
  78. OwnPtr<GTableCellPaintingDelegate> cell_painting_delegate;
  79. };
  80. ColumnData& column_data(int column) const;
  81. mutable Vector<ColumnData> m_column_data;
  82. GMenu& ensure_header_context_menu();
  83. RefPtr<GMenu> m_header_context_menu;
  84. Rect column_resize_grabbable_rect(int) const;
  85. int column_width(int) const;
  86. void update_content_size();
  87. virtual void update_column_sizes();
  88. virtual int item_count() const;
  89. private:
  90. bool m_headers_visible { true };
  91. bool m_size_columns_to_fit_content { false };
  92. bool m_in_column_resize { false };
  93. bool m_alternating_row_colors { true };
  94. int m_horizontal_padding { 5 };
  95. Point m_column_resize_origin;
  96. int m_column_resize_original_width { 0 };
  97. int m_resizing_column { -1 };
  98. int m_pressed_column_header_index { -1 };
  99. bool m_pressed_column_header_is_pressed { false };
  100. int m_hovered_column_header_index { -1 };
  101. };