KiCad PCB EDA Suite
Loading...
Searching...
No Matches
wx_grid.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2018-2023 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 3
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#ifndef KICAD_WX_GRID_H
25#define KICAD_WX_GRID_H
26
27#include <memory>
28#include <vector>
29#include <memory>
30#include <bitset>
31#include <wx/event.h>
32#include <wx/grid.h>
33#include <wx/version.h>
34#include <units_provider.h>
36
37class wxTextEntryBase;
38
39
40class WX_GRID : public wxGrid
41{
42public:
43 // Constructor has to be wxFormBuilder-compatible
44 WX_GRID( wxWindow *parent, wxWindowID id,
45 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
46 long style = wxWANTS_CHARS, const wxString& name = wxGridNameStr );
47
48 ~WX_GRID() override;
49
55 void SetColLabelSize( int aHeight ); // Yes, we're hiding a non-virtual method
56
61 void SetLabelFont( const wxFont& aFont ); // Yes, we're hiding a non-virtual method
62
69 void EnableAlternateRowColors( bool aEnable = true );
70
75 wxString GetShownColumnsAsString();
76 std::bitset<64> GetShownColumns();
77
81 void ShowHideColumns( const wxString& shownColumns );
82
86 void ShowHideColumns( const std::bitset<64>& aShownColumns );
87
92 void SetTable( wxGridTableBase* table, bool aTakeOwnership = false );
93
98 void DestroyTable( wxGridTableBase* aTable );
99
105 bool CommitPendingChanges( bool aQuietMode = false );
107
112 void SetUnitsProvider( UNITS_PROVIDER* aProvider, int aCol = 0 );
113
114 void SetAutoEvalCols( const std::vector<int>& aCols ) { m_autoEvalCols = aCols; }
115
120 int GetUnitValue( int aRow, int aCol );
121
125 void SetUnitValue( int aRow, int aCol, int aValue );
126
136 int GetVisibleWidth( int aCol, bool aHeader = true, bool aContents = true, bool aKeep = false );
137
143
150 void ShowEditorOnMouseUp() { m_waitForSlowClick = true; }
151
158 {
159 if( GetNumberRows() )
160 DeleteRows( 0, GetNumberRows() );
161 }
162
166 static void CellEditorSetMargins( wxTextEntryBase* aEntry );
167
171 static void CellEditorTransformSizeRect( wxRect& aRect );
172
173protected:
178 void DrawColLabel( wxDC& dc, int col ) override;
179
183 void DrawRowLabel( wxDC& dc, int row ) override;
184
188 void DrawCornerLabel( wxDC& dc ) override;
189
190 void onGridColMove( wxGridEvent& aEvent );
191 void onGridCellSelect( wxGridEvent& aEvent );
192 void onCellEditorShown( wxGridEvent& aEvent );
193 void onCellEditorHidden( wxGridEvent& aEvent );
194
195 void onDPIChanged(wxDPIChangedEvent& event);
196
197protected:
199
200 std::map<int, UNITS_PROVIDER*> m_unitsProviders;
201 std::unique_ptr<NUMERIC_EVALUATOR> m_eval;
202 std::vector<int> m_autoEvalCols;
203
204 std::map< std::pair<int, int>, std::pair<wxString, wxString> > m_evalBeforeAfter;
205};
206
207#endif //KICAD_WX_GRID_H
const char * name
Definition: DXF_plotter.cpp:57
int GetVisibleWidth(int aCol, bool aHeader=true, bool aContents=true, bool aKeep=false)
Calculates the specified column based on the actual size of the text on screen.
Definition: wx_grid.cpp:657
void onGridCellSelect(wxGridEvent &aEvent)
Definition: wx_grid.cpp:287
~WX_GRID() override
Definition: wx_grid.cpp:192
void SetLabelFont(const wxFont &aFont)
Hide wxGrid's SetLabelFont() because for some reason on MSW it's a one-shot and subsequent calls to i...
Definition: wx_grid.cpp:227
bool m_weOwnTable
Definition: wx_grid.h:198
void onDPIChanged(wxDPIChangedEvent &event)
Definition: wx_grid.cpp:203
void ShowHideColumns(const wxString &shownColumns)
Show/hide the grid columns based on a tokenized string of shown column indexes.
Definition: wx_grid.cpp:410
std::map< int, UNITS_PROVIDER * > m_unitsProviders
Definition: wx_grid.h:200
void SetTable(wxGridTableBase *table, bool aTakeOwnership=false)
Hide wxGrid's SetTable() method with one which doesn't mess up the grid column widths when setting th...
Definition: wx_grid.cpp:233
void DestroyTable(wxGridTableBase *aTable)
Work-around for a bug in wxGrid which crashes when deleting the table if the cell edit control was no...
Definition: wx_grid.cpp:366
bool CancelPendingChanges()
Definition: wx_grid.cpp:532
void SetColLabelSize(int aHeight)
Hide wxGrid's SetColLabelSize() method with one which makes sure the size is tall enough for the syst...
Definition: wx_grid.cpp:213
void SetUnitValue(int aRow, int aCol, int aValue)
Set a unitized cell's value.
Definition: wx_grid.cpp:639
int GetUnitValue(int aRow, int aCol)
Apply standard KiCad unit and eval services to a numeric cell.
Definition: wx_grid.cpp:618
std::vector< int > m_autoEvalCols
Definition: wx_grid.h:202
std::map< std::pair< int, int >, std::pair< wxString, wxString > > m_evalBeforeAfter
Definition: wx_grid.h:204
void DrawCornerLabel(wxDC &dc) override
A re-implementation of wxGrid::DrawCornerLabel which draws flat borders.
Definition: wx_grid.cpp:440
void onCellEditorHidden(wxGridEvent &aEvent)
Definition: wx_grid.cpp:329
void ShowEditorOnMouseUp()
WxWidgets has a bunch of bugs in its handling of wxGrid mouse events which close cell editors right a...
Definition: wx_grid.h:150
void onGridColMove(wxGridEvent &aEvent)
Definition: wx_grid.cpp:650
void onCellEditorShown(wxGridEvent &aEvent)
Definition: wx_grid.cpp:314
void EnsureColLabelsVisible()
Ensure the height of the row displaying the column labels is enough, even if labels are multiline tex...
Definition: wx_grid.cpp:697
wxString GetShownColumnsAsString()
Get a tokenized string containing the shown column indexes.
Definition: wx_grid.cpp:380
void DrawRowLabel(wxDC &dc, int row) override
A re-implementation of wxGrid::DrawRowLabel which draws flat borders.
Definition: wx_grid.cpp:500
std::bitset< 64 > GetShownColumns()
Definition: wx_grid.cpp:399
static void CellEditorSetMargins(wxTextEntryBase *aEntry)
A helper function to set OS-specific margins for text-based cell editors.
Definition: wx_grid.cpp:44
void SetAutoEvalCols(const std::vector< int > &aCols)
Definition: wx_grid.h:114
void EnableAlternateRowColors(bool aEnable=true)
Enable alternate row highlighting, where every odd row has a different background color than the even...
Definition: wx_grid.cpp:268
void SetUnitsProvider(UNITS_PROVIDER *aProvider, int aCol=0)
Set a UNITS_PROVIDER to enable use of unit- and eval-based Getters.
Definition: wx_grid.cpp:609
void ClearRows()
wxWidgets recently added an ASSERT which fires if the position is greater than or equal to the number...
Definition: wx_grid.h:157
bool CommitPendingChanges(bool aQuietMode=false)
Close any open cell edit controls.
Definition: wx_grid.cpp:560
std::unique_ptr< NUMERIC_EVALUATOR > m_eval
Definition: wx_grid.h:201
void DrawColLabel(wxDC &dc, int col) override
A re-implementation of wxGrid::DrawColLabel which left-aligns the first column and draws flat borders...
Definition: wx_grid.cpp:461
static void CellEditorTransformSizeRect(wxRect &aRect)
A helper function to tweak sizes of text-based cell editors depending on OS.
Definition: wx_grid.cpp:51