summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/TableView.h
blob: d6f65ceb71095a2fd9100ed99a3c2fc98001d17b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 * Copyright (c) 2022, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibGUI/AbstractTableView.h>

namespace GUI {

class TableView : public AbstractTableView {
    C_OBJECT(TableView)
public:
    virtual ~TableView() override = default;

    enum class GridStyle {
        None,
        Horizontal,
        Vertical,
        Both,
    };

    enum class CursorStyle {
        None,
        Item,
        Row,
    };

    GridStyle grid_style() const { return m_grid_style; }
    void set_grid_style(GridStyle);

    void set_highlight_key_column(bool b) { m_highlight_key_column = b; }
    bool is_key_column_highlighted() const { return m_highlight_key_column; }

    virtual void move_cursor(CursorMovement, SelectionUpdate) override;

protected:
    TableView();

    virtual void keydown_event(KeyEvent&) override;
    virtual void mousedown_event(MouseEvent&) override;
    virtual void mouseup_event(MouseEvent&) override;
    virtual void mousemove_event(MouseEvent&) override;
    virtual void paint_event(PaintEvent&) override;
    virtual void second_paint_event(PaintEvent&) override;

private:
    GridStyle m_grid_style { GridStyle::None };

    bool m_highlight_key_column { true };

    bool m_rubber_banding { false };
    int m_rubber_band_origin { 0 };
    int m_rubber_band_current { 0 };
};

}