KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
grid_checkbox.cpp
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 The 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 2
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#include "widgets/ui_common.h"
26#include <wx/renderer.h>
27
28
29//-------- Renderer ---------------------------------------------------------------------
30//
31// Augments wxGridBoolRenderer to support indeterminate state
32
33// ------------ This section copied verbatim from wxwidgets/src/generic/grid.cpp (which
34// is sadly private)
35
36// the space between the cell edge and the checkbox mark
38
39wxRect
40wxGetContentRect(wxSize contentSize,
41 const wxRect& cellRect,
42 int hAlign,
43 int vAlign)
44{
45 // Keep square aspect ratio for the checkbox, but ensure that it fits into
46 // the available space, even if it's smaller than the standard size.
47 const wxCoord minSize = wxMin(cellRect.width, cellRect.height);
48 if ( contentSize.x >= minSize || contentSize.y >= minSize )
49 {
50 // It must still have positive size, however.
51 const int fittingSize = wxMax(1, minSize - 2*GRID_CELL_CHECKBOX_MARGIN);
52
53 contentSize.x =
54 contentSize.y = fittingSize;
55 }
56
57 wxRect contentRect(contentSize);
58
59 if ( hAlign & wxALIGN_CENTER_HORIZONTAL )
60 {
61 contentRect = contentRect.CentreIn(cellRect, wxHORIZONTAL);
62 }
63 else if ( hAlign & wxALIGN_RIGHT )
64 {
65 contentRect.SetX(cellRect.x + cellRect.width
66 - contentSize.x - GRID_CELL_CHECKBOX_MARGIN);
67 }
68 else // ( hAlign == wxALIGN_LEFT ) and invalid alignment value
69 {
70 contentRect.SetX(cellRect.x + GRID_CELL_CHECKBOX_MARGIN);
71 }
72
73 if ( vAlign & wxALIGN_CENTER_VERTICAL )
74 {
75 contentRect = contentRect.CentreIn(cellRect, wxVERTICAL);
76 }
77 else if ( vAlign & wxALIGN_BOTTOM )
78 {
79 contentRect.SetY(cellRect.y + cellRect.height
80 - contentSize.y - GRID_CELL_CHECKBOX_MARGIN);
81 }
82 else // wxALIGN_TOP
83 {
84 contentRect.SetY(cellRect.y + GRID_CELL_CHECKBOX_MARGIN);
85 }
86
87 return contentRect;
88}
89
90// ------------ End copied section
91
92// ------------ This section copied from wxwidgets/src/generic/gridctrl.cpp, with changes
93// noted
94
96 wxGridCellAttr& attr,
97 wxDC& dc,
98 const wxRect& rect,
99 int row, int col,
100 bool isSelected)
101{
102 wxGridCellRenderer::Draw(grid, attr, dc, rect, row, col, isSelected);
103
104 int hAlign = wxALIGN_LEFT;
105 int vAlign = wxALIGN_CENTRE_VERTICAL;
106 attr.GetNonDefaultAlignment(&hAlign, &vAlign);
107
108 const wxRect checkBoxRect =
109 wxGetContentRect(GetBestSize(grid, attr, dc, row, col),
110 rect, hAlign, vAlign);
111
112 bool value;
113 if ( grid.GetTable()->CanGetValueAs(row, col, wxGRID_VALUE_BOOL) )
114 {
115 value = grid.GetTable()->GetValueAsBool(row, col);
116 }
117 else
118 {
119 wxString cellval( grid.GetTable()->GetValue(row, col) );
120 value = wxGridCellBoolEditor::IsTrueValue(cellval);
121 }
122
123 int flags = wxCONTROL_CELL;
124#if 1 // KiCad change
125 if( grid.GetTable()->GetValue( row, col ) == INDETERMINATE_STATE )
126 flags |= wxCONTROL_UNDETERMINED;
127 else
128#endif
129 if (value)
130 flags |= wxCONTROL_CHECKED;
131
132 wxRendererNative::Get().DrawCheckBox( &grid, dc, checkBoxRect, flags );
133}
134
135// ------------ End copied section
136
137
138
139//-------- Editor -----------------------------------------------------------------------
140//
141// None required; interactivity delegated to GRID_TRICKS.
142
143
void Draw(wxGrid &grid, wxGridCellAttr &attr, wxDC &dc, const wxRect &rect, int row, int col, bool isSelected) override
const int minSize
Push and Shove router track width and via size dialog.
const int GRID_CELL_CHECKBOX_MARGIN
wxRect wxGetContentRect(wxSize contentSize, const wxRect &cellRect, int hAlign, int vAlign)
Functions to provide common constants and other functions to assist in making a consistent UI.
#define INDETERMINATE_STATE
Used for holding indeterminate values, such as with multiple selections holding different values or c...
Definition: ui_common.h:46