]>
Commit | Line | Data |
---|---|---|
2796cce3 | 1 | /////////////////////////////////////////////////////////////////////////// |
faa94f3e | 2 | // Name: src/generic/grid.cpp |
f85afd4e MB |
3 | // Purpose: wxGrid and related classes |
4 | // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn) | |
d4175745 | 5 | // Modified by: Robin Dunn, Vadim Zeitlin, Santiago Palacios |
f85afd4e MB |
6 | // Created: 1/08/1999 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Michael Bedward (mbedward@ozemail.com.au) | |
65571936 | 9 | // Licence: wxWindows licence |
f85afd4e MB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bec70262 VZ |
12 | /* |
13 | TODO: | |
14 | ||
15 | - Replace use of wxINVERT with wxOverlay | |
16 | - Make Begin/EndBatch() the same as the generic Freeze/Thaw() | |
10a4531d VZ |
17 | - Review the column reordering code, it's a mess. |
18 | - Implement row reordering after dealing with the columns. | |
bec70262 VZ |
19 | */ |
20 | ||
95427194 | 21 | // For compilers that support precompilation, includes "wx/wx.h". |
4d85bcd1 JS |
22 | #include "wx/wxprec.h" |
23 | ||
f85afd4e MB |
24 | #ifdef __BORLANDC__ |
25 | #pragma hdrstop | |
26 | #endif | |
27 | ||
27b92ca4 VZ |
28 | #if wxUSE_GRID |
29 | ||
4c44eb66 PC |
30 | #include "wx/grid.h" |
31 | ||
f85afd4e MB |
32 | #ifndef WX_PRECOMP |
33 | #include "wx/utils.h" | |
34 | #include "wx/dcclient.h" | |
35 | #include "wx/settings.h" | |
36 | #include "wx/log.h" | |
508011ce VZ |
37 | #include "wx/textctrl.h" |
38 | #include "wx/checkbox.h" | |
4ee5fc9c | 39 | #include "wx/combobox.h" |
816be743 | 40 | #include "wx/valtext.h" |
60d876f3 | 41 | #include "wx/intl.h" |
c77a6796 | 42 | #include "wx/math.h" |
2a673eb1 | 43 | #include "wx/listbox.h" |
f85afd4e MB |
44 | #endif |
45 | ||
cb5df486 | 46 | #include "wx/textfile.h" |
816be743 | 47 | #include "wx/spinctrl.h" |
c4608a8a | 48 | #include "wx/tokenzr.h" |
4d1bc39c | 49 | #include "wx/renderer.h" |
ad805b9e | 50 | #include "wx/headerctrl.h" |
82edfbe7 | 51 | #include "wx/hashset.h" |
6d004f67 | 52 | |
b5808881 | 53 | #include "wx/generic/gridsel.h" |
29efc6e4 FM |
54 | #include "wx/generic/gridctrl.h" |
55 | #include "wx/generic/grideditors.h" | |
56 | #include "wx/generic/private/grid.h" | |
07296f0b | 57 | |
23318a53 | 58 | const char wxGridNameStr[] = "grid"; |
4c44eb66 | 59 | |
0b7e6e7d SN |
60 | #if defined(__WXMOTIF__) |
61 | #define WXUNUSED_MOTIF(identifier) WXUNUSED(identifier) | |
c78b3acd | 62 | #else |
0b7e6e7d | 63 | #define WXUNUSED_MOTIF(identifier) identifier |
c78b3acd SN |
64 | #endif |
65 | ||
66 | #if defined(__WXGTK__) | |
67 | #define WXUNUSED_GTK(identifier) WXUNUSED(identifier) | |
68 | #else | |
69 | #define WXUNUSED_GTK(identifier) identifier | |
70 | #endif | |
71 | ||
3f8e5072 JS |
72 | // Required for wxIs... functions |
73 | #include <ctype.h> | |
74 | ||
82edfbe7 VZ |
75 | WX_DECLARE_HASH_SET_WITH_DECL(int, wxIntegerHash, wxIntegerEqual, |
76 | wxGridFixedIndicesSet, class WXDLLIMPEXP_ADV); | |
77 | ||
29efc6e4 | 78 | |
b99be8fb | 79 | // ---------------------------------------------------------------------------- |
29efc6e4 | 80 | // globals |
b99be8fb VZ |
81 | // ---------------------------------------------------------------------------- |
82 | ||
670d0177 VZ |
83 | namespace |
84 | { | |
85 | ||
29efc6e4 FM |
86 | //#define DEBUG_ATTR_CACHE |
87 | #ifdef DEBUG_ATTR_CACHE | |
88 | static size_t gs_nAttrCacheHits = 0; | |
89 | static size_t gs_nAttrCacheMisses = 0; | |
90 | #endif | |
758cbedf | 91 | |
670d0177 VZ |
92 | // this struct simply combines together the default header renderers |
93 | // | |
94 | // as the renderers ctors are trivial, there is no problem with making them | |
95 | // globals | |
96 | struct DefaultHeaderRenderers | |
97 | { | |
98 | wxGridColumnHeaderRendererDefault colRenderer; | |
99 | wxGridRowHeaderRendererDefault rowRenderer; | |
100 | wxGridCornerHeaderRendererDefault cornerRenderer; | |
101 | } gs_defaultHeaderRenderers; | |
102 | ||
103 | } // anonymous namespace | |
104 | ||
29efc6e4 FM |
105 | // ---------------------------------------------------------------------------- |
106 | // constants | |
107 | // ---------------------------------------------------------------------------- | |
6f292345 | 108 | |
29efc6e4 FM |
109 | wxGridCellCoords wxGridNoCellCoords( -1, -1 ); |
110 | wxRect wxGridNoCellRect( -1, -1, -1, -1 ); | |
6f292345 | 111 | |
29efc6e4 FM |
112 | namespace |
113 | { | |
b99be8fb | 114 | |
29efc6e4 FM |
115 | // scroll line size |
116 | const size_t GRID_SCROLL_LINE_X = 15; | |
117 | const size_t GRID_SCROLL_LINE_Y = GRID_SCROLL_LINE_X; | |
96ca74cd | 118 | |
29efc6e4 FM |
119 | // the size of hash tables used a bit everywhere (the max number of elements |
120 | // in these hash tables is the number of rows/columns) | |
121 | const int GRID_HASH_SIZE = 100; | |
2e9a6788 | 122 | |
29efc6e4 FM |
123 | // the minimal distance in pixels the mouse needs to move to start a drag |
124 | // operation | |
125 | const int DRAG_SENSITIVITY = 3; | |
b99be8fb | 126 | |
29efc6e4 | 127 | } // anonymous namespace |
b99be8fb VZ |
128 | |
129 | #include "wx/arrimpl.cpp" | |
130 | ||
131 | WX_DEFINE_OBJARRAY(wxGridCellCoordsArray) | |
132 | WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray) | |
133 | ||
0f442030 RR |
134 | // ---------------------------------------------------------------------------- |
135 | // events | |
136 | // ---------------------------------------------------------------------------- | |
137 | ||
9b11752c VZ |
138 | wxDEFINE_EVENT( wxEVT_GRID_CELL_LEFT_CLICK, wxGridEvent ); |
139 | wxDEFINE_EVENT( wxEVT_GRID_CELL_RIGHT_CLICK, wxGridEvent ); | |
140 | wxDEFINE_EVENT( wxEVT_GRID_CELL_LEFT_DCLICK, wxGridEvent ); | |
141 | wxDEFINE_EVENT( wxEVT_GRID_CELL_RIGHT_DCLICK, wxGridEvent ); | |
142 | wxDEFINE_EVENT( wxEVT_GRID_CELL_BEGIN_DRAG, wxGridEvent ); | |
143 | wxDEFINE_EVENT( wxEVT_GRID_LABEL_LEFT_CLICK, wxGridEvent ); | |
144 | wxDEFINE_EVENT( wxEVT_GRID_LABEL_RIGHT_CLICK, wxGridEvent ); | |
145 | wxDEFINE_EVENT( wxEVT_GRID_LABEL_LEFT_DCLICK, wxGridEvent ); | |
146 | wxDEFINE_EVENT( wxEVT_GRID_LABEL_RIGHT_DCLICK, wxGridEvent ); | |
147 | wxDEFINE_EVENT( wxEVT_GRID_ROW_SIZE, wxGridSizeEvent ); | |
148 | wxDEFINE_EVENT( wxEVT_GRID_COL_SIZE, wxGridSizeEvent ); | |
149 | wxDEFINE_EVENT( wxEVT_GRID_COL_MOVE, wxGridEvent ); | |
150 | wxDEFINE_EVENT( wxEVT_GRID_COL_SORT, wxGridEvent ); | |
151 | wxDEFINE_EVENT( wxEVT_GRID_RANGE_SELECT, wxGridRangeSelectEvent ); | |
152 | wxDEFINE_EVENT( wxEVT_GRID_CELL_CHANGING, wxGridEvent ); | |
153 | wxDEFINE_EVENT( wxEVT_GRID_CELL_CHANGED, wxGridEvent ); | |
154 | wxDEFINE_EVENT( wxEVT_GRID_SELECT_CELL, wxGridEvent ); | |
155 | wxDEFINE_EVENT( wxEVT_GRID_EDITOR_SHOWN, wxGridEvent ); | |
156 | wxDEFINE_EVENT( wxEVT_GRID_EDITOR_HIDDEN, wxGridEvent ); | |
157 | wxDEFINE_EVENT( wxEVT_GRID_EDITOR_CREATED, wxGridEditorCreatedEvent ); | |
0b190b0f | 158 | |
29efc6e4 FM |
159 | // ============================================================================ |
160 | // implementation | |
161 | // ============================================================================ | |
65e4e78e | 162 | |
29efc6e4 | 163 | IMPLEMENT_ABSTRACT_CLASS(wxGridCellEditorEvtHandler, wxEvtHandler) |
816be743 | 164 | |
29efc6e4 FM |
165 | BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler, wxEvtHandler ) |
166 | EVT_KILL_FOCUS( wxGridCellEditorEvtHandler::OnKillFocus ) | |
167 | EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown ) | |
168 | EVT_CHAR( wxGridCellEditorEvtHandler::OnChar ) | |
169 | END_EVENT_TABLE() | |
816be743 | 170 | |
29efc6e4 FM |
171 | BEGIN_EVENT_TABLE(wxGridHeaderCtrl, wxHeaderCtrl) |
172 | EVT_HEADER_CLICK(wxID_ANY, wxGridHeaderCtrl::OnClick) | |
816be743 | 173 | |
29efc6e4 FM |
174 | EVT_HEADER_BEGIN_RESIZE(wxID_ANY, wxGridHeaderCtrl::OnBeginResize) |
175 | EVT_HEADER_RESIZING(wxID_ANY, wxGridHeaderCtrl::OnResizing) | |
176 | EVT_HEADER_END_RESIZE(wxID_ANY, wxGridHeaderCtrl::OnEndResize) | |
816be743 | 177 | |
29efc6e4 FM |
178 | EVT_HEADER_BEGIN_REORDER(wxID_ANY, wxGridHeaderCtrl::OnBeginReorder) |
179 | EVT_HEADER_END_REORDER(wxID_ANY, wxGridHeaderCtrl::OnEndReorder) | |
180 | END_EVENT_TABLE() | |
816be743 | 181 | |
29efc6e4 | 182 | wxGridOperations& wxGridRowOperations::Dual() const |
65e4e78e | 183 | { |
29efc6e4 FM |
184 | static wxGridColumnOperations s_colOper; |
185 | ||
186 | return s_colOper; | |
816be743 VZ |
187 | } |
188 | ||
29efc6e4 | 189 | wxGridOperations& wxGridColumnOperations::Dual() const |
0b190b0f | 190 | { |
29efc6e4 | 191 | static wxGridRowOperations s_rowOper; |
2f024384 | 192 | |
29efc6e4 | 193 | return s_rowOper; |
0b190b0f VZ |
194 | } |
195 | ||
508011ce | 196 | // ---------------------------------------------------------------------------- |
29efc6e4 FM |
197 | // wxGridCellWorker is an (almost) empty common base class for |
198 | // wxGridCellRenderer and wxGridCellEditor managing ref counting | |
508011ce VZ |
199 | // ---------------------------------------------------------------------------- |
200 | ||
29efc6e4 | 201 | void wxGridCellWorker::SetParameters(const wxString& WXUNUSED(params)) |
65e4e78e | 202 | { |
29efc6e4 | 203 | // nothing to do |
65e4e78e VZ |
204 | } |
205 | ||
29efc6e4 | 206 | wxGridCellWorker::~wxGridCellWorker() |
65e4e78e | 207 | { |
508011ce VZ |
208 | } |
209 | ||
ba9574c3 VZ |
210 | // ---------------------------------------------------------------------------- |
211 | // wxGridHeaderLabelsRenderer and related classes | |
212 | // ---------------------------------------------------------------------------- | |
213 | ||
214 | void wxGridHeaderLabelsRenderer::DrawLabel(const wxGrid& grid, | |
215 | wxDC& dc, | |
216 | const wxString& value, | |
217 | const wxRect& rect, | |
218 | int horizAlign, | |
219 | int vertAlign, | |
220 | int textOrientation) const | |
221 | { | |
222 | dc.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT); | |
223 | dc.SetTextForeground(grid.GetLabelTextColour()); | |
224 | dc.SetFont(grid.GetLabelFont()); | |
225 | grid.DrawTextRectangle(dc, value, rect, horizAlign, vertAlign, textOrientation); | |
226 | } | |
227 | ||
228 | ||
229 | void wxGridRowHeaderRendererDefault::DrawBorder(const wxGrid& WXUNUSED(grid), | |
230 | wxDC& dc, | |
231 | wxRect& rect) const | |
232 | { | |
233 | dc.SetPen(wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW))); | |
234 | dc.DrawLine(rect.GetRight(), rect.GetTop(), | |
235 | rect.GetRight(), rect.GetBottom()); | |
236 | dc.DrawLine(rect.GetLeft(), rect.GetTop(), | |
237 | rect.GetLeft(), rect.GetBottom()); | |
238 | dc.DrawLine(rect.GetLeft(), rect.GetBottom(), | |
239 | rect.GetRight() + 1, rect.GetBottom()); | |
240 | ||
241 | dc.SetPen(*wxWHITE_PEN); | |
242 | dc.DrawLine(rect.GetLeft() + 1, rect.GetTop(), | |
243 | rect.GetLeft() + 1, rect.GetBottom()); | |
244 | dc.DrawLine(rect.GetLeft() + 1, rect.GetTop(), | |
245 | rect.GetRight(), rect.GetTop()); | |
246 | ||
247 | rect.Deflate(2); | |
248 | } | |
249 | ||
250 | void wxGridColumnHeaderRendererDefault::DrawBorder(const wxGrid& WXUNUSED(grid), | |
251 | wxDC& dc, | |
252 | wxRect& rect) const | |
253 | { | |
254 | dc.SetPen(wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW))); | |
255 | dc.DrawLine(rect.GetRight(), rect.GetTop(), | |
256 | rect.GetRight(), rect.GetBottom()); | |
257 | dc.DrawLine(rect.GetLeft(), rect.GetTop(), | |
258 | rect.GetRight(), rect.GetTop()); | |
259 | dc.DrawLine(rect.GetLeft(), rect.GetBottom(), | |
260 | rect.GetRight() + 1, rect.GetBottom()); | |
261 | ||
262 | dc.SetPen(*wxWHITE_PEN); | |
263 | dc.DrawLine(rect.GetLeft(), rect.GetTop() + 1, | |
264 | rect.GetLeft(), rect.GetBottom()); | |
265 | dc.DrawLine(rect.GetLeft(), rect.GetTop() + 1, | |
266 | rect.GetRight(), rect.GetTop() + 1); | |
267 | ||
268 | rect.Deflate(2); | |
269 | } | |
270 | ||
271 | void wxGridCornerHeaderRendererDefault::DrawBorder(const wxGrid& WXUNUSED(grid), | |
272 | wxDC& dc, | |
273 | wxRect& rect) const | |
274 | { | |
275 | dc.SetPen(wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW))); | |
276 | dc.DrawLine(rect.GetRight() - 1, rect.GetBottom() - 1, | |
277 | rect.GetRight() - 1, rect.GetTop()); | |
278 | dc.DrawLine(rect.GetRight() - 1, rect.GetBottom() - 1, | |
279 | rect.GetLeft(), rect.GetBottom() - 1); | |
280 | dc.DrawLine(rect.GetLeft(), rect.GetTop(), | |
281 | rect.GetRight(), rect.GetTop()); | |
282 | dc.DrawLine(rect.GetLeft(), rect.GetTop(), | |
283 | rect.GetLeft(), rect.GetBottom()); | |
284 | ||
285 | dc.SetPen(*wxWHITE_PEN); | |
286 | dc.DrawLine(rect.GetLeft() + 1, rect.GetTop() + 1, | |
287 | rect.GetRight() - 1, rect.GetTop() + 1); | |
288 | dc.DrawLine(rect.GetLeft() + 1, rect.GetTop() + 1, | |
289 | rect.GetLeft() + 1, rect.GetBottom() - 1); | |
290 | ||
291 | rect.Deflate(2); | |
292 | } | |
293 | ||
2796cce3 RD |
294 | // ---------------------------------------------------------------------------- |
295 | // wxGridCellAttr | |
296 | // ---------------------------------------------------------------------------- | |
297 | ||
1df4050d VZ |
298 | void wxGridCellAttr::Init(wxGridCellAttr *attrDefault) |
299 | { | |
1df4050d VZ |
300 | m_isReadOnly = Unset; |
301 | ||
302 | m_renderer = NULL; | |
303 | m_editor = NULL; | |
304 | ||
305 | m_attrkind = wxGridCellAttr::Cell; | |
306 | ||
27f35b66 | 307 | m_sizeRows = m_sizeCols = 1; |
b63fce94 | 308 | m_overflow = UnsetOverflow; |
27f35b66 | 309 | |
1df4050d VZ |
310 | SetDefAttr(attrDefault); |
311 | } | |
312 | ||
39bcce60 | 313 | wxGridCellAttr *wxGridCellAttr::Clone() const |
a68c1246 | 314 | { |
1df4050d VZ |
315 | wxGridCellAttr *attr = new wxGridCellAttr(m_defGridAttr); |
316 | ||
a68c1246 VZ |
317 | if ( HasTextColour() ) |
318 | attr->SetTextColour(GetTextColour()); | |
319 | if ( HasBackgroundColour() ) | |
320 | attr->SetBackgroundColour(GetBackgroundColour()); | |
321 | if ( HasFont() ) | |
322 | attr->SetFont(GetFont()); | |
323 | if ( HasAlignment() ) | |
324 | attr->SetAlignment(m_hAlign, m_vAlign); | |
325 | ||
27f35b66 SN |
326 | attr->SetSize( m_sizeRows, m_sizeCols ); |
327 | ||
a68c1246 VZ |
328 | if ( m_renderer ) |
329 | { | |
330 | attr->SetRenderer(m_renderer); | |
39bcce60 | 331 | m_renderer->IncRef(); |
a68c1246 VZ |
332 | } |
333 | if ( m_editor ) | |
334 | { | |
335 | attr->SetEditor(m_editor); | |
39bcce60 | 336 | m_editor->IncRef(); |
a68c1246 VZ |
337 | } |
338 | ||
339 | if ( IsReadOnly() ) | |
340 | attr->SetReadOnly(); | |
341 | ||
dfd7c082 | 342 | attr->SetOverflow( m_overflow == Overflow ); |
19d7140e VZ |
343 | attr->SetKind( m_attrkind ); |
344 | ||
a68c1246 VZ |
345 | return attr; |
346 | } | |
347 | ||
19d7140e VZ |
348 | void wxGridCellAttr::MergeWith(wxGridCellAttr *mergefrom) |
349 | { | |
350 | if ( !HasTextColour() && mergefrom->HasTextColour() ) | |
351 | SetTextColour(mergefrom->GetTextColour()); | |
352 | if ( !HasBackgroundColour() && mergefrom->HasBackgroundColour() ) | |
353 | SetBackgroundColour(mergefrom->GetBackgroundColour()); | |
354 | if ( !HasFont() && mergefrom->HasFont() ) | |
355 | SetFont(mergefrom->GetFont()); | |
4db6714b KH |
356 | if ( !HasAlignment() && mergefrom->HasAlignment() ) |
357 | { | |
19d7140e VZ |
358 | int hAlign, vAlign; |
359 | mergefrom->GetAlignment( &hAlign, &vAlign); | |
360 | SetAlignment(hAlign, vAlign); | |
361 | } | |
3100c3db RD |
362 | if ( !HasSize() && mergefrom->HasSize() ) |
363 | mergefrom->GetSize( &m_sizeRows, &m_sizeCols ); | |
27f35b66 | 364 | |
19d7140e VZ |
365 | // Directly access member functions as GetRender/Editor don't just return |
366 | // m_renderer/m_editor | |
367 | // | |
368 | // Maybe add support for merge of Render and Editor? | |
369 | if (!HasRenderer() && mergefrom->HasRenderer() ) | |
bf7945ce | 370 | { |
19d7140e VZ |
371 | m_renderer = mergefrom->m_renderer; |
372 | m_renderer->IncRef(); | |
373 | } | |
374 | if ( !HasEditor() && mergefrom->HasEditor() ) | |
375 | { | |
376 | m_editor = mergefrom->m_editor; | |
377 | m_editor->IncRef(); | |
378 | } | |
2f024384 | 379 | if ( !HasReadWriteMode() && mergefrom->HasReadWriteMode() ) |
19d7140e VZ |
380 | SetReadOnly(mergefrom->IsReadOnly()); |
381 | ||
2f024384 | 382 | if (!HasOverflowMode() && mergefrom->HasOverflowMode() ) |
ff699386 | 383 | SetOverflow(mergefrom->GetOverflow()); |
ef5df12b | 384 | |
19d7140e VZ |
385 | SetDefAttr(mergefrom->m_defGridAttr); |
386 | } | |
387 | ||
27f35b66 SN |
388 | void wxGridCellAttr::SetSize(int num_rows, int num_cols) |
389 | { | |
390 | // The size of a cell is normally 1,1 | |
391 | ||
392 | // If this cell is larger (2,2) then this is the top left cell | |
393 | // the other cells that will be covered (lower right cells) must be | |
394 | // set to negative or zero values such that | |
395 | // row + num_rows of the covered cell points to the larger cell (this cell) | |
396 | // same goes for the col + num_cols. | |
397 | ||
398 | // Size of 0,0 is NOT valid, neither is <=0 and any positive value | |
399 | ||
2f024384 DS |
400 | wxASSERT_MSG( (!((num_rows > 0) && (num_cols <= 0)) || |
401 | !((num_rows <= 0) && (num_cols > 0)) || | |
402 | !((num_rows == 0) && (num_cols == 0))), | |
27f35b66 SN |
403 | wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values")); |
404 | ||
405 | m_sizeRows = num_rows; | |
406 | m_sizeCols = num_cols; | |
407 | } | |
408 | ||
2796cce3 RD |
409 | const wxColour& wxGridCellAttr::GetTextColour() const |
410 | { | |
411 | if (HasTextColour()) | |
508011ce | 412 | { |
2796cce3 | 413 | return m_colText; |
508011ce | 414 | } |
0926b2fc | 415 | else if (m_defGridAttr && m_defGridAttr != this) |
508011ce | 416 | { |
2796cce3 | 417 | return m_defGridAttr->GetTextColour(); |
508011ce VZ |
418 | } |
419 | else | |
420 | { | |
2796cce3 RD |
421 | wxFAIL_MSG(wxT("Missing default cell attribute")); |
422 | return wxNullColour; | |
423 | } | |
424 | } | |
425 | ||
2796cce3 RD |
426 | const wxColour& wxGridCellAttr::GetBackgroundColour() const |
427 | { | |
428 | if (HasBackgroundColour()) | |
2f024384 | 429 | { |
2796cce3 | 430 | return m_colBack; |
2f024384 | 431 | } |
0926b2fc | 432 | else if (m_defGridAttr && m_defGridAttr != this) |
2f024384 | 433 | { |
2796cce3 | 434 | return m_defGridAttr->GetBackgroundColour(); |
2f024384 | 435 | } |
508011ce VZ |
436 | else |
437 | { | |
2796cce3 RD |
438 | wxFAIL_MSG(wxT("Missing default cell attribute")); |
439 | return wxNullColour; | |
440 | } | |
441 | } | |
442 | ||
2796cce3 RD |
443 | const wxFont& wxGridCellAttr::GetFont() const |
444 | { | |
445 | if (HasFont()) | |
2f024384 | 446 | { |
2796cce3 | 447 | return m_font; |
2f024384 | 448 | } |
0926b2fc | 449 | else if (m_defGridAttr && m_defGridAttr != this) |
2f024384 | 450 | { |
2796cce3 | 451 | return m_defGridAttr->GetFont(); |
2f024384 | 452 | } |
508011ce VZ |
453 | else |
454 | { | |
2796cce3 RD |
455 | wxFAIL_MSG(wxT("Missing default cell attribute")); |
456 | return wxNullFont; | |
457 | } | |
458 | } | |
459 | ||
2796cce3 RD |
460 | void wxGridCellAttr::GetAlignment(int *hAlign, int *vAlign) const |
461 | { | |
508011ce VZ |
462 | if (HasAlignment()) |
463 | { | |
4db6714b KH |
464 | if ( hAlign ) |
465 | *hAlign = m_hAlign; | |
466 | if ( vAlign ) | |
467 | *vAlign = m_vAlign; | |
2796cce3 | 468 | } |
0926b2fc | 469 | else if (m_defGridAttr && m_defGridAttr != this) |
c2f5b920 | 470 | { |
2796cce3 | 471 | m_defGridAttr->GetAlignment(hAlign, vAlign); |
c2f5b920 | 472 | } |
508011ce VZ |
473 | else |
474 | { | |
2796cce3 RD |
475 | wxFAIL_MSG(wxT("Missing default cell attribute")); |
476 | } | |
477 | } | |
478 | ||
cfbc15ee VZ |
479 | void wxGridCellAttr::GetNonDefaultAlignment(int *hAlign, int *vAlign) const |
480 | { | |
481 | if ( hAlign && m_hAlign != wxALIGN_INVALID ) | |
482 | *hAlign = m_hAlign; | |
483 | ||
484 | if ( vAlign && m_vAlign != wxALIGN_INVALID ) | |
485 | *vAlign = m_vAlign; | |
486 | } | |
487 | ||
27f35b66 SN |
488 | void wxGridCellAttr::GetSize( int *num_rows, int *num_cols ) const |
489 | { | |
4db6714b KH |
490 | if ( num_rows ) |
491 | *num_rows = m_sizeRows; | |
492 | if ( num_cols ) | |
493 | *num_cols = m_sizeCols; | |
27f35b66 | 494 | } |
2796cce3 | 495 | |
f2d76237 | 496 | // GetRenderer and GetEditor use a slightly different decision path about |
28a77bc4 RD |
497 | // which attribute to use. If a non-default attr object has one then it is |
498 | // used, otherwise the default editor or renderer is fetched from the grid and | |
499 | // used. It should be the default for the data type of the cell. If it is | |
500 | // NULL (because the table has a type that the grid does not have in its | |
c2f5b920 | 501 | // registry), then the grid's default editor or renderer is used. |
28a77bc4 | 502 | |
ef316e23 | 503 | wxGridCellRenderer* wxGridCellAttr::GetRenderer(const wxGrid* grid, int row, int col) const |
28a77bc4 | 504 | { |
c2f5b920 | 505 | wxGridCellRenderer *renderer = NULL; |
28a77bc4 | 506 | |
3cf883a2 | 507 | if ( m_renderer && this != m_defGridAttr ) |
0b190b0f | 508 | { |
3cf883a2 VZ |
509 | // use the cells renderer if it has one |
510 | renderer = m_renderer; | |
511 | renderer->IncRef(); | |
0b190b0f | 512 | } |
2f024384 | 513 | else // no non-default cell renderer |
0b190b0f | 514 | { |
3cf883a2 VZ |
515 | // get default renderer for the data type |
516 | if ( grid ) | |
517 | { | |
518 | // GetDefaultRendererForCell() will do IncRef() for us | |
519 | renderer = grid->GetDefaultRendererForCell(row, col); | |
520 | } | |
0b190b0f | 521 | |
c2f5b920 | 522 | if ( renderer == NULL ) |
3cf883a2 | 523 | { |
c2f5b920 | 524 | if ( (m_defGridAttr != NULL) && (m_defGridAttr != this) ) |
3cf883a2 VZ |
525 | { |
526 | // if we still don't have one then use the grid default | |
527 | // (no need for IncRef() here neither) | |
528 | renderer = m_defGridAttr->GetRenderer(NULL, 0, 0); | |
529 | } | |
530 | else // default grid attr | |
531 | { | |
532 | // use m_renderer which we had decided not to use initially | |
533 | renderer = m_renderer; | |
534 | if ( renderer ) | |
535 | renderer->IncRef(); | |
536 | } | |
537 | } | |
0b190b0f | 538 | } |
28a77bc4 | 539 | |
3cf883a2 VZ |
540 | // we're supposed to always find something |
541 | wxASSERT_MSG(renderer, wxT("Missing default cell renderer")); | |
28a77bc4 RD |
542 | |
543 | return renderer; | |
2796cce3 RD |
544 | } |
545 | ||
3cf883a2 | 546 | // same as above, except for s/renderer/editor/g |
ef316e23 | 547 | wxGridCellEditor* wxGridCellAttr::GetEditor(const wxGrid* grid, int row, int col) const |
07296f0b | 548 | { |
c2f5b920 | 549 | wxGridCellEditor *editor = NULL; |
0b190b0f | 550 | |
3cf883a2 | 551 | if ( m_editor && this != m_defGridAttr ) |
0b190b0f | 552 | { |
3cf883a2 VZ |
553 | // use the cells editor if it has one |
554 | editor = m_editor; | |
555 | editor->IncRef(); | |
0b190b0f | 556 | } |
3cf883a2 | 557 | else // no non default cell editor |
0b190b0f | 558 | { |
3cf883a2 VZ |
559 | // get default editor for the data type |
560 | if ( grid ) | |
561 | { | |
562 | // GetDefaultEditorForCell() will do IncRef() for us | |
563 | editor = grid->GetDefaultEditorForCell(row, col); | |
564 | } | |
3cf883a2 | 565 | |
c2f5b920 | 566 | if ( editor == NULL ) |
3cf883a2 | 567 | { |
c2f5b920 | 568 | if ( (m_defGridAttr != NULL) && (m_defGridAttr != this) ) |
3cf883a2 VZ |
569 | { |
570 | // if we still don't have one then use the grid default | |
571 | // (no need for IncRef() here neither) | |
572 | editor = m_defGridAttr->GetEditor(NULL, 0, 0); | |
573 | } | |
574 | else // default grid attr | |
575 | { | |
576 | // use m_editor which we had decided not to use initially | |
577 | editor = m_editor; | |
578 | if ( editor ) | |
579 | editor->IncRef(); | |
580 | } | |
581 | } | |
0b190b0f | 582 | } |
28a77bc4 | 583 | |
3cf883a2 VZ |
584 | // we're supposed to always find something |
585 | wxASSERT_MSG(editor, wxT("Missing default cell editor")); | |
586 | ||
28a77bc4 | 587 | return editor; |
07296f0b RD |
588 | } |
589 | ||
b99be8fb | 590 | // ---------------------------------------------------------------------------- |
758cbedf | 591 | // wxGridCellAttrData |
b99be8fb VZ |
592 | // ---------------------------------------------------------------------------- |
593 | ||
758cbedf | 594 | void wxGridCellAttrData::SetAttr(wxGridCellAttr *attr, int row, int col) |
b99be8fb | 595 | { |
96ca74cd SN |
596 | // Note: contrary to wxGridRowOrColAttrData::SetAttr, we must not |
597 | // touch attribute's reference counting explicitly, since this | |
598 | // is managed by class wxGridCellWithAttr | |
b99be8fb VZ |
599 | int n = FindIndex(row, col); |
600 | if ( n == wxNOT_FOUND ) | |
601 | { | |
a70517e9 VZ |
602 | if ( attr ) |
603 | { | |
604 | // add the attribute | |
605 | m_attrs.Add(new wxGridCellWithAttr(row, col, attr)); | |
606 | } | |
607 | //else: nothing to do | |
b99be8fb | 608 | } |
6f292345 | 609 | else // we already have an attribute for this cell |
b99be8fb VZ |
610 | { |
611 | if ( attr ) | |
612 | { | |
613 | // change the attribute | |
96ca74cd | 614 | m_attrs[(size_t)n].ChangeAttr(attr); |
b99be8fb VZ |
615 | } |
616 | else | |
617 | { | |
618 | // remove this attribute | |
619 | m_attrs.RemoveAt((size_t)n); | |
620 | } | |
621 | } | |
b99be8fb VZ |
622 | } |
623 | ||
758cbedf | 624 | wxGridCellAttr *wxGridCellAttrData::GetAttr(int row, int col) const |
b99be8fb | 625 | { |
10a4531d | 626 | wxGridCellAttr *attr = NULL; |
b99be8fb VZ |
627 | |
628 | int n = FindIndex(row, col); | |
629 | if ( n != wxNOT_FOUND ) | |
630 | { | |
2e9a6788 VZ |
631 | attr = m_attrs[(size_t)n].attr; |
632 | attr->IncRef(); | |
b99be8fb VZ |
633 | } |
634 | ||
635 | return attr; | |
636 | } | |
637 | ||
4d60017a SN |
638 | void wxGridCellAttrData::UpdateAttrRows( size_t pos, int numRows ) |
639 | { | |
640 | size_t count = m_attrs.GetCount(); | |
641 | for ( size_t n = 0; n < count; n++ ) | |
642 | { | |
643 | wxGridCellCoords& coords = m_attrs[n].coords; | |
d1c0b4f9 VZ |
644 | wxCoord row = coords.GetRow(); |
645 | if ((size_t)row >= pos) | |
646 | { | |
647 | if (numRows > 0) | |
648 | { | |
649 | // If rows inserted, include row counter where necessary | |
650 | coords.SetRow(row + numRows); | |
651 | } | |
652 | else if (numRows < 0) | |
653 | { | |
654 | // If rows deleted ... | |
655 | if ((size_t)row >= pos - numRows) | |
656 | { | |
657 | // ...either decrement row counter (if row still exists)... | |
658 | coords.SetRow(row + numRows); | |
659 | } | |
660 | else | |
661 | { | |
662 | // ...or remove the attribute | |
01dd42b6 | 663 | m_attrs.RemoveAt(n); |
4db6714b KH |
664 | n--; |
665 | count--; | |
d1c0b4f9 VZ |
666 | } |
667 | } | |
4d60017a SN |
668 | } |
669 | } | |
670 | } | |
671 | ||
672 | void wxGridCellAttrData::UpdateAttrCols( size_t pos, int numCols ) | |
673 | { | |
674 | size_t count = m_attrs.GetCount(); | |
675 | for ( size_t n = 0; n < count; n++ ) | |
676 | { | |
677 | wxGridCellCoords& coords = m_attrs[n].coords; | |
d1c0b4f9 VZ |
678 | wxCoord col = coords.GetCol(); |
679 | if ( (size_t)col >= pos ) | |
680 | { | |
681 | if ( numCols > 0 ) | |
682 | { | |
683 | // If rows inserted, include row counter where necessary | |
684 | coords.SetCol(col + numCols); | |
685 | } | |
686 | else if (numCols < 0) | |
687 | { | |
688 | // If rows deleted ... | |
689 | if ((size_t)col >= pos - numCols) | |
690 | { | |
691 | // ...either decrement row counter (if row still exists)... | |
692 | coords.SetCol(col + numCols); | |
693 | } | |
694 | else | |
695 | { | |
696 | // ...or remove the attribute | |
01dd42b6 | 697 | m_attrs.RemoveAt(n); |
2f024384 DS |
698 | n--; |
699 | count--; | |
d1c0b4f9 VZ |
700 | } |
701 | } | |
4d60017a SN |
702 | } |
703 | } | |
704 | } | |
705 | ||
758cbedf | 706 | int wxGridCellAttrData::FindIndex(int row, int col) const |
b99be8fb VZ |
707 | { |
708 | size_t count = m_attrs.GetCount(); | |
709 | for ( size_t n = 0; n < count; n++ ) | |
710 | { | |
711 | const wxGridCellCoords& coords = m_attrs[n].coords; | |
712 | if ( (coords.GetRow() == row) && (coords.GetCol() == col) ) | |
713 | { | |
714 | return n; | |
715 | } | |
716 | } | |
717 | ||
718 | return wxNOT_FOUND; | |
719 | } | |
720 | ||
758cbedf VZ |
721 | // ---------------------------------------------------------------------------- |
722 | // wxGridRowOrColAttrData | |
723 | // ---------------------------------------------------------------------------- | |
724 | ||
725 | wxGridRowOrColAttrData::~wxGridRowOrColAttrData() | |
726 | { | |
b4a980f4 | 727 | size_t count = m_attrs.GetCount(); |
758cbedf VZ |
728 | for ( size_t n = 0; n < count; n++ ) |
729 | { | |
730 | m_attrs[n]->DecRef(); | |
731 | } | |
732 | } | |
733 | ||
734 | wxGridCellAttr *wxGridRowOrColAttrData::GetAttr(int rowOrCol) const | |
735 | { | |
10a4531d | 736 | wxGridCellAttr *attr = NULL; |
758cbedf VZ |
737 | |
738 | int n = m_rowsOrCols.Index(rowOrCol); | |
739 | if ( n != wxNOT_FOUND ) | |
740 | { | |
741 | attr = m_attrs[(size_t)n]; | |
742 | attr->IncRef(); | |
743 | } | |
744 | ||
745 | return attr; | |
746 | } | |
747 | ||
748 | void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr *attr, int rowOrCol) | |
749 | { | |
a95e38c0 VZ |
750 | int i = m_rowsOrCols.Index(rowOrCol); |
751 | if ( i == wxNOT_FOUND ) | |
758cbedf | 752 | { |
62d249cb VZ |
753 | if ( attr ) |
754 | { | |
4a53f701 | 755 | // store the new attribute, taking its ownership |
62d249cb VZ |
756 | m_rowsOrCols.Add(rowOrCol); |
757 | m_attrs.Add(attr); | |
758 | } | |
759 | // nothing to remove | |
758cbedf | 760 | } |
4a53f701 | 761 | else // we have an attribute for this row or column |
758cbedf | 762 | { |
a95e38c0 | 763 | size_t n = (size_t)i; |
4a53f701 VZ |
764 | |
765 | // notice that this code works correctly even when the old attribute is | |
766 | // the same as the new one: as we own of it, we must call DecRef() on | |
767 | // it in any case and this won't result in destruction of the new | |
768 | // attribute if it's the same as old one because it must have ref count | |
769 | // of at least 2 to be passed to us while we keep a reference to it too | |
770 | m_attrs[n]->DecRef(); | |
771 | ||
758cbedf VZ |
772 | if ( attr ) |
773 | { | |
4a53f701 | 774 | // replace the attribute with the new one |
a95e38c0 | 775 | m_attrs[n] = attr; |
758cbedf | 776 | } |
4a53f701 | 777 | else // remove the attribute |
758cbedf | 778 | { |
a95e38c0 VZ |
779 | m_rowsOrCols.RemoveAt(n); |
780 | m_attrs.RemoveAt(n); | |
758cbedf VZ |
781 | } |
782 | } | |
783 | } | |
784 | ||
4d60017a SN |
785 | void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos, int numRowsOrCols ) |
786 | { | |
787 | size_t count = m_attrs.GetCount(); | |
788 | for ( size_t n = 0; n < count; n++ ) | |
789 | { | |
790 | int & rowOrCol = m_rowsOrCols[n]; | |
d1c0b4f9 VZ |
791 | if ( (size_t)rowOrCol >= pos ) |
792 | { | |
793 | if ( numRowsOrCols > 0 ) | |
794 | { | |
795 | // If rows inserted, include row counter where necessary | |
796 | rowOrCol += numRowsOrCols; | |
797 | } | |
798 | else if ( numRowsOrCols < 0) | |
799 | { | |
800 | // If rows deleted, either decrement row counter (if row still exists) | |
801 | if ((size_t)rowOrCol >= pos - numRowsOrCols) | |
802 | rowOrCol += numRowsOrCols; | |
803 | else | |
804 | { | |
01dd42b6 VZ |
805 | m_rowsOrCols.RemoveAt(n); |
806 | m_attrs[n]->DecRef(); | |
807 | m_attrs.RemoveAt(n); | |
4db6714b KH |
808 | n--; |
809 | count--; | |
d1c0b4f9 VZ |
810 | } |
811 | } | |
4d60017a SN |
812 | } |
813 | } | |
814 | } | |
815 | ||
b99be8fb VZ |
816 | // ---------------------------------------------------------------------------- |
817 | // wxGridCellAttrProvider | |
818 | // ---------------------------------------------------------------------------- | |
819 | ||
820 | wxGridCellAttrProvider::wxGridCellAttrProvider() | |
821 | { | |
10a4531d | 822 | m_data = NULL; |
b99be8fb VZ |
823 | } |
824 | ||
825 | wxGridCellAttrProvider::~wxGridCellAttrProvider() | |
826 | { | |
827 | delete m_data; | |
828 | } | |
829 | ||
830 | void wxGridCellAttrProvider::InitData() | |
831 | { | |
832 | m_data = new wxGridCellAttrProviderData; | |
833 | } | |
834 | ||
19d7140e VZ |
835 | wxGridCellAttr *wxGridCellAttrProvider::GetAttr(int row, int col, |
836 | wxGridCellAttr::wxAttrKind kind ) const | |
b99be8fb | 837 | { |
10a4531d | 838 | wxGridCellAttr *attr = NULL; |
758cbedf VZ |
839 | if ( m_data ) |
840 | { | |
962a48f6 | 841 | switch (kind) |
758cbedf | 842 | { |
19d7140e | 843 | case (wxGridCellAttr::Any): |
962a48f6 DS |
844 | // Get cached merge attributes. |
845 | // Currently not used as no cache implemented as not mutable | |
19d7140e | 846 | // attr = m_data->m_mergeAttr.GetAttr(row, col); |
4db6714b | 847 | if (!attr) |
19d7140e | 848 | { |
962a48f6 DS |
849 | // Basically implement old version. |
850 | // Also check merge cache, so we don't have to re-merge every time.. | |
999836aa VZ |
851 | wxGridCellAttr *attrcell = m_data->m_cellAttrs.GetAttr(row, col); |
852 | wxGridCellAttr *attrrow = m_data->m_rowAttrs.GetAttr(row); | |
853 | wxGridCellAttr *attrcol = m_data->m_colAttrs.GetAttr(col); | |
19d7140e | 854 | |
4db6714b KH |
855 | if ((attrcell != attrrow) && (attrrow != attrcol) && (attrcell != attrcol)) |
856 | { | |
2d0c2e79 | 857 | // Two or more are non NULL |
19d7140e VZ |
858 | attr = new wxGridCellAttr; |
859 | attr->SetKind(wxGridCellAttr::Merged); | |
860 | ||
962a48f6 | 861 | // Order is important.. |
4db6714b KH |
862 | if (attrcell) |
863 | { | |
19d7140e VZ |
864 | attr->MergeWith(attrcell); |
865 | attrcell->DecRef(); | |
866 | } | |
4db6714b KH |
867 | if (attrcol) |
868 | { | |
19d7140e VZ |
869 | attr->MergeWith(attrcol); |
870 | attrcol->DecRef(); | |
871 | } | |
4db6714b KH |
872 | if (attrrow) |
873 | { | |
19d7140e VZ |
874 | attr->MergeWith(attrrow); |
875 | attrrow->DecRef(); | |
876 | } | |
962a48f6 DS |
877 | |
878 | // store merge attr if cache implemented | |
19d7140e VZ |
879 | //attr->IncRef(); |
880 | //m_data->m_mergeAttr.SetAttr(attr, row, col); | |
881 | } | |
882 | else | |
2d0c2e79 | 883 | { |
19d7140e | 884 | // one or none is non null return it or null. |
4db6714b KH |
885 | if (attrrow) |
886 | attr = attrrow; | |
887 | if (attrcol) | |
2d0c2e79 | 888 | { |
962a48f6 | 889 | if (attr) |
2d0c2e79 RD |
890 | attr->DecRef(); |
891 | attr = attrcol; | |
892 | } | |
4db6714b | 893 | if (attrcell) |
2d0c2e79 | 894 | { |
4db6714b | 895 | if (attr) |
2d0c2e79 RD |
896 | attr->DecRef(); |
897 | attr = attrcell; | |
898 | } | |
19d7140e | 899 | } |
29efc6e4 FM |
900 | } |
901 | break; | |
f2d76237 | 902 | |
29efc6e4 FM |
903 | case (wxGridCellAttr::Cell): |
904 | attr = m_data->m_cellAttrs.GetAttr(row, col); | |
905 | break; | |
906 | ||
907 | case (wxGridCellAttr::Col): | |
908 | attr = m_data->m_colAttrs.GetAttr(col); | |
909 | break; | |
910 | ||
911 | case (wxGridCellAttr::Row): | |
912 | attr = m_data->m_rowAttrs.GetAttr(row); | |
913 | break; | |
914 | ||
915 | default: | |
916 | // unused as yet... | |
917 | // (wxGridCellAttr::Default): | |
918 | // (wxGridCellAttr::Merged): | |
919 | break; | |
920 | } | |
c4608a8a VZ |
921 | } |
922 | ||
29efc6e4 | 923 | return attr; |
c4608a8a VZ |
924 | } |
925 | ||
29efc6e4 FM |
926 | void wxGridCellAttrProvider::SetAttr(wxGridCellAttr *attr, |
927 | int row, int col) | |
c4608a8a | 928 | { |
29efc6e4 FM |
929 | if ( !m_data ) |
930 | InitData(); | |
c4608a8a | 931 | |
29efc6e4 FM |
932 | m_data->m_cellAttrs.SetAttr(attr, row, col); |
933 | } | |
c4608a8a | 934 | |
29efc6e4 FM |
935 | void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr *attr, int row) |
936 | { | |
937 | if ( !m_data ) | |
938 | InitData(); | |
c4608a8a | 939 | |
29efc6e4 FM |
940 | m_data->m_rowAttrs.SetAttr(attr, row); |
941 | } | |
c4608a8a | 942 | |
29efc6e4 FM |
943 | void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr *attr, int col) |
944 | { | |
945 | if ( !m_data ) | |
946 | InitData(); | |
f2d76237 | 947 | |
29efc6e4 | 948 | m_data->m_colAttrs.SetAttr(attr, col); |
f2d76237 RD |
949 | } |
950 | ||
29efc6e4 | 951 | void wxGridCellAttrProvider::UpdateAttrRows( size_t pos, int numRows ) |
f2d76237 | 952 | { |
29efc6e4 FM |
953 | if ( m_data ) |
954 | { | |
955 | m_data->m_cellAttrs.UpdateAttrRows( pos, numRows ); | |
2f024384 | 956 | |
29efc6e4 FM |
957 | m_data->m_rowAttrs.UpdateAttrRowsOrCols( pos, numRows ); |
958 | } | |
f2d76237 RD |
959 | } |
960 | ||
29efc6e4 | 961 | void wxGridCellAttrProvider::UpdateAttrCols( size_t pos, int numCols ) |
f2d76237 | 962 | { |
29efc6e4 FM |
963 | if ( m_data ) |
964 | { | |
965 | m_data->m_cellAttrs.UpdateAttrCols( pos, numCols ); | |
2f024384 | 966 | |
29efc6e4 FM |
967 | m_data->m_colAttrs.UpdateAttrRowsOrCols( pos, numCols ); |
968 | } | |
f2d76237 RD |
969 | } |
970 | ||
670d0177 VZ |
971 | const wxGridColumnHeaderRenderer& |
972 | wxGridCellAttrProvider::GetColumnHeaderRenderer(int WXUNUSED(col)) | |
973 | { | |
974 | return gs_defaultHeaderRenderers.colRenderer; | |
975 | } | |
976 | ||
977 | const wxGridRowHeaderRenderer& | |
978 | wxGridCellAttrProvider::GetRowHeaderRenderer(int WXUNUSED(row)) | |
979 | { | |
980 | return gs_defaultHeaderRenderers.rowRenderer; | |
981 | } | |
982 | ||
983 | const wxGridCornerHeaderRenderer& wxGridCellAttrProvider::GetCornerRenderer() | |
984 | { | |
985 | return gs_defaultHeaderRenderers.cornerRenderer; | |
986 | } | |
987 | ||
758cbedf VZ |
988 | // ---------------------------------------------------------------------------- |
989 | // wxGridTableBase | |
990 | // ---------------------------------------------------------------------------- | |
991 | ||
f85afd4e MB |
992 | IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase, wxObject ) |
993 | ||
f85afd4e | 994 | wxGridTableBase::wxGridTableBase() |
f85afd4e | 995 | { |
10a4531d VZ |
996 | m_view = NULL; |
997 | m_attrProvider = NULL; | |
f85afd4e MB |
998 | } |
999 | ||
1000 | wxGridTableBase::~wxGridTableBase() | |
1001 | { | |
b99be8fb VZ |
1002 | delete m_attrProvider; |
1003 | } | |
1004 | ||
1005 | void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider *attrProvider) | |
1006 | { | |
1007 | delete m_attrProvider; | |
1008 | m_attrProvider = attrProvider; | |
f85afd4e MB |
1009 | } |
1010 | ||
f2d76237 RD |
1011 | bool wxGridTableBase::CanHaveAttributes() |
1012 | { | |
1013 | if ( ! GetAttrProvider() ) | |
1014 | { | |
1015 | // use the default attr provider by default | |
1016 | SetAttrProvider(new wxGridCellAttrProvider); | |
1017 | } | |
2f024384 | 1018 | |
ca65c044 | 1019 | return true; |
f2d76237 RD |
1020 | } |
1021 | ||
19d7140e | 1022 | wxGridCellAttr *wxGridTableBase::GetAttr(int row, int col, wxGridCellAttr::wxAttrKind kind) |
b99be8fb VZ |
1023 | { |
1024 | if ( m_attrProvider ) | |
19d7140e | 1025 | return m_attrProvider->GetAttr(row, col, kind); |
b99be8fb | 1026 | else |
10a4531d | 1027 | return NULL; |
b99be8fb VZ |
1028 | } |
1029 | ||
758cbedf | 1030 | void wxGridTableBase::SetAttr(wxGridCellAttr* attr, int row, int col) |
b99be8fb VZ |
1031 | { |
1032 | if ( m_attrProvider ) | |
1033 | { | |
6f292345 VZ |
1034 | if ( attr ) |
1035 | attr->SetKind(wxGridCellAttr::Cell); | |
b99be8fb VZ |
1036 | m_attrProvider->SetAttr(attr, row, col); |
1037 | } | |
1038 | else | |
1039 | { | |
1040 | // as we take ownership of the pointer and don't store it, we must | |
1041 | // free it now | |
39bcce60 | 1042 | wxSafeDecRef(attr); |
b99be8fb VZ |
1043 | } |
1044 | } | |
1045 | ||
758cbedf VZ |
1046 | void wxGridTableBase::SetRowAttr(wxGridCellAttr *attr, int row) |
1047 | { | |
1048 | if ( m_attrProvider ) | |
1049 | { | |
19d7140e | 1050 | attr->SetKind(wxGridCellAttr::Row); |
758cbedf VZ |
1051 | m_attrProvider->SetRowAttr(attr, row); |
1052 | } | |
1053 | else | |
1054 | { | |
1055 | // as we take ownership of the pointer and don't store it, we must | |
1056 | // free it now | |
39bcce60 | 1057 | wxSafeDecRef(attr); |
758cbedf VZ |
1058 | } |
1059 | } | |
1060 | ||
1061 | void wxGridTableBase::SetColAttr(wxGridCellAttr *attr, int col) | |
1062 | { | |
1063 | if ( m_attrProvider ) | |
1064 | { | |
19d7140e | 1065 | attr->SetKind(wxGridCellAttr::Col); |
758cbedf VZ |
1066 | m_attrProvider->SetColAttr(attr, col); |
1067 | } | |
1068 | else | |
1069 | { | |
1070 | // as we take ownership of the pointer and don't store it, we must | |
1071 | // free it now | |
39bcce60 | 1072 | wxSafeDecRef(attr); |
758cbedf VZ |
1073 | } |
1074 | } | |
1075 | ||
aa5e1f75 SN |
1076 | bool wxGridTableBase::InsertRows( size_t WXUNUSED(pos), |
1077 | size_t WXUNUSED(numRows) ) | |
f85afd4e | 1078 | { |
f6bcfd97 | 1079 | wxFAIL_MSG( wxT("Called grid table class function InsertRows\nbut your derived table class does not override this function") ); |
8f177c8e | 1080 | |
ca65c044 | 1081 | return false; |
f85afd4e MB |
1082 | } |
1083 | ||
aa5e1f75 | 1084 | bool wxGridTableBase::AppendRows( size_t WXUNUSED(numRows) ) |
f85afd4e | 1085 | { |
f6bcfd97 | 1086 | wxFAIL_MSG( wxT("Called grid table class function AppendRows\nbut your derived table class does not override this function")); |
8f177c8e | 1087 | |
ca65c044 | 1088 | return false; |
f85afd4e MB |
1089 | } |
1090 | ||
aa5e1f75 SN |
1091 | bool wxGridTableBase::DeleteRows( size_t WXUNUSED(pos), |
1092 | size_t WXUNUSED(numRows) ) | |
f85afd4e | 1093 | { |
f6bcfd97 | 1094 | wxFAIL_MSG( wxT("Called grid table class function DeleteRows\nbut your derived table class does not override this function")); |
8f177c8e | 1095 | |
ca65c044 | 1096 | return false; |
f85afd4e MB |
1097 | } |
1098 | ||
aa5e1f75 SN |
1099 | bool wxGridTableBase::InsertCols( size_t WXUNUSED(pos), |
1100 | size_t WXUNUSED(numCols) ) | |
f85afd4e | 1101 | { |
f6bcfd97 | 1102 | wxFAIL_MSG( wxT("Called grid table class function InsertCols\nbut your derived table class does not override this function")); |
8f177c8e | 1103 | |
ca65c044 | 1104 | return false; |
f85afd4e MB |
1105 | } |
1106 | ||
aa5e1f75 | 1107 | bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols) ) |
f85afd4e | 1108 | { |
f6bcfd97 | 1109 | wxFAIL_MSG(wxT("Called grid table class function AppendCols\nbut your derived table class does not override this function")); |
8f177c8e | 1110 | |
ca65c044 | 1111 | return false; |
f85afd4e MB |
1112 | } |
1113 | ||
aa5e1f75 SN |
1114 | bool wxGridTableBase::DeleteCols( size_t WXUNUSED(pos), |
1115 | size_t WXUNUSED(numCols) ) | |
f85afd4e | 1116 | { |
f6bcfd97 | 1117 | wxFAIL_MSG( wxT("Called grid table class function DeleteCols\nbut your derived table class does not override this function")); |
8f177c8e | 1118 | |
ca65c044 | 1119 | return false; |
f85afd4e MB |
1120 | } |
1121 | ||
f85afd4e MB |
1122 | wxString wxGridTableBase::GetRowLabelValue( int row ) |
1123 | { | |
1124 | wxString s; | |
93763ad5 | 1125 | |
2f024384 DS |
1126 | // RD: Starting the rows at zero confuses users, |
1127 | // no matter how much it makes sense to us geeks. | |
1128 | s << row + 1; | |
1129 | ||
f85afd4e MB |
1130 | return s; |
1131 | } | |
1132 | ||
1133 | wxString wxGridTableBase::GetColLabelValue( int col ) | |
1134 | { | |
1135 | // default col labels are: | |
1136 | // cols 0 to 25 : A-Z | |
1137 | // cols 26 to 675 : AA-ZZ | |
1138 | // etc. | |
1139 | ||
1140 | wxString s; | |
1141 | unsigned int i, n; | |
1142 | for ( n = 1; ; n++ ) | |
1143 | { | |
9a83f860 | 1144 | s += (wxChar) (wxT('A') + (wxChar)(col % 26)); |
2f024384 | 1145 | col = col / 26 - 1; |
4db6714b KH |
1146 | if ( col < 0 ) |
1147 | break; | |
f85afd4e MB |
1148 | } |
1149 | ||
1150 | // reverse the string... | |
1151 | wxString s2; | |
3d59537f | 1152 | for ( i = 0; i < n; i++ ) |
f85afd4e | 1153 | { |
2f024384 | 1154 | s2 += s[n - i - 1]; |
f85afd4e MB |
1155 | } |
1156 | ||
1157 | return s2; | |
1158 | } | |
1159 | ||
f2d76237 RD |
1160 | wxString wxGridTableBase::GetTypeName( int WXUNUSED(row), int WXUNUSED(col) ) |
1161 | { | |
816be743 | 1162 | return wxGRID_VALUE_STRING; |
f2d76237 RD |
1163 | } |
1164 | ||
1165 | bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row), int WXUNUSED(col), | |
1166 | const wxString& typeName ) | |
1167 | { | |
816be743 | 1168 | return typeName == wxGRID_VALUE_STRING; |
f2d76237 RD |
1169 | } |
1170 | ||
1171 | bool wxGridTableBase::CanSetValueAs( int row, int col, const wxString& typeName ) | |
1172 | { | |
1173 | return CanGetValueAs(row, col, typeName); | |
1174 | } | |
1175 | ||
1176 | long wxGridTableBase::GetValueAsLong( int WXUNUSED(row), int WXUNUSED(col) ) | |
1177 | { | |
1178 | return 0; | |
1179 | } | |
1180 | ||
1181 | double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row), int WXUNUSED(col) ) | |
1182 | { | |
1183 | return 0.0; | |
1184 | } | |
1185 | ||
1186 | bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row), int WXUNUSED(col) ) | |
1187 | { | |
ca65c044 | 1188 | return false; |
f2d76237 RD |
1189 | } |
1190 | ||
1191 | void wxGridTableBase::SetValueAsLong( int WXUNUSED(row), int WXUNUSED(col), | |
1192 | long WXUNUSED(value) ) | |
1193 | { | |
1194 | } | |
1195 | ||
1196 | void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row), int WXUNUSED(col), | |
1197 | double WXUNUSED(value) ) | |
1198 | { | |
1199 | } | |
1200 | ||
1201 | void wxGridTableBase::SetValueAsBool( int WXUNUSED(row), int WXUNUSED(col), | |
1202 | bool WXUNUSED(value) ) | |
1203 | { | |
1204 | } | |
1205 | ||
f2d76237 RD |
1206 | void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row), int WXUNUSED(col), |
1207 | const wxString& WXUNUSED(typeName) ) | |
1208 | { | |
1209 | return NULL; | |
1210 | } | |
1211 | ||
1212 | void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row), int WXUNUSED(col), | |
1213 | const wxString& WXUNUSED(typeName), | |
1214 | void* WXUNUSED(value) ) | |
1215 | { | |
1216 | } | |
1217 | ||
f85afd4e MB |
1218 | ////////////////////////////////////////////////////////////////////// |
1219 | // | |
1220 | // Message class for the grid table to send requests and notifications | |
1221 | // to the grid view | |
1222 | // | |
1223 | ||
1224 | wxGridTableMessage::wxGridTableMessage() | |
1225 | { | |
10a4531d | 1226 | m_table = NULL; |
f85afd4e MB |
1227 | m_id = -1; |
1228 | m_comInt1 = -1; | |
1229 | m_comInt2 = -1; | |
1230 | } | |
1231 | ||
1232 | wxGridTableMessage::wxGridTableMessage( wxGridTableBase *table, int id, | |
1233 | int commandInt1, int commandInt2 ) | |
1234 | { | |
1235 | m_table = table; | |
1236 | m_id = id; | |
1237 | m_comInt1 = commandInt1; | |
1238 | m_comInt2 = commandInt2; | |
1239 | } | |
1240 | ||
f85afd4e MB |
1241 | ////////////////////////////////////////////////////////////////////// |
1242 | // | |
1243 | // A basic grid table for string data. An object of this class will | |
1244 | // created by wxGrid if you don't specify an alternative table class. | |
1245 | // | |
1246 | ||
223d09f6 | 1247 | WX_DEFINE_OBJARRAY(wxGridStringArray) |
f85afd4e MB |
1248 | |
1249 | IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable, wxGridTableBase ) | |
1250 | ||
1251 | wxGridStringTable::wxGridStringTable() | |
1252 | : wxGridTableBase() | |
1253 | { | |
5c3313a9 | 1254 | m_numCols = 0; |
f85afd4e MB |
1255 | } |
1256 | ||
1257 | wxGridStringTable::wxGridStringTable( int numRows, int numCols ) | |
1258 | : wxGridTableBase() | |
1259 | { | |
5c3313a9 VZ |
1260 | m_numCols = numCols; |
1261 | ||
f85afd4e MB |
1262 | m_data.Alloc( numRows ); |
1263 | ||
1264 | wxArrayString sa; | |
1265 | sa.Alloc( numCols ); | |
27f35b66 | 1266 | sa.Add( wxEmptyString, numCols ); |
8f177c8e | 1267 | |
27f35b66 | 1268 | m_data.Add( sa, numRows ); |
f85afd4e MB |
1269 | } |
1270 | ||
f85afd4e MB |
1271 | wxString wxGridStringTable::GetValue( int row, int col ) |
1272 | { | |
57e9abd6 VZ |
1273 | wxCHECK_MSG( (row >= 0 && row < GetNumberRows()) && |
1274 | (col >= 0 && col < GetNumberCols()), | |
3e13956a | 1275 | wxEmptyString, |
9a83f860 | 1276 | wxT("invalid row or column index in wxGridStringTable") ); |
af547d51 | 1277 | |
f85afd4e MB |
1278 | return m_data[row][col]; |
1279 | } | |
1280 | ||
f2d76237 | 1281 | void wxGridStringTable::SetValue( int row, int col, const wxString& value ) |
f85afd4e | 1282 | { |
57e9abd6 VZ |
1283 | wxCHECK_RET( (row >= 0 && row < GetNumberRows()) && |
1284 | (col >= 0 && col < GetNumberCols()), | |
9a83f860 | 1285 | wxT("invalid row or column index in wxGridStringTable") ); |
af547d51 | 1286 | |
f2d76237 | 1287 | m_data[row][col] = value; |
f85afd4e MB |
1288 | } |
1289 | ||
f85afd4e MB |
1290 | void wxGridStringTable::Clear() |
1291 | { | |
1292 | int row, col; | |
1293 | int numRows, numCols; | |
8f177c8e | 1294 | |
f85afd4e MB |
1295 | numRows = m_data.GetCount(); |
1296 | if ( numRows > 0 ) | |
1297 | { | |
1298 | numCols = m_data[0].GetCount(); | |
1299 | ||
3d59537f | 1300 | for ( row = 0; row < numRows; row++ ) |
f85afd4e | 1301 | { |
3d59537f | 1302 | for ( col = 0; col < numCols; col++ ) |
f85afd4e MB |
1303 | { |
1304 | m_data[row][col] = wxEmptyString; | |
1305 | } | |
1306 | } | |
1307 | } | |
1308 | } | |
1309 | ||
f85afd4e MB |
1310 | bool wxGridStringTable::InsertRows( size_t pos, size_t numRows ) |
1311 | { | |
f85afd4e | 1312 | size_t curNumRows = m_data.GetCount(); |
f6bcfd97 BP |
1313 | size_t curNumCols = ( curNumRows > 0 ? m_data[0].GetCount() : |
1314 | ( GetView() ? GetView()->GetNumberCols() : 0 ) ); | |
8f177c8e | 1315 | |
f85afd4e MB |
1316 | if ( pos >= curNumRows ) |
1317 | { | |
1318 | return AppendRows( numRows ); | |
1319 | } | |
8f177c8e | 1320 | |
f85afd4e MB |
1321 | wxArrayString sa; |
1322 | sa.Alloc( curNumCols ); | |
27f35b66 SN |
1323 | sa.Add( wxEmptyString, curNumCols ); |
1324 | m_data.Insert( sa, pos, numRows ); | |
2f024384 | 1325 | |
f85afd4e MB |
1326 | if ( GetView() ) |
1327 | { | |
1328 | wxGridTableMessage msg( this, | |
1329 | wxGRIDTABLE_NOTIFY_ROWS_INSERTED, | |
1330 | pos, | |
1331 | numRows ); | |
8f177c8e | 1332 | |
f85afd4e MB |
1333 | GetView()->ProcessTableMessage( msg ); |
1334 | } | |
1335 | ||
ca65c044 | 1336 | return true; |
f85afd4e MB |
1337 | } |
1338 | ||
1339 | bool wxGridStringTable::AppendRows( size_t numRows ) | |
1340 | { | |
f85afd4e | 1341 | size_t curNumRows = m_data.GetCount(); |
4db6714b KH |
1342 | size_t curNumCols = ( curNumRows > 0 |
1343 | ? m_data[0].GetCount() | |
1344 | : ( GetView() ? GetView()->GetNumberCols() : 0 ) ); | |
8f177c8e | 1345 | |
f85afd4e MB |
1346 | wxArrayString sa; |
1347 | if ( curNumCols > 0 ) | |
1348 | { | |
1349 | sa.Alloc( curNumCols ); | |
27f35b66 | 1350 | sa.Add( wxEmptyString, curNumCols ); |
f85afd4e | 1351 | } |
8f177c8e | 1352 | |
27f35b66 | 1353 | m_data.Add( sa, numRows ); |
f85afd4e MB |
1354 | |
1355 | if ( GetView() ) | |
1356 | { | |
1357 | wxGridTableMessage msg( this, | |
1358 | wxGRIDTABLE_NOTIFY_ROWS_APPENDED, | |
1359 | numRows ); | |
8f177c8e | 1360 | |
f85afd4e MB |
1361 | GetView()->ProcessTableMessage( msg ); |
1362 | } | |
1363 | ||
ca65c044 | 1364 | return true; |
f85afd4e MB |
1365 | } |
1366 | ||
1367 | bool wxGridStringTable::DeleteRows( size_t pos, size_t numRows ) | |
1368 | { | |
f85afd4e | 1369 | size_t curNumRows = m_data.GetCount(); |
8f177c8e | 1370 | |
f85afd4e MB |
1371 | if ( pos >= curNumRows ) |
1372 | { | |
e91d2033 VZ |
1373 | wxFAIL_MSG( wxString::Format |
1374 | ( | |
1375 | wxT("Called wxGridStringTable::DeleteRows(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu rows"), | |
1376 | (unsigned long)pos, | |
1377 | (unsigned long)numRows, | |
1378 | (unsigned long)curNumRows | |
1379 | ) ); | |
1380 | ||
ca65c044 | 1381 | return false; |
f85afd4e MB |
1382 | } |
1383 | ||
1384 | if ( numRows > curNumRows - pos ) | |
1385 | { | |
1386 | numRows = curNumRows - pos; | |
1387 | } | |
8f177c8e | 1388 | |
f85afd4e MB |
1389 | if ( numRows >= curNumRows ) |
1390 | { | |
d57ad377 | 1391 | m_data.Clear(); |
f85afd4e MB |
1392 | } |
1393 | else | |
1394 | { | |
27f35b66 | 1395 | m_data.RemoveAt( pos, numRows ); |
f85afd4e | 1396 | } |
4db6714b | 1397 | |
f85afd4e MB |
1398 | if ( GetView() ) |
1399 | { | |
1400 | wxGridTableMessage msg( this, | |
1401 | wxGRIDTABLE_NOTIFY_ROWS_DELETED, | |
1402 | pos, | |
1403 | numRows ); | |
8f177c8e | 1404 | |
f85afd4e MB |
1405 | GetView()->ProcessTableMessage( msg ); |
1406 | } | |
1407 | ||
ca65c044 | 1408 | return true; |
f85afd4e MB |
1409 | } |
1410 | ||
1411 | bool wxGridStringTable::InsertCols( size_t pos, size_t numCols ) | |
1412 | { | |
1413 | size_t row, col; | |
1414 | ||
1415 | size_t curNumRows = m_data.GetCount(); | |
4db6714b KH |
1416 | size_t curNumCols = ( curNumRows > 0 |
1417 | ? m_data[0].GetCount() | |
1418 | : ( GetView() ? GetView()->GetNumberCols() : 0 ) ); | |
8f177c8e | 1419 | |
f85afd4e MB |
1420 | if ( pos >= curNumCols ) |
1421 | { | |
1422 | return AppendCols( numCols ); | |
1423 | } | |
1424 | ||
d4175745 VZ |
1425 | if ( !m_colLabels.IsEmpty() ) |
1426 | { | |
1427 | m_colLabels.Insert( wxEmptyString, pos, numCols ); | |
1428 | ||
1429 | size_t i; | |
1430 | for ( i = pos; i < pos + numCols; i++ ) | |
1431 | m_colLabels[i] = wxGridTableBase::GetColLabelValue( i ); | |
1432 | } | |
1433 | ||
3d59537f | 1434 | for ( row = 0; row < curNumRows; row++ ) |
f85afd4e | 1435 | { |
3d59537f | 1436 | for ( col = pos; col < pos + numCols; col++ ) |
f85afd4e MB |
1437 | { |
1438 | m_data[row].Insert( wxEmptyString, col ); | |
1439 | } | |
1440 | } | |
4db6714b | 1441 | |
5c3313a9 VZ |
1442 | m_numCols += numCols; |
1443 | ||
f85afd4e MB |
1444 | if ( GetView() ) |
1445 | { | |
1446 | wxGridTableMessage msg( this, | |
1447 | wxGRIDTABLE_NOTIFY_COLS_INSERTED, | |
1448 | pos, | |
1449 | numCols ); | |
8f177c8e | 1450 | |
f85afd4e MB |
1451 | GetView()->ProcessTableMessage( msg ); |
1452 | } | |
1453 | ||
ca65c044 | 1454 | return true; |
f85afd4e MB |
1455 | } |
1456 | ||
1457 | bool wxGridStringTable::AppendCols( size_t numCols ) | |
1458 | { | |
27f35b66 | 1459 | size_t row; |
f85afd4e MB |
1460 | |
1461 | size_t curNumRows = m_data.GetCount(); | |
2f024384 | 1462 | |
3d59537f | 1463 | for ( row = 0; row < curNumRows; row++ ) |
f85afd4e | 1464 | { |
27f35b66 | 1465 | m_data[row].Add( wxEmptyString, numCols ); |
f85afd4e MB |
1466 | } |
1467 | ||
5c3313a9 VZ |
1468 | m_numCols += numCols; |
1469 | ||
f85afd4e MB |
1470 | if ( GetView() ) |
1471 | { | |
1472 | wxGridTableMessage msg( this, | |
1473 | wxGRIDTABLE_NOTIFY_COLS_APPENDED, | |
1474 | numCols ); | |
8f177c8e | 1475 | |
f85afd4e MB |
1476 | GetView()->ProcessTableMessage( msg ); |
1477 | } | |
1478 | ||
ca65c044 | 1479 | return true; |
f85afd4e MB |
1480 | } |
1481 | ||
1482 | bool wxGridStringTable::DeleteCols( size_t pos, size_t numCols ) | |
1483 | { | |
27f35b66 | 1484 | size_t row; |
f85afd4e MB |
1485 | |
1486 | size_t curNumRows = m_data.GetCount(); | |
f6bcfd97 BP |
1487 | size_t curNumCols = ( curNumRows > 0 ? m_data[0].GetCount() : |
1488 | ( GetView() ? GetView()->GetNumberCols() : 0 ) ); | |
8f177c8e | 1489 | |
f85afd4e MB |
1490 | if ( pos >= curNumCols ) |
1491 | { | |
e91d2033 VZ |
1492 | wxFAIL_MSG( wxString::Format |
1493 | ( | |
1494 | wxT("Called wxGridStringTable::DeleteCols(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu cols"), | |
1495 | (unsigned long)pos, | |
1496 | (unsigned long)numCols, | |
1497 | (unsigned long)curNumCols | |
1498 | ) ); | |
ca65c044 | 1499 | return false; |
f85afd4e MB |
1500 | } |
1501 | ||
d4175745 VZ |
1502 | int colID; |
1503 | if ( GetView() ) | |
1504 | colID = GetView()->GetColAt( pos ); | |
1505 | else | |
1506 | colID = pos; | |
1507 | ||
1508 | if ( numCols > curNumCols - colID ) | |
1509 | { | |
1510 | numCols = curNumCols - colID; | |
1511 | } | |
1512 | ||
1513 | if ( !m_colLabels.IsEmpty() ) | |
f85afd4e | 1514 | { |
b2df5ddf VZ |
1515 | // m_colLabels stores just as many elements as it needs, e.g. if only |
1516 | // the label of the first column had been set it would have only one | |
1517 | // element and not numCols, so account for it | |
1518 | int nToRm = m_colLabels.size() - colID; | |
1519 | if ( nToRm > 0 ) | |
1520 | m_colLabels.RemoveAt( colID, nToRm ); | |
f85afd4e MB |
1521 | } |
1522 | ||
5c3313a9 | 1523 | if ( numCols >= curNumCols ) |
f85afd4e | 1524 | { |
5c3313a9 | 1525 | for ( row = 0; row < curNumRows; row++ ) |
f85afd4e | 1526 | { |
dcdce64e | 1527 | m_data[row].Clear(); |
f85afd4e | 1528 | } |
5c3313a9 VZ |
1529 | |
1530 | m_numCols = 0; | |
1531 | } | |
1532 | else // something will be left | |
1533 | { | |
1534 | for ( row = 0; row < curNumRows; row++ ) | |
f85afd4e | 1535 | { |
d4175745 | 1536 | m_data[row].RemoveAt( colID, numCols ); |
f85afd4e | 1537 | } |
5c3313a9 VZ |
1538 | |
1539 | m_numCols -= numCols; | |
f85afd4e | 1540 | } |
4db6714b | 1541 | |
f85afd4e MB |
1542 | if ( GetView() ) |
1543 | { | |
1544 | wxGridTableMessage msg( this, | |
1545 | wxGRIDTABLE_NOTIFY_COLS_DELETED, | |
1546 | pos, | |
1547 | numCols ); | |
8f177c8e | 1548 | |
f85afd4e MB |
1549 | GetView()->ProcessTableMessage( msg ); |
1550 | } | |
1551 | ||
ca65c044 | 1552 | return true; |
f85afd4e MB |
1553 | } |
1554 | ||
1555 | wxString wxGridStringTable::GetRowLabelValue( int row ) | |
1556 | { | |
1557 | if ( row > (int)(m_rowLabels.GetCount()) - 1 ) | |
1558 | { | |
1559 | // using default label | |
1560 | // | |
1561 | return wxGridTableBase::GetRowLabelValue( row ); | |
1562 | } | |
1563 | else | |
1564 | { | |
2f024384 | 1565 | return m_rowLabels[row]; |
f85afd4e MB |
1566 | } |
1567 | } | |
1568 | ||
1569 | wxString wxGridStringTable::GetColLabelValue( int col ) | |
1570 | { | |
1571 | if ( col > (int)(m_colLabels.GetCount()) - 1 ) | |
1572 | { | |
1573 | // using default label | |
1574 | // | |
1575 | return wxGridTableBase::GetColLabelValue( col ); | |
1576 | } | |
1577 | else | |
1578 | { | |
2f024384 | 1579 | return m_colLabels[col]; |
f85afd4e MB |
1580 | } |
1581 | } | |
1582 | ||
1583 | void wxGridStringTable::SetRowLabelValue( int row, const wxString& value ) | |
1584 | { | |
1585 | if ( row > (int)(m_rowLabels.GetCount()) - 1 ) | |
1586 | { | |
1587 | int n = m_rowLabels.GetCount(); | |
1588 | int i; | |
2f024384 | 1589 | |
3d59537f | 1590 | for ( i = n; i <= row; i++ ) |
f85afd4e MB |
1591 | { |
1592 | m_rowLabels.Add( wxGridTableBase::GetRowLabelValue(i) ); | |
1593 | } | |
1594 | } | |
1595 | ||
1596 | m_rowLabels[row] = value; | |
1597 | } | |
1598 | ||
1599 | void wxGridStringTable::SetColLabelValue( int col, const wxString& value ) | |
1600 | { | |
1601 | if ( col > (int)(m_colLabels.GetCount()) - 1 ) | |
1602 | { | |
1603 | int n = m_colLabels.GetCount(); | |
1604 | int i; | |
2f024384 | 1605 | |
3d59537f | 1606 | for ( i = n; i <= col; i++ ) |
f85afd4e MB |
1607 | { |
1608 | m_colLabels.Add( wxGridTableBase::GetColLabelValue(i) ); | |
1609 | } | |
1610 | } | |
1611 | ||
1612 | m_colLabels[col] = value; | |
1613 | } | |
1614 | ||
1615 | ||
f85afd4e | 1616 | ////////////////////////////////////////////////////////////////////// |
2d66e025 MB |
1617 | ////////////////////////////////////////////////////////////////////// |
1618 | ||
86033c4b VZ |
1619 | BEGIN_EVENT_TABLE(wxGridSubwindow, wxWindow) |
1620 | EVT_MOUSE_CAPTURE_LOST(wxGridSubwindow::OnMouseCaptureLost) | |
1621 | END_EVENT_TABLE() | |
1622 | ||
1623 | void wxGridSubwindow::OnMouseCaptureLost(wxMouseCaptureLostEvent& WXUNUSED(event)) | |
1624 | { | |
1625 | m_owner->CancelMouseCapture(); | |
1626 | } | |
1627 | ||
86033c4b | 1628 | BEGIN_EVENT_TABLE( wxGridRowLabelWindow, wxGridSubwindow ) |
2d66e025 | 1629 | EVT_PAINT( wxGridRowLabelWindow::OnPaint ) |
a9339fe2 | 1630 | EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel ) |
2d66e025 | 1631 | EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent ) |
2d66e025 MB |
1632 | END_EVENT_TABLE() |
1633 | ||
aa5e1f75 | 1634 | void wxGridRowLabelWindow::OnPaint( wxPaintEvent& WXUNUSED(event) ) |
2d66e025 MB |
1635 | { |
1636 | wxPaintDC dc(this); | |
1637 | ||
1638 | // NO - don't do this because it will set both the x and y origin | |
1639 | // coords to match the parent scrolled window and we just want to | |
1640 | // set the y coord - MB | |
1641 | // | |
1642 | // m_owner->PrepareDC( dc ); | |
60ff3b99 | 1643 | |
790ad94f | 1644 | int x, y; |
2d66e025 | 1645 | m_owner->CalcUnscrolledPosition( 0, 0, &x, &y ); |
615b7e6a RR |
1646 | wxPoint pt = dc.GetDeviceOrigin(); |
1647 | dc.SetDeviceOrigin( pt.x, pt.y-y ); | |
60ff3b99 | 1648 | |
d10f4bf9 | 1649 | wxArrayInt rows = m_owner->CalcRowLabelsExposed( GetUpdateRegion() ); |
a9339fe2 | 1650 | m_owner->DrawRowLabels( dc, rows ); |
2d66e025 MB |
1651 | } |
1652 | ||
2d66e025 MB |
1653 | void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent& event ) |
1654 | { | |
1655 | m_owner->ProcessRowLabelMouseEvent( event ); | |
1656 | } | |
1657 | ||
b51c3f27 RD |
1658 | void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent& event ) |
1659 | { | |
b5e9cbb9 FM |
1660 | if (!m_owner->GetEventHandler()->ProcessEvent( event )) |
1661 | event.Skip(); | |
b51c3f27 RD |
1662 | } |
1663 | ||
2d66e025 MB |
1664 | ////////////////////////////////////////////////////////////////////// |
1665 | ||
86033c4b | 1666 | BEGIN_EVENT_TABLE( wxGridColLabelWindow, wxGridSubwindow ) |
2d66e025 | 1667 | EVT_PAINT( wxGridColLabelWindow::OnPaint ) |
a9339fe2 | 1668 | EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel ) |
2d66e025 | 1669 | EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent ) |
2d66e025 MB |
1670 | END_EVENT_TABLE() |
1671 | ||
aa5e1f75 | 1672 | void wxGridColLabelWindow::OnPaint( wxPaintEvent& WXUNUSED(event) ) |
2d66e025 MB |
1673 | { |
1674 | wxPaintDC dc(this); | |
1675 | ||
1676 | // NO - don't do this because it will set both the x and y origin | |
1677 | // coords to match the parent scrolled window and we just want to | |
1678 | // set the x coord - MB | |
1679 | // | |
1680 | // m_owner->PrepareDC( dc ); | |
60ff3b99 | 1681 | |
790ad94f | 1682 | int x, y; |
2d66e025 | 1683 | m_owner->CalcUnscrolledPosition( 0, 0, &x, &y ); |
615b7e6a RR |
1684 | wxPoint pt = dc.GetDeviceOrigin(); |
1685 | if (GetLayoutDirection() == wxLayout_RightToLeft) | |
1686 | dc.SetDeviceOrigin( pt.x+x, pt.y ); | |
1687 | else | |
1688 | dc.SetDeviceOrigin( pt.x-x, pt.y ); | |
2d66e025 | 1689 | |
d10f4bf9 | 1690 | wxArrayInt cols = m_owner->CalcColLabelsExposed( GetUpdateRegion() ); |
a9339fe2 | 1691 | m_owner->DrawColLabels( dc, cols ); |
2d66e025 MB |
1692 | } |
1693 | ||
2d66e025 MB |
1694 | void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent& event ) |
1695 | { | |
1696 | m_owner->ProcessColLabelMouseEvent( event ); | |
1697 | } | |
1698 | ||
b51c3f27 RD |
1699 | void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent& event ) |
1700 | { | |
b5e9cbb9 FM |
1701 | if (!m_owner->GetEventHandler()->ProcessEvent( event )) |
1702 | event.Skip(); | |
b51c3f27 RD |
1703 | } |
1704 | ||
2d66e025 MB |
1705 | ////////////////////////////////////////////////////////////////////// |
1706 | ||
86033c4b | 1707 | BEGIN_EVENT_TABLE( wxGridCornerLabelWindow, wxGridSubwindow ) |
a9339fe2 | 1708 | EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel ) |
2d66e025 | 1709 | EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent ) |
a9339fe2 | 1710 | EVT_PAINT( wxGridCornerLabelWindow::OnPaint ) |
2d66e025 MB |
1711 | END_EVENT_TABLE() |
1712 | ||
d2fdd8d2 RR |
1713 | void wxGridCornerLabelWindow::OnPaint( wxPaintEvent& WXUNUSED(event) ) |
1714 | { | |
1715 | wxPaintDC dc(this); | |
b99be8fb | 1716 | |
ff72f628 | 1717 | m_owner->DrawCornerLabel(dc); |
d2fdd8d2 RR |
1718 | } |
1719 | ||
2d66e025 MB |
1720 | void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent& event ) |
1721 | { | |
1722 | m_owner->ProcessCornerLabelMouseEvent( event ); | |
1723 | } | |
1724 | ||
b51c3f27 RD |
1725 | void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent& event ) |
1726 | { | |
b5e9cbb9 FM |
1727 | if (!m_owner->GetEventHandler()->ProcessEvent(event)) |
1728 | event.Skip(); | |
b51c3f27 RD |
1729 | } |
1730 | ||
f85afd4e MB |
1731 | ////////////////////////////////////////////////////////////////////// |
1732 | ||
86033c4b | 1733 | BEGIN_EVENT_TABLE( wxGridWindow, wxGridSubwindow ) |
2d66e025 | 1734 | EVT_PAINT( wxGridWindow::OnPaint ) |
a9339fe2 | 1735 | EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel ) |
2d66e025 MB |
1736 | EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent ) |
1737 | EVT_KEY_DOWN( wxGridWindow::OnKeyDown ) | |
f6bcfd97 | 1738 | EVT_KEY_UP( wxGridWindow::OnKeyUp ) |
a9339fe2 | 1739 | EVT_CHAR( wxGridWindow::OnChar ) |
80acaf25 JS |
1740 | EVT_SET_FOCUS( wxGridWindow::OnFocus ) |
1741 | EVT_KILL_FOCUS( wxGridWindow::OnFocus ) | |
2796cce3 | 1742 | EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground ) |
2d66e025 MB |
1743 | END_EVENT_TABLE() |
1744 | ||
2d66e025 MB |
1745 | void wxGridWindow::OnPaint( wxPaintEvent &WXUNUSED(event) ) |
1746 | { | |
1747 | wxPaintDC dc( this ); | |
1748 | m_owner->PrepareDC( dc ); | |
796df70a | 1749 | wxRegion reg = GetUpdateRegion(); |
ccdee36f DS |
1750 | wxGridCellCoordsArray dirtyCells = m_owner->CalcCellsExposed( reg ); |
1751 | m_owner->DrawGridCellArea( dc, dirtyCells ); | |
2f024384 | 1752 | |
9f7aee01 VZ |
1753 | m_owner->DrawGridSpace( dc ); |
1754 | ||
796df70a | 1755 | m_owner->DrawAllGridLines( dc, reg ); |
2f024384 | 1756 | |
ccdee36f | 1757 | m_owner->DrawHighlight( dc, dirtyCells ); |
2d66e025 MB |
1758 | } |
1759 | ||
2d66e025 MB |
1760 | void wxGridWindow::ScrollWindow( int dx, int dy, const wxRect *rect ) |
1761 | { | |
59ddac01 | 1762 | wxWindow::ScrollWindow( dx, dy, rect ); |
ad805b9e VZ |
1763 | m_owner->GetGridRowLabelWindow()->ScrollWindow( 0, dy, rect ); |
1764 | m_owner->GetGridColLabelWindow()->ScrollWindow( dx, 0, rect ); | |
2d66e025 MB |
1765 | } |
1766 | ||
2d66e025 MB |
1767 | void wxGridWindow::OnMouseEvent( wxMouseEvent& event ) |
1768 | { | |
33e9fc54 RD |
1769 | if (event.ButtonDown(wxMOUSE_BTN_LEFT) && FindFocus() != this) |
1770 | SetFocus(); | |
902725ee | 1771 | |
2d66e025 MB |
1772 | m_owner->ProcessGridCellMouseEvent( event ); |
1773 | } | |
1774 | ||
b51c3f27 RD |
1775 | void wxGridWindow::OnMouseWheel( wxMouseEvent& event ) |
1776 | { | |
b5e9cbb9 FM |
1777 | if (!m_owner->GetEventHandler()->ProcessEvent( event )) |
1778 | event.Skip(); | |
b51c3f27 | 1779 | } |
2d66e025 | 1780 | |
f6bcfd97 | 1781 | // This seems to be required for wxMotif/wxGTK otherwise the mouse |
2d66e025 MB |
1782 | // cursor must be in the cell edit control to get key events |
1783 | // | |
1784 | void wxGridWindow::OnKeyDown( wxKeyEvent& event ) | |
1785 | { | |
4db6714b KH |
1786 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
1787 | event.Skip(); | |
2d66e025 | 1788 | } |
f85afd4e | 1789 | |
f6bcfd97 BP |
1790 | void wxGridWindow::OnKeyUp( wxKeyEvent& event ) |
1791 | { | |
4db6714b KH |
1792 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
1793 | event.Skip(); | |
f6bcfd97 | 1794 | } |
7c8a8ad5 | 1795 | |
63e2147c RD |
1796 | void wxGridWindow::OnChar( wxKeyEvent& event ) |
1797 | { | |
4db6714b KH |
1798 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
1799 | event.Skip(); | |
63e2147c RD |
1800 | } |
1801 | ||
aa5e1f75 | 1802 | void wxGridWindow::OnEraseBackground( wxEraseEvent& WXUNUSED(event) ) |
8dd4f536 | 1803 | { |
8dd4f536 | 1804 | } |
025562fe | 1805 | |
80acaf25 JS |
1806 | void wxGridWindow::OnFocus(wxFocusEvent& event) |
1807 | { | |
760be3f7 VS |
1808 | // and if we have any selection, it has to be repainted, because it |
1809 | // uses different colour when the grid is not focused: | |
1810 | if ( m_owner->IsSelection() ) | |
1811 | { | |
1812 | Refresh(); | |
1813 | } | |
1814 | else | |
1815 | { | |
1816 | // NB: Note that this code is in "else" branch only because the other | |
1817 | // branch refreshes everything and so there's no point in calling | |
1818 | // Refresh() again, *not* because it should only be done if | |
1819 | // !IsSelection(). If the above code is ever optimized to refresh | |
1820 | // only selected area, this needs to be moved out of the "else" | |
1821 | // branch so that it's always executed. | |
1822 | ||
1823 | // current cell cursor {dis,re}appears on focus change: | |
1824 | const wxGridCellCoords cursorCoords(m_owner->GetGridCursorRow(), | |
1825 | m_owner->GetGridCursorCol()); | |
1826 | const wxRect cursor = | |
1827 | m_owner->BlockToDeviceRect(cursorCoords, cursorCoords); | |
1828 | Refresh(true, &cursor); | |
1829 | } | |
1830 | ||
80acaf25 JS |
1831 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
1832 | event.Skip(); | |
1833 | } | |
2d66e025 | 1834 | |
d4175745 | 1835 | #define internalXToCol(x) XToCol(x, true) |
bec70262 | 1836 | #define internalYToRow(y) YToRow(y, true) |
ccdee36f | 1837 | |
33188aa4 | 1838 | ///////////////////////////////////////////////////////////////////// |
07296f0b | 1839 | |
b0a877ec | 1840 | #if wxUSE_EXTENDED_RTTI |
73c36334 JS |
1841 | WX_DEFINE_FLAGS( wxGridStyle ) |
1842 | ||
3ff066a4 | 1843 | wxBEGIN_FLAGS( wxGridStyle ) |
73c36334 JS |
1844 | // new style border flags, we put them first to |
1845 | // use them for streaming out | |
3ff066a4 SC |
1846 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) |
1847 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
1848 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
1849 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
1850 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
1851 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
ca65c044 | 1852 | |
73c36334 | 1853 | // old style border flags |
3ff066a4 SC |
1854 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) |
1855 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
1856 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
1857 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
1858 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
cb0afb26 | 1859 | wxFLAGS_MEMBER(wxBORDER) |
73c36334 JS |
1860 | |
1861 | // standard window styles | |
3ff066a4 SC |
1862 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) |
1863 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
1864 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
1865 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
cb0afb26 | 1866 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) |
ccdee36f | 1867 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB) |
3ff066a4 SC |
1868 | wxFLAGS_MEMBER(wxVSCROLL) |
1869 | wxFLAGS_MEMBER(wxHSCROLL) | |
73c36334 | 1870 | |
3ff066a4 | 1871 | wxEND_FLAGS( wxGridStyle ) |
73c36334 | 1872 | |
b0a877ec SC |
1873 | IMPLEMENT_DYNAMIC_CLASS_XTI(wxGrid, wxScrolledWindow,"wx/grid.h") |
1874 | ||
3ff066a4 SC |
1875 | wxBEGIN_PROPERTIES_TABLE(wxGrid) |
1876 | wxHIDE_PROPERTY( Children ) | |
af498247 | 1877 | wxPROPERTY_FLAGS( WindowStyle , wxGridStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style |
3ff066a4 | 1878 | wxEND_PROPERTIES_TABLE() |
b0a877ec | 1879 | |
3ff066a4 SC |
1880 | wxBEGIN_HANDLERS_TABLE(wxGrid) |
1881 | wxEND_HANDLERS_TABLE() | |
b0a877ec | 1882 | |
ca65c044 | 1883 | wxCONSTRUCTOR_5( wxGrid , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle ) |
b0a877ec SC |
1884 | |
1885 | /* | |
ccdee36f | 1886 | TODO : Expose more information of a list's layout, etc. via appropriate objects (e.g., NotebookPageInfo) |
b0a877ec SC |
1887 | */ |
1888 | #else | |
2d66e025 | 1889 | IMPLEMENT_DYNAMIC_CLASS( wxGrid, wxScrolledWindow ) |
b0a877ec | 1890 | #endif |
2d66e025 MB |
1891 | |
1892 | BEGIN_EVENT_TABLE( wxGrid, wxScrolledWindow ) | |
f85afd4e MB |
1893 | EVT_PAINT( wxGrid::OnPaint ) |
1894 | EVT_SIZE( wxGrid::OnSize ) | |
f85afd4e | 1895 | EVT_KEY_DOWN( wxGrid::OnKeyDown ) |
f6bcfd97 | 1896 | EVT_KEY_UP( wxGrid::OnKeyUp ) |
63e2147c | 1897 | EVT_CHAR ( wxGrid::OnChar ) |
2796cce3 | 1898 | EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground ) |
f85afd4e | 1899 | END_EVENT_TABLE() |
8f177c8e | 1900 | |
b0a877ec SC |
1901 | bool wxGrid::Create(wxWindow *parent, wxWindowID id, |
1902 | const wxPoint& pos, const wxSize& size, | |
1903 | long style, const wxString& name) | |
1904 | { | |
1905 | if (!wxScrolledWindow::Create(parent, id, pos, size, | |
c2f5b920 | 1906 | style | wxWANTS_CHARS, name)) |
ca65c044 | 1907 | return false; |
b0a877ec | 1908 | |
2f024384 DS |
1909 | m_colMinWidths = wxLongToLongHashMap(GRID_HASH_SIZE); |
1910 | m_rowMinHeights = wxLongToLongHashMap(GRID_HASH_SIZE); | |
b0a877ec | 1911 | |
2f024384 | 1912 | Create(); |
170acdc9 | 1913 | SetInitialSize(size); |
72b0a1de | 1914 | SetScrollRate(m_scrollLineX, m_scrollLineY); |
b93aafab | 1915 | CalcDimensions(); |
b0a877ec | 1916 | |
ca65c044 | 1917 | return true; |
b0a877ec SC |
1918 | } |
1919 | ||
58dd5b3b MB |
1920 | wxGrid::~wxGrid() |
1921 | { | |
e882d288 VZ |
1922 | if ( m_winCapture ) |
1923 | m_winCapture->ReleaseMouse(); | |
1924 | ||
b09b3048 VZ |
1925 | // Ensure that the editor control is destroyed before the grid is, |
1926 | // otherwise we crash later when the editor tries to do something with the | |
1927 | // half destroyed grid | |
1928 | HideCellEditControl(); | |
1929 | ||
606b005f JS |
1930 | // Must do this or ~wxScrollHelper will pop the wrong event handler |
1931 | SetTargetWindow(this); | |
0a976765 | 1932 | ClearAttrCache(); |
39bcce60 | 1933 | wxSafeDecRef(m_defaultCellAttr); |
0a976765 VZ |
1934 | |
1935 | #ifdef DEBUG_ATTR_CACHE | |
1936 | size_t total = gs_nAttrCacheHits + gs_nAttrCacheMisses; | |
9a83f860 | 1937 | wxPrintf(wxT("wxGrid attribute cache statistics: " |
0a976765 VZ |
1938 | "total: %u, hits: %u (%u%%)\n"), |
1939 | total, gs_nAttrCacheHits, | |
1940 | total ? (gs_nAttrCacheHits*100) / total : 0); | |
1941 | #endif | |
1942 | ||
86020f7e VZ |
1943 | // if we own the table, just delete it, otherwise at least don't leave it |
1944 | // with dangling view pointer | |
1945 | if ( m_ownTable ) | |
2796cce3 | 1946 | delete m_table; |
ecc7aa82 | 1947 | else if ( m_table && m_table->GetView() == this ) |
86020f7e | 1948 | m_table->SetView(NULL); |
f2d76237 RD |
1949 | |
1950 | delete m_typeRegistry; | |
b5808881 | 1951 | delete m_selection; |
82edfbe7 VZ |
1952 | |
1953 | delete m_setFixedRows; | |
1954 | delete m_setFixedCols; | |
58dd5b3b MB |
1955 | } |
1956 | ||
58dd5b3b MB |
1957 | // |
1958 | // ----- internal init and update functions | |
1959 | // | |
1960 | ||
9950649c RD |
1961 | // NOTE: If using the default visual attributes works everywhere then this can |
1962 | // be removed as well as the #else cases below. | |
1963 | #define _USE_VISATTR 0 | |
1964 | ||
58dd5b3b | 1965 | void wxGrid::Create() |
f0102d2a | 1966 | { |
3d59537f DS |
1967 | // create the type registry |
1968 | m_typeRegistry = new wxGridTypeRegistry; | |
2c9a89e0 | 1969 | |
ca65c044 | 1970 | m_cellEditCtrlEnabled = false; |
4634a5d6 | 1971 | |
ccd970b1 | 1972 | m_defaultCellAttr = new wxGridCellAttr(); |
f2d76237 RD |
1973 | |
1974 | // Set default cell attributes | |
ccd970b1 | 1975 | m_defaultCellAttr->SetDefAttr(m_defaultCellAttr); |
19d7140e | 1976 | m_defaultCellAttr->SetKind(wxGridCellAttr::Default); |
f2d76237 | 1977 | m_defaultCellAttr->SetFont(GetFont()); |
4c7277db | 1978 | m_defaultCellAttr->SetAlignment(wxALIGN_LEFT, wxALIGN_TOP); |
9950649c RD |
1979 | m_defaultCellAttr->SetRenderer(new wxGridCellStringRenderer); |
1980 | m_defaultCellAttr->SetEditor(new wxGridCellTextEditor); | |
1981 | ||
1982 | #if _USE_VISATTR | |
1983 | wxVisualAttributes gva = wxListBox::GetClassDefaultAttributes(); | |
1984 | wxVisualAttributes lva = wxPanel::GetClassDefaultAttributes(); | |
1985 | ||
1986 | m_defaultCellAttr->SetTextColour(gva.colFg); | |
1987 | m_defaultCellAttr->SetBackgroundColour(gva.colBg); | |
ca65c044 | 1988 | |
9950649c | 1989 | #else |
f2d76237 | 1990 | m_defaultCellAttr->SetTextColour( |
a756f210 | 1991 | wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT)); |
f2d76237 | 1992 | m_defaultCellAttr->SetBackgroundColour( |
a756f210 | 1993 | wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); |
9950649c | 1994 | #endif |
2796cce3 | 1995 | |
4634a5d6 MB |
1996 | m_numRows = 0; |
1997 | m_numCols = 0; | |
1998 | m_currentCellCoords = wxGridNoCellCoords; | |
b99be8fb | 1999 | |
f2d76237 | 2000 | // subwindow components that make up the wxGrid |
ad805b9e VZ |
2001 | m_rowLabelWin = new wxGridRowLabelWindow(this); |
2002 | CreateColumnWindow(); | |
2003 | m_cornerLabelWin = new wxGridCornerLabelWindow(this); | |
2004 | m_gridWin = new wxGridWindow( this ); | |
2d66e025 MB |
2005 | |
2006 | SetTargetWindow( m_gridWin ); | |
6f36917b | 2007 | |
9950649c RD |
2008 | #if _USE_VISATTR |
2009 | wxColour gfg = gva.colFg; | |
2010 | wxColour gbg = gva.colBg; | |
2011 | wxColour lfg = lva.colFg; | |
2012 | wxColour lbg = lva.colBg; | |
2013 | #else | |
2014 | wxColour gfg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT ); | |
2015 | wxColour gbg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW ); | |
2016 | wxColour lfg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT ); | |
2017 | wxColour lbg = wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE ); | |
2018 | #endif | |
2f024384 | 2019 | |
fa47d7a7 VS |
2020 | m_cornerLabelWin->SetOwnForegroundColour(lfg); |
2021 | m_cornerLabelWin->SetOwnBackgroundColour(lbg); | |
2022 | m_rowLabelWin->SetOwnForegroundColour(lfg); | |
2023 | m_rowLabelWin->SetOwnBackgroundColour(lbg); | |
ad805b9e VZ |
2024 | m_colWindow->SetOwnForegroundColour(lfg); |
2025 | m_colWindow->SetOwnBackgroundColour(lbg); | |
fa47d7a7 VS |
2026 | |
2027 | m_gridWin->SetOwnForegroundColour(gfg); | |
2028 | m_gridWin->SetOwnBackgroundColour(gbg); | |
ca65c044 | 2029 | |
ad805b9e VZ |
2030 | m_labelBackgroundColour = m_rowLabelWin->GetBackgroundColour(); |
2031 | m_labelTextColour = m_rowLabelWin->GetForegroundColour(); | |
2032 | ||
2033 | // now that we have the grid window, use its font to compute the default | |
2034 | // row height | |
2035 | m_defaultRowHeight = m_gridWin->GetCharHeight(); | |
2036 | #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl() | |
2037 | m_defaultRowHeight += 8; | |
2038 | #else | |
2039 | m_defaultRowHeight += 4; | |
2040 | #endif | |
2041 | ||
2042 | } | |
2043 | ||
2044 | void wxGrid::CreateColumnWindow() | |
2045 | { | |
2046 | if ( m_useNativeHeader ) | |
2047 | { | |
2048 | m_colWindow = new wxGridHeaderCtrl(this); | |
2049 | m_colLabelHeight = m_colWindow->GetBestSize().y; | |
2050 | } | |
2051 | else // draw labels ourselves | |
2052 | { | |
2053 | m_colWindow = new wxGridColLabelWindow(this); | |
2054 | m_colLabelHeight = WXGRID_DEFAULT_COL_LABEL_HEIGHT; | |
2055 | } | |
2d66e025 | 2056 | } |
f85afd4e | 2057 | |
b5808881 | 2058 | bool wxGrid::CreateGrid( int numRows, int numCols, |
6b992f7d | 2059 | wxGridSelectionModes selmode ) |
2d66e025 | 2060 | { |
f6bcfd97 | 2061 | wxCHECK_MSG( !m_created, |
ca65c044 | 2062 | false, |
f6bcfd97 BP |
2063 | wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") ); |
2064 | ||
6b992f7d | 2065 | return SetTable(new wxGridStringTable(numRows, numCols), true, selmode); |
2796cce3 RD |
2066 | } |
2067 | ||
6b992f7d | 2068 | void wxGrid::SetSelectionMode(wxGridSelectionModes selmode) |
f1567cdd | 2069 | { |
6f36917b VZ |
2070 | wxCHECK_RET( m_created, |
2071 | wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") ); | |
2072 | ||
2073 | m_selection->SetSelectionMode( selmode ); | |
f1567cdd SN |
2074 | } |
2075 | ||
aa5b8857 SN |
2076 | wxGrid::wxGridSelectionModes wxGrid::GetSelectionMode() const |
2077 | { | |
6b992f7d | 2078 | wxCHECK_MSG( m_created, wxGridSelectCells, |
aa5b8857 SN |
2079 | wxT("Called wxGrid::GetSelectionMode() before calling CreateGrid()") ); |
2080 | ||
2081 | return m_selection->GetSelectionMode(); | |
2082 | } | |
2083 | ||
6b992f7d VZ |
2084 | bool |
2085 | wxGrid::SetTable(wxGridTableBase *table, | |
2086 | bool takeOwnership, | |
2087 | wxGrid::wxGridSelectionModes selmode ) | |
2796cce3 | 2088 | { |
a7dde52f | 2089 | bool checkSelection = false; |
2796cce3 RD |
2090 | if ( m_created ) |
2091 | { | |
3e13956a | 2092 | // stop all processing |
ca65c044 | 2093 | m_created = false; |
86c7378f | 2094 | |
c71b2126 | 2095 | if (m_table) |
86c7378f | 2096 | { |
a7dde52f SN |
2097 | m_table->SetView(0); |
2098 | if( m_ownTable ) | |
2099 | delete m_table; | |
5b061713 | 2100 | m_table = NULL; |
86c7378f | 2101 | } |
2f024384 | 2102 | |
3e13956a | 2103 | delete m_selection; |
5b061713 | 2104 | m_selection = NULL; |
a7dde52f SN |
2105 | |
2106 | m_ownTable = false; | |
2f024384 DS |
2107 | m_numRows = 0; |
2108 | m_numCols = 0; | |
a7dde52f SN |
2109 | checkSelection = true; |
2110 | ||
2111 | // kill row and column size arrays | |
2112 | m_colWidths.Empty(); | |
2113 | m_colRights.Empty(); | |
2114 | m_rowHeights.Empty(); | |
2115 | m_rowBottoms.Empty(); | |
233a54f6 | 2116 | } |
2f024384 | 2117 | |
233a54f6 | 2118 | if (table) |
2796cce3 RD |
2119 | { |
2120 | m_numRows = table->GetNumberRows(); | |
2121 | m_numCols = table->GetNumberCols(); | |
2122 | ||
ad805b9e | 2123 | if ( m_useNativeHeader ) |
3039ade9 | 2124 | GetGridColHeader()->SetColumnCount(m_numCols); |
ad805b9e | 2125 | |
2796cce3 RD |
2126 | m_table = table; |
2127 | m_table->SetView( this ); | |
8fc856de | 2128 | m_ownTable = takeOwnership; |
043d16b2 | 2129 | m_selection = new wxGridSelection( this, selmode ); |
a7dde52f SN |
2130 | if (checkSelection) |
2131 | { | |
2132 | // If the newly set table is smaller than the | |
2133 | // original one current cell and selection regions | |
2134 | // might be invalid, | |
8a3e536c | 2135 | m_selectedBlockCorner = wxGridNoCellCoords; |
c71b2126 | 2136 | m_currentCellCoords = |
a7dde52f SN |
2137 | wxGridCellCoords(wxMin(m_numRows, m_currentCellCoords.GetRow()), |
2138 | wxMin(m_numCols, m_currentCellCoords.GetCol())); | |
8a3e536c VZ |
2139 | if (m_selectedBlockTopLeft.GetRow() >= m_numRows || |
2140 | m_selectedBlockTopLeft.GetCol() >= m_numCols) | |
a7dde52f | 2141 | { |
8a3e536c VZ |
2142 | m_selectedBlockTopLeft = wxGridNoCellCoords; |
2143 | m_selectedBlockBottomRight = wxGridNoCellCoords; | |
a7dde52f SN |
2144 | } |
2145 | else | |
8a3e536c | 2146 | m_selectedBlockBottomRight = |
a7dde52f | 2147 | wxGridCellCoords(wxMin(m_numRows, |
8a3e536c | 2148 | m_selectedBlockBottomRight.GetRow()), |
a7dde52f | 2149 | wxMin(m_numCols, |
8a3e536c | 2150 | m_selectedBlockBottomRight.GetCol())); |
a7dde52f | 2151 | } |
6f36917b VZ |
2152 | CalcDimensions(); |
2153 | ||
ca65c044 | 2154 | m_created = true; |
2d66e025 | 2155 | } |
f85afd4e | 2156 | |
2d66e025 | 2157 | return m_created; |
f85afd4e MB |
2158 | } |
2159 | ||
ad805b9e | 2160 | void wxGrid::Init() |
f9549841 VZ |
2161 | { |
2162 | m_created = false; | |
2163 | ||
2164 | m_cornerLabelWin = NULL; | |
2165 | m_rowLabelWin = NULL; | |
ad805b9e | 2166 | m_colWindow = NULL; |
f9549841 VZ |
2167 | m_gridWin = NULL; |
2168 | ||
2169 | m_table = NULL; | |
2170 | m_ownTable = false; | |
2171 | ||
2172 | m_selection = NULL; | |
2173 | m_defaultCellAttr = NULL; | |
2174 | m_typeRegistry = NULL; | |
2175 | m_winCapture = NULL; | |
f9549841 | 2176 | |
f85afd4e MB |
2177 | m_rowLabelWidth = WXGRID_DEFAULT_ROW_LABEL_WIDTH; |
2178 | m_colLabelHeight = WXGRID_DEFAULT_COL_LABEL_HEIGHT; | |
2179 | ||
82edfbe7 VZ |
2180 | m_setFixedRows = |
2181 | m_setFixedCols = NULL; | |
2182 | ||
0a976765 VZ |
2183 | // init attr cache |
2184 | m_attrCache.row = -1; | |
2b5f62a0 VZ |
2185 | m_attrCache.col = -1; |
2186 | m_attrCache.attr = NULL; | |
0a976765 | 2187 | |
ff72f628 | 2188 | m_labelFont = GetFont(); |
52d6f640 | 2189 | m_labelFont.SetWeight( wxBOLD ); |
8f177c8e | 2190 | |
73145b0e | 2191 | m_rowLabelHorizAlign = wxALIGN_CENTRE; |
4c7277db | 2192 | m_rowLabelVertAlign = wxALIGN_CENTRE; |
f85afd4e | 2193 | |
4c7277db | 2194 | m_colLabelHorizAlign = wxALIGN_CENTRE; |
73145b0e | 2195 | m_colLabelVertAlign = wxALIGN_CENTRE; |
d43851f7 | 2196 | m_colLabelTextOrientation = wxHORIZONTAL; |
f85afd4e | 2197 | |
f85afd4e | 2198 | m_defaultColWidth = WXGRID_DEFAULT_COL_WIDTH; |
ad805b9e | 2199 | m_defaultRowHeight = 0; // this will be initialized after creation |
1f1ce288 | 2200 | |
b8d24d4e RG |
2201 | m_minAcceptableColWidth = WXGRID_MIN_COL_WIDTH; |
2202 | m_minAcceptableRowHeight = WXGRID_MIN_ROW_HEIGHT; | |
2203 | ||
73145b0e | 2204 | m_gridLineColour = wxColour( 192,192,192 ); |
ca65c044 | 2205 | m_gridLinesEnabled = true; |
9f7aee01 VZ |
2206 | m_gridLinesClipHorz = |
2207 | m_gridLinesClipVert = true; | |
73145b0e | 2208 | m_cellHighlightColour = *wxBLACK; |
bf7945ce | 2209 | m_cellHighlightPenWidth = 2; |
d2520c85 | 2210 | m_cellHighlightROPenWidth = 1; |
8f177c8e | 2211 | |
d4175745 VZ |
2212 | m_canDragColMove = false; |
2213 | ||
58dd5b3b | 2214 | m_cursorMode = WXGRID_CURSOR_SELECT_CELL; |
10a4531d | 2215 | m_winCapture = NULL; |
ca65c044 WS |
2216 | m_canDragRowSize = true; |
2217 | m_canDragColSize = true; | |
2218 | m_canDragGridSize = true; | |
79dbea21 | 2219 | m_canDragCell = false; |
f85afd4e MB |
2220 | m_dragLastPos = -1; |
2221 | m_dragRowOrCol = -1; | |
ca65c044 | 2222 | m_isDragging = false; |
07296f0b | 2223 | m_startDragPos = wxDefaultPosition; |
ad805b9e | 2224 | |
11393d29 VZ |
2225 | m_sortCol = wxNOT_FOUND; |
2226 | m_sortIsAscending = true; | |
2227 | ||
ad805b9e | 2228 | m_useNativeHeader = |
71cf399f | 2229 | m_nativeColumnLabels = false; |
f85afd4e | 2230 | |
ca65c044 | 2231 | m_waitForSlowClick = false; |
025562fe | 2232 | |
f85afd4e MB |
2233 | m_rowResizeCursor = wxCursor( wxCURSOR_SIZENS ); |
2234 | m_colResizeCursor = wxCursor( wxCURSOR_SIZEWE ); | |
2235 | ||
2236 | m_currentCellCoords = wxGridNoCellCoords; | |
f85afd4e | 2237 | |
ad805b9e VZ |
2238 | m_selectedBlockTopLeft = |
2239 | m_selectedBlockBottomRight = | |
2240 | m_selectedBlockCorner = wxGridNoCellCoords; | |
b524b5c6 | 2241 | |
d43851f7 JS |
2242 | m_selectionBackground = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT); |
2243 | m_selectionForeground = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT); | |
8f177c8e | 2244 | |
ca65c044 | 2245 | m_editable = true; // default for whole grid |
f85afd4e | 2246 | |
ca65c044 | 2247 | m_inOnKeyDown = false; |
2d66e025 | 2248 | m_batchCount = 0; |
3c79cf49 | 2249 | |
266e8367 | 2250 | m_extraWidth = |
526dbb95 | 2251 | m_extraHeight = 0; |
608754c4 JS |
2252 | |
2253 | m_scrollLineX = GRID_SCROLL_LINE_X; | |
2254 | m_scrollLineY = GRID_SCROLL_LINE_Y; | |
7c1cb261 VZ |
2255 | } |
2256 | ||
2257 | // ---------------------------------------------------------------------------- | |
2258 | // the idea is to call these functions only when necessary because they create | |
2259 | // quite big arrays which eat memory mostly unnecessary - in particular, if | |
2260 | // default widths/heights are used for all rows/columns, we may not use these | |
2261 | // arrays at all | |
2262 | // | |
0ed3b812 VZ |
2263 | // with some extra code, it should be possible to only store the widths/heights |
2264 | // different from default ones (resulting in space savings for huge grids) but | |
2265 | // this is not done currently | |
7c1cb261 VZ |
2266 | // ---------------------------------------------------------------------------- |
2267 | ||
2268 | void wxGrid::InitRowHeights() | |
2269 | { | |
2270 | m_rowHeights.Empty(); | |
2271 | m_rowBottoms.Empty(); | |
2272 | ||
2273 | m_rowHeights.Alloc( m_numRows ); | |
2274 | m_rowBottoms.Alloc( m_numRows ); | |
2275 | ||
27f35b66 SN |
2276 | m_rowHeights.Add( m_defaultRowHeight, m_numRows ); |
2277 | ||
0ed3b812 | 2278 | int rowBottom = 0; |
3d59537f | 2279 | for ( int i = 0; i < m_numRows; i++ ) |
7c1cb261 | 2280 | { |
7c1cb261 VZ |
2281 | rowBottom += m_defaultRowHeight; |
2282 | m_rowBottoms.Add( rowBottom ); | |
2283 | } | |
2284 | } | |
2285 | ||
2286 | void wxGrid::InitColWidths() | |
2287 | { | |
2288 | m_colWidths.Empty(); | |
2289 | m_colRights.Empty(); | |
2290 | ||
2291 | m_colWidths.Alloc( m_numCols ); | |
2292 | m_colRights.Alloc( m_numCols ); | |
27f35b66 SN |
2293 | |
2294 | m_colWidths.Add( m_defaultColWidth, m_numCols ); | |
2295 | ||
3d59537f | 2296 | for ( int i = 0; i < m_numCols; i++ ) |
7c1cb261 | 2297 | { |
e822d1bd | 2298 | int colRight = ( GetColPos( i ) + 1 ) * m_defaultColWidth; |
7c1cb261 VZ |
2299 | m_colRights.Add( colRight ); |
2300 | } | |
2301 | } | |
2302 | ||
2303 | int wxGrid::GetColWidth(int col) const | |
2304 | { | |
2305 | return m_colWidths.IsEmpty() ? m_defaultColWidth : m_colWidths[col]; | |
2306 | } | |
2307 | ||
2308 | int wxGrid::GetColLeft(int col) const | |
2309 | { | |
d4175745 | 2310 | return m_colRights.IsEmpty() ? GetColPos( col ) * m_defaultColWidth |
7c1cb261 VZ |
2311 | : m_colRights[col] - m_colWidths[col]; |
2312 | } | |
2313 | ||
2314 | int wxGrid::GetColRight(int col) const | |
2315 | { | |
d4175745 | 2316 | return m_colRights.IsEmpty() ? (GetColPos( col ) + 1) * m_defaultColWidth |
7c1cb261 VZ |
2317 | : m_colRights[col]; |
2318 | } | |
2319 | ||
2320 | int wxGrid::GetRowHeight(int row) const | |
2321 | { | |
2322 | return m_rowHeights.IsEmpty() ? m_defaultRowHeight : m_rowHeights[row]; | |
2323 | } | |
2d66e025 | 2324 | |
7c1cb261 VZ |
2325 | int wxGrid::GetRowTop(int row) const |
2326 | { | |
2327 | return m_rowBottoms.IsEmpty() ? row * m_defaultRowHeight | |
2328 | : m_rowBottoms[row] - m_rowHeights[row]; | |
f85afd4e MB |
2329 | } |
2330 | ||
7c1cb261 VZ |
2331 | int wxGrid::GetRowBottom(int row) const |
2332 | { | |
2333 | return m_rowBottoms.IsEmpty() ? (row + 1) * m_defaultRowHeight | |
2334 | : m_rowBottoms[row]; | |
2335 | } | |
f85afd4e MB |
2336 | |
2337 | void wxGrid::CalcDimensions() | |
2338 | { | |
0ed3b812 VZ |
2339 | // compute the size of the scrollable area |
2340 | int w = m_numCols > 0 ? GetColRight(GetColAt(m_numCols - 1)) : 0; | |
2341 | int h = m_numRows > 0 ? GetRowBottom(m_numRows - 1) : 0; | |
60ff3b99 | 2342 | |
0ed3b812 VZ |
2343 | w += m_extraWidth; |
2344 | h += m_extraHeight; | |
faec5a43 | 2345 | |
73145b0e | 2346 | // take into account editor if shown |
4db6714b | 2347 | if ( IsCellEditControlShown() ) |
73145b0e | 2348 | { |
3d59537f DS |
2349 | int w2, h2; |
2350 | int r = m_currentCellCoords.GetRow(); | |
2351 | int c = m_currentCellCoords.GetCol(); | |
2352 | int x = GetColLeft(c); | |
2353 | int y = GetRowTop(r); | |
2354 | ||
2355 | // how big is the editor | |
2356 | wxGridCellAttr* attr = GetCellAttr(r, c); | |
2357 | wxGridCellEditor* editor = attr->GetEditor(this, r, c); | |
2358 | editor->GetControl()->GetSize(&w2, &h2); | |
2359 | w2 += x; | |
2360 | h2 += y; | |
2361 | if ( w2 > w ) | |
2362 | w = w2; | |
2363 | if ( h2 > h ) | |
2364 | h = h2; | |
2365 | editor->DecRef(); | |
2366 | attr->DecRef(); | |
73145b0e JS |
2367 | } |
2368 | ||
faec5a43 SN |
2369 | // preserve (more or less) the previous position |
2370 | int x, y; | |
2371 | GetViewStart( &x, &y ); | |
97a9929e | 2372 | |
c92ed9f7 | 2373 | // ensure the position is valid for the new scroll ranges |
7b519e5e | 2374 | if ( x >= w ) |
c92ed9f7 | 2375 | x = wxMax( w - 1, 0 ); |
7b519e5e | 2376 | if ( y >= h ) |
c92ed9f7 | 2377 | y = wxMax( h - 1, 0 ); |
faec5a43 | 2378 | |
ace8d849 | 2379 | // update the virtual size and refresh the scrollbars to reflect it |
f1ff7df0 VZ |
2380 | m_gridWin->SetVirtualSize(w, h); |
2381 | Scroll(x, y); | |
ace8d849 | 2382 | AdjustScrollbars(); |
12314291 VZ |
2383 | |
2384 | // if our OnSize() hadn't been called (it would if we have scrollbars), we | |
2385 | // still must reposition the children | |
2386 | CalcWindowSizes(); | |
f85afd4e MB |
2387 | } |
2388 | ||
69367c56 VZ |
2389 | wxSize wxGrid::GetSizeAvailableForScrollTarget(const wxSize& size) |
2390 | { | |
2391 | wxSize sizeGridWin(size); | |
2392 | sizeGridWin.x -= m_rowLabelWidth; | |
2393 | sizeGridWin.y -= m_colLabelHeight; | |
2394 | ||
2395 | return sizeGridWin; | |
2396 | } | |
2397 | ||
7807d81c MB |
2398 | void wxGrid::CalcWindowSizes() |
2399 | { | |
b0a877ec SC |
2400 | // escape if the window is has not been fully created yet |
2401 | ||
2402 | if ( m_cornerLabelWin == NULL ) | |
2f024384 | 2403 | return; |
b0a877ec | 2404 | |
7807d81c MB |
2405 | int cw, ch; |
2406 | GetClientSize( &cw, &ch ); | |
b99be8fb | 2407 | |
c1841ac2 VZ |
2408 | // the grid may be too small to have enough space for the labels yet, don't |
2409 | // size the windows to negative sizes in this case | |
2410 | int gw = cw - m_rowLabelWidth; | |
2411 | int gh = ch - m_colLabelHeight; | |
2412 | if (gw < 0) | |
2413 | gw = 0; | |
2414 | if (gh < 0) | |
2415 | gh = 0; | |
2416 | ||
6d308072 | 2417 | if ( m_cornerLabelWin && m_cornerLabelWin->IsShown() ) |
7807d81c MB |
2418 | m_cornerLabelWin->SetSize( 0, 0, m_rowLabelWidth, m_colLabelHeight ); |
2419 | ||
ad805b9e VZ |
2420 | if ( m_colWindow && m_colWindow->IsShown() ) |
2421 | m_colWindow->SetSize( m_rowLabelWidth, 0, gw, m_colLabelHeight ); | |
7807d81c | 2422 | |
6d308072 | 2423 | if ( m_rowLabelWin && m_rowLabelWin->IsShown() ) |
c1841ac2 | 2424 | m_rowLabelWin->SetSize( 0, m_colLabelHeight, m_rowLabelWidth, gh ); |
7807d81c | 2425 | |
6d308072 | 2426 | if ( m_gridWin && m_gridWin->IsShown() ) |
c1841ac2 | 2427 | m_gridWin->SetSize( m_rowLabelWidth, m_colLabelHeight, gw, gh ); |
7807d81c MB |
2428 | } |
2429 | ||
3d59537f DS |
2430 | // this is called when the grid table sends a message |
2431 | // to indicate that it has been redimensioned | |
f85afd4e MB |
2432 | // |
2433 | bool wxGrid::Redimension( wxGridTableMessage& msg ) | |
2434 | { | |
2435 | int i; | |
ca65c044 | 2436 | bool result = false; |
8f177c8e | 2437 | |
a6794685 SN |
2438 | // Clear the attribute cache as the attribute might refer to a different |
2439 | // cell than stored in the cache after adding/removing rows/columns. | |
2440 | ClearAttrCache(); | |
2f024384 | 2441 | |
7e48d7d9 SN |
2442 | // By the same reasoning, the editor should be dismissed if columns are |
2443 | // added or removed. And for consistency, it should IMHO always be | |
2444 | // removed, not only if the cell "underneath" it actually changes. | |
2445 | // For now, I intentionally do not save the editor's content as the | |
2446 | // cell it might want to save that stuff to might no longer exist. | |
bca7bfc8 | 2447 | HideCellEditControl(); |
2f024384 | 2448 | |
f85afd4e MB |
2449 | switch ( msg.GetId() ) |
2450 | { | |
2451 | case wxGRIDTABLE_NOTIFY_ROWS_INSERTED: | |
2452 | { | |
2453 | size_t pos = msg.GetCommandInt(); | |
2454 | int numRows = msg.GetCommandInt2(); | |
f6bcfd97 | 2455 | |
f85afd4e | 2456 | m_numRows += numRows; |
2d66e025 | 2457 | |
f6bcfd97 BP |
2458 | if ( !m_rowHeights.IsEmpty() ) |
2459 | { | |
27f35b66 SN |
2460 | m_rowHeights.Insert( m_defaultRowHeight, pos, numRows ); |
2461 | m_rowBottoms.Insert( 0, pos, numRows ); | |
f6bcfd97 BP |
2462 | |
2463 | int bottom = 0; | |
2f024384 DS |
2464 | if ( pos > 0 ) |
2465 | bottom = m_rowBottoms[pos - 1]; | |
60ff3b99 | 2466 | |
3d59537f | 2467 | for ( i = pos; i < m_numRows; i++ ) |
f6bcfd97 BP |
2468 | { |
2469 | bottom += m_rowHeights[i]; | |
2470 | m_rowBottoms[i] = bottom; | |
2471 | } | |
2472 | } | |
2f024384 | 2473 | |
f6bcfd97 BP |
2474 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
2475 | { | |
2476 | // if we have just inserted cols into an empty grid the current | |
2477 | // cell will be undefined... | |
2478 | // | |
2479 | SetCurrentCell( 0, 0 ); | |
2480 | } | |
3f3dc2ef VZ |
2481 | |
2482 | if ( m_selection ) | |
2483 | m_selection->UpdateRows( pos, numRows ); | |
f6bcfd97 BP |
2484 | wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider(); |
2485 | if (attrProvider) | |
2486 | attrProvider->UpdateAttrRows( pos, numRows ); | |
2487 | ||
2488 | if ( !GetBatchCount() ) | |
2d66e025 | 2489 | { |
f6bcfd97 BP |
2490 | CalcDimensions(); |
2491 | m_rowLabelWin->Refresh(); | |
2d66e025 | 2492 | } |
f85afd4e | 2493 | } |
ca65c044 | 2494 | result = true; |
f6bcfd97 | 2495 | break; |
f85afd4e MB |
2496 | |
2497 | case wxGRIDTABLE_NOTIFY_ROWS_APPENDED: | |
2498 | { | |
2499 | int numRows = msg.GetCommandInt(); | |
2d66e025 | 2500 | int oldNumRows = m_numRows; |
f85afd4e | 2501 | m_numRows += numRows; |
2d66e025 | 2502 | |
f6bcfd97 BP |
2503 | if ( !m_rowHeights.IsEmpty() ) |
2504 | { | |
27f35b66 SN |
2505 | m_rowHeights.Add( m_defaultRowHeight, numRows ); |
2506 | m_rowBottoms.Add( 0, numRows ); | |
60ff3b99 | 2507 | |
f6bcfd97 | 2508 | int bottom = 0; |
2f024384 DS |
2509 | if ( oldNumRows > 0 ) |
2510 | bottom = m_rowBottoms[oldNumRows - 1]; | |
f6bcfd97 | 2511 | |
3d59537f | 2512 | for ( i = oldNumRows; i < m_numRows; i++ ) |
f6bcfd97 BP |
2513 | { |
2514 | bottom += m_rowHeights[i]; | |
2515 | m_rowBottoms[i] = bottom; | |
2516 | } | |
2517 | } | |
2f024384 | 2518 | |
f6bcfd97 BP |
2519 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
2520 | { | |
2521 | // if we have just inserted cols into an empty grid the current | |
2522 | // cell will be undefined... | |
2523 | // | |
2524 | SetCurrentCell( 0, 0 ); | |
2525 | } | |
2f024384 | 2526 | |
f6bcfd97 | 2527 | if ( !GetBatchCount() ) |
2d66e025 | 2528 | { |
f6bcfd97 BP |
2529 | CalcDimensions(); |
2530 | m_rowLabelWin->Refresh(); | |
2d66e025 | 2531 | } |
f85afd4e | 2532 | } |
ca65c044 | 2533 | result = true; |
f6bcfd97 | 2534 | break; |
f85afd4e MB |
2535 | |
2536 | case wxGRIDTABLE_NOTIFY_ROWS_DELETED: | |
2537 | { | |
2538 | size_t pos = msg.GetCommandInt(); | |
2539 | int numRows = msg.GetCommandInt2(); | |
f85afd4e MB |
2540 | m_numRows -= numRows; |
2541 | ||
f6bcfd97 | 2542 | if ( !m_rowHeights.IsEmpty() ) |
f85afd4e | 2543 | { |
27f35b66 SN |
2544 | m_rowHeights.RemoveAt( pos, numRows ); |
2545 | m_rowBottoms.RemoveAt( pos, numRows ); | |
2d66e025 MB |
2546 | |
2547 | int h = 0; | |
3d59537f | 2548 | for ( i = 0; i < m_numRows; i++ ) |
2d66e025 MB |
2549 | { |
2550 | h += m_rowHeights[i]; | |
2551 | m_rowBottoms[i] = h; | |
2552 | } | |
f85afd4e | 2553 | } |
3d59537f | 2554 | |
f6bcfd97 BP |
2555 | if ( !m_numRows ) |
2556 | { | |
2557 | m_currentCellCoords = wxGridNoCellCoords; | |
2558 | } | |
2559 | else | |
2560 | { | |
2561 | if ( m_currentCellCoords.GetRow() >= m_numRows ) | |
2562 | m_currentCellCoords.Set( 0, 0 ); | |
2563 | } | |
3f3dc2ef VZ |
2564 | |
2565 | if ( m_selection ) | |
2566 | m_selection->UpdateRows( pos, -((int)numRows) ); | |
f6bcfd97 | 2567 | wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider(); |
4db6714b KH |
2568 | if (attrProvider) |
2569 | { | |
f6bcfd97 | 2570 | attrProvider->UpdateAttrRows( pos, -((int)numRows) ); |
3d59537f | 2571 | |
84912ef8 RD |
2572 | // ifdef'd out following patch from Paul Gammans |
2573 | #if 0 | |
3ca6a5f0 | 2574 | // No need to touch column attributes, unless we |
f6bcfd97 BP |
2575 | // removed _all_ rows, in this case, we remove |
2576 | // all column attributes. | |
2577 | // I hate to do this here, but the | |
2578 | // needed data is not available inside UpdateAttrRows. | |
2579 | if ( !GetNumberRows() ) | |
2580 | attrProvider->UpdateAttrCols( 0, -GetNumberCols() ); | |
84912ef8 | 2581 | #endif |
f6bcfd97 | 2582 | } |
ccdee36f | 2583 | |
f6bcfd97 BP |
2584 | if ( !GetBatchCount() ) |
2585 | { | |
2586 | CalcDimensions(); | |
2587 | m_rowLabelWin->Refresh(); | |
2588 | } | |
f85afd4e | 2589 | } |
ca65c044 | 2590 | result = true; |
f6bcfd97 | 2591 | break; |
f85afd4e MB |
2592 | |
2593 | case wxGRIDTABLE_NOTIFY_COLS_INSERTED: | |
2594 | { | |
2595 | size_t pos = msg.GetCommandInt(); | |
2596 | int numCols = msg.GetCommandInt2(); | |
f85afd4e | 2597 | m_numCols += numCols; |
2d66e025 | 2598 | |
ad805b9e | 2599 | if ( m_useNativeHeader ) |
3039ade9 | 2600 | GetGridColHeader()->SetColumnCount(m_numCols); |
ad805b9e | 2601 | |
d4175745 VZ |
2602 | if ( !m_colAt.IsEmpty() ) |
2603 | { | |
2604 | //Shift the column IDs | |
2605 | int i; | |
2606 | for ( i = 0; i < m_numCols - numCols; i++ ) | |
2607 | { | |
2608 | if ( m_colAt[i] >= (int)pos ) | |
2609 | m_colAt[i] += numCols; | |
2610 | } | |
2611 | ||
2612 | m_colAt.Insert( pos, pos, numCols ); | |
2613 | ||
2614 | //Set the new columns' positions | |
2615 | for ( i = pos + 1; i < (int)pos + numCols; i++ ) | |
2616 | { | |
2617 | m_colAt[i] = i; | |
2618 | } | |
2619 | } | |
2620 | ||
f6bcfd97 BP |
2621 | if ( !m_colWidths.IsEmpty() ) |
2622 | { | |
27f35b66 SN |
2623 | m_colWidths.Insert( m_defaultColWidth, pos, numCols ); |
2624 | m_colRights.Insert( 0, pos, numCols ); | |
f6bcfd97 BP |
2625 | |
2626 | int right = 0; | |
2f024384 | 2627 | if ( pos > 0 ) |
d4175745 | 2628 | right = m_colRights[GetColAt( pos - 1 )]; |
60ff3b99 | 2629 | |
d4175745 VZ |
2630 | int colPos; |
2631 | for ( colPos = pos; colPos < m_numCols; colPos++ ) | |
f6bcfd97 | 2632 | { |
d4175745 VZ |
2633 | i = GetColAt( colPos ); |
2634 | ||
f6bcfd97 BP |
2635 | right += m_colWidths[i]; |
2636 | m_colRights[i] = right; | |
2637 | } | |
2638 | } | |
2f024384 | 2639 | |
f6bcfd97 | 2640 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
2d66e025 | 2641 | { |
f6bcfd97 BP |
2642 | // if we have just inserted cols into an empty grid the current |
2643 | // cell will be undefined... | |
2644 | // | |
2645 | SetCurrentCell( 0, 0 ); | |
2d66e025 | 2646 | } |
3f3dc2ef VZ |
2647 | |
2648 | if ( m_selection ) | |
2649 | m_selection->UpdateCols( pos, numCols ); | |
f6bcfd97 BP |
2650 | wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider(); |
2651 | if (attrProvider) | |
2652 | attrProvider->UpdateAttrCols( pos, numCols ); | |
2653 | if ( !GetBatchCount() ) | |
2654 | { | |
2655 | CalcDimensions(); | |
ad805b9e | 2656 | m_colWindow->Refresh(); |
f6bcfd97 | 2657 | } |
f85afd4e | 2658 | } |
ca65c044 | 2659 | result = true; |
f6bcfd97 | 2660 | break; |
f85afd4e MB |
2661 | |
2662 | case wxGRIDTABLE_NOTIFY_COLS_APPENDED: | |
2663 | { | |
2664 | int numCols = msg.GetCommandInt(); | |
2d66e025 | 2665 | int oldNumCols = m_numCols; |
f85afd4e | 2666 | m_numCols += numCols; |
ad805b9e | 2667 | if ( m_useNativeHeader ) |
3039ade9 | 2668 | GetGridColHeader()->SetColumnCount(m_numCols); |
d4175745 VZ |
2669 | |
2670 | if ( !m_colAt.IsEmpty() ) | |
2671 | { | |
2672 | m_colAt.Add( 0, numCols ); | |
2673 | ||
2674 | //Set the new columns' positions | |
2675 | int i; | |
2676 | for ( i = oldNumCols; i < m_numCols; i++ ) | |
2677 | { | |
2678 | m_colAt[i] = i; | |
2679 | } | |
2680 | } | |
2681 | ||
f6bcfd97 BP |
2682 | if ( !m_colWidths.IsEmpty() ) |
2683 | { | |
27f35b66 SN |
2684 | m_colWidths.Add( m_defaultColWidth, numCols ); |
2685 | m_colRights.Add( 0, numCols ); | |
2d66e025 | 2686 | |
f6bcfd97 | 2687 | int right = 0; |
2f024384 | 2688 | if ( oldNumCols > 0 ) |
d4175745 | 2689 | right = m_colRights[GetColAt( oldNumCols - 1 )]; |
60ff3b99 | 2690 | |
d4175745 VZ |
2691 | int colPos; |
2692 | for ( colPos = oldNumCols; colPos < m_numCols; colPos++ ) | |
f6bcfd97 | 2693 | { |
d4175745 VZ |
2694 | i = GetColAt( colPos ); |
2695 | ||
f6bcfd97 BP |
2696 | right += m_colWidths[i]; |
2697 | m_colRights[i] = right; | |
2698 | } | |
2699 | } | |
2f024384 | 2700 | |
f6bcfd97 | 2701 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
2d66e025 | 2702 | { |
f6bcfd97 BP |
2703 | // if we have just inserted cols into an empty grid the current |
2704 | // cell will be undefined... | |
2705 | // | |
2706 | SetCurrentCell( 0, 0 ); | |
2707 | } | |
2708 | if ( !GetBatchCount() ) | |
2709 | { | |
2710 | CalcDimensions(); | |
ad805b9e | 2711 | m_colWindow->Refresh(); |
2d66e025 | 2712 | } |
f85afd4e | 2713 | } |
ca65c044 | 2714 | result = true; |
f6bcfd97 | 2715 | break; |
f85afd4e MB |
2716 | |
2717 | case wxGRIDTABLE_NOTIFY_COLS_DELETED: | |
2718 | { | |
2719 | size_t pos = msg.GetCommandInt(); | |
2720 | int numCols = msg.GetCommandInt2(); | |
f85afd4e | 2721 | m_numCols -= numCols; |
ad805b9e | 2722 | if ( m_useNativeHeader ) |
3039ade9 | 2723 | GetGridColHeader()->SetColumnCount(m_numCols); |
f85afd4e | 2724 | |
d4175745 VZ |
2725 | if ( !m_colAt.IsEmpty() ) |
2726 | { | |
2727 | int colID = GetColAt( pos ); | |
2728 | ||
2729 | m_colAt.RemoveAt( pos, numCols ); | |
2730 | ||
2731 | //Shift the column IDs | |
2732 | int colPos; | |
2733 | for ( colPos = 0; colPos < m_numCols; colPos++ ) | |
2734 | { | |
2735 | if ( m_colAt[colPos] > colID ) | |
2736 | m_colAt[colPos] -= numCols; | |
2737 | } | |
2738 | } | |
2739 | ||
f6bcfd97 | 2740 | if ( !m_colWidths.IsEmpty() ) |
f85afd4e | 2741 | { |
27f35b66 SN |
2742 | m_colWidths.RemoveAt( pos, numCols ); |
2743 | m_colRights.RemoveAt( pos, numCols ); | |
2d66e025 MB |
2744 | |
2745 | int w = 0; | |
d4175745 VZ |
2746 | int colPos; |
2747 | for ( colPos = 0; colPos < m_numCols; colPos++ ) | |
2d66e025 | 2748 | { |
d4175745 VZ |
2749 | i = GetColAt( colPos ); |
2750 | ||
2d66e025 MB |
2751 | w += m_colWidths[i]; |
2752 | m_colRights[i] = w; | |
2753 | } | |
f85afd4e | 2754 | } |
2f024384 | 2755 | |
f6bcfd97 BP |
2756 | if ( !m_numCols ) |
2757 | { | |
2758 | m_currentCellCoords = wxGridNoCellCoords; | |
2759 | } | |
2760 | else | |
2761 | { | |
2762 | if ( m_currentCellCoords.GetCol() >= m_numCols ) | |
2763 | m_currentCellCoords.Set( 0, 0 ); | |
2764 | } | |
3f3dc2ef VZ |
2765 | |
2766 | if ( m_selection ) | |
2767 | m_selection->UpdateCols( pos, -((int)numCols) ); | |
f6bcfd97 | 2768 | wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider(); |
4db6714b KH |
2769 | if (attrProvider) |
2770 | { | |
f6bcfd97 | 2771 | attrProvider->UpdateAttrCols( pos, -((int)numCols) ); |
ccdee36f | 2772 | |
84912ef8 RD |
2773 | // ifdef'd out following patch from Paul Gammans |
2774 | #if 0 | |
f6bcfd97 BP |
2775 | // No need to touch row attributes, unless we |
2776 | // removed _all_ columns, in this case, we remove | |
2777 | // all row attributes. | |
2778 | // I hate to do this here, but the | |
2779 | // needed data is not available inside UpdateAttrCols. | |
2780 | if ( !GetNumberCols() ) | |
2781 | attrProvider->UpdateAttrRows( 0, -GetNumberRows() ); | |
84912ef8 | 2782 | #endif |
f6bcfd97 | 2783 | } |
ccdee36f | 2784 | |
f6bcfd97 BP |
2785 | if ( !GetBatchCount() ) |
2786 | { | |
2787 | CalcDimensions(); | |
ad805b9e | 2788 | m_colWindow->Refresh(); |
f6bcfd97 | 2789 | } |
f85afd4e | 2790 | } |
ca65c044 | 2791 | result = true; |
f6bcfd97 | 2792 | break; |
f85afd4e MB |
2793 | } |
2794 | ||
f6bcfd97 BP |
2795 | if (result && !GetBatchCount() ) |
2796 | m_gridWin->Refresh(); | |
2f024384 | 2797 | |
f6bcfd97 | 2798 | return result; |
f85afd4e MB |
2799 | } |
2800 | ||
ef316e23 | 2801 | wxArrayInt wxGrid::CalcRowLabelsExposed( const wxRegion& reg ) const |
f85afd4e | 2802 | { |
2d66e025 MB |
2803 | wxRegionIterator iter( reg ); |
2804 | wxRect r; | |
f85afd4e | 2805 | |
275c4ae4 RD |
2806 | wxArrayInt rowlabels; |
2807 | ||
2d66e025 MB |
2808 | int top, bottom; |
2809 | while ( iter ) | |
f85afd4e | 2810 | { |
2d66e025 | 2811 | r = iter.GetRect(); |
f85afd4e | 2812 | |
2d66e025 MB |
2813 | // TODO: remove this when we can... |
2814 | // There is a bug in wxMotif that gives garbage update | |
2815 | // rectangles if you jump-scroll a long way by clicking the | |
2816 | // scrollbar with middle button. This is a work-around | |
2817 | // | |
2818 | #if defined(__WXMOTIF__) | |
2819 | int cw, ch; | |
2820 | m_gridWin->GetClientSize( &cw, &ch ); | |
56b6cf26 DS |
2821 | if ( r.GetTop() > ch ) |
2822 | r.SetTop( 0 ); | |
2d66e025 MB |
2823 | r.SetBottom( wxMin( r.GetBottom(), ch ) ); |
2824 | #endif | |
f85afd4e | 2825 | |
2d66e025 MB |
2826 | // logical bounds of update region |
2827 | // | |
2828 | int dummy; | |
2829 | CalcUnscrolledPosition( 0, r.GetTop(), &dummy, &top ); | |
2830 | CalcUnscrolledPosition( 0, r.GetBottom(), &dummy, &bottom ); | |
2831 | ||
2832 | // find the row labels within these bounds | |
2833 | // | |
2834 | int row; | |
3d59537f | 2835 | for ( row = internalYToRow(top); row < m_numRows; row++ ) |
2d66e025 | 2836 | { |
7c1cb261 VZ |
2837 | if ( GetRowBottom(row) < top ) |
2838 | continue; | |
2d66e025 | 2839 | |
6d55126d | 2840 | if ( GetRowTop(row) > bottom ) |
7c1cb261 | 2841 | break; |
60ff3b99 | 2842 | |
d10f4bf9 | 2843 | rowlabels.Add( row ); |
2d66e025 | 2844 | } |
60ff3b99 | 2845 | |
60d8e886 | 2846 | ++iter; |
f85afd4e | 2847 | } |
d10f4bf9 VZ |
2848 | |
2849 | return rowlabels; | |
f85afd4e MB |
2850 | } |
2851 | ||
ef316e23 | 2852 | wxArrayInt wxGrid::CalcColLabelsExposed( const wxRegion& reg ) const |
f85afd4e | 2853 | { |
2d66e025 MB |
2854 | wxRegionIterator iter( reg ); |
2855 | wxRect r; | |
f85afd4e | 2856 | |
d10f4bf9 | 2857 | wxArrayInt colLabels; |
f85afd4e | 2858 | |
2d66e025 MB |
2859 | int left, right; |
2860 | while ( iter ) | |
f85afd4e | 2861 | { |
2d66e025 | 2862 | r = iter.GetRect(); |
f85afd4e | 2863 | |
2d66e025 MB |
2864 | // TODO: remove this when we can... |
2865 | // There is a bug in wxMotif that gives garbage update | |
2866 | // rectangles if you jump-scroll a long way by clicking the | |
2867 | // scrollbar with middle button. This is a work-around | |
2868 | // | |
2869 | #if defined(__WXMOTIF__) | |
2870 | int cw, ch; | |
2871 | m_gridWin->GetClientSize( &cw, &ch ); | |
56b6cf26 DS |
2872 | if ( r.GetLeft() > cw ) |
2873 | r.SetLeft( 0 ); | |
2d66e025 MB |
2874 | r.SetRight( wxMin( r.GetRight(), cw ) ); |
2875 | #endif | |
2876 | ||
2877 | // logical bounds of update region | |
2878 | // | |
2879 | int dummy; | |
2880 | CalcUnscrolledPosition( r.GetLeft(), 0, &left, &dummy ); | |
2881 | CalcUnscrolledPosition( r.GetRight(), 0, &right, &dummy ); | |
2882 | ||
2883 | // find the cells within these bounds | |
2884 | // | |
2885 | int col; | |
d4175745 VZ |
2886 | int colPos; |
2887 | for ( colPos = GetColPos( internalXToCol(left) ); colPos < m_numCols; colPos++ ) | |
2d66e025 | 2888 | { |
d4175745 VZ |
2889 | col = GetColAt( colPos ); |
2890 | ||
7c1cb261 VZ |
2891 | if ( GetColRight(col) < left ) |
2892 | continue; | |
60ff3b99 | 2893 | |
7c1cb261 VZ |
2894 | if ( GetColLeft(col) > right ) |
2895 | break; | |
2d66e025 | 2896 | |
d10f4bf9 | 2897 | colLabels.Add( col ); |
2d66e025 | 2898 | } |
60ff3b99 | 2899 | |
60d8e886 | 2900 | ++iter; |
f85afd4e | 2901 | } |
2f024384 | 2902 | |
d10f4bf9 | 2903 | return colLabels; |
f85afd4e MB |
2904 | } |
2905 | ||
ef316e23 | 2906 | wxGridCellCoordsArray wxGrid::CalcCellsExposed( const wxRegion& reg ) const |
f85afd4e | 2907 | { |
2d66e025 MB |
2908 | wxRegionIterator iter( reg ); |
2909 | wxRect r; | |
f85afd4e | 2910 | |
d10f4bf9 | 2911 | wxGridCellCoordsArray cellsExposed; |
f85afd4e | 2912 | |
2d66e025 MB |
2913 | int left, top, right, bottom; |
2914 | while ( iter ) | |
2915 | { | |
2916 | r = iter.GetRect(); | |
f85afd4e | 2917 | |
2d66e025 MB |
2918 | // TODO: remove this when we can... |
2919 | // There is a bug in wxMotif that gives garbage update | |
2920 | // rectangles if you jump-scroll a long way by clicking the | |
2921 | // scrollbar with middle button. This is a work-around | |
2922 | // | |
2923 | #if defined(__WXMOTIF__) | |
f85afd4e | 2924 | int cw, ch; |
2d66e025 MB |
2925 | m_gridWin->GetClientSize( &cw, &ch ); |
2926 | if ( r.GetTop() > ch ) r.SetTop( 0 ); | |
2927 | if ( r.GetLeft() > cw ) r.SetLeft( 0 ); | |
2928 | r.SetRight( wxMin( r.GetRight(), cw ) ); | |
2929 | r.SetBottom( wxMin( r.GetBottom(), ch ) ); | |
2930 | #endif | |
8f177c8e | 2931 | |
2d66e025 MB |
2932 | // logical bounds of update region |
2933 | // | |
2934 | CalcUnscrolledPosition( r.GetLeft(), r.GetTop(), &left, &top ); | |
2935 | CalcUnscrolledPosition( r.GetRight(), r.GetBottom(), &right, &bottom ); | |
f85afd4e | 2936 | |
2d66e025 | 2937 | // find the cells within these bounds |
cd4f6f5f VZ |
2938 | wxArrayInt cols; |
2939 | for ( int row = internalYToRow(top); row < m_numRows; row++ ) | |
f85afd4e | 2940 | { |
7c1cb261 VZ |
2941 | if ( GetRowBottom(row) <= top ) |
2942 | continue; | |
f85afd4e | 2943 | |
7c1cb261 VZ |
2944 | if ( GetRowTop(row) > bottom ) |
2945 | break; | |
60ff3b99 | 2946 | |
cd4f6f5f VZ |
2947 | // add all dirty cells in this row: notice that the columns which |
2948 | // are dirty don't depend on the row so we compute them only once | |
2949 | // for the first dirty row and then reuse for all the next ones | |
2950 | if ( cols.empty() ) | |
2d66e025 | 2951 | { |
cd4f6f5f VZ |
2952 | // do determine the dirty columns |
2953 | for ( int pos = XToPos(left); pos <= XToPos(right); pos++ ) | |
2954 | cols.push_back(GetColAt(pos)); | |
d4175745 | 2955 | |
cd4f6f5f VZ |
2956 | // if there are no dirty columns at all, nothing to do |
2957 | if ( cols.empty() ) | |
7c1cb261 | 2958 | break; |
2d66e025 | 2959 | } |
cd4f6f5f VZ |
2960 | |
2961 | const size_t count = cols.size(); | |
2962 | for ( size_t n = 0; n < count; n++ ) | |
2963 | cellsExposed.Add(wxGridCellCoords(row, cols[n])); | |
2d66e025 | 2964 | } |
60ff3b99 | 2965 | |
60d8e886 | 2966 | ++iter; |
f85afd4e | 2967 | } |
d10f4bf9 VZ |
2968 | |
2969 | return cellsExposed; | |
f85afd4e MB |
2970 | } |
2971 | ||
2972 | ||
2d66e025 | 2973 | void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent& event ) |
f85afd4e | 2974 | { |
2d66e025 MB |
2975 | int x, y, row; |
2976 | wxPoint pos( event.GetPosition() ); | |
2977 | CalcUnscrolledPosition( pos.x, pos.y, &x, &y ); | |
60ff3b99 | 2978 | |
2d66e025 | 2979 | if ( event.Dragging() ) |
f85afd4e | 2980 | { |
426b2d87 JS |
2981 | if (!m_isDragging) |
2982 | { | |
ca65c044 | 2983 | m_isDragging = true; |
426b2d87 JS |
2984 | m_rowLabelWin->CaptureMouse(); |
2985 | } | |
8f177c8e | 2986 | |
2d66e025 | 2987 | if ( event.LeftIsDown() ) |
f85afd4e | 2988 | { |
962a48f6 | 2989 | switch ( m_cursorMode ) |
f85afd4e | 2990 | { |
f85afd4e MB |
2991 | case WXGRID_CURSOR_RESIZE_ROW: |
2992 | { | |
2d66e025 MB |
2993 | int cw, ch, left, dummy; |
2994 | m_gridWin->GetClientSize( &cw, &ch ); | |
2995 | CalcUnscrolledPosition( 0, 0, &left, &dummy ); | |
60ff3b99 | 2996 | |
2d66e025 MB |
2997 | wxClientDC dc( m_gridWin ); |
2998 | PrepareDC( dc ); | |
af547d51 VZ |
2999 | y = wxMax( y, |
3000 | GetRowTop(m_dragRowOrCol) + | |
3001 | GetRowMinimalHeight(m_dragRowOrCol) ); | |
d2fdd8d2 | 3002 | dc.SetLogicalFunction(wxINVERT); |
f85afd4e MB |
3003 | if ( m_dragLastPos >= 0 ) |
3004 | { | |
2d66e025 | 3005 | dc.DrawLine( left, m_dragLastPos, left+cw, m_dragLastPos ); |
f85afd4e | 3006 | } |
2d66e025 MB |
3007 | dc.DrawLine( left, y, left+cw, y ); |
3008 | m_dragLastPos = y; | |
f85afd4e MB |
3009 | } |
3010 | break; | |
3011 | ||
3012 | case WXGRID_CURSOR_SELECT_ROW: | |
902725ee | 3013 | { |
e32352cf | 3014 | if ( (row = YToRow( y )) >= 0 ) |
aa5e1f75 | 3015 | { |
3f3dc2ef | 3016 | if ( m_selection ) |
8b5f6d9d | 3017 | m_selection->SelectRow(row, event); |
f85afd4e | 3018 | } |
902725ee WS |
3019 | } |
3020 | break; | |
e2b42eeb VZ |
3021 | |
3022 | // default label to suppress warnings about "enumeration value | |
3023 | // 'xxx' not handled in switch | |
3024 | default: | |
3025 | break; | |
f85afd4e MB |
3026 | } |
3027 | } | |
3028 | return; | |
3029 | } | |
3030 | ||
426b2d87 JS |
3031 | if ( m_isDragging && (event.Entering() || event.Leaving()) ) |
3032 | return; | |
8f177c8e | 3033 | |
426b2d87 JS |
3034 | if (m_isDragging) |
3035 | { | |
ccdee36f DS |
3036 | if (m_rowLabelWin->HasCapture()) |
3037 | m_rowLabelWin->ReleaseMouse(); | |
ca65c044 | 3038 | m_isDragging = false; |
426b2d87 | 3039 | } |
60ff3b99 | 3040 | |
6d004f67 MB |
3041 | // ------------ Entering or leaving the window |
3042 | // | |
3043 | if ( event.Entering() || event.Leaving() ) | |
3044 | { | |
e2b42eeb | 3045 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_rowLabelWin); |
6d004f67 MB |
3046 | } |
3047 | ||
2d66e025 | 3048 | // ------------ Left button pressed |
f85afd4e | 3049 | // |
6d004f67 | 3050 | else if ( event.LeftDown() ) |
f85afd4e | 3051 | { |
82edfbe7 VZ |
3052 | row = YToEdgeOfRow(y); |
3053 | if ( row != wxNOT_FOUND && CanDragRowSize(row) ) | |
3054 | { | |
3055 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW, m_rowLabelWin); | |
3056 | } | |
3057 | else // not a request to start resizing | |
f85afd4e | 3058 | { |
2d66e025 | 3059 | row = YToRow(y); |
2f024384 | 3060 | if ( row >= 0 && |
b54ba671 | 3061 | !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK, row, -1, event ) ) |
f85afd4e | 3062 | { |
2b01fd49 | 3063 | if ( !event.ShiftDown() && !event.CmdDown() ) |
aa5e1f75 | 3064 | ClearSelection(); |
64e15340 | 3065 | if ( m_selection ) |
3f3dc2ef VZ |
3066 | { |
3067 | if ( event.ShiftDown() ) | |
3068 | { | |
8b5f6d9d VZ |
3069 | m_selection->SelectBlock |
3070 | ( | |
3071 | m_currentCellCoords.GetRow(), 0, | |
3072 | row, GetNumberCols() - 1, | |
3073 | event | |
3074 | ); | |
3f3dc2ef VZ |
3075 | } |
3076 | else | |
3077 | { | |
8b5f6d9d | 3078 | m_selection->SelectRow(row, event); |
3f3dc2ef VZ |
3079 | } |
3080 | } | |
3081 | ||
e2b42eeb | 3082 | ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW, m_rowLabelWin); |
f85afd4e | 3083 | } |
2d66e025 | 3084 | } |
2d66e025 | 3085 | } |
f85afd4e | 3086 | |
2d66e025 MB |
3087 | // ------------ Left double click |
3088 | // | |
3089 | else if (event.LeftDClick() ) | |
3090 | { | |
4e115ed2 | 3091 | row = YToEdgeOfRow(y); |
82edfbe7 VZ |
3092 | if ( row != wxNOT_FOUND && CanDragRowSize(row) ) |
3093 | { | |
3094 | // adjust row height depending on label text | |
27bb2c8c VZ |
3095 | // |
3096 | // TODO: generate RESIZING event, see #10754 | |
82edfbe7 VZ |
3097 | AutoSizeRowLabelSize( row ); |
3098 | ||
c5c1ea96 | 3099 | SendGridSizeEvent(wxEVT_GRID_ROW_SIZE, row, -1, event); |
27bb2c8c | 3100 | |
82edfbe7 VZ |
3101 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, GetColLabelWindow()); |
3102 | m_dragLastPos = -1; | |
3103 | } | |
3104 | else // not on row separator or it's not resizeable | |
2d66e025 MB |
3105 | { |
3106 | row = YToRow(y); | |
a967f048 | 3107 | if ( row >=0 && |
ca65c044 WS |
3108 | !SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK, row, -1, event ) ) |
3109 | { | |
a967f048 | 3110 | // no default action at the moment |
ca65c044 | 3111 | } |
f85afd4e MB |
3112 | } |
3113 | } | |
60ff3b99 | 3114 | |
2d66e025 | 3115 | // ------------ Left button released |
f85afd4e | 3116 | // |
2d66e025 | 3117 | else if ( event.LeftUp() ) |
f85afd4e | 3118 | { |
2d66e025 | 3119 | if ( m_cursorMode == WXGRID_CURSOR_RESIZE_ROW ) |
27bb2c8c | 3120 | DoEndDragResizeRow(event); |
f85afd4e | 3121 | |
e2b42eeb VZ |
3122 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_rowLabelWin); |
3123 | m_dragLastPos = -1; | |
2d66e025 | 3124 | } |
f85afd4e | 3125 | |
2d66e025 MB |
3126 | // ------------ Right button down |
3127 | // | |
3128 | else if ( event.RightDown() ) | |
3129 | { | |
3130 | row = YToRow(y); | |
ef5df12b | 3131 | if ( row >=0 && |
ca65c044 | 3132 | !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK, row, -1, event ) ) |
2d66e025 MB |
3133 | { |
3134 | // no default action at the moment | |
f85afd4e MB |
3135 | } |
3136 | } | |
60ff3b99 | 3137 | |
2d66e025 | 3138 | // ------------ Right double click |
f85afd4e | 3139 | // |
2d66e025 MB |
3140 | else if ( event.RightDClick() ) |
3141 | { | |
3142 | row = YToRow(y); | |
a967f048 | 3143 | if ( row >= 0 && |
ca65c044 | 3144 | !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK, row, -1, event ) ) |
2d66e025 MB |
3145 | { |
3146 | // no default action at the moment | |
3147 | } | |
3148 | } | |
60ff3b99 | 3149 | |
2d66e025 | 3150 | // ------------ No buttons down and mouse moving |
f85afd4e | 3151 | // |
2d66e025 | 3152 | else if ( event.Moving() ) |
f85afd4e | 3153 | { |
2d66e025 | 3154 | m_dragRowOrCol = YToEdgeOfRow( y ); |
82edfbe7 | 3155 | if ( m_dragRowOrCol != wxNOT_FOUND ) |
8f177c8e | 3156 | { |
2d66e025 | 3157 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) |
8f177c8e | 3158 | { |
82edfbe7 | 3159 | if ( CanDragRowSize(m_dragRowOrCol) ) |
ca65c044 | 3160 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW, m_rowLabelWin, false); |
8f177c8e | 3161 | } |
2d66e025 | 3162 | } |
6d004f67 | 3163 | else if ( m_cursorMode != WXGRID_CURSOR_SELECT_CELL ) |
2d66e025 | 3164 | { |
ca65c044 | 3165 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_rowLabelWin, false); |
8f177c8e | 3166 | } |
f85afd4e | 3167 | } |
2d66e025 MB |
3168 | } |
3169 | ||
11393d29 VZ |
3170 | void wxGrid::UpdateColumnSortingIndicator(int col) |
3171 | { | |
3172 | wxCHECK_RET( col != wxNOT_FOUND, "invalid column index" ); | |
3173 | ||
3174 | if ( m_useNativeHeader ) | |
3039ade9 | 3175 | GetGridColHeader()->UpdateColumn(col); |
11393d29 VZ |
3176 | else if ( m_nativeColumnLabels ) |
3177 | m_colWindow->Refresh(); | |
3178 | //else: sorting indicator display not yet implemented in grid version | |
3179 | } | |
3180 | ||
3181 | void wxGrid::SetSortingColumn(int col, bool ascending) | |
3182 | { | |
3183 | if ( col == m_sortCol ) | |
3184 | { | |
3185 | // we are already using this column for sorting (or not sorting at all) | |
3186 | // but we might still change the sorting order, check for it | |
3187 | if ( m_sortCol != wxNOT_FOUND && ascending != m_sortIsAscending ) | |
3188 | { | |
3189 | m_sortIsAscending = ascending; | |
3190 | ||
3191 | UpdateColumnSortingIndicator(m_sortCol); | |
3192 | } | |
3193 | } | |
3194 | else // we're changing the column used for sorting | |
3195 | { | |
3196 | const int sortColOld = m_sortCol; | |
3197 | ||
3198 | // change it before updating the column as we want GetSortingColumn() | |
3199 | // to return the correct new value | |
3200 | m_sortCol = col; | |
3201 | ||
3202 | if ( sortColOld != wxNOT_FOUND ) | |
3203 | UpdateColumnSortingIndicator(sortColOld); | |
3204 | ||
3205 | if ( m_sortCol != wxNOT_FOUND ) | |
3206 | { | |
3207 | m_sortIsAscending = ascending; | |
3208 | UpdateColumnSortingIndicator(m_sortCol); | |
3209 | } | |
3210 | } | |
3211 | } | |
3212 | ||
3213 | void wxGrid::DoColHeaderClick(int col) | |
3214 | { | |
3215 | // we consider that the grid was resorted if this event is processed and | |
3216 | // not vetoed | |
3217 | if ( SendEvent(wxEVT_GRID_COL_SORT, -1, col) == 1 ) | |
3218 | { | |
3219 | SetSortingColumn(col, IsSortingBy(col) ? !m_sortIsAscending : true); | |
3220 | Refresh(); | |
3221 | } | |
3222 | } | |
3223 | ||
ad805b9e VZ |
3224 | void wxGrid::DoStartResizeCol(int col) |
3225 | { | |
3226 | m_dragRowOrCol = col; | |
3227 | m_dragLastPos = -1; | |
3228 | DoUpdateResizeColWidth(GetColWidth(m_dragRowOrCol)); | |
3229 | } | |
3230 | ||
3231 | void wxGrid::DoUpdateResizeCol(int x) | |
3232 | { | |
3233 | int cw, ch, dummy, top; | |
3234 | m_gridWin->GetClientSize( &cw, &ch ); | |
3235 | CalcUnscrolledPosition( 0, 0, &dummy, &top ); | |
3236 | ||
3237 | wxClientDC dc( m_gridWin ); | |
3238 | PrepareDC( dc ); | |
3239 | ||
3240 | x = wxMax( x, GetColLeft(m_dragRowOrCol) + GetColMinimalWidth(m_dragRowOrCol)); | |
3241 | dc.SetLogicalFunction(wxINVERT); | |
3242 | if ( m_dragLastPos >= 0 ) | |
3243 | { | |
3244 | dc.DrawLine( m_dragLastPos, top, m_dragLastPos, top + ch ); | |
3245 | } | |
3246 | dc.DrawLine( x, top, x, top + ch ); | |
3247 | m_dragLastPos = x; | |
3248 | } | |
3249 | ||
3250 | void wxGrid::DoUpdateResizeColWidth(int w) | |
3251 | { | |
3252 | DoUpdateResizeCol(GetColLeft(m_dragRowOrCol) + w); | |
3253 | } | |
3254 | ||
2d66e025 MB |
3255 | void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event ) |
3256 | { | |
11393d29 | 3257 | int x, y; |
2d66e025 MB |
3258 | wxPoint pos( event.GetPosition() ); |
3259 | CalcUnscrolledPosition( pos.x, pos.y, &x, &y ); | |
60ff3b99 | 3260 | |
11393d29 | 3261 | int col = XToCol(x); |
2d66e025 | 3262 | if ( event.Dragging() ) |
f85afd4e | 3263 | { |
fe77cf60 JS |
3264 | if (!m_isDragging) |
3265 | { | |
ca65c044 | 3266 | m_isDragging = true; |
ad805b9e | 3267 | GetColLabelWindow()->CaptureMouse(); |
d4175745 | 3268 | |
11393d29 VZ |
3269 | if ( m_cursorMode == WXGRID_CURSOR_MOVE_COL && col != -1 ) |
3270 | DoStartMoveCol(col); | |
fe77cf60 | 3271 | } |
8f177c8e | 3272 | |
2d66e025 | 3273 | if ( event.LeftIsDown() ) |
8f177c8e | 3274 | { |
962a48f6 | 3275 | switch ( m_cursorMode ) |
8f177c8e | 3276 | { |
2d66e025 | 3277 | case WXGRID_CURSOR_RESIZE_COL: |
ad805b9e | 3278 | DoUpdateResizeCol(x); |
2d66e025 | 3279 | break; |
f85afd4e | 3280 | |
2d66e025 | 3281 | case WXGRID_CURSOR_SELECT_COL: |
902725ee | 3282 | { |
11393d29 | 3283 | if ( col != -1 ) |
aa5e1f75 | 3284 | { |
3f3dc2ef | 3285 | if ( m_selection ) |
8b5f6d9d | 3286 | m_selection->SelectCol(col, event); |
2d66e025 | 3287 | } |
902725ee WS |
3288 | } |
3289 | break; | |
e2b42eeb | 3290 | |
d4175745 VZ |
3291 | case WXGRID_CURSOR_MOVE_COL: |
3292 | { | |
cd68daf5 VZ |
3293 | int posNew = XToPos(x); |
3294 | int colNew = GetColAt(posNew); | |
d4175745 | 3295 | |
cd68daf5 | 3296 | // determine the position of the drop marker |
d4175745 | 3297 | int markerX; |
cd68daf5 VZ |
3298 | if ( x >= GetColLeft(colNew) + (GetColWidth(colNew) / 2) ) |
3299 | markerX = GetColRight(colNew); | |
d4175745 | 3300 | else |
cd68daf5 | 3301 | markerX = GetColLeft(colNew); |
d4175745 VZ |
3302 | |
3303 | if ( markerX != m_dragLastPos ) | |
3304 | { | |
ad805b9e | 3305 | wxClientDC dc( GetColLabelWindow() ); |
1eab9659 | 3306 | DoPrepareDC(dc); |
d4175745 VZ |
3307 | |
3308 | int cw, ch; | |
ad805b9e | 3309 | GetColLabelWindow()->GetClientSize( &cw, &ch ); |
d4175745 VZ |
3310 | |
3311 | markerX++; | |
3312 | ||
3313 | //Clean up the last indicator | |
3314 | if ( m_dragLastPos >= 0 ) | |
3315 | { | |
ad805b9e | 3316 | wxPen pen( GetColLabelWindow()->GetBackgroundColour(), 2 ); |
d4175745 VZ |
3317 | dc.SetPen(pen); |
3318 | dc.DrawLine( m_dragLastPos + 1, 0, m_dragLastPos + 1, ch ); | |
3319 | dc.SetPen(wxNullPen); | |
3320 | ||
3321 | if ( XToCol( m_dragLastPos ) != -1 ) | |
3322 | DrawColLabel( dc, XToCol( m_dragLastPos ) ); | |
3323 | } | |
3324 | ||
87c819f9 | 3325 | const wxColour *color; |
d4175745 | 3326 | //Moving to the same place? Don't draw a marker |
cd68daf5 | 3327 | if ( colNew == m_dragRowOrCol ) |
87c819f9 VZ |
3328 | color = wxLIGHT_GREY; |
3329 | else | |
3330 | color = wxBLUE; | |
d4175745 VZ |
3331 | |
3332 | //Draw the marker | |
87c819f9 | 3333 | wxPen pen( *color, 2 ); |
d4175745 VZ |
3334 | dc.SetPen(pen); |
3335 | ||
3336 | dc.DrawLine( markerX, 0, markerX, ch ); | |
3337 | ||
3338 | dc.SetPen(wxNullPen); | |
3339 | ||
3340 | m_dragLastPos = markerX - 1; | |
3341 | } | |
3342 | } | |
3343 | break; | |
3344 | ||
e2b42eeb VZ |
3345 | // default label to suppress warnings about "enumeration value |
3346 | // 'xxx' not handled in switch | |
3347 | default: | |
3348 | break; | |
2d66e025 | 3349 | } |
f85afd4e | 3350 | } |
2d66e025 | 3351 | return; |
f85afd4e | 3352 | } |
2d66e025 | 3353 | |
fe77cf60 JS |
3354 | if ( m_isDragging && (event.Entering() || event.Leaving()) ) |
3355 | return; | |
2d66e025 | 3356 | |
fe77cf60 JS |
3357 | if (m_isDragging) |
3358 | { | |
ad805b9e VZ |
3359 | if (GetColLabelWindow()->HasCapture()) |
3360 | GetColLabelWindow()->ReleaseMouse(); | |
ca65c044 | 3361 | m_isDragging = false; |
fe77cf60 | 3362 | } |
60ff3b99 | 3363 | |
6d004f67 MB |
3364 | // ------------ Entering or leaving the window |
3365 | // | |
3366 | if ( event.Entering() || event.Leaving() ) | |
3367 | { | |
ad805b9e | 3368 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, GetColLabelWindow()); |
6d004f67 MB |
3369 | } |
3370 | ||
2d66e025 | 3371 | // ------------ Left button pressed |
f85afd4e | 3372 | // |
6d004f67 | 3373 | else if ( event.LeftDown() ) |
f85afd4e | 3374 | { |
82edfbe7 VZ |
3375 | int col = XToEdgeOfCol(x); |
3376 | if ( col != wxNOT_FOUND && CanDragColSize(col) ) | |
8f177c8e | 3377 | { |
82edfbe7 VZ |
3378 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL, GetColLabelWindow()); |
3379 | } | |
3380 | else // not a request to start resizing | |
3381 | { | |
3382 | col = XToCol(x); | |
2f024384 | 3383 | if ( col >= 0 && |
b54ba671 | 3384 | !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK, -1, col, event ) ) |
8f177c8e | 3385 | { |
d4175745 | 3386 | if ( m_canDragColMove ) |
3f3dc2ef | 3387 | { |
d4175745 | 3388 | //Show button as pressed |
ad805b9e | 3389 | wxClientDC dc( GetColLabelWindow() ); |
d4175745 VZ |
3390 | int colLeft = GetColLeft( col ); |
3391 | int colRight = GetColRight( col ) - 1; | |
ad805b9e | 3392 | dc.SetPen( wxPen( GetColLabelWindow()->GetBackgroundColour(), 1 ) ); |
d4175745 VZ |
3393 | dc.DrawLine( colLeft, 1, colLeft, m_colLabelHeight-1 ); |
3394 | dc.DrawLine( colLeft, 1, colRight, 1 ); | |
3395 | ||
ad805b9e | 3396 | ChangeCursorMode(WXGRID_CURSOR_MOVE_COL, GetColLabelWindow()); |
d4175745 VZ |
3397 | } |
3398 | else | |
3399 | { | |
3400 | if ( !event.ShiftDown() && !event.CmdDown() ) | |
3401 | ClearSelection(); | |
3402 | if ( m_selection ) | |
3f3dc2ef | 3403 | { |
d4175745 VZ |
3404 | if ( event.ShiftDown() ) |
3405 | { | |
8b5f6d9d VZ |
3406 | m_selection->SelectBlock |
3407 | ( | |
3408 | 0, m_currentCellCoords.GetCol(), | |
3409 | GetNumberRows() - 1, col, | |
3410 | event | |
3411 | ); | |
d4175745 VZ |
3412 | } |
3413 | else | |
3414 | { | |
8b5f6d9d | 3415 | m_selection->SelectCol(col, event); |
d4175745 | 3416 | } |
3f3dc2ef | 3417 | } |
3f3dc2ef | 3418 | |
ad805b9e | 3419 | ChangeCursorMode(WXGRID_CURSOR_SELECT_COL, GetColLabelWindow()); |
d4175745 | 3420 | } |
f85afd4e | 3421 | } |
2d66e025 | 3422 | } |
2d66e025 | 3423 | } |
f85afd4e | 3424 | |
2d66e025 MB |
3425 | // ------------ Left double click |
3426 | // | |
3427 | if ( event.LeftDClick() ) | |
3428 | { | |
11393d29 VZ |
3429 | const int colEdge = XToEdgeOfCol(x); |
3430 | if ( colEdge == -1 ) | |
2d66e025 | 3431 | { |
a967f048 RG |
3432 | if ( col >= 0 && |
3433 | ! SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK, -1, col, event ) ) | |
3434 | { | |
ca65c044 | 3435 | // no default action at the moment |
a967f048 | 3436 | } |
2d66e025 | 3437 | } |
d43851f7 JS |
3438 | else |
3439 | { | |
3440 | // adjust column width depending on label text | |
27bb2c8c VZ |
3441 | // |
3442 | // TODO: generate RESIZING event, see #10754 | |
11393d29 | 3443 | AutoSizeColLabelSize( colEdge ); |
d43851f7 | 3444 | |
c5c1ea96 | 3445 | SendGridSizeEvent(wxEVT_GRID_COL_SIZE, -1, colEdge, event); |
27bb2c8c | 3446 | |
ad805b9e | 3447 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, GetColLabelWindow()); |
ccdee36f | 3448 | m_dragLastPos = -1; |
d43851f7 | 3449 | } |
2d66e025 | 3450 | } |
60ff3b99 | 3451 | |
2d66e025 MB |
3452 | // ------------ Left button released |
3453 | // | |
3454 | else if ( event.LeftUp() ) | |
3455 | { | |
d4175745 | 3456 | switch ( m_cursorMode ) |
2d66e025 | 3457 | { |
d4175745 | 3458 | case WXGRID_CURSOR_RESIZE_COL: |
27bb2c8c | 3459 | DoEndDragResizeCol(event); |
852b6c3c | 3460 | break; |
d4175745 VZ |
3461 | |
3462 | case WXGRID_CURSOR_MOVE_COL: | |
11393d29 | 3463 | if ( m_dragLastPos == -1 || col == m_dragRowOrCol ) |
cd68daf5 | 3464 | { |
11393d29 VZ |
3465 | // the column didn't actually move anywhere |
3466 | if ( col != -1 ) | |
3467 | DoColHeaderClick(col); | |
cd68daf5 VZ |
3468 | m_colWindow->Refresh(); // "unpress" the column |
3469 | } | |
3470 | else | |
3471 | { | |
3472 | DoEndMoveCol(XToPos(x)); | |
3473 | } | |
852b6c3c VZ |
3474 | break; |
3475 | ||
3476 | case WXGRID_CURSOR_SELECT_COL: | |
3477 | case WXGRID_CURSOR_SELECT_CELL: | |
3478 | case WXGRID_CURSOR_RESIZE_ROW: | |
3479 | case WXGRID_CURSOR_SELECT_ROW: | |
11393d29 VZ |
3480 | if ( col != -1 ) |
3481 | DoColHeaderClick(col); | |
852b6c3c | 3482 | break; |
2d66e025 | 3483 | } |
f85afd4e | 3484 | |
ad805b9e | 3485 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, GetColLabelWindow()); |
ccdee36f | 3486 | m_dragLastPos = -1; |
60ff3b99 VZ |
3487 | } |
3488 | ||
2d66e025 MB |
3489 | // ------------ Right button down |
3490 | // | |
3491 | else if ( event.RightDown() ) | |
3492 | { | |
a967f048 | 3493 | if ( col >= 0 && |
ca65c044 | 3494 | !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK, -1, col, event ) ) |
2d66e025 MB |
3495 | { |
3496 | // no default action at the moment | |
f85afd4e MB |
3497 | } |
3498 | } | |
60ff3b99 | 3499 | |
2d66e025 | 3500 | // ------------ Right double click |
f85afd4e | 3501 | // |
2d66e025 MB |
3502 | else if ( event.RightDClick() ) |
3503 | { | |
a967f048 | 3504 | if ( col >= 0 && |
ca65c044 | 3505 | !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK, -1, col, event ) ) |
2d66e025 MB |
3506 | { |
3507 | // no default action at the moment | |
3508 | } | |
3509 | } | |
60ff3b99 | 3510 | |
2d66e025 | 3511 | // ------------ No buttons down and mouse moving |
f85afd4e | 3512 | // |
2d66e025 | 3513 | else if ( event.Moving() ) |
f85afd4e | 3514 | { |
2d66e025 MB |
3515 | m_dragRowOrCol = XToEdgeOfCol( x ); |
3516 | if ( m_dragRowOrCol >= 0 ) | |
f85afd4e | 3517 | { |
2d66e025 | 3518 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) |
f85afd4e | 3519 | { |
82edfbe7 | 3520 | if ( CanDragColSize(m_dragRowOrCol) ) |
ad805b9e | 3521 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL, GetColLabelWindow(), false); |
f85afd4e | 3522 | } |
2d66e025 | 3523 | } |
6d004f67 | 3524 | else if ( m_cursorMode != WXGRID_CURSOR_SELECT_CELL ) |
2d66e025 | 3525 | { |
ad805b9e | 3526 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, GetColLabelWindow(), false); |
8f177c8e | 3527 | } |
f85afd4e MB |
3528 | } |
3529 | } | |
3530 | ||
2d66e025 | 3531 | void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent& event ) |
f85afd4e | 3532 | { |
2d66e025 | 3533 | if ( event.LeftDown() ) |
f85afd4e | 3534 | { |
2d66e025 MB |
3535 | // indicate corner label by having both row and |
3536 | // col args == -1 | |
f85afd4e | 3537 | // |
b54ba671 | 3538 | if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK, -1, -1, event ) ) |
2d66e025 MB |
3539 | { |
3540 | SelectAll(); | |
3541 | } | |
f85afd4e | 3542 | } |
2d66e025 MB |
3543 | else if ( event.LeftDClick() ) |
3544 | { | |
b54ba671 | 3545 | SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK, -1, -1, event ); |
2d66e025 | 3546 | } |
2d66e025 | 3547 | else if ( event.RightDown() ) |
f85afd4e | 3548 | { |
b54ba671 | 3549 | if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK, -1, -1, event ) ) |
f85afd4e | 3550 | { |
2d66e025 MB |
3551 | // no default action at the moment |
3552 | } | |
3553 | } | |
2d66e025 MB |
3554 | else if ( event.RightDClick() ) |
3555 | { | |
b54ba671 | 3556 | if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK, -1, -1, event ) ) |
2d66e025 MB |
3557 | { |
3558 | // no default action at the moment | |
3559 | } | |
3560 | } | |
3561 | } | |
f85afd4e | 3562 | |
86033c4b VZ |
3563 | void wxGrid::CancelMouseCapture() |
3564 | { | |
3565 | // cancel operation currently in progress, whatever it is | |
3566 | if ( m_winCapture ) | |
3567 | { | |
3568 | m_isDragging = false; | |
8a3e536c VZ |
3569 | m_startDragPos = wxDefaultPosition; |
3570 | ||
86033c4b VZ |
3571 | m_cursorMode = WXGRID_CURSOR_SELECT_CELL; |
3572 | m_winCapture->SetCursor( *wxSTANDARD_CURSOR ); | |
3573 | m_winCapture = NULL; | |
3574 | ||
3575 | // remove traces of whatever we drew on screen | |
3576 | Refresh(); | |
3577 | } | |
3578 | } | |
3579 | ||
e2b42eeb VZ |
3580 | void wxGrid::ChangeCursorMode(CursorMode mode, |
3581 | wxWindow *win, | |
3582 | bool captureMouse) | |
3583 | { | |
711f12ef | 3584 | #if wxUSE_LOG_TRACE |
a243da29 | 3585 | static const wxChar *const cursorModes[] = |
e2b42eeb | 3586 | { |
9a83f860 VZ |
3587 | wxT("SELECT_CELL"), |
3588 | wxT("RESIZE_ROW"), | |
3589 | wxT("RESIZE_COL"), | |
3590 | wxT("SELECT_ROW"), | |
3591 | wxT("SELECT_COL"), | |
3592 | wxT("MOVE_COL"), | |
e2b42eeb VZ |
3593 | }; |
3594 | ||
9a83f860 VZ |
3595 | wxLogTrace(wxT("grid"), |
3596 | wxT("wxGrid cursor mode (mouse capture for %s): %s -> %s"), | |
3597 | win == m_colWindow ? wxT("colLabelWin") | |
3598 | : win ? wxT("rowLabelWin") | |
3599 | : wxT("gridWin"), | |
e2b42eeb | 3600 | cursorModes[m_cursorMode], cursorModes[mode]); |
711f12ef | 3601 | #endif // wxUSE_LOG_TRACE |
e2b42eeb | 3602 | |
faec5a43 SN |
3603 | if ( mode == m_cursorMode && |
3604 | win == m_winCapture && | |
3605 | captureMouse == (m_winCapture != NULL)) | |
e2b42eeb VZ |
3606 | return; |
3607 | ||
3608 | if ( !win ) | |
3609 | { | |
3610 | // by default use the grid itself | |
3611 | win = m_gridWin; | |
3612 | } | |
3613 | ||
3614 | if ( m_winCapture ) | |
3615 | { | |
e882d288 | 3616 | m_winCapture->ReleaseMouse(); |
10a4531d | 3617 | m_winCapture = NULL; |
e2b42eeb VZ |
3618 | } |
3619 | ||
3620 | m_cursorMode = mode; | |
3621 | ||
3622 | switch ( m_cursorMode ) | |
3623 | { | |
3624 | case WXGRID_CURSOR_RESIZE_ROW: | |
3625 | win->SetCursor( m_rowResizeCursor ); | |
3626 | break; | |
3627 | ||
3628 | case WXGRID_CURSOR_RESIZE_COL: | |
3629 | win->SetCursor( m_colResizeCursor ); | |
3630 | break; | |
3631 | ||
d4175745 VZ |
3632 | case WXGRID_CURSOR_MOVE_COL: |
3633 | win->SetCursor( wxCursor(wxCURSOR_HAND) ); | |
3634 | break; | |
3635 | ||
e2b42eeb VZ |
3636 | default: |
3637 | win->SetCursor( *wxSTANDARD_CURSOR ); | |
2f024384 | 3638 | break; |
e2b42eeb VZ |
3639 | } |
3640 | ||
3641 | // we need to capture mouse when resizing | |
3642 | bool resize = m_cursorMode == WXGRID_CURSOR_RESIZE_ROW || | |
3643 | m_cursorMode == WXGRID_CURSOR_RESIZE_COL; | |
3644 | ||
3645 | if ( captureMouse && resize ) | |
3646 | { | |
3647 | win->CaptureMouse(); | |
3648 | m_winCapture = win; | |
3649 | } | |
3650 | } | |
8f177c8e | 3651 | |
8a3e536c VZ |
3652 | // ---------------------------------------------------------------------------- |
3653 | // grid mouse event processing | |
3654 | // ---------------------------------------------------------------------------- | |
60ff3b99 | 3655 | |
8a3e536c VZ |
3656 | void |
3657 | wxGrid::DoGridCellDrag(wxMouseEvent& event, | |
3658 | const wxGridCellCoords& coords, | |
3659 | bool isFirstDrag) | |
3660 | { | |
3661 | if ( coords == wxGridNoCellCoords ) | |
3662 | return; // we're outside any valid cell | |
60ff3b99 | 3663 | |
8a3e536c VZ |
3664 | // Hide the edit control, so it won't interfere with drag-shrinking. |
3665 | if ( IsCellEditControlShown() ) | |
27f35b66 | 3666 | { |
8a3e536c VZ |
3667 | HideCellEditControl(); |
3668 | SaveEditControlValue(); | |
27f35b66 SN |
3669 | } |
3670 | ||
8a3e536c | 3671 | switch ( event.GetModifiers() ) |
2d66e025 | 3672 | { |
8a3e536c VZ |
3673 | case wxMOD_CMD: |
3674 | if ( m_selectedBlockCorner == wxGridNoCellCoords) | |
3675 | m_selectedBlockCorner = coords; | |
3676 | UpdateBlockBeingSelected(m_selectedBlockCorner, coords); | |
3677 | break; | |
07296f0b | 3678 | |
8a3e536c VZ |
3679 | case wxMOD_NONE: |
3680 | if ( CanDragCell() ) | |
2d66e025 | 3681 | { |
8a3e536c | 3682 | if ( isFirstDrag ) |
79dbea21 | 3683 | { |
8a3e536c VZ |
3684 | if ( m_selectedBlockCorner == wxGridNoCellCoords) |
3685 | m_selectedBlockCorner = coords; | |
07296f0b | 3686 | |
8a3e536c VZ |
3687 | SendEvent(wxEVT_GRID_CELL_BEGIN_DRAG, coords, event); |
3688 | return; | |
07296f0b | 3689 | } |
2d66e025 | 3690 | } |
25107357 | 3691 | |
8a3e536c VZ |
3692 | UpdateBlockBeingSelected(m_currentCellCoords, coords); |
3693 | break; | |
c71b2126 | 3694 | |
8a3e536c VZ |
3695 | default: |
3696 | // we don't handle the other key modifiers | |
3697 | event.Skip(); | |
3698 | } | |
3699 | } | |
8f177c8e | 3700 | |
8a3e536c VZ |
3701 | void wxGrid::DoGridLineDrag(wxMouseEvent& event, const wxGridOperations& oper) |
3702 | { | |
3703 | wxClientDC dc(m_gridWin); | |
3704 | PrepareDC(dc); | |
3705 | dc.SetLogicalFunction(wxINVERT); | |
e2b42eeb | 3706 | |
8a3e536c VZ |
3707 | const wxRect rectWin(CalcUnscrolledPosition(wxPoint(0, 0)), |
3708 | m_gridWin->GetClientSize()); | |
3709 | ||
3710 | // erase the previously drawn line, if any | |
3711 | if ( m_dragLastPos >= 0 ) | |
3712 | oper.DrawParallelLineInRect(dc, rectWin, m_dragLastPos); | |
3713 | ||
3714 | // we need the vertical position for rows and horizontal for columns here | |
3715 | m_dragLastPos = oper.Dual().Select(CalcUnscrolledPosition(event.GetPosition())); | |
3716 | ||
3717 | // don't allow resizing beneath the minimal size | |
3718 | const int posMin = oper.GetLineStartPos(this, m_dragRowOrCol) + | |
3719 | oper.GetMinimalLineSize(this, m_dragRowOrCol); | |
3720 | if ( m_dragLastPos < posMin ) | |
3721 | m_dragLastPos = posMin; | |
3722 | ||
3723 | // and draw it at the new position | |
3724 | oper.DrawParallelLineInRect(dc, rectWin, m_dragLastPos); | |
3725 | } | |
3726 | ||
3727 | void wxGrid::DoGridDragEvent(wxMouseEvent& event, const wxGridCellCoords& coords) | |
3728 | { | |
3729 | if ( !m_isDragging ) | |
3730 | { | |
3731 | // Don't start doing anything until the mouse has been dragged far | |
3732 | // enough | |
3733 | const wxPoint& pt = event.GetPosition(); | |
3734 | if ( m_startDragPos == wxDefaultPosition ) | |
3735 | { | |
3736 | m_startDragPos = pt; | |
3737 | return; | |
6d004f67 | 3738 | } |
e2b42eeb | 3739 | |
8a3e536c VZ |
3740 | if ( abs(m_startDragPos.x - pt.x) <= DRAG_SENSITIVITY && |
3741 | abs(m_startDragPos.y - pt.y) <= DRAG_SENSITIVITY ) | |
3742 | return; | |
2d66e025 | 3743 | } |
66242c80 | 3744 | |
8a3e536c VZ |
3745 | const bool isFirstDrag = !m_isDragging; |
3746 | m_isDragging = true; | |
07296f0b | 3747 | |
8a3e536c | 3748 | switch ( m_cursorMode ) |
a5777624 | 3749 | { |
8a3e536c VZ |
3750 | case WXGRID_CURSOR_SELECT_CELL: |
3751 | DoGridCellDrag(event, coords, isFirstDrag); | |
3752 | break; | |
3753 | ||
3754 | case WXGRID_CURSOR_RESIZE_ROW: | |
3755 | DoGridLineDrag(event, wxGridRowOperations()); | |
3756 | break; | |
3757 | ||
3758 | case WXGRID_CURSOR_RESIZE_COL: | |
3759 | DoGridLineDrag(event, wxGridColumnOperations()); | |
3760 | break; | |
3761 | ||
3762 | default: | |
3763 | event.Skip(); | |
a5777624 | 3764 | } |
e2b42eeb | 3765 | |
8a3e536c | 3766 | if ( isFirstDrag ) |
f6bcfd97 | 3767 | { |
98e95650 VZ |
3768 | wxASSERT_MSG( !m_winCapture, "shouldn't capture the mouse twice" ); |
3769 | ||
8a3e536c VZ |
3770 | m_winCapture = m_gridWin; |
3771 | m_winCapture->CaptureMouse(); | |
3772 | } | |
3773 | } | |
a5777624 | 3774 | |
8a3e536c VZ |
3775 | void |
3776 | wxGrid::DoGridCellLeftDown(wxMouseEvent& event, | |
3777 | const wxGridCellCoords& coords, | |
3778 | const wxPoint& pos) | |
3779 | { | |
3780 | if ( SendEvent(wxEVT_GRID_CELL_LEFT_CLICK, coords, event) ) | |
3781 | { | |
3782 | // event handled by user code, no need to do anything here | |
3783 | return; | |
a5777624 | 3784 | } |
f85afd4e | 3785 | |
8a3e536c VZ |
3786 | if ( !event.CmdDown() ) |
3787 | ClearSelection(); | |
3788 | ||
3789 | if ( event.ShiftDown() ) | |
3790 | { | |
3791 | if ( m_selection ) | |
3792 | { | |
8b5f6d9d | 3793 | m_selection->SelectBlock(m_currentCellCoords, coords, event); |
8a3e536c VZ |
3794 | m_selectedBlockCorner = coords; |
3795 | } | |
3796 | } | |
3797 | else if ( XToEdgeOfCol(pos.x) < 0 && YToEdgeOfRow(pos.y) < 0 ) | |
a5777624 RD |
3798 | { |
3799 | DisableCellEditControl(); | |
8a3e536c | 3800 | MakeCellVisible( coords ); |
a5777624 | 3801 | |
8a3e536c | 3802 | if ( event.CmdDown() ) |
58dd5b3b | 3803 | { |
8a3e536c | 3804 | if ( m_selection ) |
1ef49ab5 | 3805 | { |
8b5f6d9d | 3806 | m_selection->ToggleCellSelection(coords, event); |
1ef49ab5 | 3807 | } |
8b5f6d9d | 3808 | |
8a3e536c VZ |
3809 | m_selectedBlockTopLeft = wxGridNoCellCoords; |
3810 | m_selectedBlockBottomRight = wxGridNoCellCoords; | |
3811 | m_selectedBlockCorner = coords; | |
3812 | } | |
3813 | else | |
3814 | { | |
3815 | m_waitForSlowClick = m_currentCellCoords == coords && | |
3816 | coords != wxGridNoCellCoords; | |
3817 | SetCurrentCell( coords ); | |
58dd5b3b | 3818 | } |
a5777624 | 3819 | } |
8a3e536c | 3820 | } |
f85afd4e | 3821 | |
8a3e536c VZ |
3822 | void |
3823 | wxGrid::DoGridCellLeftDClick(wxMouseEvent& event, | |
3824 | const wxGridCellCoords& coords, | |
3825 | const wxPoint& pos) | |
3826 | { | |
3827 | if ( XToEdgeOfCol(pos.x) < 0 && YToEdgeOfRow(pos.y) < 0 ) | |
a5777624 | 3828 | { |
8a3e536c | 3829 | if ( !SendEvent(wxEVT_GRID_CELL_LEFT_DCLICK, coords, event) ) |
f85afd4e | 3830 | { |
8a3e536c VZ |
3831 | // we want double click to select a cell and start editing |
3832 | // (i.e. to behave in same way as sequence of two slow clicks): | |
3833 | m_waitForSlowClick = true; | |
3834 | } | |
3835 | } | |
3836 | } | |
932b55d0 | 3837 | |
8a3e536c VZ |
3838 | void |
3839 | wxGrid::DoGridCellLeftUp(wxMouseEvent& event, const wxGridCellCoords& coords) | |
3840 | { | |
3841 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) | |
3842 | { | |
3843 | if (m_winCapture) | |
3844 | { | |
e882d288 | 3845 | m_winCapture->ReleaseMouse(); |
8a3e536c VZ |
3846 | m_winCapture = NULL; |
3847 | } | |
932b55d0 | 3848 | |
8a3e536c VZ |
3849 | if ( coords == m_currentCellCoords && m_waitForSlowClick && CanEnableCellControl() ) |
3850 | { | |
3851 | ClearSelection(); | |
3852 | EnableCellEditControl(); | |
3f3dc2ef | 3853 | |
8a3e536c VZ |
3854 | wxGridCellAttr *attr = GetCellAttr(coords); |
3855 | wxGridCellEditor *editor = attr->GetEditor(this, coords.GetRow(), coords.GetCol()); | |
3856 | editor->StartingClick(); | |
3857 | editor->DecRef(); | |
3858 | attr->DecRef(); | |
2d66e025 | 3859 | |
8a3e536c | 3860 | m_waitForSlowClick = false; |
a5777624 | 3861 | } |
8a3e536c VZ |
3862 | else if ( m_selectedBlockTopLeft != wxGridNoCellCoords && |
3863 | m_selectedBlockBottomRight != wxGridNoCellCoords ) | |
a5777624 | 3864 | { |
8a3e536c VZ |
3865 | if ( m_selection ) |
3866 | { | |
3867 | m_selection->SelectBlock( m_selectedBlockTopLeft, | |
3868 | m_selectedBlockBottomRight, | |
8b5f6d9d | 3869 | event ); |
8a3e536c | 3870 | } |
e2b42eeb | 3871 | |
8a3e536c VZ |
3872 | m_selectedBlockTopLeft = wxGridNoCellCoords; |
3873 | m_selectedBlockBottomRight = wxGridNoCellCoords; | |
e2b42eeb | 3874 | |
8a3e536c VZ |
3875 | // Show the edit control, if it has been hidden for |
3876 | // drag-shrinking. | |
3877 | ShowCellEditControl(); | |
58dd5b3b | 3878 | } |
8a3e536c VZ |
3879 | } |
3880 | else if ( m_cursorMode == WXGRID_CURSOR_RESIZE_ROW ) | |
3881 | { | |
3882 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); | |
27bb2c8c | 3883 | DoEndDragResizeRow(event); |
a5777624 | 3884 | } |
8a3e536c VZ |
3885 | else if ( m_cursorMode == WXGRID_CURSOR_RESIZE_COL ) |
3886 | { | |
3887 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); | |
27bb2c8c | 3888 | DoEndDragResizeCol(event); |
8a3e536c VZ |
3889 | } |
3890 | ||
3891 | m_dragLastPos = -1; | |
3892 | } | |
3893 | ||
3894 | void | |
3895 | wxGrid::DoGridMouseMoveEvent(wxMouseEvent& WXUNUSED(event), | |
3896 | const wxGridCellCoords& coords, | |
3897 | const wxPoint& pos) | |
3898 | { | |
3899 | if ( coords.GetRow() < 0 || coords.GetCol() < 0 ) | |
a5777624 | 3900 | { |
8a3e536c VZ |
3901 | // out of grid cell area |
3902 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); | |
3903 | return; | |
a5777624 | 3904 | } |
2d66e025 | 3905 | |
8a3e536c VZ |
3906 | int dragRow = YToEdgeOfRow( pos.y ); |
3907 | int dragCol = XToEdgeOfCol( pos.x ); | |
3908 | ||
3909 | // Dragging on the corner of a cell to resize in both | |
3910 | // directions is not implemented yet... | |
a5777624 | 3911 | // |
8a3e536c | 3912 | if ( dragRow >= 0 && dragCol >= 0 ) |
a5777624 | 3913 | { |
8a3e536c VZ |
3914 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); |
3915 | return; | |
3916 | } | |
3917 | ||
82edfbe7 | 3918 | if ( dragRow >= 0 && CanDragGridSize() && CanDragRowSize(dragRow) ) |
8a3e536c | 3919 | { |
8a3e536c | 3920 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) |
f85afd4e | 3921 | { |
82edfbe7 VZ |
3922 | m_dragRowOrCol = dragRow; |
3923 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW, NULL, false); | |
60ff3b99 | 3924 | } |
a5777624 | 3925 | } |
ad805b9e VZ |
3926 | // When using the native header window we can only resize the columns by |
3927 | // dragging the dividers in it because we can't make it enter into the | |
3928 | // column resizing mode programmatically | |
82edfbe7 VZ |
3929 | else if ( dragCol >= 0 && !m_useNativeHeader && |
3930 | CanDragGridSize() && CanDragColSize(dragCol) ) | |
8a3e536c | 3931 | { |
8a3e536c VZ |
3932 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) |
3933 | { | |
82edfbe7 VZ |
3934 | m_dragRowOrCol = dragCol; |
3935 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL, NULL, false); | |
8a3e536c VZ |
3936 | } |
3937 | } | |
3938 | else // Neither on a row or col edge | |
a5777624 | 3939 | { |
8a3e536c | 3940 | if ( m_cursorMode != WXGRID_CURSOR_SELECT_CELL ) |
d57ad377 | 3941 | { |
d57ad377 | 3942 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); |
d57ad377 | 3943 | } |
8a3e536c VZ |
3944 | } |
3945 | } | |
d57ad377 | 3946 | |
8a3e536c VZ |
3947 | void wxGrid::ProcessGridCellMouseEvent(wxMouseEvent& event) |
3948 | { | |
98e95650 VZ |
3949 | if ( event.Entering() || event.Leaving() ) |
3950 | { | |
3951 | // we don't care about these events but we must not reset m_isDragging | |
3952 | // if they happen so return before anything else is done | |
3953 | event.Skip(); | |
3954 | return; | |
3955 | } | |
3956 | ||
8a3e536c | 3957 | const wxPoint pos = CalcUnscrolledPosition(event.GetPosition()); |
790cc417 | 3958 | |
8a3e536c VZ |
3959 | // coordinates of the cell under mouse |
3960 | wxGridCellCoords coords = XYToCell(pos); | |
6d004f67 | 3961 | |
8a3e536c VZ |
3962 | int cell_rows, cell_cols; |
3963 | GetCellSize( coords.GetRow(), coords.GetCol(), &cell_rows, &cell_cols ); | |
3964 | if ( (cell_rows < 0) || (cell_cols < 0) ) | |
3965 | { | |
3966 | coords.SetRow(coords.GetRow() + cell_rows); | |
3967 | coords.SetCol(coords.GetCol() + cell_cols); | |
3968 | } | |
6d004f67 | 3969 | |
8a3e536c VZ |
3970 | if ( event.Dragging() ) |
3971 | { | |
3972 | if ( event.LeftIsDown() ) | |
3973 | DoGridDragEvent(event, coords); | |
3974 | else | |
3975 | event.Skip(); | |
3976 | return; | |
3977 | } | |
3978 | ||
3979 | m_isDragging = false; | |
3980 | m_startDragPos = wxDefaultPosition; | |
3981 | ||
8a3e536c VZ |
3982 | // deal with various button presses |
3983 | if ( event.IsButton() ) | |
3984 | { | |
3985 | if ( coords != wxGridNoCellCoords ) | |
a5777624 | 3986 | { |
8a3e536c | 3987 | DisableCellEditControl(); |
e2b42eeb | 3988 | |
8a3e536c VZ |
3989 | if ( event.LeftDown() ) |
3990 | DoGridCellLeftDown(event, coords, pos); | |
3991 | else if ( event.LeftDClick() ) | |
3992 | DoGridCellLeftDClick(event, coords, pos); | |
3993 | else if ( event.RightDown() ) | |
3994 | SendEvent(wxEVT_GRID_CELL_RIGHT_CLICK, coords, event); | |
3995 | else if ( event.RightDClick() ) | |
3996 | SendEvent(wxEVT_GRID_CELL_RIGHT_DCLICK, coords, event); | |
6d004f67 | 3997 | } |
8a3e536c VZ |
3998 | |
3999 | // this one should be called even if we're not over any cell | |
4000 | if ( event.LeftUp() ) | |
a5777624 | 4001 | { |
8a3e536c | 4002 | DoGridCellLeftUp(event, coords); |
a5777624 RD |
4003 | } |
4004 | } | |
8a3e536c VZ |
4005 | else if ( event.Moving() ) |
4006 | { | |
4007 | DoGridMouseMoveEvent(event, coords, pos); | |
4008 | } | |
4009 | else // unknown mouse event? | |
4010 | { | |
4011 | event.Skip(); | |
4012 | } | |
6d004f67 MB |
4013 | } |
4014 | ||
27bb2c8c VZ |
4015 | // this function returns true only if the size really changed |
4016 | bool wxGrid::DoEndDragResizeLine(const wxGridOperations& oper) | |
6d004f67 | 4017 | { |
bec70262 | 4018 | if ( m_dragLastPos == -1 ) |
27bb2c8c | 4019 | return false; |
6d004f67 | 4020 | |
bec70262 | 4021 | const wxGridOperations& doper = oper.Dual(); |
6d004f67 | 4022 | |
bec70262 | 4023 | const wxSize size = m_gridWin->GetClientSize(); |
e2b42eeb | 4024 | |
bec70262 | 4025 | const wxPoint ptOrigin = CalcUnscrolledPosition(wxPoint(0, 0)); |
ccdee36f | 4026 | |
bec70262 VZ |
4027 | // erase the last line we drew |
4028 | wxClientDC dc(m_gridWin); | |
4029 | PrepareDC(dc); | |
4030 | dc.SetLogicalFunction(wxINVERT); | |
6d004f67 | 4031 | |
bec70262 VZ |
4032 | const int posLineStart = oper.Select(ptOrigin); |
4033 | const int posLineEnd = oper.Select(ptOrigin) + oper.Select(size); | |
6d004f67 | 4034 | |
bec70262 | 4035 | oper.DrawParallelLine(dc, posLineStart, posLineEnd, m_dragLastPos); |
6d004f67 | 4036 | |
bec70262 VZ |
4037 | // temporarily hide the edit control before resizing |
4038 | HideCellEditControl(); | |
4039 | SaveEditControlValue(); | |
4040 | ||
4041 | // do resize the line | |
4042 | const int lineStart = oper.GetLineStartPos(this, m_dragRowOrCol); | |
27bb2c8c | 4043 | const int lineSizeOld = oper.GetLineSize(this, m_dragRowOrCol); |
bec70262 VZ |
4044 | oper.SetLineSize(this, m_dragRowOrCol, |
4045 | wxMax(m_dragLastPos - lineStart, | |
4046 | oper.GetMinimalLineSize(this, m_dragRowOrCol))); | |
27bb2c8c VZ |
4047 | const bool |
4048 | sizeChanged = oper.GetLineSize(this, m_dragRowOrCol) != lineSizeOld; | |
bec70262 | 4049 | |
ad805b9e VZ |
4050 | m_dragLastPos = -1; |
4051 | ||
bec70262 VZ |
4052 | // refresh now if we're not frozen |
4053 | if ( !GetBatchCount() ) | |
6d004f67 | 4054 | { |
bec70262 VZ |
4055 | // we need to refresh everything beyond the resized line in the header |
4056 | // window | |
6d004f67 | 4057 | |
bec70262 VZ |
4058 | // get the position from which to refresh in the other direction |
4059 | wxRect rect(CellToRect(oper.MakeCoords(m_dragRowOrCol, 0))); | |
4060 | rect.SetPosition(CalcScrolledPosition(rect.GetPosition())); | |
6d004f67 | 4061 | |
bec70262 VZ |
4062 | // we only need the ordinate (for rows) or abscissa (for columns) here, |
4063 | // and need to cover the entire window in the other direction | |
4064 | oper.Select(rect) = 0; | |
6d004f67 | 4065 | |
bec70262 VZ |
4066 | wxRect rectHeader(rect.GetPosition(), |
4067 | oper.MakeSize | |
4068 | ( | |
4069 | oper.GetHeaderWindowSize(this), | |
4070 | doper.Select(size) - doper.Select(rect) | |
4071 | )); | |
4072 | ||
4073 | oper.GetHeaderWindow(this)->Refresh(true, &rectHeader); | |
4074 | ||
4075 | ||
4076 | // also refresh the grid window: extend the rectangle | |
4077 | if ( m_table ) | |
6d004f67 | 4078 | { |
bec70262 | 4079 | oper.SelectSize(rect) = oper.Select(size); |
2f024384 | 4080 | |
bec70262 VZ |
4081 | int subtractLines = 0; |
4082 | const int lineStart = oper.PosToLine(this, posLineStart); | |
4083 | if ( lineStart >= 0 ) | |
27f35b66 | 4084 | { |
bec70262 VZ |
4085 | // ensure that if we have a multi-cell block we redraw all of |
4086 | // it by increasing the refresh area to cover it entirely if a | |
4087 | // part of it is affected | |
4088 | const int lineEnd = oper.PosToLine(this, posLineEnd, true); | |
4089 | for ( int line = lineStart; line < lineEnd; line++ ) | |
27f35b66 | 4090 | { |
bec70262 VZ |
4091 | int cellLines = oper.Select( |
4092 | GetCellSize(oper.MakeCoords(m_dragRowOrCol, line))); | |
4093 | if ( cellLines < subtractLines ) | |
4094 | subtractLines = cellLines; | |
27f35b66 SN |
4095 | } |
4096 | } | |
2f024384 | 4097 | |
bec70262 VZ |
4098 | int startPos = |
4099 | oper.GetLineStartPos(this, m_dragRowOrCol + subtractLines); | |
4100 | startPos = doper.CalcScrolledPosition(this, startPos); | |
4101 | ||
4102 | doper.Select(rect) = startPos; | |
4103 | doper.SelectSize(rect) = doper.Select(size) - startPos; | |
e2b42eeb | 4104 | |
bec70262 VZ |
4105 | m_gridWin->Refresh(false, &rect); |
4106 | } | |
f85afd4e | 4107 | } |
bec70262 VZ |
4108 | |
4109 | // show the edit control back again | |
4110 | ShowCellEditControl(); | |
27bb2c8c VZ |
4111 | |
4112 | return sizeChanged; | |
bec70262 VZ |
4113 | } |
4114 | ||
27bb2c8c | 4115 | void wxGrid::DoEndDragResizeRow(const wxMouseEvent& event) |
bec70262 | 4116 | { |
27bb2c8c VZ |
4117 | // TODO: generate RESIZING event, see #10754 |
4118 | ||
4119 | if ( DoEndDragResizeLine(wxGridRowOperations()) ) | |
c5c1ea96 | 4120 | SendGridSizeEvent(wxEVT_GRID_ROW_SIZE, m_dragRowOrCol, -1, event); |
bec70262 VZ |
4121 | } |
4122 | ||
27bb2c8c | 4123 | void wxGrid::DoEndDragResizeCol(const wxMouseEvent& event) |
bec70262 | 4124 | { |
27bb2c8c | 4125 | // TODO: generate RESIZING event, see #10754 |
ad805b9e | 4126 | |
27bb2c8c | 4127 | if ( DoEndDragResizeLine(wxGridColumnOperations()) ) |
c5c1ea96 | 4128 | SendGridSizeEvent(wxEVT_GRID_COL_SIZE, -1, m_dragRowOrCol, event); |
f85afd4e MB |
4129 | } |
4130 | ||
cd68daf5 | 4131 | void wxGrid::DoStartMoveCol(int col) |
d4175745 | 4132 | { |
cd68daf5 VZ |
4133 | m_dragRowOrCol = col; |
4134 | } | |
d4175745 | 4135 | |
cd68daf5 VZ |
4136 | void wxGrid::DoEndMoveCol(int pos) |
4137 | { | |
4138 | wxASSERT_MSG( m_dragRowOrCol != -1, "no matching DoStartMoveCol?" ); | |
4139 | ||
4140 | if ( SendEvent(wxEVT_GRID_COL_MOVE, -1, m_dragRowOrCol) != -1 ) | |
4141 | SetColPos(m_dragRowOrCol, pos); | |
4142 | //else: vetoed by user | |
d4175745 | 4143 | |
cd68daf5 | 4144 | m_dragRowOrCol = -1; |
d4175745 VZ |
4145 | } |
4146 | ||
4797b014 | 4147 | void wxGrid::RefreshAfterColPosChange() |
009c7216 | 4148 | { |
4797b014 VZ |
4149 | // recalculate the column rights as the column positions have changed, |
4150 | // unless we calculate them dynamically because all columns widths are the | |
4151 | // same and it's easy to do | |
4152 | if ( !m_colWidths.empty() ) | |
009c7216 | 4153 | { |
4797b014 VZ |
4154 | int colRight = 0; |
4155 | for ( int colPos = 0; colPos < m_numCols; colPos++ ) | |
4156 | { | |
4157 | int colID = GetColAt( colPos ); | |
4158 | ||
4159 | colRight += m_colWidths[colID]; | |
4160 | m_colRights[colID] = colRight; | |
4161 | } | |
4162 | } | |
009c7216 | 4163 | |
4797b014 VZ |
4164 | // and make the changes visible |
4165 | if ( m_useNativeHeader ) | |
4166 | { | |
4167 | if ( m_colAt.empty() ) | |
3039ade9 | 4168 | GetGridColHeader()->ResetColumnsOrder(); |
4797b014 | 4169 | else |
3039ade9 | 4170 | GetGridColHeader()->SetColumnsOrder(m_colAt); |
4797b014 VZ |
4171 | } |
4172 | else | |
4173 | { | |
4174 | m_colWindow->Refresh(); | |
009c7216 | 4175 | } |
4797b014 | 4176 | m_gridWin->Refresh(); |
009c7216 VZ |
4177 | } |
4178 | ||
31ec8b4e VZ |
4179 | void wxGrid::SetColumnsOrder(const wxArrayInt& order) |
4180 | { | |
4181 | m_colAt = order; | |
4182 | ||
4183 | RefreshAfterColPosChange(); | |
4184 | } | |
4185 | ||
3169a8e8 | 4186 | void wxGrid::SetColPos(int idx, int pos) |
d4175745 | 4187 | { |
1bb74626 | 4188 | // we're going to need m_colAt now, initialize it if needed |
3169a8e8 | 4189 | if ( m_colAt.empty() ) |
d4175745 | 4190 | { |
3169a8e8 VZ |
4191 | m_colAt.reserve(m_numCols); |
4192 | for ( int i = 0; i < m_numCols; i++ ) | |
4193 | m_colAt.push_back(i); | |
d4175745 VZ |
4194 | } |
4195 | ||
1bb74626 | 4196 | wxHeaderCtrl::MoveColumnInOrderArray(m_colAt, idx, pos); |
d4175745 | 4197 | |
4797b014 | 4198 | RefreshAfterColPosChange(); |
d4175745 VZ |
4199 | } |
4200 | ||
009c7216 VZ |
4201 | void wxGrid::ResetColPos() |
4202 | { | |
4203 | m_colAt.clear(); | |
da5a641f | 4204 | |
4797b014 | 4205 | RefreshAfterColPosChange(); |
009c7216 | 4206 | } |
d4175745 VZ |
4207 | |
4208 | void wxGrid::EnableDragColMove( bool enable ) | |
4209 | { | |
4210 | if ( m_canDragColMove == enable ) | |
4211 | return; | |
4212 | ||
009c7216 | 4213 | if ( m_useNativeHeader ) |
d4175745 | 4214 | { |
009c7216 | 4215 | // update all columns to make them [not] reorderable |
3039ade9 | 4216 | GetGridColHeader()->SetColumnCount(m_numCols); |
009c7216 | 4217 | } |
d4175745 | 4218 | |
009c7216 | 4219 | m_canDragColMove = enable; |
d4175745 | 4220 | |
009c7216 VZ |
4221 | // we use to call ResetColPos() from here if !enable but this doesn't seem |
4222 | // right as it would mean there would be no way to "freeze" the current | |
4223 | // columns order by disabling moving them after putting them in the desired | |
4224 | // order, whereas now you can always call ResetColPos() manually if needed | |
d4175745 VZ |
4225 | } |
4226 | ||
4227 | ||
2d66e025 MB |
4228 | // |
4229 | // ------ interaction with data model | |
4230 | // | |
4231 | bool wxGrid::ProcessTableMessage( wxGridTableMessage& msg ) | |
f85afd4e | 4232 | { |
2d66e025 | 4233 | switch ( msg.GetId() ) |
17732cec | 4234 | { |
2d66e025 MB |
4235 | case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES: |
4236 | return GetModelValues(); | |
17732cec | 4237 | |
2d66e025 MB |
4238 | case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES: |
4239 | return SetModelValues(); | |
f85afd4e | 4240 | |
2d66e025 MB |
4241 | case wxGRIDTABLE_NOTIFY_ROWS_INSERTED: |
4242 | case wxGRIDTABLE_NOTIFY_ROWS_APPENDED: | |
4243 | case wxGRIDTABLE_NOTIFY_ROWS_DELETED: | |
4244 | case wxGRIDTABLE_NOTIFY_COLS_INSERTED: | |
4245 | case wxGRIDTABLE_NOTIFY_COLS_APPENDED: | |
4246 | case wxGRIDTABLE_NOTIFY_COLS_DELETED: | |
4247 | return Redimension( msg ); | |
4248 | ||
4249 | default: | |
ca65c044 | 4250 | return false; |
f85afd4e | 4251 | } |
2d66e025 | 4252 | } |
f85afd4e | 4253 | |
2d66e025 | 4254 | // The behaviour of this function depends on the grid table class |
5b061713 | 4255 | // Clear() function. For the default wxGridStringTable class the |
10a4531d | 4256 | // behaviour is to replace all cell contents with wxEmptyString but |
2d66e025 MB |
4257 | // not to change the number of rows or cols. |
4258 | // | |
4259 | void wxGrid::ClearGrid() | |
4260 | { | |
4261 | if ( m_table ) | |
f85afd4e | 4262 | { |
4cfa5de6 RD |
4263 | if (IsCellEditControlEnabled()) |
4264 | DisableCellEditControl(); | |
4265 | ||
2d66e025 | 4266 | m_table->Clear(); |
5b061713 | 4267 | if (!GetBatchCount()) |
a9339fe2 | 4268 | m_gridWin->Refresh(); |
f85afd4e MB |
4269 | } |
4270 | } | |
4271 | ||
10a4531d VZ |
4272 | bool |
4273 | wxGrid::DoModifyLines(bool (wxGridTableBase::*funcModify)(size_t, size_t), | |
4274 | int pos, int num, bool WXUNUSED(updateLabels) ) | |
f85afd4e | 4275 | { |
10a4531d | 4276 | wxCHECK_MSG( m_created, false, "must finish creating the grid first" ); |
f85afd4e | 4277 | |
10a4531d | 4278 | if ( !m_table ) |
ca65c044 | 4279 | return false; |
f85afd4e | 4280 | |
10a4531d VZ |
4281 | if ( IsCellEditControlEnabled() ) |
4282 | DisableCellEditControl(); | |
b7fff980 | 4283 | |
10a4531d | 4284 | return (m_table->*funcModify)(pos, num); |
2f024384 | 4285 | |
10a4531d VZ |
4286 | // the table will have sent the results of the insert row |
4287 | // operation to this view object as a grid table message | |
f85afd4e MB |
4288 | } |
4289 | ||
10a4531d VZ |
4290 | bool |
4291 | wxGrid::DoAppendLines(bool (wxGridTableBase::*funcAppend)(size_t), | |
4292 | int num, bool WXUNUSED(updateLabels)) | |
f85afd4e | 4293 | { |
10a4531d | 4294 | wxCHECK_MSG( m_created, false, "must finish creating the grid first" ); |
2f024384 | 4295 | |
10a4531d | 4296 | if ( !m_table ) |
ca65c044 | 4297 | return false; |
f85afd4e | 4298 | |
10a4531d | 4299 | return (m_table->*funcAppend)(num); |
f85afd4e MB |
4300 | } |
4301 | ||
27bb2c8c VZ |
4302 | // ---------------------------------------------------------------------------- |
4303 | // event generation helpers | |
4304 | // ---------------------------------------------------------------------------- | |
4305 | ||
4306 | void | |
c5c1ea96 | 4307 | wxGrid::SendGridSizeEvent(wxEventType type, |
27bb2c8c VZ |
4308 | int row, int col, |
4309 | const wxMouseEvent& mouseEv) | |
4310 | { | |
4311 | int rowOrCol = row == -1 ? col : row; | |
4312 | ||
4313 | wxGridSizeEvent gridEvt( GetId(), | |
4314 | type, | |
4315 | this, | |
4316 | rowOrCol, | |
4317 | mouseEv.GetX() + GetRowLabelSize(), | |
4318 | mouseEv.GetY() + GetColLabelSize(), | |
4319 | mouseEv); | |
4320 | ||
4321 | GetEventHandler()->ProcessEvent(gridEvt); | |
4322 | } | |
8f177c8e | 4323 | |
8a3e536c VZ |
4324 | // Generate a grid event based on a mouse event and return: |
4325 | // -1 if the event was vetoed | |
4326 | // +1 if the event was processed (but not vetoed) | |
4327 | // 0 if the event wasn't handled | |
4328 | int | |
aced1133 | 4329 | wxGrid::SendEvent(const wxEventType type, |
8a3e536c | 4330 | int row, int col, |
27bb2c8c | 4331 | const wxMouseEvent& mouseEv) |
2d66e025 | 4332 | { |
2f024384 | 4333 | bool claimed, vetoed; |
fe7b9ed6 | 4334 | |
27bb2c8c | 4335 | if ( type == wxEVT_GRID_RANGE_SELECT ) |
97a9929e VZ |
4336 | { |
4337 | // Right now, it should _never_ end up here! | |
4338 | wxGridRangeSelectEvent gridEvt( GetId(), | |
4339 | type, | |
4340 | this, | |
8a3e536c VZ |
4341 | m_selectedBlockTopLeft, |
4342 | m_selectedBlockBottomRight, | |
ca65c044 | 4343 | true, |
8b5f6d9d | 4344 | mouseEv); |
97a9929e VZ |
4345 | |
4346 | claimed = GetEventHandler()->ProcessEvent(gridEvt); | |
4347 | vetoed = !gridEvt.IsAllowed(); | |
4348 | } | |
2b73a34e RD |
4349 | else if ( type == wxEVT_GRID_LABEL_LEFT_CLICK || |
4350 | type == wxEVT_GRID_LABEL_LEFT_DCLICK || | |
4351 | type == wxEVT_GRID_LABEL_RIGHT_CLICK || | |
4352 | type == wxEVT_GRID_LABEL_RIGHT_DCLICK ) | |
4353 | { | |
4354 | wxPoint pos = mouseEv.GetPosition(); | |
4355 | ||
4356 | if ( mouseEv.GetEventObject() == GetGridRowLabelWindow() ) | |
4357 | pos.y += GetColLabelSize(); | |
4358 | if ( mouseEv.GetEventObject() == GetGridColLabelWindow() ) | |
4359 | pos.x += GetRowLabelSize(); | |
c71b2126 | 4360 | |
2b73a34e RD |
4361 | wxGridEvent gridEvt( GetId(), |
4362 | type, | |
4363 | this, | |
4364 | row, col, | |
4365 | pos.x, | |
4366 | pos.y, | |
4367 | false, | |
8b5f6d9d | 4368 | mouseEv); |
2b73a34e RD |
4369 | claimed = GetEventHandler()->ProcessEvent(gridEvt); |
4370 | vetoed = !gridEvt.IsAllowed(); | |
4371 | } | |
fe7b9ed6 | 4372 | else |
97a9929e VZ |
4373 | { |
4374 | wxGridEvent gridEvt( GetId(), | |
4375 | type, | |
4376 | this, | |
4377 | row, col, | |
4378 | mouseEv.GetX() + GetRowLabelSize(), | |
4379 | mouseEv.GetY() + GetColLabelSize(), | |
ca65c044 | 4380 | false, |
8b5f6d9d | 4381 | mouseEv); |
97a9929e VZ |
4382 | claimed = GetEventHandler()->ProcessEvent(gridEvt); |
4383 | vetoed = !gridEvt.IsAllowed(); | |
4384 | } | |
4385 | ||
4386 | // A Veto'd event may not be `claimed' so test this first | |
4db6714b KH |
4387 | if (vetoed) |
4388 | return -1; | |
4389 | ||
97a9929e | 4390 | return claimed ? 1 : 0; |
f85afd4e MB |
4391 | } |
4392 | ||
8a3e536c | 4393 | // Generate a grid event of specified type, return value same as above |
f85afd4e | 4394 | // |
763163a8 VZ |
4395 | int |
4396 | wxGrid::SendEvent(const wxEventType type, int row, int col, const wxString& s) | |
f85afd4e | 4397 | { |
27bb2c8c VZ |
4398 | wxGridEvent gridEvt( GetId(), type, this, row, col ); |
4399 | gridEvt.SetString(s); | |
8f177c8e | 4400 | |
27bb2c8c | 4401 | const bool claimed = GetEventHandler()->ProcessEvent(gridEvt); |
fe7b9ed6 | 4402 | |
97a9929e | 4403 | // A Veto'd event may not be `claimed' so test this first |
27bb2c8c | 4404 | if ( !gridEvt.IsAllowed() ) |
4db6714b KH |
4405 | return -1; |
4406 | ||
97a9929e | 4407 | return claimed ? 1 : 0; |
f85afd4e MB |
4408 | } |
4409 | ||
2d66e025 | 4410 | void wxGrid::OnPaint( wxPaintEvent& WXUNUSED(event) ) |
f85afd4e | 4411 | { |
3d59537f DS |
4412 | // needed to prevent zillions of paint events on MSW |
4413 | wxPaintDC dc(this); | |
8f177c8e | 4414 | } |
f85afd4e | 4415 | |
bca7bfc8 | 4416 | void wxGrid::Refresh(bool eraseb, const wxRect* rect) |
27f35b66 | 4417 | { |
ad603bf7 VZ |
4418 | // Don't do anything if between Begin/EndBatch... |
4419 | // EndBatch() will do all this on the last nested one anyway. | |
f9549841 | 4420 | if ( m_created && !GetBatchCount() ) |
27f35b66 | 4421 | { |
bca7bfc8 | 4422 | // Refresh to get correct scrolled position: |
4db6714b | 4423 | wxScrolledWindow::Refresh(eraseb, rect); |
27f35b66 | 4424 | |
27f35b66 SN |
4425 | if (rect) |
4426 | { | |
bca7bfc8 SN |
4427 | int rect_x, rect_y, rectWidth, rectHeight; |
4428 | int width_label, width_cell, height_label, height_cell; | |
4429 | int x, y; | |
4430 | ||
2f024384 | 4431 | // Copy rectangle can get scroll offsets.. |
bca7bfc8 SN |
4432 | rect_x = rect->GetX(); |
4433 | rect_y = rect->GetY(); | |
4434 | rectWidth = rect->GetWidth(); | |
4435 | rectHeight = rect->GetHeight(); | |
27f35b66 | 4436 | |
bca7bfc8 | 4437 | width_label = m_rowLabelWidth - rect_x; |
4db6714b KH |
4438 | if (width_label > rectWidth) |
4439 | width_label = rectWidth; | |
27f35b66 | 4440 | |
bca7bfc8 | 4441 | height_label = m_colLabelHeight - rect_y; |
a9339fe2 DS |
4442 | if (height_label > rectHeight) |
4443 | height_label = rectHeight; | |
27f35b66 | 4444 | |
bca7bfc8 SN |
4445 | if (rect_x > m_rowLabelWidth) |
4446 | { | |
4447 | x = rect_x - m_rowLabelWidth; | |
4448 | width_cell = rectWidth; | |
4449 | } | |
4450 | else | |
4451 | { | |
4452 | x = 0; | |
4453 | width_cell = rectWidth - (m_rowLabelWidth - rect_x); | |
4454 | } | |
4455 | ||
4456 | if (rect_y > m_colLabelHeight) | |
4457 | { | |
4458 | y = rect_y - m_colLabelHeight; | |
4459 | height_cell = rectHeight; | |
4460 | } | |
4461 | else | |
4462 | { | |
4463 | y = 0; | |
4464 | height_cell = rectHeight - (m_colLabelHeight - rect_y); | |
4465 | } | |
4466 | ||
4467 | // Paint corner label part intersecting rect. | |
4468 | if ( width_label > 0 && height_label > 0 ) | |
4469 | { | |
4470 | wxRect anotherrect(rect_x, rect_y, width_label, height_label); | |
4471 | m_cornerLabelWin->Refresh(eraseb, &anotherrect); | |
4472 | } | |
4473 | ||
4474 | // Paint col labels part intersecting rect. | |
4475 | if ( width_cell > 0 && height_label > 0 ) | |
4476 | { | |
4477 | wxRect anotherrect(x, rect_y, width_cell, height_label); | |
ad805b9e | 4478 | m_colWindow->Refresh(eraseb, &anotherrect); |
bca7bfc8 SN |
4479 | } |
4480 | ||
4481 | // Paint row labels part intersecting rect. | |
4482 | if ( width_label > 0 && height_cell > 0 ) | |
4483 | { | |
4484 | wxRect anotherrect(rect_x, y, width_label, height_cell); | |
4485 | m_rowLabelWin->Refresh(eraseb, &anotherrect); | |
4486 | } | |
4487 | ||
4488 | // Paint cell area part intersecting rect. | |
4489 | if ( width_cell > 0 && height_cell > 0 ) | |
4490 | { | |
4491 | wxRect anotherrect(x, y, width_cell, height_cell); | |
4492 | m_gridWin->Refresh(eraseb, &anotherrect); | |
4493 | } | |
4494 | } | |
4495 | else | |
4496 | { | |
4497 | m_cornerLabelWin->Refresh(eraseb, NULL); | |
ad805b9e | 4498 | m_colWindow->Refresh(eraseb, NULL); |
bca7bfc8 SN |
4499 | m_rowLabelWin->Refresh(eraseb, NULL); |
4500 | m_gridWin->Refresh(eraseb, NULL); | |
4501 | } | |
27f35b66 SN |
4502 | } |
4503 | } | |
f85afd4e | 4504 | |
c71b2126 | 4505 | void wxGrid::OnSize(wxSizeEvent& WXUNUSED(event)) |
f85afd4e | 4506 | { |
b93aafab JS |
4507 | if (m_targetWindow != this) // check whether initialisation has been done |
4508 | { | |
f1ff7df0 VZ |
4509 | // reposition our children windows |
4510 | CalcWindowSizes(); | |
b93aafab | 4511 | } |
f85afd4e MB |
4512 | } |
4513 | ||
2d66e025 | 4514 | void wxGrid::OnKeyDown( wxKeyEvent& event ) |
f85afd4e | 4515 | { |
2d66e025 | 4516 | if ( m_inOnKeyDown ) |
f85afd4e | 4517 | { |
2d66e025 MB |
4518 | // shouldn't be here - we are going round in circles... |
4519 | // | |
07296f0b | 4520 | wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") ); |
f85afd4e MB |
4521 | } |
4522 | ||
ca65c044 | 4523 | m_inOnKeyDown = true; |
f85afd4e | 4524 | |
2d66e025 | 4525 | // propagate the event up and see if it gets processed |
2d66e025 MB |
4526 | wxWindow *parent = GetParent(); |
4527 | wxKeyEvent keyEvt( event ); | |
4528 | keyEvt.SetEventObject( parent ); | |
4529 | ||
4530 | if ( !parent->GetEventHandler()->ProcessEvent( keyEvt ) ) | |
f85afd4e | 4531 | { |
bcb614b3 RR |
4532 | if (GetLayoutDirection() == wxLayout_RightToLeft) |
4533 | { | |
4534 | if (event.GetKeyCode() == WXK_RIGHT) | |
4535 | event.m_keyCode = WXK_LEFT; | |
4536 | else if (event.GetKeyCode() == WXK_LEFT) | |
4537 | event.m_keyCode = WXK_RIGHT; | |
4538 | } | |
c71b2126 | 4539 | |
2d66e025 | 4540 | // try local handlers |
12a3f227 | 4541 | switch ( event.GetKeyCode() ) |
2d66e025 MB |
4542 | { |
4543 | case WXK_UP: | |
4544 | if ( event.ControlDown() ) | |
5c8fc7c1 | 4545 | MoveCursorUpBlock( event.ShiftDown() ); |
2d66e025 | 4546 | else |
5c8fc7c1 | 4547 | MoveCursorUp( event.ShiftDown() ); |
2d66e025 | 4548 | break; |
f85afd4e | 4549 | |
2d66e025 MB |
4550 | case WXK_DOWN: |
4551 | if ( event.ControlDown() ) | |
5c8fc7c1 | 4552 | MoveCursorDownBlock( event.ShiftDown() ); |
2d66e025 | 4553 | else |
5c8fc7c1 | 4554 | MoveCursorDown( event.ShiftDown() ); |
2d66e025 | 4555 | break; |
8f177c8e | 4556 | |
2d66e025 MB |
4557 | case WXK_LEFT: |
4558 | if ( event.ControlDown() ) | |
5c8fc7c1 | 4559 | MoveCursorLeftBlock( event.ShiftDown() ); |
2d66e025 | 4560 | else |
5c8fc7c1 | 4561 | MoveCursorLeft( event.ShiftDown() ); |
2d66e025 MB |
4562 | break; |
4563 | ||
4564 | case WXK_RIGHT: | |
4565 | if ( event.ControlDown() ) | |
5c8fc7c1 | 4566 | MoveCursorRightBlock( event.ShiftDown() ); |
2d66e025 | 4567 | else |
5c8fc7c1 | 4568 | MoveCursorRight( event.ShiftDown() ); |
2d66e025 | 4569 | break; |
b99be8fb | 4570 | |
2d66e025 | 4571 | case WXK_RETURN: |
a4f7bf58 | 4572 | case WXK_NUMPAD_ENTER: |
58dd5b3b MB |
4573 | if ( event.ControlDown() ) |
4574 | { | |
4575 | event.Skip(); // to let the edit control have the return | |
4576 | } | |
4577 | else | |
4578 | { | |
f6bcfd97 BP |
4579 | if ( GetGridCursorRow() < GetNumberRows()-1 ) |
4580 | { | |
4581 | MoveCursorDown( event.ShiftDown() ); | |
4582 | } | |
4583 | else | |
4584 | { | |
4585 | // at the bottom of a column | |
13f6e9e8 | 4586 | DisableCellEditControl(); |
f6bcfd97 | 4587 | } |
58dd5b3b | 4588 | } |
2d66e025 MB |
4589 | break; |
4590 | ||
5c8fc7c1 | 4591 | case WXK_ESCAPE: |
e32352cf | 4592 | ClearSelection(); |
5c8fc7c1 SN |
4593 | break; |
4594 | ||
2c9a89e0 RD |
4595 | case WXK_TAB: |
4596 | if (event.ShiftDown()) | |
f6bcfd97 BP |
4597 | { |
4598 | if ( GetGridCursorCol() > 0 ) | |
4599 | { | |
ca65c044 | 4600 | MoveCursorLeft( false ); |
f6bcfd97 BP |
4601 | } |
4602 | else | |
4603 | { | |
4604 | // at left of grid | |
13f6e9e8 | 4605 | DisableCellEditControl(); |
f6bcfd97 BP |
4606 | } |
4607 | } | |
2c9a89e0 | 4608 | else |
f6bcfd97 | 4609 | { |
ccdee36f | 4610 | if ( GetGridCursorCol() < GetNumberCols() - 1 ) |
f6bcfd97 | 4611 | { |
ca65c044 | 4612 | MoveCursorRight( false ); |
f6bcfd97 BP |
4613 | } |
4614 | else | |
4615 | { | |
4616 | // at right of grid | |
13f6e9e8 | 4617 | DisableCellEditControl(); |
f6bcfd97 BP |
4618 | } |
4619 | } | |
2c9a89e0 RD |
4620 | break; |
4621 | ||
2d66e025 MB |
4622 | case WXK_HOME: |
4623 | if ( event.ControlDown() ) | |
4624 | { | |
8a3e536c | 4625 | GoToCell(0, 0); |
2d66e025 MB |
4626 | } |
4627 | else | |
4628 | { | |
4629 | event.Skip(); | |
4630 | } | |
4631 | break; | |
4632 | ||
4633 | case WXK_END: | |
4634 | if ( event.ControlDown() ) | |
4635 | { | |
8a3e536c | 4636 | GoToCell(m_numRows - 1, m_numCols - 1); |
2d66e025 MB |
4637 | } |
4638 | else | |
4639 | { | |
4640 | event.Skip(); | |
4641 | } | |
4642 | break; | |
4643 | ||
faa94f3e | 4644 | case WXK_PAGEUP: |
2d66e025 MB |
4645 | MovePageUp(); |
4646 | break; | |
4647 | ||
faa94f3e | 4648 | case WXK_PAGEDOWN: |
2d66e025 MB |
4649 | MovePageDown(); |
4650 | break; | |
4651 | ||
07296f0b | 4652 | case WXK_SPACE: |
32b4e9ec VZ |
4653 | // Ctrl-Space selects the current column, Shift-Space -- the |
4654 | // current row and Ctrl-Shift-Space -- everything | |
4655 | switch ( m_selection ? event.GetModifiers() : wxMOD_NONE ) | |
aa5e1f75 | 4656 | { |
32b4e9ec VZ |
4657 | case wxMOD_CONTROL: |
4658 | m_selection->SelectCol(m_currentCellCoords.GetCol()); | |
4659 | break; | |
ccdee36f | 4660 | |
32b4e9ec VZ |
4661 | case wxMOD_SHIFT: |
4662 | m_selection->SelectRow(m_currentCellCoords.GetRow()); | |
4663 | break; | |
4664 | ||
4665 | case wxMOD_CONTROL | wxMOD_SHIFT: | |
4666 | m_selection->SelectBlock(0, 0, | |
4667 | m_numRows - 1, m_numCols - 1); | |
4668 | break; | |
4669 | ||
4670 | case wxMOD_NONE: | |
4671 | if ( !IsEditable() ) | |
4672 | { | |
4673 | MoveCursorRight(false); | |
4674 | break; | |
4675 | } | |
4676 | //else: fall through | |
4677 | ||
4678 | default: | |
4679 | event.Skip(); | |
4680 | } | |
ccdee36f | 4681 | break; |
07296f0b | 4682 | |
2d66e025 | 4683 | default: |
63e2147c | 4684 | event.Skip(); |
025562fe | 4685 | break; |
2d66e025 | 4686 | } |
f85afd4e MB |
4687 | } |
4688 | ||
ca65c044 | 4689 | m_inOnKeyDown = false; |
f85afd4e MB |
4690 | } |
4691 | ||
f6bcfd97 BP |
4692 | void wxGrid::OnKeyUp( wxKeyEvent& event ) |
4693 | { | |
4694 | // try local handlers | |
4695 | // | |
12a3f227 | 4696 | if ( event.GetKeyCode() == WXK_SHIFT ) |
f6bcfd97 | 4697 | { |
8a3e536c VZ |
4698 | if ( m_selectedBlockTopLeft != wxGridNoCellCoords && |
4699 | m_selectedBlockBottomRight != wxGridNoCellCoords ) | |
3f3dc2ef VZ |
4700 | { |
4701 | if ( m_selection ) | |
4702 | { | |
a9339fe2 | 4703 | m_selection->SelectBlock( |
8a3e536c VZ |
4704 | m_selectedBlockTopLeft, |
4705 | m_selectedBlockBottomRight, | |
8b5f6d9d | 4706 | event); |
3f3dc2ef VZ |
4707 | } |
4708 | } | |
4709 | ||
8a3e536c VZ |
4710 | m_selectedBlockTopLeft = wxGridNoCellCoords; |
4711 | m_selectedBlockBottomRight = wxGridNoCellCoords; | |
4712 | m_selectedBlockCorner = wxGridNoCellCoords; | |
f6bcfd97 BP |
4713 | } |
4714 | } | |
4715 | ||
63e2147c RD |
4716 | void wxGrid::OnChar( wxKeyEvent& event ) |
4717 | { | |
4718 | // is it possible to edit the current cell at all? | |
4719 | if ( !IsCellEditControlEnabled() && CanEnableCellControl() ) | |
4720 | { | |
4721 | // yes, now check whether the cells editor accepts the key | |
4722 | int row = m_currentCellCoords.GetRow(); | |
4723 | int col = m_currentCellCoords.GetCol(); | |
2f024384 | 4724 | wxGridCellAttr *attr = GetCellAttr(row, col); |
63e2147c RD |
4725 | wxGridCellEditor *editor = attr->GetEditor(this, row, col); |
4726 | ||
4727 | // <F2> is special and will always start editing, for | |
4728 | // other keys - ask the editor itself | |
4729 | if ( (event.GetKeyCode() == WXK_F2 && !event.HasModifiers()) | |
4730 | || editor->IsAcceptedKey(event) ) | |
4731 | { | |
4732 | // ensure cell is visble | |
4733 | MakeCellVisible(row, col); | |
4734 | EnableCellEditControl(); | |
4735 | ||
4736 | // a problem can arise if the cell is not completely | |
4737 | // visible (even after calling MakeCellVisible the | |
4738 | // control is not created and calling StartingKey will | |
4739 | // crash the app | |
046d682f | 4740 | if ( event.GetKeyCode() != WXK_F2 && editor->IsCreated() && m_cellEditCtrlEnabled ) |
63e2147c RD |
4741 | editor->StartingKey(event); |
4742 | } | |
4743 | else | |
4744 | { | |
4745 | event.Skip(); | |
4746 | } | |
4747 | ||
4748 | editor->DecRef(); | |
4749 | attr->DecRef(); | |
4750 | } | |
4751 | else | |
4752 | { | |
4753 | event.Skip(); | |
4754 | } | |
4755 | } | |
4756 | ||
2796cce3 | 4757 | void wxGrid::OnEraseBackground(wxEraseEvent&) |
508011ce VZ |
4758 | { |
4759 | } | |
07296f0b | 4760 | |
8a3e536c | 4761 | bool wxGrid::SetCurrentCell( const wxGridCellCoords& coords ) |
66242c80 | 4762 | { |
8a3e536c | 4763 | if ( SendEvent(wxEVT_GRID_SELECT_CELL, coords) == -1 ) |
f6bcfd97 | 4764 | { |
8a3e536c VZ |
4765 | // the event has been vetoed - do nothing |
4766 | return false; | |
f6bcfd97 BP |
4767 | } |
4768 | ||
9553702e | 4769 | #if !defined(__WXMAC__) |
bee19958 DS |
4770 | wxClientDC dc( m_gridWin ); |
4771 | PrepareDC( dc ); | |
5d38a5f3 | 4772 | #endif |
f6bcfd97 | 4773 | |
2a7750d9 | 4774 | if ( m_currentCellCoords != wxGridNoCellCoords ) |
2d66e025 | 4775 | { |
b54ba671 | 4776 | DisableCellEditControl(); |
07296f0b | 4777 | |
ca65c044 | 4778 | if ( IsVisible( m_currentCellCoords, false ) ) |
f6bcfd97 BP |
4779 | { |
4780 | wxRect r; | |
bee19958 | 4781 | r = BlockToDeviceRect( m_currentCellCoords, m_currentCellCoords ); |
f6bcfd97 BP |
4782 | if ( !m_gridLinesEnabled ) |
4783 | { | |
4784 | r.x--; | |
4785 | r.y--; | |
4786 | r.width++; | |
4787 | r.height++; | |
4788 | } | |
d1c0b4f9 | 4789 | |
3ed884a0 | 4790 | wxGridCellCoordsArray cells = CalcCellsExposed( r ); |
84912ef8 | 4791 | |
f6bcfd97 BP |
4792 | // Otherwise refresh redraws the highlight! |
4793 | m_currentCellCoords = coords; | |
275c4ae4 | 4794 | |
9553702e | 4795 | #if defined(__WXMAC__) |
5d38a5f3 JS |
4796 | m_gridWin->Refresh(true /*, & r */); |
4797 | #else | |
bee19958 | 4798 | DrawGridCellArea( dc, cells ); |
f6bcfd97 | 4799 | DrawAllGridLines( dc, r ); |
5d38a5f3 | 4800 | #endif |
f6bcfd97 | 4801 | } |
66242c80 | 4802 | } |
8f177c8e | 4803 | |
2d66e025 MB |
4804 | m_currentCellCoords = coords; |
4805 | ||
bee19958 | 4806 | wxGridCellAttr *attr = GetCellAttr( coords ); |
76c66f19 | 4807 | #if !defined(__WXMAC__) |
bee19958 | 4808 | DrawCellHighlight( dc, attr ); |
5d38a5f3 | 4809 | #endif |
2a7750d9 | 4810 | attr->DecRef(); |
8a3e536c VZ |
4811 | |
4812 | return true; | |
66242c80 MB |
4813 | } |
4814 | ||
8a3e536c VZ |
4815 | void |
4816 | wxGrid::UpdateBlockBeingSelected(int topRow, int leftCol, | |
4817 | int bottomRow, int rightCol) | |
c9097836 | 4818 | { |
3f3dc2ef | 4819 | if ( m_selection ) |
c9097836 | 4820 | { |
8a3e536c | 4821 | switch ( m_selection->GetSelectionMode() ) |
3f3dc2ef | 4822 | { |
8a3e536c VZ |
4823 | default: |
4824 | wxFAIL_MSG( "unknown selection mode" ); | |
4825 | // fall through | |
4826 | ||
4827 | case wxGridSelectCells: | |
4828 | // arbitrary blocks selection allowed so just use the cell | |
4829 | // coordinates as is | |
4830 | break; | |
4831 | ||
4832 | case wxGridSelectRows: | |
4833 | // only full rows selection allowd, ensure that we do select | |
4834 | // full rows | |
4835 | leftCol = 0; | |
4836 | rightCol = GetNumberCols() - 1; | |
4837 | break; | |
4838 | ||
4839 | case wxGridSelectColumns: | |
4840 | // same as above but for columns | |
4841 | topRow = 0; | |
4842 | bottomRow = GetNumberRows() - 1; | |
4843 | break; | |
4844 | ||
4845 | case wxGridSelectRowsOrColumns: | |
4846 | // in this mode we can select only full rows or full columns so | |
4847 | // it doesn't make sense to select blocks at all (and we can't | |
4848 | // extend the block because there is no preferred direction, we | |
4849 | // could only extend it to cover the entire grid but this is | |
4850 | // not useful) | |
4851 | return; | |
3f3dc2ef | 4852 | } |
c9097836 | 4853 | } |
3f3dc2ef | 4854 | |
8a3e536c VZ |
4855 | m_selectedBlockCorner = wxGridCellCoords(bottomRow, rightCol); |
4856 | MakeCellVisible(m_selectedBlockCorner); | |
4857 | ||
1372f8cc VZ |
4858 | EnsureFirstLessThanSecond(topRow, bottomRow); |
4859 | EnsureFirstLessThanSecond(leftCol, rightCol); | |
c9097836 | 4860 | |
8a3e536c VZ |
4861 | wxGridCellCoords updateTopLeft = wxGridCellCoords(topRow, leftCol), |
4862 | updateBottomRight = wxGridCellCoords(bottomRow, rightCol); | |
c9097836 | 4863 | |
3ed884a0 | 4864 | // First the case that we selected a completely new area |
8a3e536c VZ |
4865 | if ( m_selectedBlockTopLeft == wxGridNoCellCoords || |
4866 | m_selectedBlockBottomRight == wxGridNoCellCoords ) | |
3ed884a0 SN |
4867 | { |
4868 | wxRect rect; | |
4869 | rect = BlockToDeviceRect( wxGridCellCoords ( topRow, leftCol ), | |
4870 | wxGridCellCoords ( bottomRow, rightCol ) ); | |
ca65c044 | 4871 | m_gridWin->Refresh( false, &rect ); |
3ed884a0 | 4872 | } |
2f024384 | 4873 | |
3ed884a0 | 4874 | // Now handle changing an existing selection area. |
8a3e536c VZ |
4875 | else if ( m_selectedBlockTopLeft != updateTopLeft || |
4876 | m_selectedBlockBottomRight != updateBottomRight ) | |
c9097836 MB |
4877 | { |
4878 | // Compute two optimal update rectangles: | |
4879 | // Either one rectangle is a real subset of the | |
4880 | // other, or they are (almost) disjoint! | |
4881 | wxRect rect[4]; | |
4882 | bool need_refresh[4]; | |
4883 | need_refresh[0] = | |
4884 | need_refresh[1] = | |
4885 | need_refresh[2] = | |
ca65c044 | 4886 | need_refresh[3] = false; |
c9097836 MB |
4887 | int i; |
4888 | ||
4889 | // Store intermediate values | |
8a3e536c VZ |
4890 | wxCoord oldLeft = m_selectedBlockTopLeft.GetCol(); |
4891 | wxCoord oldTop = m_selectedBlockTopLeft.GetRow(); | |
4892 | wxCoord oldRight = m_selectedBlockBottomRight.GetCol(); | |
4893 | wxCoord oldBottom = m_selectedBlockBottomRight.GetRow(); | |
c9097836 MB |
4894 | |
4895 | // Determine the outer/inner coordinates. | |
1372f8cc VZ |
4896 | EnsureFirstLessThanSecond(oldLeft, leftCol); |
4897 | EnsureFirstLessThanSecond(oldTop, topRow); | |
4898 | EnsureFirstLessThanSecond(rightCol, oldRight); | |
4899 | EnsureFirstLessThanSecond(bottomRow, oldBottom); | |
c9097836 MB |
4900 | |
4901 | // Now, either the stuff marked old is the outer | |
4902 | // rectangle or we don't have a situation where one | |
4903 | // is contained in the other. | |
4904 | ||
4905 | if ( oldLeft < leftCol ) | |
4906 | { | |
3ed884a0 SN |
4907 | // Refresh the newly selected or deselected |
4908 | // area to the left of the old or new selection. | |
ca65c044 | 4909 | need_refresh[0] = true; |
a9339fe2 DS |
4910 | rect[0] = BlockToDeviceRect( |
4911 | wxGridCellCoords( oldTop, oldLeft ), | |
4912 | wxGridCellCoords( oldBottom, leftCol - 1 ) ); | |
c9097836 MB |
4913 | } |
4914 | ||
2f024384 | 4915 | if ( oldTop < topRow ) |
c9097836 | 4916 | { |
3ed884a0 SN |
4917 | // Refresh the newly selected or deselected |
4918 | // area above the old or new selection. | |
ca65c044 | 4919 | need_refresh[1] = true; |
2f024384 DS |
4920 | rect[1] = BlockToDeviceRect( |
4921 | wxGridCellCoords( oldTop, leftCol ), | |
4922 | wxGridCellCoords( topRow - 1, rightCol ) ); | |
c9097836 MB |
4923 | } |
4924 | ||
4925 | if ( oldRight > rightCol ) | |
4926 | { | |
3ed884a0 SN |
4927 | // Refresh the newly selected or deselected |
4928 | // area to the right of the old or new selection. | |
ca65c044 | 4929 | need_refresh[2] = true; |
2f024384 | 4930 | rect[2] = BlockToDeviceRect( |
a9339fe2 DS |
4931 | wxGridCellCoords( oldTop, rightCol + 1 ), |
4932 | wxGridCellCoords( oldBottom, oldRight ) ); | |
c9097836 MB |
4933 | } |
4934 | ||
4935 | if ( oldBottom > bottomRow ) | |
4936 | { | |
3ed884a0 SN |
4937 | // Refresh the newly selected or deselected |
4938 | // area below the old or new selection. | |
ca65c044 | 4939 | need_refresh[3] = true; |
2f024384 | 4940 | rect[3] = BlockToDeviceRect( |
a9339fe2 DS |
4941 | wxGridCellCoords( bottomRow + 1, leftCol ), |
4942 | wxGridCellCoords( oldBottom, rightCol ) ); | |
c9097836 MB |
4943 | } |
4944 | ||
c9097836 MB |
4945 | // various Refresh() calls |
4946 | for (i = 0; i < 4; i++ ) | |
4947 | if ( need_refresh[i] && rect[i] != wxGridNoCellRect ) | |
ca65c044 | 4948 | m_gridWin->Refresh( false, &(rect[i]) ); |
c9097836 | 4949 | } |
2f024384 DS |
4950 | |
4951 | // change selection | |
8a3e536c VZ |
4952 | m_selectedBlockTopLeft = updateTopLeft; |
4953 | m_selectedBlockBottomRight = updateBottomRight; | |
c9097836 MB |
4954 | } |
4955 | ||
2d66e025 MB |
4956 | // |
4957 | // ------ functions to get/send data (see also public functions) | |
4958 | // | |
4959 | ||
4960 | bool wxGrid::GetModelValues() | |
66242c80 | 4961 | { |
bca7bfc8 SN |
4962 | // Hide the editor, so it won't hide a changed value. |
4963 | HideCellEditControl(); | |
c6707d16 | 4964 | |
2d66e025 | 4965 | if ( m_table ) |
66242c80 | 4966 | { |
2d66e025 | 4967 | // all we need to do is repaint the grid |
66242c80 | 4968 | // |
2d66e025 | 4969 | m_gridWin->Refresh(); |
ca65c044 | 4970 | return true; |
66242c80 | 4971 | } |
8f177c8e | 4972 | |
ca65c044 | 4973 | return false; |
66242c80 MB |
4974 | } |
4975 | ||
2d66e025 | 4976 | bool wxGrid::SetModelValues() |
f85afd4e | 4977 | { |
2d66e025 | 4978 | int row, col; |
8f177c8e | 4979 | |
c6707d16 SN |
4980 | // Disable the editor, so it won't hide a changed value. |
4981 | // Do we also want to save the current value of the editor first? | |
4982 | // I think so ... | |
c6707d16 SN |
4983 | DisableCellEditControl(); |
4984 | ||
2d66e025 MB |
4985 | if ( m_table ) |
4986 | { | |
56b6cf26 | 4987 | for ( row = 0; row < m_numRows; row++ ) |
f85afd4e | 4988 | { |
56b6cf26 | 4989 | for ( col = 0; col < m_numCols; col++ ) |
f85afd4e | 4990 | { |
2d66e025 | 4991 | m_table->SetValue( row, col, GetCellValue(row, col) ); |
f85afd4e MB |
4992 | } |
4993 | } | |
8f177c8e | 4994 | |
ca65c044 | 4995 | return true; |
f85afd4e MB |
4996 | } |
4997 | ||
ca65c044 | 4998 | return false; |
f85afd4e MB |
4999 | } |
5000 | ||
2d66e025 MB |
5001 | // Note - this function only draws cells that are in the list of |
5002 | // exposed cells (usually set from the update region by | |
5003 | // CalcExposedCells) | |
5004 | // | |
d10f4bf9 | 5005 | void wxGrid::DrawGridCellArea( wxDC& dc, const wxGridCellCoordsArray& cells ) |
f85afd4e | 5006 | { |
4db6714b KH |
5007 | if ( !m_numRows || !m_numCols ) |
5008 | return; | |
60ff3b99 | 5009 | |
dc1f566f | 5010 | int i, numCells = cells.GetCount(); |
27f35b66 SN |
5011 | int row, col, cell_rows, cell_cols; |
5012 | wxGridCellCoordsArray redrawCells; | |
60ff3b99 | 5013 | |
a9339fe2 | 5014 | for ( i = numCells - 1; i >= 0; i-- ) |
f85afd4e | 5015 | { |
27f35b66 SN |
5016 | row = cells[i].GetRow(); |
5017 | col = cells[i].GetCol(); | |
5018 | GetCellSize( row, col, &cell_rows, &cell_cols ); | |
5019 | ||
5020 | // If this cell is part of a multicell block, find owner for repaint | |
5021 | if ( cell_rows <= 0 || cell_cols <= 0 ) | |
5022 | { | |
a9339fe2 | 5023 | wxGridCellCoords cell( row + cell_rows, col + cell_cols ); |
ca65c044 | 5024 | bool marked = false; |
56b6cf26 | 5025 | for ( int j = 0; j < numCells; j++ ) |
27f35b66 SN |
5026 | { |
5027 | if ( cell == cells[j] ) | |
5028 | { | |
ca65c044 | 5029 | marked = true; |
3ed884a0 | 5030 | break; |
27f35b66 SN |
5031 | } |
5032 | } | |
2f024384 | 5033 | |
27f35b66 SN |
5034 | if (!marked) |
5035 | { | |
5036 | int count = redrawCells.GetCount(); | |
dc1f566f | 5037 | for (int j = 0; j < count; j++) |
27f35b66 SN |
5038 | { |
5039 | if ( cell == redrawCells[j] ) | |
5040 | { | |
ca65c044 | 5041 | marked = true; |
27f35b66 SN |
5042 | break; |
5043 | } | |
5044 | } | |
2f024384 | 5045 | |
4db6714b KH |
5046 | if (!marked) |
5047 | redrawCells.Add( cell ); | |
27f35b66 | 5048 | } |
2f024384 DS |
5049 | |
5050 | // don't bother drawing this cell | |
5051 | continue; | |
27f35b66 SN |
5052 | } |
5053 | ||
5054 | // If this cell is empty, find cell to left that might want to overflow | |
5055 | if (m_table && m_table->IsEmptyCell(row, col)) | |
5056 | { | |
dc1f566f | 5057 | for ( int l = 0; l < cell_rows; l++ ) |
27f35b66 | 5058 | { |
56b6cf26 | 5059 | // find a cell in this row to leave already marked for repaint |
dc1f566f SN |
5060 | int left = col; |
5061 | for (int k = 0; k < int(redrawCells.GetCount()); k++) | |
5062 | if ((redrawCells[k].GetCol() < left) && | |
5063 | (redrawCells[k].GetRow() == row)) | |
2f024384 | 5064 | { |
4db6714b | 5065 | left = redrawCells[k].GetCol(); |
2f024384 | 5066 | } |
dc1f566f | 5067 | |
4db6714b KH |
5068 | if (left == col) |
5069 | left = 0; // oh well | |
dc1f566f | 5070 | |
2f024384 | 5071 | for (int j = col - 1; j >= left; j--) |
27f35b66 | 5072 | { |
2f024384 | 5073 | if (!m_table->IsEmptyCell(row + l, j)) |
27f35b66 | 5074 | { |
2f024384 | 5075 | if (GetCellOverflow(row + l, j)) |
27f35b66 | 5076 | { |
2f024384 | 5077 | wxGridCellCoords cell(row + l, j); |
ca65c044 | 5078 | bool marked = false; |
27f35b66 | 5079 | |
dc1f566f | 5080 | for (int k = 0; k < numCells; k++) |
27f35b66 SN |
5081 | { |
5082 | if ( cell == cells[k] ) | |
5083 | { | |
ca65c044 | 5084 | marked = true; |
27f35b66 SN |
5085 | break; |
5086 | } | |
5087 | } | |
4db6714b | 5088 | |
27f35b66 SN |
5089 | if (!marked) |
5090 | { | |
5091 | int count = redrawCells.GetCount(); | |
dc1f566f | 5092 | for (int k = 0; k < count; k++) |
27f35b66 SN |
5093 | { |
5094 | if ( cell == redrawCells[k] ) | |
5095 | { | |
ca65c044 | 5096 | marked = true; |
27f35b66 SN |
5097 | break; |
5098 | } | |
5099 | } | |
4db6714b KH |
5100 | if (!marked) |
5101 | redrawCells.Add( cell ); | |
27f35b66 SN |
5102 | } |
5103 | } | |
5104 | break; | |
5105 | } | |
5106 | } | |
5107 | } | |
5108 | } | |
4db6714b | 5109 | |
d10f4bf9 | 5110 | DrawCell( dc, cells[i] ); |
2d66e025 | 5111 | } |
27f35b66 SN |
5112 | |
5113 | numCells = redrawCells.GetCount(); | |
5114 | ||
56b6cf26 | 5115 | for ( i = numCells - 1; i >= 0; i-- ) |
27f35b66 SN |
5116 | { |
5117 | DrawCell( dc, redrawCells[i] ); | |
5118 | } | |
2d66e025 | 5119 | } |
8f177c8e | 5120 | |
7c8a8ad5 MB |
5121 | void wxGrid::DrawGridSpace( wxDC& dc ) |
5122 | { | |
f6bcfd97 BP |
5123 | int cw, ch; |
5124 | m_gridWin->GetClientSize( &cw, &ch ); | |
7c8a8ad5 | 5125 | |
f6bcfd97 BP |
5126 | int right, bottom; |
5127 | CalcUnscrolledPosition( cw, ch, &right, &bottom ); | |
7c8a8ad5 | 5128 | |
d4175745 | 5129 | int rightCol = m_numCols > 0 ? GetColRight(GetColAt( m_numCols - 1 )) : 0; |
2f024384 | 5130 | int bottomRow = m_numRows > 0 ? GetRowBottom(m_numRows - 1) : 0; |
7c8a8ad5 | 5131 | |
f6bcfd97 BP |
5132 | if ( right > rightCol || bottom > bottomRow ) |
5133 | { | |
5134 | int left, top; | |
5135 | CalcUnscrolledPosition( 0, 0, &left, &top ); | |
7c8a8ad5 | 5136 | |
ff72f628 | 5137 | dc.SetBrush(GetDefaultCellBackgroundColour()); |
f6bcfd97 | 5138 | dc.SetPen( *wxTRANSPARENT_PEN ); |
7c8a8ad5 | 5139 | |
f6bcfd97 BP |
5140 | if ( right > rightCol ) |
5141 | { | |
a9339fe2 | 5142 | dc.DrawRectangle( rightCol, top, right - rightCol, ch ); |
f6bcfd97 BP |
5143 | } |
5144 | ||
5145 | if ( bottom > bottomRow ) | |
5146 | { | |
a9339fe2 | 5147 | dc.DrawRectangle( left, bottomRow, cw, bottom - bottomRow ); |
f6bcfd97 BP |
5148 | } |
5149 | } | |
7c8a8ad5 MB |
5150 | } |
5151 | ||
2d66e025 MB |
5152 | void wxGrid::DrawCell( wxDC& dc, const wxGridCellCoords& coords ) |
5153 | { | |
ab79958a VZ |
5154 | int row = coords.GetRow(); |
5155 | int col = coords.GetCol(); | |
60ff3b99 | 5156 | |
7c1cb261 | 5157 | if ( GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) |
ab79958a VZ |
5158 | return; |
5159 | ||
5160 | // we draw the cell border ourselves | |
189d0213 VZ |
5161 | wxGridCellAttr* attr = GetCellAttr(row, col); |
5162 | ||
5163 | bool isCurrent = coords == m_currentCellCoords; | |
508011ce | 5164 | |
f6bcfd97 | 5165 | wxRect rect = CellToRect( row, col ); |
f85afd4e | 5166 | |
189d0213 | 5167 | // if the editor is shown, we should use it and not the renderer |
f6bcfd97 BP |
5168 | // Note: However, only if it is really _shown_, i.e. not hidden! |
5169 | if ( isCurrent && IsCellEditControlShown() ) | |
189d0213 | 5170 | { |
a9339fe2 | 5171 | // NB: this "#if..." is temporary and fixes a problem where the |
962a48f6 DS |
5172 | // edit control is erased by this code after being rendered. |
5173 | // On wxMac (QD build only), the cell editor is a wxTextCntl and is rendered | |
5174 | // implicitly, causing this out-of order render. | |
5d38a5f3 | 5175 | #if !defined(__WXMAC__) |
0b190b0f VZ |
5176 | wxGridCellEditor *editor = attr->GetEditor(this, row, col); |
5177 | editor->PaintBackground(rect, attr); | |
5178 | editor->DecRef(); | |
962a48f6 | 5179 | #endif |
189d0213 VZ |
5180 | } |
5181 | else | |
5182 | { | |
a9339fe2 | 5183 | // but all the rest is drawn by the cell renderer and hence may be customized |
0b190b0f VZ |
5184 | wxGridCellRenderer *renderer = attr->GetRenderer(this, row, col); |
5185 | renderer->Draw(*this, *attr, dc, rect, row, col, IsInSelection(coords)); | |
5186 | renderer->DecRef(); | |
189d0213 | 5187 | } |
07296f0b | 5188 | |
283b7808 VZ |
5189 | attr->DecRef(); |
5190 | } | |
07296f0b | 5191 | |
283b7808 | 5192 | void wxGrid::DrawCellHighlight( wxDC& dc, const wxGridCellAttr *attr ) |
07296f0b | 5193 | { |
760be3f7 VS |
5194 | // don't show highlight when the grid doesn't have focus |
5195 | if ( !HasFocus() ) | |
5196 | return; | |
5197 | ||
07296f0b RD |
5198 | int row = m_currentCellCoords.GetRow(); |
5199 | int col = m_currentCellCoords.GetCol(); | |
5200 | ||
7c1cb261 | 5201 | if ( GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) |
07296f0b RD |
5202 | return; |
5203 | ||
f6bcfd97 | 5204 | wxRect rect = CellToRect(row, col); |
07296f0b | 5205 | |
b3a7510d VZ |
5206 | // hmmm... what could we do here to show that the cell is disabled? |
5207 | // for now, I just draw a thinner border than for the other ones, but | |
5208 | // it doesn't look really good | |
b3a7510d | 5209 | |
d2520c85 RD |
5210 | int penWidth = attr->IsReadOnly() ? m_cellHighlightROPenWidth : m_cellHighlightPenWidth; |
5211 | ||
27f35b66 SN |
5212 | if (penWidth > 0) |
5213 | { | |
56b6cf26 DS |
5214 | // The center of the drawn line is where the position/width/height of |
5215 | // the rectangle is actually at (on wxMSW at least), so the | |
5216 | // size of the rectangle is reduced to compensate for the thickness of | |
5217 | // the line. If this is too strange on non-wxMSW platforms then | |
d2520c85 | 5218 | // please #ifdef this appropriately. |
4db6714b KH |
5219 | rect.x += penWidth / 2; |
5220 | rect.y += penWidth / 2; | |
5221 | rect.width -= penWidth - 1; | |
5222 | rect.height -= penWidth - 1; | |
d2520c85 | 5223 | |
d2520c85 | 5224 | // Now draw the rectangle |
73145b0e JS |
5225 | // use the cellHighlightColour if the cell is inside a selection, this |
5226 | // will ensure the cell is always visible. | |
ff72f628 VZ |
5227 | dc.SetPen(wxPen(IsInSelection(row,col) ? m_selectionForeground |
5228 | : m_cellHighlightColour, | |
5229 | penWidth)); | |
d2520c85 RD |
5230 | dc.SetBrush(*wxTRANSPARENT_BRUSH); |
5231 | dc.DrawRectangle(rect); | |
5232 | } | |
2d66e025 | 5233 | } |
f85afd4e | 5234 | |
3d3f3e37 VZ |
5235 | wxPen wxGrid::GetDefaultGridLinePen() |
5236 | { | |
ff72f628 | 5237 | return wxPen(GetGridLineColour()); |
3d3f3e37 VZ |
5238 | } |
5239 | ||
5240 | wxPen wxGrid::GetRowGridLinePen(int WXUNUSED(row)) | |
5241 | { | |
5242 | return GetDefaultGridLinePen(); | |
5243 | } | |
5244 | ||
5245 | wxPen wxGrid::GetColGridLinePen(int WXUNUSED(col)) | |
5246 | { | |
5247 | return GetDefaultGridLinePen(); | |
5248 | } | |
5249 | ||
2d66e025 MB |
5250 | void wxGrid::DrawCellBorder( wxDC& dc, const wxGridCellCoords& coords ) |
5251 | { | |
2d66e025 MB |
5252 | int row = coords.GetRow(); |
5253 | int col = coords.GetCol(); | |
7c1cb261 VZ |
5254 | if ( GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) |
5255 | return; | |
5256 | ||
60ff3b99 | 5257 | |
27f35b66 SN |
5258 | wxRect rect = CellToRect( row, col ); |
5259 | ||
2d66e025 | 5260 | // right hand border |
3d3f3e37 | 5261 | dc.SetPen( GetColGridLinePen(col) ); |
27f35b66 SN |
5262 | dc.DrawLine( rect.x + rect.width, rect.y, |
5263 | rect.x + rect.width, rect.y + rect.height + 1 ); | |
2d66e025 MB |
5264 | |
5265 | // bottom border | |
3d3f3e37 | 5266 | dc.SetPen( GetRowGridLinePen(row) ); |
2f024384 | 5267 | dc.DrawLine( rect.x, rect.y + rect.height, |
27f35b66 | 5268 | rect.x + rect.width, rect.y + rect.height); |
f85afd4e MB |
5269 | } |
5270 | ||
2f024384 | 5271 | void wxGrid::DrawHighlight(wxDC& dc, const wxGridCellCoordsArray& cells) |
b3a7510d | 5272 | { |
2a7750d9 MB |
5273 | // This if block was previously in wxGrid::OnPaint but that doesn't |
5274 | // seem to get called under wxGTK - MB | |
5275 | // | |
2f024384 | 5276 | if ( m_currentCellCoords == wxGridNoCellCoords && |
2a7750d9 MB |
5277 | m_numRows && m_numCols ) |
5278 | { | |
5279 | m_currentCellCoords.Set(0, 0); | |
5280 | } | |
5281 | ||
f6bcfd97 | 5282 | if ( IsCellEditControlShown() ) |
99306db2 VZ |
5283 | { |
5284 | // don't show highlight when the edit control is shown | |
5285 | return; | |
5286 | } | |
5287 | ||
b3a7510d VZ |
5288 | // if the active cell was repainted, repaint its highlight too because it |
5289 | // might have been damaged by the grid lines | |
d10f4bf9 | 5290 | size_t count = cells.GetCount(); |
b3a7510d VZ |
5291 | for ( size_t n = 0; n < count; n++ ) |
5292 | { | |
54181a33 VZ |
5293 | wxGridCellCoords cell = cells[n]; |
5294 | ||
5295 | // If we are using attributes, then we may have just exposed another | |
5296 | // cell in a partially-visible merged cluster of cells. If the "anchor" | |
5297 | // (upper left) cell of this merged cluster is the cell indicated by | |
5298 | // m_currentCellCoords, then we need to refresh the cell highlight even | |
5299 | // though the "anchor" itself is not part of our update segment. | |
5300 | if ( CanHaveAttributes() ) | |
5301 | { | |
5302 | int rows = 0, | |
5303 | cols = 0; | |
5304 | GetCellSize(cell.GetRow(), cell.GetCol(), &rows, &cols); | |
5305 | ||
5306 | if ( rows < 0 ) | |
5307 | cell.SetRow(cell.GetRow() + rows); | |
5308 | ||
5309 | if ( cols < 0 ) | |
5310 | cell.SetCol(cell.GetCol() + cols); | |
5311 | } | |
5312 | ||
5313 | if ( cell == m_currentCellCoords ) | |
b3a7510d VZ |
5314 | { |
5315 | wxGridCellAttr* attr = GetCellAttr(m_currentCellCoords); | |
5316 | DrawCellHighlight(dc, attr); | |
5317 | attr->DecRef(); | |
5318 | ||
5319 | break; | |
5320 | } | |
5321 | } | |
5322 | } | |
2d66e025 | 5323 | |
2d66e025 MB |
5324 | // This is used to redraw all grid lines e.g. when the grid line colour |
5325 | // has been changed | |
5326 | // | |
33ac7e6f | 5327 | void wxGrid::DrawAllGridLines( wxDC& dc, const wxRegion & WXUNUSED(reg) ) |
f85afd4e | 5328 | { |
9f7aee01 | 5329 | if ( !m_gridLinesEnabled ) |
4db6714b | 5330 | return; |
f85afd4e | 5331 | |
2d66e025 | 5332 | int top, bottom, left, right; |
796df70a | 5333 | |
ff72f628 VZ |
5334 | int cw, ch; |
5335 | m_gridWin->GetClientSize(&cw, &ch); | |
5336 | CalcUnscrolledPosition( 0, 0, &left, &top ); | |
5337 | CalcUnscrolledPosition( cw, ch, &right, &bottom ); | |
f85afd4e | 5338 | |
9496deb5 | 5339 | // avoid drawing grid lines past the last row and col |
9f7aee01 VZ |
5340 | if ( m_gridLinesClipHorz ) |
5341 | { | |
5342 | if ( !m_numCols ) | |
5343 | return; | |
5344 | ||
5345 | const int lastColRight = GetColRight(GetColAt(m_numCols - 1)); | |
5346 | if ( right > lastColRight ) | |
5347 | right = lastColRight; | |
5348 | } | |
5349 | ||
5350 | if ( m_gridLinesClipVert ) | |
5351 | { | |
5352 | if ( !m_numRows ) | |
5353 | return; | |
5354 | ||
5355 | const int lastRowBottom = GetRowBottom(m_numRows - 1); | |
5356 | if ( bottom > lastRowBottom ) | |
5357 | bottom = lastRowBottom; | |
5358 | } | |
9496deb5 | 5359 | |
27f35b66 | 5360 | // no gridlines inside multicells, clip them out |
d4175745 | 5361 | int leftCol = GetColPos( internalXToCol(left) ); |
a9339fe2 | 5362 | int topRow = internalYToRow(top); |
d4175745 | 5363 | int rightCol = GetColPos( internalXToCol(right) ); |
a967f048 | 5364 | int bottomRow = internalYToRow(bottom); |
27f35b66 | 5365 | |
c03bf0c7 | 5366 | wxRegion clippedcells(0, 0, cw, ch); |
27f35b66 | 5367 | |
ff72f628 | 5368 | int cell_rows, cell_cols; |
a967f048 | 5369 | wxRect rect; |
27f35b66 | 5370 | |
ff72f628 | 5371 | for ( int j = topRow; j <= bottomRow; j++ ) |
a967f048 | 5372 | { |
ff72f628 | 5373 | for ( int colPos = leftCol; colPos <= rightCol; colPos++ ) |
27f35b66 | 5374 | { |
ff72f628 | 5375 | int i = GetColAt( colPos ); |
d4175745 | 5376 | |
a967f048 RG |
5377 | GetCellSize( j, i, &cell_rows, &cell_cols ); |
5378 | if ((cell_rows > 1) || (cell_cols > 1)) | |
27f35b66 | 5379 | { |
a967f048 RG |
5380 | rect = CellToRect(j,i); |
5381 | CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); | |
5382 | clippedcells.Subtract(rect); | |
5383 | } | |
5384 | else if ((cell_rows < 0) || (cell_cols < 0)) | |
5385 | { | |
a9339fe2 | 5386 | rect = CellToRect(j + cell_rows, i + cell_cols); |
a967f048 RG |
5387 | CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); |
5388 | clippedcells.Subtract(rect); | |
27f35b66 SN |
5389 | } |
5390 | } | |
5391 | } | |
a9339fe2 | 5392 | |
c1bc8d9f | 5393 | dc.SetDeviceClippingRegion( clippedcells ); |
27f35b66 | 5394 | |
f85afd4e | 5395 | |
2d66e025 | 5396 | // horizontal grid lines |
ff72f628 | 5397 | for ( int i = internalYToRow(top); i < m_numRows; i++ ) |
f85afd4e | 5398 | { |
6d55126d | 5399 | int bot = GetRowBottom(i) - 1; |
7c1cb261 | 5400 | |
6d55126d | 5401 | if ( bot > bottom ) |
2d66e025 | 5402 | break; |
7c1cb261 | 5403 | |
6d55126d | 5404 | if ( bot >= top ) |
2d66e025 | 5405 | { |
3d3f3e37 | 5406 | dc.SetPen( GetRowGridLinePen(i) ); |
6d55126d | 5407 | dc.DrawLine( left, bot, right, bot ); |
2d66e025 | 5408 | } |
f85afd4e MB |
5409 | } |
5410 | ||
2d66e025 | 5411 | // vertical grid lines |
ff72f628 | 5412 | for ( int colPos = leftCol; colPos < m_numCols; colPos++ ) |
f85afd4e | 5413 | { |
ff72f628 | 5414 | int i = GetColAt( colPos ); |
d4175745 | 5415 | |
2121eb69 RR |
5416 | int colRight = GetColRight(i); |
5417 | #ifdef __WXGTK__ | |
5418 | if (GetLayoutDirection() != wxLayout_RightToLeft) | |
5419 | #endif | |
5420 | colRight--; | |
5421 | ||
7c1cb261 | 5422 | if ( colRight > right ) |
2d66e025 | 5423 | break; |
7c1cb261 VZ |
5424 | |
5425 | if ( colRight >= left ) | |
2d66e025 | 5426 | { |
3d3f3e37 | 5427 | dc.SetPen( GetColGridLinePen(i) ); |
7c1cb261 | 5428 | dc.DrawLine( colRight, top, colRight, bottom ); |
2d66e025 MB |
5429 | } |
5430 | } | |
a9339fe2 | 5431 | |
27f35b66 | 5432 | dc.DestroyClippingRegion(); |
2d66e025 | 5433 | } |
f85afd4e | 5434 | |
c2f5b920 | 5435 | void wxGrid::DrawRowLabels( wxDC& dc, const wxArrayInt& rows) |
2d66e025 | 5436 | { |
4db6714b KH |
5437 | if ( !m_numRows ) |
5438 | return; | |
60ff3b99 | 5439 | |
ff72f628 VZ |
5440 | const size_t numLabels = rows.GetCount(); |
5441 | for ( size_t i = 0; i < numLabels; i++ ) | |
2d66e025 | 5442 | { |
d10f4bf9 | 5443 | DrawRowLabel( dc, rows[i] ); |
60ff3b99 | 5444 | } |
f85afd4e MB |
5445 | } |
5446 | ||
2d66e025 | 5447 | void wxGrid::DrawRowLabel( wxDC& dc, int row ) |
f85afd4e | 5448 | { |
659af826 | 5449 | if ( GetRowHeight(row) <= 0 || m_rowLabelWidth <= 0 ) |
7c1cb261 | 5450 | return; |
60ff3b99 | 5451 | |
670d0177 VZ |
5452 | wxGridCellAttrProvider * const |
5453 | attrProvider = m_table ? m_table->GetAttrProvider() : NULL; | |
7a0a6cc8 VZ |
5454 | |
5455 | // notice that an explicit static_cast is needed to avoid a compilation | |
5456 | // error with VC7.1 which, for some reason, tries to instantiate (abstract) | |
5457 | // wxGridRowHeaderRenderer class without it | |
ba9574c3 | 5458 | const wxGridRowHeaderRenderer& |
670d0177 | 5459 | rend = attrProvider ? attrProvider->GetRowHeaderRenderer(row) |
7a0a6cc8 VZ |
5460 | : static_cast<const wxGridRowHeaderRenderer&> |
5461 | (gs_defaultHeaderRenderers.rowRenderer); | |
5462 | ||
ba9574c3 VZ |
5463 | wxRect rect(0, GetRowTop(row), m_rowLabelWidth, GetRowHeight(row)); |
5464 | rend.DrawBorder(*this, dc, rect); | |
8f177c8e | 5465 | |
f85afd4e | 5466 | int hAlign, vAlign; |
ba9574c3 | 5467 | GetRowLabelAlignment(&hAlign, &vAlign); |
60ff3b99 | 5468 | |
ba9574c3 VZ |
5469 | rend.DrawLabel(*this, dc, GetRowLabelValue(row), |
5470 | rect, hAlign, vAlign, wxHORIZONTAL); | |
f85afd4e MB |
5471 | } |
5472 | ||
ad805b9e VZ |
5473 | void wxGrid::UseNativeColHeader(bool native) |
5474 | { | |
5475 | if ( native == m_useNativeHeader ) | |
5476 | return; | |
5477 | ||
5478 | delete m_colWindow; | |
5479 | m_useNativeHeader = native; | |
5480 | ||
5481 | CreateColumnWindow(); | |
5482 | ||
5483 | if ( m_useNativeHeader ) | |
3039ade9 | 5484 | GetGridColHeader()->SetColumnCount(m_numCols); |
ad805b9e VZ |
5485 | CalcWindowSizes(); |
5486 | } | |
5487 | ||
71cf399f RR |
5488 | void wxGrid::SetUseNativeColLabels( bool native ) |
5489 | { | |
ad805b9e VZ |
5490 | wxASSERT_MSG( !m_useNativeHeader, |
5491 | "doesn't make sense when using native header" ); | |
5492 | ||
71cf399f RR |
5493 | m_nativeColumnLabels = native; |
5494 | if (native) | |
5495 | { | |
5496 | int height = wxRendererNative::Get().GetHeaderButtonHeight( this ); | |
5497 | SetColLabelSize( height ); | |
5498 | } | |
76c66f19 | 5499 | |
ad805b9e | 5500 | GetColLabelWindow()->Refresh(); |
ff72f628 | 5501 | m_cornerLabelWin->Refresh(); |
71cf399f RR |
5502 | } |
5503 | ||
d10f4bf9 | 5504 | void wxGrid::DrawColLabels( wxDC& dc,const wxArrayInt& cols ) |
f85afd4e | 5505 | { |
4db6714b KH |
5506 | if ( !m_numCols ) |
5507 | return; | |
60ff3b99 | 5508 | |
ff72f628 VZ |
5509 | const size_t numLabels = cols.GetCount(); |
5510 | for ( size_t i = 0; i < numLabels; i++ ) | |
f85afd4e | 5511 | { |
d10f4bf9 | 5512 | DrawColLabel( dc, cols[i] ); |
60ff3b99 | 5513 | } |
f85afd4e MB |
5514 | } |
5515 | ||
ff72f628 VZ |
5516 | void wxGrid::DrawCornerLabel(wxDC& dc) |
5517 | { | |
ba9574c3 VZ |
5518 | wxRect rect(wxSize(m_rowLabelWidth, m_colLabelHeight)); |
5519 | ||
ff72f628 VZ |
5520 | if ( m_nativeColumnLabels ) |
5521 | { | |
ff72f628 VZ |
5522 | rect.Deflate(1); |
5523 | ||
5524 | wxRendererNative::Get().DrawHeaderButton(m_cornerLabelWin, dc, rect, 0); | |
5525 | } | |
5526 | else | |
5527 | { | |
ba9574c3 VZ |
5528 | rect.width++; |
5529 | rect.height++; | |
5530 | ||
670d0177 VZ |
5531 | wxGridCellAttrProvider * const |
5532 | attrProvider = m_table ? m_table->GetAttrProvider() : NULL; | |
ba9574c3 | 5533 | const wxGridCornerHeaderRenderer& |
670d0177 | 5534 | rend = attrProvider ? attrProvider->GetCornerRenderer() |
7a0a6cc8 VZ |
5535 | : static_cast<wxGridCornerHeaderRenderer&> |
5536 | (gs_defaultHeaderRenderers.cornerRenderer); | |
ff72f628 | 5537 | |
ba9574c3 | 5538 | rend.DrawBorder(*this, dc, rect); |
ff72f628 VZ |
5539 | } |
5540 | } | |
5541 | ||
5542 | void wxGrid::DrawColLabel(wxDC& dc, int col) | |
f85afd4e | 5543 | { |
659af826 | 5544 | if ( GetColWidth(col) <= 0 || m_colLabelHeight <= 0 ) |
7c1cb261 | 5545 | return; |
60ff3b99 | 5546 | |
4d1bc39c | 5547 | int colLeft = GetColLeft(col); |
ec157c8f | 5548 | |
ff72f628 | 5549 | wxRect rect(colLeft, 0, GetColWidth(col), m_colLabelHeight); |
670d0177 VZ |
5550 | wxGridCellAttrProvider * const |
5551 | attrProvider = m_table ? m_table->GetAttrProvider() : NULL; | |
ba9574c3 | 5552 | const wxGridColumnHeaderRenderer& |
670d0177 | 5553 | rend = attrProvider ? attrProvider->GetColumnHeaderRenderer(col) |
7a0a6cc8 VZ |
5554 | : static_cast<wxGridColumnHeaderRenderer&> |
5555 | (gs_defaultHeaderRenderers.colRenderer); | |
2f024384 | 5556 | |
ff72f628 | 5557 | if ( m_nativeColumnLabels ) |
71cf399f | 5558 | { |
11393d29 VZ |
5559 | wxRendererNative::Get().DrawHeaderButton |
5560 | ( | |
5561 | GetColLabelWindow(), | |
5562 | dc, | |
5563 | rect, | |
5564 | 0, | |
5565 | IsSortingBy(col) | |
5566 | ? IsSortOrderAscending() | |
5567 | ? wxHDR_SORT_ICON_UP | |
5568 | : wxHDR_SORT_ICON_DOWN | |
5569 | : wxHDR_SORT_ICON_NONE | |
5570 | ); | |
ba9574c3 | 5571 | rect.Deflate(2); |
71cf399f RR |
5572 | } |
5573 | else | |
5574 | { | |
ba9574c3 | 5575 | rend.DrawBorder(*this, dc, rect); |
71cf399f | 5576 | } |
2f024384 | 5577 | |
ff72f628 | 5578 | int hAlign, vAlign; |
ba9574c3 | 5579 | GetColLabelAlignment(&hAlign, &vAlign); |
ff72f628 | 5580 | const int orient = GetColLabelTextOrientation(); |
60ff3b99 | 5581 | |
ba9574c3 | 5582 | rend.DrawLabel(*this, dc, GetColLabelValue(col), rect, hAlign, vAlign, orient); |
f85afd4e MB |
5583 | } |
5584 | ||
ff72f628 VZ |
5585 | // TODO: these 2 functions should be replaced with wxDC::DrawLabel() to which |
5586 | // we just have to add textOrientation support | |
2d66e025 MB |
5587 | void wxGrid::DrawTextRectangle( wxDC& dc, |
5588 | const wxString& value, | |
5589 | const wxRect& rect, | |
5590 | int horizAlign, | |
d43851f7 | 5591 | int vertAlign, |
ba9574c3 | 5592 | int textOrientation ) const |
f85afd4e | 5593 | { |
2d66e025 | 5594 | wxArrayString lines; |
ef5df12b | 5595 | |
2d66e025 | 5596 | StringToLines( value, lines ); |
ef5df12b | 5597 | |
ff72f628 | 5598 | DrawTextRectangle(dc, lines, rect, horizAlign, vertAlign, textOrientation); |
d10f4bf9 VZ |
5599 | } |
5600 | ||
4330c974 | 5601 | void wxGrid::DrawTextRectangle(wxDC& dc, |
038a5591 JS |
5602 | const wxArrayString& lines, |
5603 | const wxRect& rect, | |
5604 | int horizAlign, | |
5605 | int vertAlign, | |
ba9574c3 | 5606 | int textOrientation) const |
d10f4bf9 | 5607 | { |
4330c974 VZ |
5608 | if ( lines.empty() ) |
5609 | return; | |
ef5df12b | 5610 | |
4330c974 | 5611 | wxDCClipper clip(dc, rect); |
ef5df12b | 5612 | |
4330c974 VZ |
5613 | long textWidth, |
5614 | textHeight; | |
ef5df12b | 5615 | |
4330c974 VZ |
5616 | if ( textOrientation == wxHORIZONTAL ) |
5617 | GetTextBoxSize( dc, lines, &textWidth, &textHeight ); | |
5618 | else | |
5619 | GetTextBoxSize( dc, lines, &textHeight, &textWidth ); | |
ef5df12b | 5620 | |
4330c974 VZ |
5621 | int x = 0, |
5622 | y = 0; | |
5623 | switch ( vertAlign ) | |
5624 | { | |
73145b0e | 5625 | case wxALIGN_BOTTOM: |
4db6714b | 5626 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 | 5627 | y = rect.y + (rect.height - textHeight - 1); |
d43851f7 | 5628 | else |
038a5591 JS |
5629 | x = rect.x + rect.width - textWidth; |
5630 | break; | |
ef5df12b | 5631 | |
73145b0e | 5632 | case wxALIGN_CENTRE: |
4db6714b | 5633 | if ( textOrientation == wxHORIZONTAL ) |
a9339fe2 | 5634 | y = rect.y + ((rect.height - textHeight) / 2); |
d43851f7 | 5635 | else |
a9339fe2 | 5636 | x = rect.x + ((rect.width - textWidth) / 2); |
038a5591 | 5637 | break; |
ef5df12b | 5638 | |
73145b0e JS |
5639 | case wxALIGN_TOP: |
5640 | default: | |
4db6714b | 5641 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 | 5642 | y = rect.y + 1; |
d43851f7 | 5643 | else |
038a5591 | 5644 | x = rect.x + 1; |
73145b0e | 5645 | break; |
4330c974 | 5646 | } |
ef5df12b | 5647 | |
4330c974 VZ |
5648 | // Align each line of a multi-line label |
5649 | size_t nLines = lines.GetCount(); | |
5650 | for ( size_t l = 0; l < nLines; l++ ) | |
5651 | { | |
5652 | const wxString& line = lines[l]; | |
ef5df12b | 5653 | |
9b7d3c09 VZ |
5654 | if ( line.empty() ) |
5655 | { | |
5656 | *(textOrientation == wxHORIZONTAL ? &y : &x) += dc.GetCharHeight(); | |
5657 | continue; | |
5658 | } | |
5659 | ||
ad2633bd | 5660 | wxCoord lineWidth = 0, |
c2b2c10e | 5661 | lineHeight = 0; |
4330c974 VZ |
5662 | dc.GetTextExtent(line, &lineWidth, &lineHeight); |
5663 | ||
5664 | switch ( horizAlign ) | |
5665 | { | |
038a5591 | 5666 | case wxALIGN_RIGHT: |
4db6714b | 5667 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 JS |
5668 | x = rect.x + (rect.width - lineWidth - 1); |
5669 | else | |
5670 | y = rect.y + lineWidth + 1; | |
5671 | break; | |
ef5df12b | 5672 | |
038a5591 | 5673 | case wxALIGN_CENTRE: |
4db6714b | 5674 | if ( textOrientation == wxHORIZONTAL ) |
2f024384 | 5675 | x = rect.x + ((rect.width - lineWidth) / 2); |
038a5591 | 5676 | else |
2f024384 | 5677 | y = rect.y + rect.height - ((rect.height - lineWidth) / 2); |
038a5591 | 5678 | break; |
ef5df12b | 5679 | |
038a5591 JS |
5680 | case wxALIGN_LEFT: |
5681 | default: | |
4db6714b | 5682 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 JS |
5683 | x = rect.x + 1; |
5684 | else | |
5685 | y = rect.y + rect.height - 1; | |
5686 | break; | |
4330c974 | 5687 | } |
ef5df12b | 5688 | |
4330c974 VZ |
5689 | if ( textOrientation == wxHORIZONTAL ) |
5690 | { | |
5691 | dc.DrawText( line, x, y ); | |
5692 | y += lineHeight; | |
5693 | } | |
5694 | else | |
5695 | { | |
5696 | dc.DrawRotatedText( line, x, y, 90.0 ); | |
5697 | x += lineHeight; | |
038a5591 | 5698 | } |
f85afd4e | 5699 | } |
f85afd4e MB |
5700 | } |
5701 | ||
2f024384 DS |
5702 | // Split multi-line text up into an array of strings. |
5703 | // Any existing contents of the string array are preserved. | |
f85afd4e | 5704 | // |
696f3e9d | 5705 | // TODO: refactor wxTextFile::Read() and reuse the same code from here |
ef316e23 | 5706 | void wxGrid::StringToLines( const wxString& value, wxArrayString& lines ) const |
f85afd4e | 5707 | { |
f85afd4e MB |
5708 | int startPos = 0; |
5709 | int pos; | |
6d004f67 | 5710 | wxString eol = wxTextFile::GetEOL( wxTextFileType_Unix ); |
2433bb2e | 5711 | wxString tVal = wxTextFile::Translate( value, wxTextFileType_Unix ); |
e2b42eeb | 5712 | |
faa94f3e | 5713 | while ( startPos < (int)tVal.length() ) |
f85afd4e | 5714 | { |
2433bb2e | 5715 | pos = tVal.Mid(startPos).Find( eol ); |
f85afd4e MB |
5716 | if ( pos < 0 ) |
5717 | { | |
5718 | break; | |
5719 | } | |
5720 | else if ( pos == 0 ) | |
5721 | { | |
5722 | lines.Add( wxEmptyString ); | |
5723 | } | |
5724 | else | |
5725 | { | |
696f3e9d | 5726 | lines.Add( tVal.Mid(startPos, pos) ); |
f85afd4e | 5727 | } |
a9339fe2 | 5728 | |
4db6714b | 5729 | startPos += pos + 1; |
f85afd4e | 5730 | } |
4db6714b | 5731 | |
2eafd712 | 5732 | if ( startPos < (int)tVal.length() ) |
f85afd4e | 5733 | { |
696f3e9d | 5734 | lines.Add( tVal.Mid( startPos ) ); |
f85afd4e MB |
5735 | } |
5736 | } | |
5737 | ||
fbfb8bcc | 5738 | void wxGrid::GetTextBoxSize( const wxDC& dc, |
d10f4bf9 | 5739 | const wxArrayString& lines, |
ef316e23 | 5740 | long *width, long *height ) const |
f85afd4e | 5741 | { |
ad2633bd RR |
5742 | wxCoord w = 0; |
5743 | wxCoord h = 0; | |
5744 | wxCoord lineW = 0, lineH = 0; | |
f85afd4e | 5745 | |
b540eb2b | 5746 | size_t i; |
56b6cf26 | 5747 | for ( i = 0; i < lines.GetCount(); i++ ) |
f85afd4e MB |
5748 | { |
5749 | dc.GetTextExtent( lines[i], &lineW, &lineH ); | |
5750 | w = wxMax( w, lineW ); | |
5751 | h += lineH; | |
5752 | } | |
5753 | ||
5754 | *width = w; | |
5755 | *height = h; | |
5756 | } | |
5757 | ||
f6bcfd97 BP |
5758 | // |
5759 | // ------ Batch processing. | |
5760 | // | |
5761 | void wxGrid::EndBatch() | |
5762 | { | |
5763 | if ( m_batchCount > 0 ) | |
5764 | { | |
5765 | m_batchCount--; | |
5766 | if ( !m_batchCount ) | |
5767 | { | |
5768 | CalcDimensions(); | |
5769 | m_rowLabelWin->Refresh(); | |
ad805b9e | 5770 | m_colWindow->Refresh(); |
f6bcfd97 BP |
5771 | m_cornerLabelWin->Refresh(); |
5772 | m_gridWin->Refresh(); | |
5773 | } | |
5774 | } | |
5775 | } | |
f85afd4e | 5776 | |
d8232393 MB |
5777 | // Use this, rather than wxWindow::Refresh(), to force an immediate |
5778 | // repainting of the grid. Has no effect if you are already inside a | |
5779 | // BeginBatch / EndBatch block. | |
5780 | // | |
5781 | void wxGrid::ForceRefresh() | |
5782 | { | |
5783 | BeginBatch(); | |
5784 | EndBatch(); | |
5785 | } | |
5786 | ||
bf646121 VZ |
5787 | bool wxGrid::Enable(bool enable) |
5788 | { | |
5789 | if ( !wxScrolledWindow::Enable(enable) ) | |
5790 | return false; | |
5791 | ||
5792 | // redraw in the new state | |
5793 | m_gridWin->Refresh(); | |
5794 | ||
5795 | return true; | |
5796 | } | |
d8232393 | 5797 | |
f85afd4e | 5798 | // |
2d66e025 | 5799 | // ------ Edit control functions |
f85afd4e MB |
5800 | // |
5801 | ||
2d66e025 | 5802 | void wxGrid::EnableEditing( bool edit ) |
f85afd4e | 5803 | { |
2d66e025 | 5804 | if ( edit != m_editable ) |
f85afd4e | 5805 | { |
4db6714b KH |
5806 | if (!edit) |
5807 | EnableCellEditControl(edit); | |
2d66e025 | 5808 | m_editable = edit; |
f85afd4e | 5809 | } |
f85afd4e MB |
5810 | } |
5811 | ||
2d66e025 | 5812 | void wxGrid::EnableCellEditControl( bool enable ) |
f85afd4e | 5813 | { |
2c9a89e0 RD |
5814 | if (! m_editable) |
5815 | return; | |
5816 | ||
2c9a89e0 RD |
5817 | if ( enable != m_cellEditCtrlEnabled ) |
5818 | { | |
dcfe4c3d | 5819 | if ( enable ) |
f85afd4e | 5820 | { |
8a3e536c | 5821 | if ( SendEvent(wxEVT_GRID_EDITOR_SHOWN) == -1 ) |
97a9929e | 5822 | return; |
fe7b9ed6 | 5823 | |
97a9929e | 5824 | // this should be checked by the caller! |
9a83f860 | 5825 | wxASSERT_MSG( CanEnableCellControl(), wxT("can't enable editing for this cell!") ); |
b54ba671 VZ |
5826 | |
5827 | // do it before ShowCellEditControl() | |
dcfe4c3d | 5828 | m_cellEditCtrlEnabled = enable; |
b54ba671 | 5829 | |
2d66e025 | 5830 | ShowCellEditControl(); |
2d66e025 MB |
5831 | } |
5832 | else | |
5833 | { | |
8a3e536c | 5834 | SendEvent(wxEVT_GRID_EDITOR_HIDDEN); |
fe7b9ed6 | 5835 | |
97a9929e | 5836 | HideCellEditControl(); |
2d66e025 | 5837 | SaveEditControlValue(); |
b54ba671 VZ |
5838 | |
5839 | // do it after HideCellEditControl() | |
dcfe4c3d | 5840 | m_cellEditCtrlEnabled = enable; |
f85afd4e | 5841 | } |
f85afd4e | 5842 | } |
f85afd4e | 5843 | } |
f85afd4e | 5844 | |
b54ba671 | 5845 | bool wxGrid::IsCurrentCellReadOnly() const |
283b7808 | 5846 | { |
b54ba671 VZ |
5847 | // const_cast |
5848 | wxGridCellAttr* attr = ((wxGrid *)this)->GetCellAttr(m_currentCellCoords); | |
5849 | bool readonly = attr->IsReadOnly(); | |
5850 | attr->DecRef(); | |
283b7808 | 5851 | |
b54ba671 VZ |
5852 | return readonly; |
5853 | } | |
283b7808 | 5854 | |
b54ba671 VZ |
5855 | bool wxGrid::CanEnableCellControl() const |
5856 | { | |
20c84410 SN |
5857 | return m_editable && (m_currentCellCoords != wxGridNoCellCoords) && |
5858 | !IsCurrentCellReadOnly(); | |
b54ba671 VZ |
5859 | } |
5860 | ||
5861 | bool wxGrid::IsCellEditControlEnabled() const | |
5862 | { | |
5863 | // the cell edit control might be disable for all cells or just for the | |
5864 | // current one if it's read only | |
ca65c044 | 5865 | return m_cellEditCtrlEnabled ? !IsCurrentCellReadOnly() : false; |
283b7808 VZ |
5866 | } |
5867 | ||
f6bcfd97 BP |
5868 | bool wxGrid::IsCellEditControlShown() const |
5869 | { | |
ca65c044 | 5870 | bool isShown = false; |
f6bcfd97 BP |
5871 | |
5872 | if ( m_cellEditCtrlEnabled ) | |
5873 | { | |
5874 | int row = m_currentCellCoords.GetRow(); | |
5875 | int col = m_currentCellCoords.GetCol(); | |
5876 | wxGridCellAttr* attr = GetCellAttr(row, col); | |
5877 | wxGridCellEditor* editor = attr->GetEditor((wxGrid*) this, row, col); | |
5878 | attr->DecRef(); | |
5879 | ||
5880 | if ( editor ) | |
5881 | { | |
5882 | if ( editor->IsCreated() ) | |
5883 | { | |
5884 | isShown = editor->GetControl()->IsShown(); | |
5885 | } | |
5886 | ||
5887 | editor->DecRef(); | |
5888 | } | |
5889 | } | |
5890 | ||
5891 | return isShown; | |
5892 | } | |
5893 | ||
2d66e025 | 5894 | void wxGrid::ShowCellEditControl() |
f85afd4e | 5895 | { |
2d66e025 | 5896 | if ( IsCellEditControlEnabled() ) |
f85afd4e | 5897 | { |
7db713ae | 5898 | if ( !IsVisible( m_currentCellCoords, false ) ) |
2d66e025 | 5899 | { |
ca65c044 | 5900 | m_cellEditCtrlEnabled = false; |
2d66e025 MB |
5901 | return; |
5902 | } | |
5903 | else | |
5904 | { | |
2c9a89e0 RD |
5905 | wxRect rect = CellToRect( m_currentCellCoords ); |
5906 | int row = m_currentCellCoords.GetRow(); | |
5907 | int col = m_currentCellCoords.GetCol(); | |
2d66e025 | 5908 | |
27f35b66 SN |
5909 | // if this is part of a multicell, find owner (topleft) |
5910 | int cell_rows, cell_cols; | |
5911 | GetCellSize( row, col, &cell_rows, &cell_cols ); | |
5912 | if ( cell_rows <= 0 || cell_cols <= 0 ) | |
5913 | { | |
5914 | row += cell_rows; | |
5915 | col += cell_cols; | |
5916 | m_currentCellCoords.SetRow( row ); | |
5917 | m_currentCellCoords.SetCol( col ); | |
5918 | } | |
5919 | ||
99306db2 VZ |
5920 | // erase the highlight and the cell contents because the editor |
5921 | // might not cover the entire cell | |
5922 | wxClientDC dc( m_gridWin ); | |
5923 | PrepareDC( dc ); | |
2c03d771 | 5924 | wxGridCellAttr* attr = GetCellAttr(row, col); |
ff72f628 | 5925 | dc.SetBrush(wxBrush(attr->GetBackgroundColour())); |
99306db2 VZ |
5926 | dc.SetPen(*wxTRANSPARENT_PEN); |
5927 | dc.DrawRectangle(rect); | |
d2fdd8d2 | 5928 | |
6f706ee0 VZ |
5929 | // convert to scrolled coords |
5930 | CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); | |
5931 | ||
5932 | int nXMove = 0; | |
5933 | if (rect.x < 0) | |
5934 | nXMove = rect.x; | |
5935 | ||
99306db2 | 5936 | // cell is shifted by one pixel |
68c5a31c | 5937 | // However, don't allow x or y to become negative |
70e8d961 | 5938 | // since the SetSize() method interprets that as |
68c5a31c SN |
5939 | // "don't change." |
5940 | if (rect.x > 0) | |
5941 | rect.x--; | |
5942 | if (rect.y > 0) | |
5943 | rect.y--; | |
f0102d2a | 5944 | |
28a77bc4 | 5945 | wxGridCellEditor* editor = attr->GetEditor(this, row, col); |
3da93aae VZ |
5946 | if ( !editor->IsCreated() ) |
5947 | { | |
ca65c044 | 5948 | editor->Create(m_gridWin, wxID_ANY, |
2c9a89e0 | 5949 | new wxGridCellEditorEvtHandler(this, editor)); |
bf7945ce RD |
5950 | |
5951 | wxGridEditorCreatedEvent evt(GetId(), | |
5952 | wxEVT_GRID_EDITOR_CREATED, | |
5953 | this, | |
5954 | row, | |
5955 | col, | |
5956 | editor->GetControl()); | |
5957 | GetEventHandler()->ProcessEvent(evt); | |
2d66e025 MB |
5958 | } |
5959 | ||
27f35b66 | 5960 | // resize editor to overflow into righthand cells if allowed |
39b80349 | 5961 | int maxWidth = rect.width; |
27f35b66 SN |
5962 | wxString value = GetCellValue(row, col); |
5963 | if ( (value != wxEmptyString) && (attr->GetOverflow()) ) | |
5964 | { | |
39b80349 | 5965 | int y; |
2f024384 DS |
5966 | GetTextExtent(value, &maxWidth, &y, NULL, NULL, &attr->GetFont()); |
5967 | if (maxWidth < rect.width) | |
5968 | maxWidth = rect.width; | |
39b80349 | 5969 | } |
4db6714b | 5970 | |
39b80349 | 5971 | int client_right = m_gridWin->GetClientSize().GetWidth(); |
2f024384 | 5972 | if (rect.x + maxWidth > client_right) |
2b5f62a0 | 5973 | maxWidth = client_right - rect.x; |
39b80349 | 5974 | |
2b5f62a0 VZ |
5975 | if ((maxWidth > rect.width) && (col < m_numCols) && m_table) |
5976 | { | |
39b80349 | 5977 | GetCellSize( row, col, &cell_rows, &cell_cols ); |
2b5f62a0 | 5978 | // may have changed earlier |
2f024384 | 5979 | for (int i = col + cell_cols; i < m_numCols; i++) |
2b5f62a0 | 5980 | { |
39b80349 SN |
5981 | int c_rows, c_cols; |
5982 | GetCellSize( row, i, &c_rows, &c_cols ); | |
2f024384 | 5983 | |
2b5f62a0 | 5984 | // looks weird going over a multicell |
bee19958 | 5985 | if (m_table->IsEmptyCell( row, i ) && |
2b5f62a0 | 5986 | (rect.width < maxWidth) && (c_rows == 1)) |
2f024384 | 5987 | { |
bee19958 | 5988 | rect.width += GetColWidth( i ); |
2f024384 | 5989 | } |
2b5f62a0 VZ |
5990 | else |
5991 | break; | |
5992 | } | |
4db6714b | 5993 | |
39b80349 | 5994 | if (rect.GetRight() > client_right) |
bee19958 | 5995 | rect.SetRight( client_right - 1 ); |
27f35b66 | 5996 | } |
76c66f19 | 5997 | |
bee19958 | 5998 | editor->SetCellAttr( attr ); |
2c9a89e0 | 5999 | editor->SetSize( rect ); |
e1a66d9a RD |
6000 | if (nXMove != 0) |
6001 | editor->GetControl()->Move( | |
6002 | editor->GetControl()->GetPosition().x + nXMove, | |
6003 | editor->GetControl()->GetPosition().y ); | |
ca65c044 | 6004 | editor->Show( true, attr ); |
04418332 VZ |
6005 | |
6006 | // recalc dimensions in case we need to | |
6007 | // expand the scrolled window to account for editor | |
73145b0e | 6008 | CalcDimensions(); |
99306db2 | 6009 | |
3da93aae | 6010 | editor->BeginEdit(row, col, this); |
1bd71df9 | 6011 | editor->SetCellAttr(NULL); |
0b190b0f VZ |
6012 | |
6013 | editor->DecRef(); | |
2c9a89e0 | 6014 | attr->DecRef(); |
2b5f62a0 | 6015 | } |
f85afd4e MB |
6016 | } |
6017 | } | |
6018 | ||
2d66e025 | 6019 | void wxGrid::HideCellEditControl() |
f85afd4e | 6020 | { |
2d66e025 | 6021 | if ( IsCellEditControlEnabled() ) |
f85afd4e | 6022 | { |
2c9a89e0 RD |
6023 | int row = m_currentCellCoords.GetRow(); |
6024 | int col = m_currentCellCoords.GetCol(); | |
6025 | ||
bee19958 | 6026 | wxGridCellAttr *attr = GetCellAttr(row, col); |
0b190b0f | 6027 | wxGridCellEditor *editor = attr->GetEditor(this, row, col); |
7d277ac0 | 6028 | const bool editorHadFocus = editor->GetControl()->HasFocus(); |
ca65c044 | 6029 | editor->Show( false ); |
0b190b0f | 6030 | editor->DecRef(); |
2c9a89e0 | 6031 | attr->DecRef(); |
2fb3e528 | 6032 | |
7d277ac0 VZ |
6033 | // return the focus to the grid itself if the editor had it |
6034 | // | |
6035 | // note that we must not do this unconditionally to avoid stealing | |
6036 | // focus from the window which just received it if we are hiding the | |
6037 | // editor precisely because we lost focus | |
6038 | if ( editorHadFocus ) | |
6039 | m_gridWin->SetFocus(); | |
2fb3e528 | 6040 | |
27f35b66 SN |
6041 | // refresh whole row to the right |
6042 | wxRect rect( CellToRect(row, col) ); | |
6043 | CalcScrolledPosition(rect.x, rect.y, &rect.x, &rect.y ); | |
6044 | rect.width = m_gridWin->GetClientSize().GetWidth() - rect.x; | |
2f024384 | 6045 | |
7d75e6c6 RD |
6046 | #ifdef __WXMAC__ |
6047 | // ensure that the pixels under the focus ring get refreshed as well | |
4db6714b | 6048 | rect.Inflate(10, 10); |
7d75e6c6 | 6049 | #endif |
2f024384 | 6050 | |
ca65c044 | 6051 | m_gridWin->Refresh( false, &rect ); |
f85afd4e | 6052 | } |
2d66e025 | 6053 | } |
8f177c8e | 6054 | |
2d66e025 MB |
6055 | void wxGrid::SaveEditControlValue() |
6056 | { | |
3da93aae VZ |
6057 | if ( IsCellEditControlEnabled() ) |
6058 | { | |
2c9a89e0 RD |
6059 | int row = m_currentCellCoords.GetRow(); |
6060 | int col = m_currentCellCoords.GetCol(); | |
8f177c8e | 6061 | |
4db6714b | 6062 | wxString oldval = GetCellValue(row, col); |
fe7b9ed6 | 6063 | |
3da93aae | 6064 | wxGridCellAttr* attr = GetCellAttr(row, col); |
28a77bc4 | 6065 | wxGridCellEditor* editor = attr->GetEditor(this, row, col); |
2d66e025 | 6066 | |
763163a8 | 6067 | wxString newval; |
78e78812 | 6068 | bool changed = editor->EndEdit(row, col, this, oldval, &newval); |
2d66e025 | 6069 | |
763163a8 | 6070 | if ( changed && SendEvent(wxEVT_GRID_CELL_CHANGING, newval) != -1 ) |
3da93aae | 6071 | { |
763163a8 VZ |
6072 | editor->ApplyEdit(row, col, this); |
6073 | ||
6074 | // for compatibility reasons dating back to wx 2.8 when this event | |
6075 | // was called wxEVT_GRID_CELL_CHANGE and wxEVT_GRID_CELL_CHANGING | |
6076 | // didn't exist we allow vetoing this one too | |
6077 | if ( SendEvent(wxEVT_GRID_CELL_CHANGED, oldval) == -1 ) | |
4db6714b | 6078 | { |
97a9929e | 6079 | // Event has been vetoed, set the data back. |
4db6714b | 6080 | SetCellValue(row, col, oldval); |
97a9929e | 6081 | } |
2d66e025 | 6082 | } |
763163a8 VZ |
6083 | |
6084 | editor->DecRef(); | |
6085 | attr->DecRef(); | |
f85afd4e MB |
6086 | } |
6087 | } | |
6088 | ||
2d66e025 | 6089 | // |
60ff3b99 VZ |
6090 | // ------ Grid location functions |
6091 | // Note that all of these functions work with the logical coordinates of | |
2d66e025 MB |
6092 | // grid cells and labels so you will need to convert from device |
6093 | // coordinates for mouse events etc. | |
6094 | // | |
6095 | ||
8a3e536c | 6096 | wxGridCellCoords wxGrid::XYToCell(int x, int y) const |
f85afd4e | 6097 | { |
58dd5b3b MB |
6098 | int row = YToRow(y); |
6099 | int col = XToCol(x); | |
6100 | ||
8a3e536c VZ |
6101 | return row == -1 || col == -1 ? wxGridNoCellCoords |
6102 | : wxGridCellCoords(row, col); | |
2d66e025 | 6103 | } |
f85afd4e | 6104 | |
bec70262 VZ |
6105 | // compute row or column from some (unscrolled) coordinate value, using either |
6106 | // m_defaultRowHeight/m_defaultColWidth or binary search on array of | |
6107 | // m_rowBottoms/m_colRights to do it quickly (linear search shouldn't be used | |
6108 | // for large grids) | |
cd4f6f5f VZ |
6109 | int wxGrid::PosToLinePos(int coord, |
6110 | bool clipToMinMax, | |
6111 | const wxGridOperations& oper) const | |
2d66e025 | 6112 | { |
bec70262 | 6113 | const int numLines = oper.GetNumberOfLines(this); |
a967f048 | 6114 | |
bec70262 | 6115 | if ( coord < 0 ) |
cd4f6f5f | 6116 | return clipToMinMax && numLines > 0 ? 0 : wxNOT_FOUND; |
a967f048 | 6117 | |
bec70262 VZ |
6118 | const int defaultLineSize = oper.GetDefaultLineSize(this); |
6119 | wxCHECK_MSG( defaultLineSize, -1, "can't have 0 default line size" ); | |
d57ad377 | 6120 | |
bec70262 VZ |
6121 | int maxPos = coord / defaultLineSize, |
6122 | minPos = 0; | |
8f177c8e | 6123 | |
bec70262 VZ |
6124 | // check for the simplest case: if we have no explicit line sizes |
6125 | // configured, then we already know the line this position falls in | |
6126 | const wxArrayInt& lineEnds = oper.GetLineEnds(this); | |
6127 | if ( lineEnds.empty() ) | |
f85afd4e | 6128 | { |
bec70262 VZ |
6129 | if ( maxPos < numLines ) |
6130 | return maxPos; | |
4db6714b | 6131 | |
bec70262 | 6132 | return clipToMinMax ? numLines - 1 : -1; |
f85afd4e | 6133 | } |
4db6714b | 6134 | |
2d66e025 | 6135 | |
bec70262 VZ |
6136 | // adjust maxPos before starting the binary search |
6137 | if ( maxPos >= numLines ) | |
b1da8107 | 6138 | { |
bec70262 | 6139 | maxPos = numLines - 1; |
b1da8107 | 6140 | } |
d4175745 VZ |
6141 | else |
6142 | { | |
bec70262 | 6143 | if ( coord >= lineEnds[oper.GetLineAt(this, maxPos)]) |
d4175745 VZ |
6144 | { |
6145 | minPos = maxPos; | |
bec70262 VZ |
6146 | const int minDist = oper.GetMinimalAcceptableLineSize(this); |
6147 | if ( minDist ) | |
6148 | maxPos = coord / minDist; | |
d4175745 | 6149 | else |
bec70262 | 6150 | maxPos = numLines - 1; |
d4175745 | 6151 | } |
bec70262 VZ |
6152 | |
6153 | if ( maxPos >= numLines ) | |
6154 | maxPos = numLines - 1; | |
d4175745 VZ |
6155 | } |
6156 | ||
bec70262 VZ |
6157 | // check if the position is beyond the last column |
6158 | const int lineAtMaxPos = oper.GetLineAt(this, maxPos); | |
6159 | if ( coord >= lineEnds[lineAtMaxPos] ) | |
cd4f6f5f | 6160 | return clipToMinMax ? maxPos : -1; |
d4175745 | 6161 | |
bec70262 VZ |
6162 | // or before the first one |
6163 | const int lineAt0 = oper.GetLineAt(this, 0); | |
6164 | if ( coord < lineEnds[lineAt0] ) | |
cd4f6f5f | 6165 | return 0; |
d4175745 | 6166 | |
bec70262 VZ |
6167 | |
6168 | // finally do perform the binary search | |
6169 | while ( minPos < maxPos ) | |
d4175745 | 6170 | { |
bec70262 VZ |
6171 | wxCHECK_MSG( lineEnds[oper.GetLineAt(this, minPos)] <= coord && |
6172 | coord < lineEnds[oper.GetLineAt(this, maxPos)], | |
6173 | -1, | |
cd4f6f5f | 6174 | "wxGrid: internal error in PosToLinePos()" ); |
d4175745 | 6175 | |
bec70262 | 6176 | if ( coord >= lineEnds[oper.GetLineAt(this, maxPos - 1)] ) |
cd4f6f5f | 6177 | return maxPos; |
d4175745 VZ |
6178 | else |
6179 | maxPos--; | |
bec70262 VZ |
6180 | |
6181 | const int median = minPos + (maxPos - minPos + 1) / 2; | |
6182 | if ( coord < lineEnds[oper.GetLineAt(this, median)] ) | |
d4175745 VZ |
6183 | maxPos = median; |
6184 | else | |
6185 | minPos = median; | |
6186 | } | |
bec70262 | 6187 | |
cd4f6f5f VZ |
6188 | return maxPos; |
6189 | } | |
6190 | ||
6191 | int | |
6192 | wxGrid::PosToLine(int coord, | |
6193 | bool clipToMinMax, | |
6194 | const wxGridOperations& oper) const | |
6195 | { | |
6196 | int pos = PosToLinePos(coord, clipToMinMax, oper); | |
6197 | ||
6198 | return pos == wxNOT_FOUND ? wxNOT_FOUND : oper.GetLineAt(this, pos); | |
bec70262 VZ |
6199 | } |
6200 | ||
6201 | int wxGrid::YToRow(int y, bool clipToMinMax) const | |
6202 | { | |
6203 | return PosToLine(y, clipToMinMax, wxGridRowOperations()); | |
6204 | } | |
6205 | ||
6206 | int wxGrid::XToCol(int x, bool clipToMinMax) const | |
6207 | { | |
6208 | return PosToLine(x, clipToMinMax, wxGridColumnOperations()); | |
2d66e025 | 6209 | } |
8f177c8e | 6210 | |
cd4f6f5f VZ |
6211 | int wxGrid::XToPos(int x) const |
6212 | { | |
6213 | return PosToLinePos(x, true /* clip */, wxGridColumnOperations()); | |
6214 | } | |
6215 | ||
82edfbe7 | 6216 | // return the row number such that the y coord is near the edge of, or -1 if |
10a4531d VZ |
6217 | // not near an edge. |
6218 | // | |
82edfbe7 VZ |
6219 | // notice that position can only possibly be near an edge if the row/column is |
6220 | // large enough to still allow for an "inner" area that is _not_ near the edge | |
6221 | // (i.e., if the height/width is smaller than WXGRID_LABEL_EDGE_ZONE, pos will | |
6222 | // _never_ be considered to be near the edge). | |
10a4531d | 6223 | int wxGrid::PosToEdgeOfLine(int pos, const wxGridOperations& oper) const |
2d66e025 | 6224 | { |
10a4531d VZ |
6225 | const int line = oper.PosToLine(this, pos, true); |
6226 | ||
6227 | if ( oper.GetLineSize(this, line) > WXGRID_LABEL_EDGE_ZONE ) | |
2d66e025 | 6228 | { |
10a4531d VZ |
6229 | // We know that we are in this line, test whether we are close enough |
6230 | // to start or end border, respectively. | |
6231 | if ( abs(oper.GetLineEndPos(this, line) - pos) < WXGRID_LABEL_EDGE_ZONE ) | |
6232 | return line; | |
6233 | else if ( line > 0 && | |
6234 | pos - oper.GetLineStartPos(this, | |
6235 | line) < WXGRID_LABEL_EDGE_ZONE ) | |
6236 | return line - 1; | |
f85afd4e | 6237 | } |
2d66e025 MB |
6238 | |
6239 | return -1; | |
6240 | } | |
6241 | ||
10a4531d | 6242 | int wxGrid::YToEdgeOfRow(int y) const |
2d66e025 | 6243 | { |
10a4531d VZ |
6244 | return PosToEdgeOfLine(y, wxGridRowOperations()); |
6245 | } | |
2d66e025 | 6246 | |
10a4531d VZ |
6247 | int wxGrid::XToEdgeOfCol(int x) const |
6248 | { | |
6249 | return PosToEdgeOfLine(x, wxGridColumnOperations()); | |
f85afd4e MB |
6250 | } |
6251 | ||
ef316e23 | 6252 | wxRect wxGrid::CellToRect( int row, int col ) const |
f85afd4e | 6253 | { |
2d66e025 | 6254 | wxRect rect( -1, -1, -1, -1 ); |
f85afd4e | 6255 | |
2f024384 DS |
6256 | if ( row >= 0 && row < m_numRows && |
6257 | col >= 0 && col < m_numCols ) | |
f85afd4e | 6258 | { |
27f35b66 SN |
6259 | int i, cell_rows, cell_cols; |
6260 | rect.width = rect.height = 0; | |
6261 | GetCellSize( row, col, &cell_rows, &cell_cols ); | |
6262 | // if negative then find multicell owner | |
2f024384 DS |
6263 | if (cell_rows < 0) |
6264 | row += cell_rows; | |
6265 | if (cell_cols < 0) | |
6266 | col += cell_cols; | |
27f35b66 SN |
6267 | GetCellSize( row, col, &cell_rows, &cell_cols ); |
6268 | ||
7c1cb261 VZ |
6269 | rect.x = GetColLeft(col); |
6270 | rect.y = GetRowTop(row); | |
2f024384 DS |
6271 | for (i=col; i < col + cell_cols; i++) |
6272 | rect.width += GetColWidth(i); | |
6273 | for (i=row; i < row + cell_rows; i++) | |
27f35b66 | 6274 | rect.height += GetRowHeight(i); |
f85afd4e | 6275 | |
efc49a21 VZ |
6276 | // if grid lines are enabled, then the area of the cell is a bit smaller |
6277 | if (m_gridLinesEnabled) | |
6278 | { | |
6279 | rect.width -= 1; | |
6280 | rect.height -= 1; | |
6281 | } | |
f6bcfd97 | 6282 | } |
4db6714b | 6283 | |
2d66e025 MB |
6284 | return rect; |
6285 | } | |
6286 | ||
ef316e23 | 6287 | bool wxGrid::IsVisible( int row, int col, bool wholeCellVisible ) const |
2d66e025 MB |
6288 | { |
6289 | // get the cell rectangle in logical coords | |
6290 | // | |
6291 | wxRect r( CellToRect( row, col ) ); | |
60ff3b99 | 6292 | |
2d66e025 MB |
6293 | // convert to device coords |
6294 | // | |
6295 | int left, top, right, bottom; | |
6296 | CalcScrolledPosition( r.GetLeft(), r.GetTop(), &left, &top ); | |
6297 | CalcScrolledPosition( r.GetRight(), r.GetBottom(), &right, &bottom ); | |
60ff3b99 | 6298 | |
2d66e025 | 6299 | // check against the client area of the grid window |
2d66e025 MB |
6300 | int cw, ch; |
6301 | m_gridWin->GetClientSize( &cw, &ch ); | |
60ff3b99 | 6302 | |
2d66e025 | 6303 | if ( wholeCellVisible ) |
f85afd4e | 6304 | { |
2d66e025 | 6305 | // is the cell wholly visible ? |
2f024384 DS |
6306 | return ( left >= 0 && right <= cw && |
6307 | top >= 0 && bottom <= ch ); | |
2d66e025 MB |
6308 | } |
6309 | else | |
6310 | { | |
6311 | // is the cell partly visible ? | |
6312 | // | |
2f024384 DS |
6313 | return ( ((left >= 0 && left < cw) || (right > 0 && right <= cw)) && |
6314 | ((top >= 0 && top < ch) || (bottom > 0 && bottom <= ch)) ); | |
2d66e025 MB |
6315 | } |
6316 | } | |
6317 | ||
2d66e025 MB |
6318 | // make the specified cell location visible by doing a minimal amount |
6319 | // of scrolling | |
6320 | // | |
6321 | void wxGrid::MakeCellVisible( int row, int col ) | |
6322 | { | |
6323 | int i; | |
60ff3b99 | 6324 | int xpos = -1, ypos = -1; |
2d66e025 | 6325 | |
2f024384 DS |
6326 | if ( row >= 0 && row < m_numRows && |
6327 | col >= 0 && col < m_numCols ) | |
2d66e025 MB |
6328 | { |
6329 | // get the cell rectangle in logical coords | |
2d66e025 | 6330 | wxRect r( CellToRect( row, col ) ); |
60ff3b99 | 6331 | |
2d66e025 | 6332 | // convert to device coords |
2d66e025 MB |
6333 | int left, top, right, bottom; |
6334 | CalcScrolledPosition( r.GetLeft(), r.GetTop(), &left, &top ); | |
6335 | CalcScrolledPosition( r.GetRight(), r.GetBottom(), &right, &bottom ); | |
60ff3b99 | 6336 | |
2d66e025 MB |
6337 | int cw, ch; |
6338 | m_gridWin->GetClientSize( &cw, &ch ); | |
60ff3b99 | 6339 | |
2d66e025 | 6340 | if ( top < 0 ) |
3f296516 | 6341 | { |
2d66e025 | 6342 | ypos = r.GetTop(); |
3f296516 | 6343 | } |
2d66e025 MB |
6344 | else if ( bottom > ch ) |
6345 | { | |
6346 | int h = r.GetHeight(); | |
6347 | ypos = r.GetTop(); | |
56b6cf26 | 6348 | for ( i = row - 1; i >= 0; i-- ) |
2d66e025 | 6349 | { |
7c1cb261 VZ |
6350 | int rowHeight = GetRowHeight(i); |
6351 | if ( h + rowHeight > ch ) | |
6352 | break; | |
2d66e025 | 6353 | |
7c1cb261 VZ |
6354 | h += rowHeight; |
6355 | ypos -= rowHeight; | |
2d66e025 | 6356 | } |
f0102d2a VZ |
6357 | |
6358 | // we divide it later by GRID_SCROLL_LINE, make sure that we don't | |
56b6cf26 DS |
6359 | // have rounding errors (this is important, because if we do, |
6360 | // we might not scroll at all and some cells won't be redrawn) | |
275c4ae4 | 6361 | // |
56b6cf26 DS |
6362 | // Sometimes GRID_SCROLL_LINE / 2 is not enough, |
6363 | // so just add a full scroll unit... | |
675a9c0d | 6364 | ypos += m_scrollLineY; |
2d66e025 MB |
6365 | } |
6366 | ||
7db713ae | 6367 | // special handling for wide cells - show always left part of the cell! |
faa94f3e | 6368 | // Otherwise, e.g. when stepping from row to row, it would jump between |
7db713ae JS |
6369 | // left and right part of the cell on every step! |
6370 | // if ( left < 0 ) | |
ccdee36f | 6371 | if ( left < 0 || (right - left) >= cw ) |
2d66e025 MB |
6372 | { |
6373 | xpos = r.GetLeft(); | |
6374 | } | |
6375 | else if ( right > cw ) | |
6376 | { | |
73145b0e JS |
6377 | // position the view so that the cell is on the right |
6378 | int x0, y0; | |
6379 | CalcUnscrolledPosition(0, 0, &x0, &y0); | |
6380 | xpos = x0 + (right - cw); | |
f0102d2a VZ |
6381 | |
6382 | // see comment for ypos above | |
675a9c0d | 6383 | xpos += m_scrollLineX; |
2d66e025 MB |
6384 | } |
6385 | ||
ccdee36f | 6386 | if ( xpos != -1 || ypos != -1 ) |
2d66e025 | 6387 | { |
97a9929e | 6388 | if ( xpos != -1 ) |
675a9c0d | 6389 | xpos /= m_scrollLineX; |
97a9929e | 6390 | if ( ypos != -1 ) |
675a9c0d | 6391 | ypos /= m_scrollLineY; |
2d66e025 MB |
6392 | Scroll( xpos, ypos ); |
6393 | AdjustScrollbars(); | |
6394 | } | |
6395 | } | |
6396 | } | |
6397 | ||
2d66e025 MB |
6398 | // |
6399 | // ------ Grid cursor movement functions | |
6400 | // | |
6401 | ||
10a4531d VZ |
6402 | bool |
6403 | wxGrid::DoMoveCursor(bool expandSelection, | |
6404 | const wxGridDirectionOperations& diroper) | |
2d66e025 | 6405 | { |
10a4531d VZ |
6406 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
6407 | return false; | |
6408 | ||
6409 | if ( expandSelection ) | |
2d66e025 | 6410 | { |
8a3e536c VZ |
6411 | wxGridCellCoords coords = m_selectedBlockCorner; |
6412 | if ( coords == wxGridNoCellCoords ) | |
6413 | coords = m_currentCellCoords; | |
4db6714b | 6414 | |
8a3e536c | 6415 | if ( diroper.IsAtBoundary(coords) ) |
10a4531d | 6416 | return false; |
2d66e025 | 6417 | |
8a3e536c | 6418 | diroper.Advance(coords); |
2d66e025 | 6419 | |
8a3e536c | 6420 | UpdateBlockBeingSelected(m_currentCellCoords, coords); |
10a4531d | 6421 | } |
8a3e536c | 6422 | else // don't expand selection |
f85afd4e | 6423 | { |
8a3e536c VZ |
6424 | ClearSelection(); |
6425 | ||
10a4531d | 6426 | if ( diroper.IsAtBoundary(m_currentCellCoords) ) |
ca65c044 | 6427 | return false; |
4db6714b | 6428 | |
10a4531d VZ |
6429 | wxGridCellCoords coords = m_currentCellCoords; |
6430 | diroper.Advance(coords); | |
8a3e536c VZ |
6431 | |
6432 | GoToCell(coords); | |
f85afd4e | 6433 | } |
2d66e025 | 6434 | |
10a4531d | 6435 | return true; |
f85afd4e MB |
6436 | } |
6437 | ||
10a4531d | 6438 | bool wxGrid::MoveCursorUp(bool expandSelection) |
f85afd4e | 6439 | { |
10a4531d VZ |
6440 | return DoMoveCursor(expandSelection, |
6441 | wxGridBackwardOperations(this, wxGridRowOperations())); | |
2d66e025 MB |
6442 | } |
6443 | ||
10a4531d | 6444 | bool wxGrid::MoveCursorDown(bool expandSelection) |
2d66e025 | 6445 | { |
10a4531d VZ |
6446 | return DoMoveCursor(expandSelection, |
6447 | wxGridForwardOperations(this, wxGridRowOperations())); | |
6448 | } | |
4db6714b | 6449 | |
10a4531d VZ |
6450 | bool wxGrid::MoveCursorLeft(bool expandSelection) |
6451 | { | |
6452 | return DoMoveCursor(expandSelection, | |
6453 | wxGridBackwardOperations(this, wxGridColumnOperations())); | |
6454 | } | |
8f177c8e | 6455 | |
10a4531d VZ |
6456 | bool wxGrid::MoveCursorRight(bool expandSelection) |
6457 | { | |
6458 | return DoMoveCursor(expandSelection, | |
6459 | wxGridForwardOperations(this, wxGridColumnOperations())); | |
2d66e025 MB |
6460 | } |
6461 | ||
10a4531d | 6462 | bool wxGrid::DoMoveCursorByPage(const wxGridDirectionOperations& diroper) |
2d66e025 | 6463 | { |
4db6714b KH |
6464 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
6465 | return false; | |
60ff3b99 | 6466 | |
10a4531d VZ |
6467 | if ( diroper.IsAtBoundary(m_currentCellCoords) ) |
6468 | return false; | |
ef5df12b | 6469 | |
10a4531d VZ |
6470 | const int oldRow = m_currentCellCoords.GetRow(); |
6471 | int newRow = diroper.MoveByPixelDistance(oldRow, m_gridWin->GetClientSize().y); | |
6472 | if ( newRow == oldRow ) | |
6473 | { | |
6474 | wxGridCellCoords coords(m_currentCellCoords); | |
6475 | diroper.Advance(coords); | |
6476 | newRow = coords.GetRow(); | |
6477 | } | |
8f177c8e | 6478 | |
8a3e536c | 6479 | GoToCell(newRow, m_currentCellCoords.GetCol()); |
60ff3b99 | 6480 | |
10a4531d VZ |
6481 | return true; |
6482 | } | |
2d66e025 | 6483 | |
10a4531d VZ |
6484 | bool wxGrid::MovePageUp() |
6485 | { | |
6486 | return DoMoveCursorByPage( | |
6487 | wxGridBackwardOperations(this, wxGridRowOperations())); | |
2d66e025 MB |
6488 | } |
6489 | ||
6490 | bool wxGrid::MovePageDown() | |
6491 | { | |
10a4531d | 6492 | return DoMoveCursorByPage( |
d188378e | 6493 | wxGridForwardOperations(this, wxGridRowOperations())); |
10a4531d | 6494 | } |
60ff3b99 | 6495 | |
10a4531d VZ |
6496 | // helper of DoMoveCursorByBlock(): advance the cell coordinates using diroper |
6497 | // until we find a non-empty cell or reach the grid end | |
6498 | void | |
6499 | wxGrid::AdvanceToNextNonEmpty(wxGridCellCoords& coords, | |
6500 | const wxGridDirectionOperations& diroper) | |
6501 | { | |
6502 | while ( !diroper.IsAtBoundary(coords) ) | |
f85afd4e | 6503 | { |
10a4531d VZ |
6504 | diroper.Advance(coords); |
6505 | if ( !m_table->IsEmpty(coords) ) | |
6506 | break; | |
f85afd4e MB |
6507 | } |
6508 | } | |
8f177c8e | 6509 | |
10a4531d VZ |
6510 | bool |
6511 | wxGrid::DoMoveCursorByBlock(bool expandSelection, | |
6512 | const wxGridDirectionOperations& diroper) | |
2d66e025 | 6513 | { |
10a4531d VZ |
6514 | if ( !m_table || m_currentCellCoords == wxGridNoCellCoords ) |
6515 | return false; | |
f85afd4e | 6516 | |
10a4531d VZ |
6517 | if ( diroper.IsAtBoundary(m_currentCellCoords) ) |
6518 | return false; | |
4db6714b | 6519 | |
10a4531d VZ |
6520 | wxGridCellCoords coords(m_currentCellCoords); |
6521 | if ( m_table->IsEmpty(coords) ) | |
6522 | { | |
6523 | // we are in an empty cell: find the next block of non-empty cells | |
6524 | AdvanceToNextNonEmpty(coords, diroper); | |
2d66e025 | 6525 | } |
10a4531d | 6526 | else // current cell is not empty |
f85afd4e | 6527 | { |
10a4531d VZ |
6528 | diroper.Advance(coords); |
6529 | if ( m_table->IsEmpty(coords) ) | |
2d66e025 | 6530 | { |
10a4531d VZ |
6531 | // we started at the end of a block, find the next one |
6532 | AdvanceToNextNonEmpty(coords, diroper); | |
2d66e025 | 6533 | } |
10a4531d | 6534 | else // we're in a middle of a block |
2d66e025 | 6535 | { |
10a4531d VZ |
6536 | // go to the end of it, i.e. find the last cell before the next |
6537 | // empty one | |
6538 | while ( !diroper.IsAtBoundary(coords) ) | |
2d66e025 | 6539 | { |
10a4531d VZ |
6540 | wxGridCellCoords coordsNext(coords); |
6541 | diroper.Advance(coordsNext); | |
6542 | if ( m_table->IsEmpty(coordsNext) ) | |
2d66e025 | 6543 | break; |
2d66e025 | 6544 | |
10a4531d VZ |
6545 | coords = coordsNext; |
6546 | } | |
aa5e1f75 | 6547 | } |
10a4531d | 6548 | } |
2d66e025 | 6549 | |
10a4531d VZ |
6550 | if ( expandSelection ) |
6551 | { | |
8a3e536c | 6552 | UpdateBlockBeingSelected(m_currentCellCoords, coords); |
10a4531d VZ |
6553 | } |
6554 | else | |
6555 | { | |
6556 | ClearSelection(); | |
8a3e536c | 6557 | GoToCell(coords); |
f85afd4e | 6558 | } |
f85afd4e | 6559 | |
10a4531d | 6560 | return true; |
2d66e025 | 6561 | } |
f85afd4e | 6562 | |
10a4531d | 6563 | bool wxGrid::MoveCursorUpBlock(bool expandSelection) |
f85afd4e | 6564 | { |
10a4531d VZ |
6565 | return DoMoveCursorByBlock( |
6566 | expandSelection, | |
6567 | wxGridBackwardOperations(this, wxGridRowOperations()) | |
6568 | ); | |
6569 | } | |
8f177c8e | 6570 | |
10a4531d VZ |
6571 | bool wxGrid::MoveCursorDownBlock( bool expandSelection ) |
6572 | { | |
6573 | return DoMoveCursorByBlock( | |
6574 | expandSelection, | |
6575 | wxGridForwardOperations(this, wxGridRowOperations()) | |
6576 | ); | |
6577 | } | |
2d66e025 | 6578 | |
10a4531d VZ |
6579 | bool wxGrid::MoveCursorLeftBlock( bool expandSelection ) |
6580 | { | |
6581 | return DoMoveCursorByBlock( | |
6582 | expandSelection, | |
6583 | wxGridBackwardOperations(this, wxGridColumnOperations()) | |
6584 | ); | |
f85afd4e MB |
6585 | } |
6586 | ||
5c8fc7c1 | 6587 | bool wxGrid::MoveCursorRightBlock( bool expandSelection ) |
f85afd4e | 6588 | { |
10a4531d VZ |
6589 | return DoMoveCursorByBlock( |
6590 | expandSelection, | |
6591 | wxGridForwardOperations(this, wxGridColumnOperations()) | |
6592 | ); | |
f85afd4e MB |
6593 | } |
6594 | ||
f85afd4e | 6595 | // |
2d66e025 | 6596 | // ------ Label values and formatting |
f85afd4e MB |
6597 | // |
6598 | ||
ef316e23 | 6599 | void wxGrid::GetRowLabelAlignment( int *horiz, int *vert ) const |
f85afd4e | 6600 | { |
2f024384 DS |
6601 | if ( horiz ) |
6602 | *horiz = m_rowLabelHorizAlign; | |
6603 | if ( vert ) | |
6604 | *vert = m_rowLabelVertAlign; | |
f85afd4e MB |
6605 | } |
6606 | ||
ef316e23 | 6607 | void wxGrid::GetColLabelAlignment( int *horiz, int *vert ) const |
f85afd4e | 6608 | { |
2f024384 DS |
6609 | if ( horiz ) |
6610 | *horiz = m_colLabelHorizAlign; | |
6611 | if ( vert ) | |
6612 | *vert = m_colLabelVertAlign; | |
f85afd4e MB |
6613 | } |
6614 | ||
ef316e23 | 6615 | int wxGrid::GetColLabelTextOrientation() const |
d43851f7 JS |
6616 | { |
6617 | return m_colLabelTextOrientation; | |
6618 | } | |
6619 | ||
ef316e23 | 6620 | wxString wxGrid::GetRowLabelValue( int row ) const |
f85afd4e MB |
6621 | { |
6622 | if ( m_table ) | |
6623 | { | |
6624 | return m_table->GetRowLabelValue( row ); | |
6625 | } | |
6626 | else | |
6627 | { | |
6628 | wxString s; | |
6629 | s << row; | |
6630 | return s; | |
6631 | } | |
6632 | } | |
6633 | ||
ef316e23 | 6634 | wxString wxGrid::GetColLabelValue( int col ) const |
f85afd4e MB |
6635 | { |
6636 | if ( m_table ) | |
6637 | { | |
6638 | return m_table->GetColLabelValue( col ); | |
6639 | } | |
6640 | else | |
6641 | { | |
6642 | wxString s; | |
6643 | s << col; | |
6644 | return s; | |
6645 | } | |
6646 | } | |
6647 | ||
6648 | void wxGrid::SetRowLabelSize( int width ) | |
6649 | { | |
733f486a VZ |
6650 | wxASSERT( width >= 0 || width == wxGRID_AUTOSIZE ); |
6651 | ||
6652 | if ( width == wxGRID_AUTOSIZE ) | |
6653 | { | |
6654 | width = CalcColOrRowLabelAreaMinSize(wxGRID_ROW); | |
6655 | } | |
6656 | ||
2e8cd977 MB |
6657 | if ( width != m_rowLabelWidth ) |
6658 | { | |
2e8cd977 MB |
6659 | if ( width == 0 ) |
6660 | { | |
ca65c044 WS |
6661 | m_rowLabelWin->Show( false ); |
6662 | m_cornerLabelWin->Show( false ); | |
2e8cd977 | 6663 | } |
7807d81c | 6664 | else if ( m_rowLabelWidth == 0 ) |
2e8cd977 | 6665 | { |
ca65c044 | 6666 | m_rowLabelWin->Show( true ); |
2f024384 DS |
6667 | if ( m_colLabelHeight > 0 ) |
6668 | m_cornerLabelWin->Show( true ); | |
2e8cd977 | 6669 | } |
b99be8fb | 6670 | |
2e8cd977 | 6671 | m_rowLabelWidth = width; |
7807d81c | 6672 | CalcWindowSizes(); |
ca65c044 | 6673 | wxScrolledWindow::Refresh( true ); |
2e8cd977 | 6674 | } |
f85afd4e MB |
6675 | } |
6676 | ||
6677 | void wxGrid::SetColLabelSize( int height ) | |
6678 | { | |
733f486a VZ |
6679 | wxASSERT( height >=0 || height == wxGRID_AUTOSIZE ); |
6680 | ||
6681 | if ( height == wxGRID_AUTOSIZE ) | |
6682 | { | |
6683 | height = CalcColOrRowLabelAreaMinSize(wxGRID_COLUMN); | |
6684 | } | |
6685 | ||
2e8cd977 MB |
6686 | if ( height != m_colLabelHeight ) |
6687 | { | |
2e8cd977 MB |
6688 | if ( height == 0 ) |
6689 | { | |
ad805b9e | 6690 | m_colWindow->Show( false ); |
ca65c044 | 6691 | m_cornerLabelWin->Show( false ); |
2e8cd977 | 6692 | } |
7807d81c | 6693 | else if ( m_colLabelHeight == 0 ) |
2e8cd977 | 6694 | { |
ad805b9e | 6695 | m_colWindow->Show( true ); |
a9339fe2 DS |
6696 | if ( m_rowLabelWidth > 0 ) |
6697 | m_cornerLabelWin->Show( true ); | |
2e8cd977 | 6698 | } |
7807d81c | 6699 | |
2e8cd977 | 6700 | m_colLabelHeight = height; |
7807d81c | 6701 | CalcWindowSizes(); |
ca65c044 | 6702 | wxScrolledWindow::Refresh( true ); |
2e8cd977 | 6703 | } |
f85afd4e MB |
6704 | } |
6705 | ||
6706 | void wxGrid::SetLabelBackgroundColour( const wxColour& colour ) | |
6707 | { | |
2d66e025 MB |
6708 | if ( m_labelBackgroundColour != colour ) |
6709 | { | |
6710 | m_labelBackgroundColour = colour; | |
6711 | m_rowLabelWin->SetBackgroundColour( colour ); | |
ad805b9e | 6712 | m_colWindow->SetBackgroundColour( colour ); |
2d66e025 MB |
6713 | m_cornerLabelWin->SetBackgroundColour( colour ); |
6714 | ||
6715 | if ( !GetBatchCount() ) | |
6716 | { | |
6717 | m_rowLabelWin->Refresh(); | |
ad805b9e | 6718 | m_colWindow->Refresh(); |
2d66e025 MB |
6719 | m_cornerLabelWin->Refresh(); |
6720 | } | |
6721 | } | |
f85afd4e MB |
6722 | } |
6723 | ||
6724 | void wxGrid::SetLabelTextColour( const wxColour& colour ) | |
6725 | { | |
2d66e025 MB |
6726 | if ( m_labelTextColour != colour ) |
6727 | { | |
6728 | m_labelTextColour = colour; | |
6729 | if ( !GetBatchCount() ) | |
6730 | { | |
6731 | m_rowLabelWin->Refresh(); | |
ad805b9e | 6732 | m_colWindow->Refresh(); |
2d66e025 MB |
6733 | } |
6734 | } | |
f85afd4e MB |
6735 | } |
6736 | ||
6737 | void wxGrid::SetLabelFont( const wxFont& font ) | |
6738 | { | |
6739 | m_labelFont = font; | |
2d66e025 MB |
6740 | if ( !GetBatchCount() ) |
6741 | { | |
6742 | m_rowLabelWin->Refresh(); | |
ad805b9e | 6743 | m_colWindow->Refresh(); |
2d66e025 | 6744 | } |
f85afd4e MB |
6745 | } |
6746 | ||
6747 | void wxGrid::SetRowLabelAlignment( int horiz, int vert ) | |
6748 | { | |
4c7277db MB |
6749 | // allow old (incorrect) defs to be used |
6750 | switch ( horiz ) | |
6751 | { | |
6752 | case wxLEFT: horiz = wxALIGN_LEFT; break; | |
6753 | case wxRIGHT: horiz = wxALIGN_RIGHT; break; | |
6754 | case wxCENTRE: horiz = wxALIGN_CENTRE; break; | |
6755 | } | |
84912ef8 | 6756 | |
4c7277db MB |
6757 | switch ( vert ) |
6758 | { | |
6759 | case wxTOP: vert = wxALIGN_TOP; break; | |
6760 | case wxBOTTOM: vert = wxALIGN_BOTTOM; break; | |
6761 | case wxCENTRE: vert = wxALIGN_CENTRE; break; | |
6762 | } | |
84912ef8 | 6763 | |
4c7277db | 6764 | if ( horiz == wxALIGN_LEFT || horiz == wxALIGN_CENTRE || horiz == wxALIGN_RIGHT ) |
f85afd4e MB |
6765 | { |
6766 | m_rowLabelHorizAlign = horiz; | |
6767 | } | |
8f177c8e | 6768 | |
4c7277db | 6769 | if ( vert == wxALIGN_TOP || vert == wxALIGN_CENTRE || vert == wxALIGN_BOTTOM ) |
f85afd4e MB |
6770 | { |
6771 | m_rowLabelVertAlign = vert; | |
6772 | } | |
6773 | ||
2d66e025 MB |
6774 | if ( !GetBatchCount() ) |
6775 | { | |
6776 | m_rowLabelWin->Refresh(); | |
60ff3b99 | 6777 | } |
f85afd4e MB |
6778 | } |
6779 | ||
6780 | void wxGrid::SetColLabelAlignment( int horiz, int vert ) | |
6781 | { | |
4c7277db MB |
6782 | // allow old (incorrect) defs to be used |
6783 | switch ( horiz ) | |
6784 | { | |
6785 | case wxLEFT: horiz = wxALIGN_LEFT; break; | |
6786 | case wxRIGHT: horiz = wxALIGN_RIGHT; break; | |
6787 | case wxCENTRE: horiz = wxALIGN_CENTRE; break; | |
6788 | } | |
84912ef8 | 6789 | |
4c7277db MB |
6790 | switch ( vert ) |
6791 | { | |
6792 | case wxTOP: vert = wxALIGN_TOP; break; | |
6793 | case wxBOTTOM: vert = wxALIGN_BOTTOM; break; | |
6794 | case wxCENTRE: vert = wxALIGN_CENTRE; break; | |
6795 | } | |
84912ef8 | 6796 | |
4c7277db | 6797 | if ( horiz == wxALIGN_LEFT || horiz == wxALIGN_CENTRE || horiz == wxALIGN_RIGHT ) |
f85afd4e MB |
6798 | { |
6799 | m_colLabelHorizAlign = horiz; | |
6800 | } | |
8f177c8e | 6801 | |
4c7277db | 6802 | if ( vert == wxALIGN_TOP || vert == wxALIGN_CENTRE || vert == wxALIGN_BOTTOM ) |
f85afd4e MB |
6803 | { |
6804 | m_colLabelVertAlign = vert; | |
6805 | } | |
6806 | ||
2d66e025 MB |
6807 | if ( !GetBatchCount() ) |
6808 | { | |
ad805b9e | 6809 | m_colWindow->Refresh(); |
60ff3b99 | 6810 | } |
f85afd4e MB |
6811 | } |
6812 | ||
ca65c044 WS |
6813 | // Note: under MSW, the default column label font must be changed because it |
6814 | // does not support vertical printing | |
d43851f7 JS |
6815 | // |
6816 | // Example: wxFont font(9, wxSWISS, wxNORMAL, wxBOLD); | |
ca65c044 WS |
6817 | // pGrid->SetLabelFont(font); |
6818 | // pGrid->SetColLabelTextOrientation(wxVERTICAL); | |
d43851f7 JS |
6819 | // |
6820 | void wxGrid::SetColLabelTextOrientation( int textOrientation ) | |
6821 | { | |
4db6714b | 6822 | if ( textOrientation == wxHORIZONTAL || textOrientation == wxVERTICAL ) |
d43851f7 | 6823 | m_colLabelTextOrientation = textOrientation; |
d43851f7 JS |
6824 | |
6825 | if ( !GetBatchCount() ) | |
ad805b9e | 6826 | m_colWindow->Refresh(); |
d43851f7 JS |
6827 | } |
6828 | ||
f85afd4e MB |
6829 | void wxGrid::SetRowLabelValue( int row, const wxString& s ) |
6830 | { | |
6831 | if ( m_table ) | |
6832 | { | |
6833 | m_table->SetRowLabelValue( row, s ); | |
2d66e025 MB |
6834 | if ( !GetBatchCount() ) |
6835 | { | |
ccdee36f | 6836 | wxRect rect = CellToRect( row, 0 ); |
70c7a608 SN |
6837 | if ( rect.height > 0 ) |
6838 | { | |
cb309039 | 6839 | CalcScrolledPosition(0, rect.y, &rect.x, &rect.y); |
b1944ebc | 6840 | rect.x = 0; |
70c7a608 | 6841 | rect.width = m_rowLabelWidth; |
ca65c044 | 6842 | m_rowLabelWin->Refresh( true, &rect ); |
70c7a608 | 6843 | } |
2d66e025 | 6844 | } |
f85afd4e MB |
6845 | } |
6846 | } | |
6847 | ||
6848 | void wxGrid::SetColLabelValue( int col, const wxString& s ) | |
6849 | { | |
6850 | if ( m_table ) | |
6851 | { | |
6852 | m_table->SetColLabelValue( col, s ); | |
2d66e025 MB |
6853 | if ( !GetBatchCount() ) |
6854 | { | |
ad805b9e | 6855 | if ( m_useNativeHeader ) |
70c7a608 | 6856 | { |
3039ade9 | 6857 | GetGridColHeader()->UpdateColumn(col); |
ad805b9e VZ |
6858 | } |
6859 | else | |
6860 | { | |
6861 | wxRect rect = CellToRect( 0, col ); | |
6862 | if ( rect.width > 0 ) | |
6863 | { | |
6864 | CalcScrolledPosition(rect.x, 0, &rect.x, &rect.y); | |
6865 | rect.y = 0; | |
6866 | rect.height = m_colLabelHeight; | |
6867 | GetColLabelWindow()->Refresh( true, &rect ); | |
6868 | } | |
70c7a608 | 6869 | } |
2d66e025 | 6870 | } |
f85afd4e MB |
6871 | } |
6872 | } | |
6873 | ||
6874 | void wxGrid::SetGridLineColour( const wxColour& colour ) | |
6875 | { | |
2d66e025 MB |
6876 | if ( m_gridLineColour != colour ) |
6877 | { | |
6878 | m_gridLineColour = colour; | |
60ff3b99 | 6879 | |
9f7aee01 VZ |
6880 | if ( GridLinesEnabled() ) |
6881 | RedrawGridLines(); | |
2d66e025 | 6882 | } |
f85afd4e MB |
6883 | } |
6884 | ||
f6bcfd97 BP |
6885 | void wxGrid::SetCellHighlightColour( const wxColour& colour ) |
6886 | { | |
6887 | if ( m_cellHighlightColour != colour ) | |
6888 | { | |
6889 | m_cellHighlightColour = colour; | |
6890 | ||
6891 | wxClientDC dc( m_gridWin ); | |
6892 | PrepareDC( dc ); | |
6893 | wxGridCellAttr* attr = GetCellAttr(m_currentCellCoords); | |
6894 | DrawCellHighlight(dc, attr); | |
6895 | attr->DecRef(); | |
6896 | } | |
6897 | } | |
6898 | ||
d2520c85 RD |
6899 | void wxGrid::SetCellHighlightPenWidth(int width) |
6900 | { | |
4db6714b KH |
6901 | if (m_cellHighlightPenWidth != width) |
6902 | { | |
d2520c85 RD |
6903 | m_cellHighlightPenWidth = width; |
6904 | ||
6905 | // Just redrawing the cell highlight is not enough since that won't | |
6906 | // make any visible change if the the thickness is getting smaller. | |
6907 | int row = m_currentCellCoords.GetRow(); | |
6908 | int col = m_currentCellCoords.GetCol(); | |
1b3b96d8 | 6909 | if ( row == -1 || col == -1 || GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) |
d2520c85 | 6910 | return; |
2f024384 | 6911 | |
d2520c85 | 6912 | wxRect rect = CellToRect(row, col); |
ca65c044 | 6913 | m_gridWin->Refresh(true, &rect); |
d2520c85 RD |
6914 | } |
6915 | } | |
6916 | ||
6917 | void wxGrid::SetCellHighlightROPenWidth(int width) | |
6918 | { | |
4db6714b KH |
6919 | if (m_cellHighlightROPenWidth != width) |
6920 | { | |
d2520c85 RD |
6921 | m_cellHighlightROPenWidth = width; |
6922 | ||
6923 | // Just redrawing the cell highlight is not enough since that won't | |
6924 | // make any visible change if the the thickness is getting smaller. | |
6925 | int row = m_currentCellCoords.GetRow(); | |
6926 | int col = m_currentCellCoords.GetCol(); | |
76c66f19 VZ |
6927 | if ( row == -1 || col == -1 || |
6928 | GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) | |
d2520c85 | 6929 | return; |
ccdee36f | 6930 | |
d2520c85 | 6931 | wxRect rect = CellToRect(row, col); |
ca65c044 | 6932 | m_gridWin->Refresh(true, &rect); |
d2520c85 RD |
6933 | } |
6934 | } | |
6935 | ||
9f7aee01 VZ |
6936 | void wxGrid::RedrawGridLines() |
6937 | { | |
6938 | // the lines will be redrawn when the window is thawn | |
6939 | if ( GetBatchCount() ) | |
6940 | return; | |
6941 | ||
6942 | if ( GridLinesEnabled() ) | |
6943 | { | |
6944 | wxClientDC dc( m_gridWin ); | |
6945 | PrepareDC( dc ); | |
6946 | DrawAllGridLines( dc, wxRegion() ); | |
6947 | } | |
6948 | else // remove the grid lines | |
6949 | { | |
6950 | m_gridWin->Refresh(); | |
6951 | } | |
6952 | } | |
6953 | ||
f85afd4e MB |
6954 | void wxGrid::EnableGridLines( bool enable ) |
6955 | { | |
6956 | if ( enable != m_gridLinesEnabled ) | |
6957 | { | |
6958 | m_gridLinesEnabled = enable; | |
2d66e025 | 6959 | |
9f7aee01 VZ |
6960 | RedrawGridLines(); |
6961 | } | |
6962 | } | |
6963 | ||
6964 | void wxGrid::DoClipGridLines(bool& var, bool clip) | |
6965 | { | |
6966 | if ( clip != var ) | |
6967 | { | |
6968 | var = clip; | |
6969 | ||
6970 | if ( GridLinesEnabled() ) | |
6971 | RedrawGridLines(); | |
f85afd4e MB |
6972 | } |
6973 | } | |
6974 | ||
ef316e23 | 6975 | int wxGrid::GetDefaultRowSize() const |
f85afd4e MB |
6976 | { |
6977 | return m_defaultRowHeight; | |
6978 | } | |
6979 | ||
ef316e23 | 6980 | int wxGrid::GetRowSize( int row ) const |
f85afd4e | 6981 | { |
9a83f860 | 6982 | wxCHECK_MSG( row >= 0 && row < m_numRows, 0, wxT("invalid row index") ); |
b99be8fb | 6983 | |
7c1cb261 | 6984 | return GetRowHeight(row); |
f85afd4e MB |
6985 | } |
6986 | ||
ef316e23 | 6987 | int wxGrid::GetDefaultColSize() const |
f85afd4e MB |
6988 | { |
6989 | return m_defaultColWidth; | |
6990 | } | |
6991 | ||
ef316e23 | 6992 | int wxGrid::GetColSize( int col ) const |
f85afd4e | 6993 | { |
9a83f860 | 6994 | wxCHECK_MSG( col >= 0 && col < m_numCols, 0, wxT("invalid column index") ); |
b99be8fb | 6995 | |
7c1cb261 | 6996 | return GetColWidth(col); |
f85afd4e MB |
6997 | } |
6998 | ||
2e9a6788 VZ |
6999 | // ============================================================================ |
7000 | // access to the grid attributes: each of them has a default value in the grid | |
7001 | // itself and may be overidden on a per-cell basis | |
7002 | // ============================================================================ | |
7003 | ||
7004 | // ---------------------------------------------------------------------------- | |
7005 | // setting default attributes | |
7006 | // ---------------------------------------------------------------------------- | |
7007 | ||
7008 | void wxGrid::SetDefaultCellBackgroundColour( const wxColour& col ) | |
7009 | { | |
2796cce3 | 7010 | m_defaultCellAttr->SetBackgroundColour(col); |
c916e13b RR |
7011 | #ifdef __WXGTK__ |
7012 | m_gridWin->SetBackgroundColour(col); | |
7013 | #endif | |
2e9a6788 VZ |
7014 | } |
7015 | ||
7016 | void wxGrid::SetDefaultCellTextColour( const wxColour& col ) | |
7017 | { | |
2796cce3 | 7018 | m_defaultCellAttr->SetTextColour(col); |
2e9a6788 VZ |
7019 | } |
7020 | ||
7021 | void wxGrid::SetDefaultCellAlignment( int horiz, int vert ) | |
7022 | { | |
2796cce3 | 7023 | m_defaultCellAttr->SetAlignment(horiz, vert); |
2e9a6788 VZ |
7024 | } |
7025 | ||
27f35b66 SN |
7026 | void wxGrid::SetDefaultCellOverflow( bool allow ) |
7027 | { | |
7028 | m_defaultCellAttr->SetOverflow(allow); | |
7029 | } | |
7030 | ||
2e9a6788 VZ |
7031 | void wxGrid::SetDefaultCellFont( const wxFont& font ) |
7032 | { | |
2796cce3 RD |
7033 | m_defaultCellAttr->SetFont(font); |
7034 | } | |
7035 | ||
ca63e8e9 RD |
7036 | // For editors and renderers the type registry takes precedence over the |
7037 | // default attr, so we need to register the new editor/renderer for the string | |
7038 | // data type in order to make setting a default editor/renderer appear to | |
7039 | // work correctly. | |
7040 | ||
0ba143c9 RD |
7041 | void wxGrid::SetDefaultRenderer(wxGridCellRenderer *renderer) |
7042 | { | |
ca63e8e9 RD |
7043 | RegisterDataType(wxGRID_VALUE_STRING, |
7044 | renderer, | |
7045 | GetDefaultEditorForType(wxGRID_VALUE_STRING)); | |
0ba143c9 | 7046 | } |
2e9a6788 | 7047 | |
0ba143c9 RD |
7048 | void wxGrid::SetDefaultEditor(wxGridCellEditor *editor) |
7049 | { | |
ca63e8e9 RD |
7050 | RegisterDataType(wxGRID_VALUE_STRING, |
7051 | GetDefaultRendererForType(wxGRID_VALUE_STRING), | |
42841dfc | 7052 | editor); |
0ba143c9 | 7053 | } |
9b4aede2 | 7054 | |
2e9a6788 | 7055 | // ---------------------------------------------------------------------------- |
ef316e23 | 7056 | // access to the default attributes |
2e9a6788 VZ |
7057 | // ---------------------------------------------------------------------------- |
7058 | ||
ef316e23 | 7059 | wxColour wxGrid::GetDefaultCellBackgroundColour() const |
f85afd4e | 7060 | { |
2796cce3 | 7061 | return m_defaultCellAttr->GetBackgroundColour(); |
f85afd4e MB |
7062 | } |
7063 | ||
ef316e23 | 7064 | wxColour wxGrid::GetDefaultCellTextColour() const |
2e9a6788 | 7065 | { |
2796cce3 | 7066 | return m_defaultCellAttr->GetTextColour(); |
2e9a6788 VZ |
7067 | } |
7068 | ||
ef316e23 | 7069 | wxFont wxGrid::GetDefaultCellFont() const |
2e9a6788 | 7070 | { |
2796cce3 | 7071 | return m_defaultCellAttr->GetFont(); |
2e9a6788 VZ |
7072 | } |
7073 | ||
ef316e23 | 7074 | void wxGrid::GetDefaultCellAlignment( int *horiz, int *vert ) const |
2e9a6788 | 7075 | { |
2796cce3 | 7076 | m_defaultCellAttr->GetAlignment(horiz, vert); |
2e9a6788 VZ |
7077 | } |
7078 | ||
ef316e23 | 7079 | bool wxGrid::GetDefaultCellOverflow() const |
27f35b66 SN |
7080 | { |
7081 | return m_defaultCellAttr->GetOverflow(); | |
7082 | } | |
7083 | ||
0ba143c9 RD |
7084 | wxGridCellRenderer *wxGrid::GetDefaultRenderer() const |
7085 | { | |
0b190b0f | 7086 | return m_defaultCellAttr->GetRenderer(NULL, 0, 0); |
0ba143c9 | 7087 | } |
ab79958a | 7088 | |
0ba143c9 RD |
7089 | wxGridCellEditor *wxGrid::GetDefaultEditor() const |
7090 | { | |
4db6714b | 7091 | return m_defaultCellAttr->GetEditor(NULL, 0, 0); |
0ba143c9 | 7092 | } |
9b4aede2 | 7093 | |
2e9a6788 VZ |
7094 | // ---------------------------------------------------------------------------- |
7095 | // access to cell attributes | |
7096 | // ---------------------------------------------------------------------------- | |
7097 | ||
ef316e23 | 7098 | wxColour wxGrid::GetCellBackgroundColour(int row, int col) const |
f85afd4e | 7099 | { |
0a976765 | 7100 | wxGridCellAttr *attr = GetCellAttr(row, col); |
2796cce3 | 7101 | wxColour colour = attr->GetBackgroundColour(); |
39bcce60 | 7102 | attr->DecRef(); |
2f024384 | 7103 | |
b99be8fb | 7104 | return colour; |
f85afd4e MB |
7105 | } |
7106 | ||
ef316e23 | 7107 | wxColour wxGrid::GetCellTextColour( int row, int col ) const |
f85afd4e | 7108 | { |
0a976765 | 7109 | wxGridCellAttr *attr = GetCellAttr(row, col); |
2796cce3 | 7110 | wxColour colour = attr->GetTextColour(); |
39bcce60 | 7111 | attr->DecRef(); |
2f024384 | 7112 | |
b99be8fb | 7113 | return colour; |
f85afd4e MB |
7114 | } |
7115 | ||
ef316e23 | 7116 | wxFont wxGrid::GetCellFont( int row, int col ) const |
f85afd4e | 7117 | { |
0a976765 | 7118 | wxGridCellAttr *attr = GetCellAttr(row, col); |
2796cce3 | 7119 | wxFont font = attr->GetFont(); |
39bcce60 | 7120 | attr->DecRef(); |
2f024384 | 7121 | |
b99be8fb | 7122 | return font; |
f85afd4e MB |
7123 | } |
7124 | ||
ef316e23 | 7125 | void wxGrid::GetCellAlignment( int row, int col, int *horiz, int *vert ) const |
f85afd4e | 7126 | { |
0a976765 | 7127 | wxGridCellAttr *attr = GetCellAttr(row, col); |
2796cce3 | 7128 | attr->GetAlignment(horiz, vert); |
39bcce60 | 7129 | attr->DecRef(); |
2e9a6788 VZ |
7130 | } |
7131 | ||
ef316e23 | 7132 | bool wxGrid::GetCellOverflow( int row, int col ) const |
27f35b66 SN |
7133 | { |
7134 | wxGridCellAttr *attr = GetCellAttr(row, col); | |
7135 | bool allow = attr->GetOverflow(); | |
7136 | attr->DecRef(); | |
4db6714b | 7137 | |
27f35b66 SN |
7138 | return allow; |
7139 | } | |
7140 | ||
ea99e8e3 VZ |
7141 | wxGrid::CellSpan |
7142 | wxGrid::GetCellSize( int row, int col, int *num_rows, int *num_cols ) const | |
27f35b66 SN |
7143 | { |
7144 | wxGridCellAttr *attr = GetCellAttr(row, col); | |
7145 | attr->GetSize( num_rows, num_cols ); | |
7146 | attr->DecRef(); | |
ea99e8e3 VZ |
7147 | |
7148 | if ( *num_rows == 1 && *num_cols == 1 ) | |
7149 | return CellSpan_None; // just a normal cell | |
7150 | ||
7151 | if ( *num_rows < 0 || *num_cols < 0 ) | |
7152 | return CellSpan_Inside; // covered by a multi-span cell | |
7153 | ||
7154 | // this cell spans multiple cells to its right/bottom | |
7155 | return CellSpan_Main; | |
27f35b66 SN |
7156 | } |
7157 | ||
ef316e23 | 7158 | wxGridCellRenderer* wxGrid::GetCellRenderer(int row, int col) const |
2796cce3 RD |
7159 | { |
7160 | wxGridCellAttr* attr = GetCellAttr(row, col); | |
28a77bc4 | 7161 | wxGridCellRenderer* renderer = attr->GetRenderer(this, row, col); |
2796cce3 | 7162 | attr->DecRef(); |
0b190b0f | 7163 | |
2796cce3 RD |
7164 | return renderer; |
7165 | } | |
7166 | ||
ef316e23 | 7167 | wxGridCellEditor* wxGrid::GetCellEditor(int row, int col) const |
9b4aede2 RD |
7168 | { |
7169 | wxGridCellAttr* attr = GetCellAttr(row, col); | |
28a77bc4 | 7170 | wxGridCellEditor* editor = attr->GetEditor(this, row, col); |
9b4aede2 | 7171 | attr->DecRef(); |
0b190b0f | 7172 | |
9b4aede2 RD |
7173 | return editor; |
7174 | } | |
7175 | ||
283b7808 VZ |
7176 | bool wxGrid::IsReadOnly(int row, int col) const |
7177 | { | |
7178 | wxGridCellAttr* attr = GetCellAttr(row, col); | |
7179 | bool isReadOnly = attr->IsReadOnly(); | |
7180 | attr->DecRef(); | |
4db6714b | 7181 | |
283b7808 VZ |
7182 | return isReadOnly; |
7183 | } | |
7184 | ||
2e9a6788 | 7185 | // ---------------------------------------------------------------------------- |
758cbedf | 7186 | // attribute support: cache, automatic provider creation, ... |
2e9a6788 VZ |
7187 | // ---------------------------------------------------------------------------- |
7188 | ||
ef316e23 | 7189 | bool wxGrid::CanHaveAttributes() const |
2e9a6788 VZ |
7190 | { |
7191 | if ( !m_table ) | |
7192 | { | |
ca65c044 | 7193 | return false; |
2e9a6788 VZ |
7194 | } |
7195 | ||
f2d76237 | 7196 | return m_table->CanHaveAttributes(); |
2e9a6788 VZ |
7197 | } |
7198 | ||
0a976765 VZ |
7199 | void wxGrid::ClearAttrCache() |
7200 | { | |
7201 | if ( m_attrCache.row != -1 ) | |
7202 | { | |
54181a33 | 7203 | wxGridCellAttr *oldAttr = m_attrCache.attr; |
19d7140e | 7204 | m_attrCache.attr = NULL; |
0a976765 | 7205 | m_attrCache.row = -1; |
1506cc66 SN |
7206 | // wxSafeDecRec(...) might cause event processing that accesses |
7207 | // the cached attribute, if one exists (e.g. by deleting the | |
7208 | // editor stored within the attribute). Therefore it is important | |
ace8d849 | 7209 | // to invalidate the cache before calling wxSafeDecRef! |
1506cc66 | 7210 | wxSafeDecRef(oldAttr); |
0a976765 VZ |
7211 | } |
7212 | } | |
7213 | ||
7214 | void wxGrid::CacheAttr(int row, int col, wxGridCellAttr *attr) const | |
7215 | { | |
2b5f62a0 VZ |
7216 | if ( attr != NULL ) |
7217 | { | |
7218 | wxGrid *self = (wxGrid *)this; // const_cast | |
0a976765 | 7219 | |
2b5f62a0 VZ |
7220 | self->ClearAttrCache(); |
7221 | self->m_attrCache.row = row; | |
7222 | self->m_attrCache.col = col; | |
7223 | self->m_attrCache.attr = attr; | |
7224 | wxSafeIncRef(attr); | |
7225 | } | |
0a976765 VZ |
7226 | } |
7227 | ||
7228 | bool wxGrid::LookupAttr(int row, int col, wxGridCellAttr **attr) const | |
7229 | { | |
7230 | if ( row == m_attrCache.row && col == m_attrCache.col ) | |
7231 | { | |
7232 | *attr = m_attrCache.attr; | |
39bcce60 | 7233 | wxSafeIncRef(m_attrCache.attr); |
0a976765 VZ |
7234 | |
7235 | #ifdef DEBUG_ATTR_CACHE | |
7236 | gs_nAttrCacheHits++; | |
7237 | #endif | |
7238 | ||
ca65c044 | 7239 | return true; |
0a976765 VZ |
7240 | } |
7241 | else | |
7242 | { | |
7243 | #ifdef DEBUG_ATTR_CACHE | |
7244 | gs_nAttrCacheMisses++; | |
7245 | #endif | |
4db6714b | 7246 | |
ca65c044 | 7247 | return false; |
0a976765 VZ |
7248 | } |
7249 | } | |
7250 | ||
2e9a6788 VZ |
7251 | wxGridCellAttr *wxGrid::GetCellAttr(int row, int col) const |
7252 | { | |
a373d23b SN |
7253 | wxGridCellAttr *attr = NULL; |
7254 | // Additional test to avoid looking at the cache e.g. for | |
7255 | // wxNoCellCoords, as this will confuse memory management. | |
7256 | if ( row >= 0 ) | |
7257 | { | |
3ed884a0 SN |
7258 | if ( !LookupAttr(row, col, &attr) ) |
7259 | { | |
c2f5b920 | 7260 | attr = m_table ? m_table->GetAttr(row, col, wxGridCellAttr::Any) |
10a4531d | 7261 | : NULL; |
3ed884a0 SN |
7262 | CacheAttr(row, col, attr); |
7263 | } | |
0a976765 | 7264 | } |
4db6714b | 7265 | |
508011ce VZ |
7266 | if (attr) |
7267 | { | |
2796cce3 | 7268 | attr->SetDefAttr(m_defaultCellAttr); |
508011ce VZ |
7269 | } |
7270 | else | |
7271 | { | |
2796cce3 RD |
7272 | attr = m_defaultCellAttr; |
7273 | attr->IncRef(); | |
7274 | } | |
2e9a6788 | 7275 | |
0a976765 VZ |
7276 | return attr; |
7277 | } | |
7278 | ||
7279 | wxGridCellAttr *wxGrid::GetOrCreateCellAttr(int row, int col) const | |
7280 | { | |
10a4531d | 7281 | wxGridCellAttr *attr = NULL; |
71e60f70 | 7282 | bool canHave = ((wxGrid*)this)->CanHaveAttributes(); |
0a976765 | 7283 | |
9a83f860 VZ |
7284 | wxCHECK_MSG( canHave, attr, wxT("Cell attributes not allowed")); |
7285 | wxCHECK_MSG( m_table, attr, wxT("must have a table") ); | |
1df4050d VZ |
7286 | |
7287 | attr = m_table->GetAttr(row, col, wxGridCellAttr::Cell); | |
7288 | if ( !attr ) | |
7289 | { | |
7290 | attr = new wxGridCellAttr(m_defaultCellAttr); | |
7291 | ||
7292 | // artificially inc the ref count to match DecRef() in caller | |
7293 | attr->IncRef(); | |
7294 | m_table->SetAttr(attr, row, col); | |
7295 | } | |
0a976765 | 7296 | |
2e9a6788 VZ |
7297 | return attr; |
7298 | } | |
7299 | ||
0b190b0f VZ |
7300 | // ---------------------------------------------------------------------------- |
7301 | // setting column attributes (wrappers around SetColAttr) | |
7302 | // ---------------------------------------------------------------------------- | |
7303 | ||
7304 | void wxGrid::SetColFormatBool(int col) | |
7305 | { | |
7306 | SetColFormatCustom(col, wxGRID_VALUE_BOOL); | |
7307 | } | |
7308 | ||
7309 | void wxGrid::SetColFormatNumber(int col) | |
7310 | { | |
7311 | SetColFormatCustom(col, wxGRID_VALUE_NUMBER); | |
7312 | } | |
7313 | ||
7314 | void wxGrid::SetColFormatFloat(int col, int width, int precision) | |
7315 | { | |
7316 | wxString typeName = wxGRID_VALUE_FLOAT; | |
7317 | if ( (width != -1) || (precision != -1) ) | |
7318 | { | |
9a83f860 | 7319 | typeName << wxT(':') << width << wxT(',') << precision; |
0b190b0f VZ |
7320 | } |
7321 | ||
7322 | SetColFormatCustom(col, typeName); | |
7323 | } | |
7324 | ||
7325 | void wxGrid::SetColFormatCustom(int col, const wxString& typeName) | |
7326 | { | |
999836aa | 7327 | wxGridCellAttr *attr = m_table->GetAttr(-1, col, wxGridCellAttr::Col ); |
4db6714b | 7328 | if (!attr) |
19d7140e | 7329 | attr = new wxGridCellAttr; |
0b190b0f VZ |
7330 | wxGridCellRenderer *renderer = GetDefaultRendererForType(typeName); |
7331 | attr->SetRenderer(renderer); | |
54181a33 VZ |
7332 | wxGridCellEditor *editor = GetDefaultEditorForType(typeName); |
7333 | attr->SetEditor(editor); | |
0b190b0f VZ |
7334 | |
7335 | SetColAttr(col, attr); | |
19d7140e | 7336 | |
0b190b0f VZ |
7337 | } |
7338 | ||
758cbedf VZ |
7339 | // ---------------------------------------------------------------------------- |
7340 | // setting cell attributes: this is forwarded to the table | |
7341 | // ---------------------------------------------------------------------------- | |
7342 | ||
27f35b66 SN |
7343 | void wxGrid::SetAttr(int row, int col, wxGridCellAttr *attr) |
7344 | { | |
7345 | if ( CanHaveAttributes() ) | |
7346 | { | |
7347 | m_table->SetAttr(attr, row, col); | |
7348 | ClearAttrCache(); | |
7349 | } | |
7350 | else | |
7351 | { | |
7352 | wxSafeDecRef(attr); | |
7353 | } | |
7354 | } | |
7355 | ||
758cbedf VZ |
7356 | void wxGrid::SetRowAttr(int row, wxGridCellAttr *attr) |
7357 | { | |
7358 | if ( CanHaveAttributes() ) | |
7359 | { | |
7360 | m_table->SetRowAttr(attr, row); | |
19d7140e | 7361 | ClearAttrCache(); |
758cbedf VZ |
7362 | } |
7363 | else | |
7364 | { | |
39bcce60 | 7365 | wxSafeDecRef(attr); |
758cbedf VZ |
7366 | } |
7367 | } | |
7368 | ||
7369 | void wxGrid::SetColAttr(int col, wxGridCellAttr *attr) | |
7370 | { | |
7371 | if ( CanHaveAttributes() ) | |
7372 | { | |
7373 | m_table->SetColAttr(attr, col); | |
19d7140e | 7374 | ClearAttrCache(); |
758cbedf VZ |
7375 | } |
7376 | else | |
7377 | { | |
39bcce60 | 7378 | wxSafeDecRef(attr); |
758cbedf VZ |
7379 | } |
7380 | } | |
7381 | ||
2e9a6788 VZ |
7382 | void wxGrid::SetCellBackgroundColour( int row, int col, const wxColour& colour ) |
7383 | { | |
7384 | if ( CanHaveAttributes() ) | |
7385 | { | |
0a976765 | 7386 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
2e9a6788 VZ |
7387 | attr->SetBackgroundColour(colour); |
7388 | attr->DecRef(); | |
7389 | } | |
7390 | } | |
7391 | ||
7392 | void wxGrid::SetCellTextColour( int row, int col, const wxColour& colour ) | |
7393 | { | |
7394 | if ( CanHaveAttributes() ) | |
7395 | { | |
0a976765 | 7396 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
2e9a6788 VZ |
7397 | attr->SetTextColour(colour); |
7398 | attr->DecRef(); | |
7399 | } | |
7400 | } | |
7401 | ||
7402 | void wxGrid::SetCellFont( int row, int col, const wxFont& font ) | |
7403 | { | |
7404 | if ( CanHaveAttributes() ) | |
7405 | { | |
0a976765 | 7406 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
2e9a6788 VZ |
7407 | attr->SetFont(font); |
7408 | attr->DecRef(); | |
7409 | } | |
7410 | } | |
7411 | ||
7412 | void wxGrid::SetCellAlignment( int row, int col, int horiz, int vert ) | |
7413 | { | |
7414 | if ( CanHaveAttributes() ) | |
7415 | { | |
0a976765 | 7416 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
2e9a6788 VZ |
7417 | attr->SetAlignment(horiz, vert); |
7418 | attr->DecRef(); | |
ab79958a VZ |
7419 | } |
7420 | } | |
7421 | ||
27f35b66 SN |
7422 | void wxGrid::SetCellOverflow( int row, int col, bool allow ) |
7423 | { | |
7424 | if ( CanHaveAttributes() ) | |
7425 | { | |
7426 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); | |
7427 | attr->SetOverflow(allow); | |
7428 | attr->DecRef(); | |
7429 | } | |
7430 | } | |
7431 | ||
7432 | void wxGrid::SetCellSize( int row, int col, int num_rows, int num_cols ) | |
7433 | { | |
7434 | if ( CanHaveAttributes() ) | |
7435 | { | |
7436 | int cell_rows, cell_cols; | |
7437 | ||
7438 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); | |
7439 | attr->GetSize(&cell_rows, &cell_cols); | |
7440 | attr->SetSize(num_rows, num_cols); | |
7441 | attr->DecRef(); | |
7442 | ||
7443 | // Cannot set the size of a cell to 0 or negative values | |
7444 | // While it is perfectly legal to do that, this function cannot | |
7445 | // handle all the possibilies, do it by hand by getting the CellAttr. | |
7446 | // You can only set the size of a cell to 1,1 or greater with this fn | |
7447 | wxASSERT_MSG( !((cell_rows < 1) || (cell_cols < 1)), | |
7448 | wxT("wxGrid::SetCellSize setting cell size that is already part of another cell")); | |
7449 | wxASSERT_MSG( !((num_rows < 1) || (num_cols < 1)), | |
7450 | wxT("wxGrid::SetCellSize setting cell size to < 1")); | |
7451 | ||
7452 | // if this was already a multicell then "turn off" the other cells first | |
a6b2078d | 7453 | if ((cell_rows > 1) || (cell_cols > 1)) |
27f35b66 SN |
7454 | { |
7455 | int i, j; | |
2f024384 | 7456 | for (j=row; j < row + cell_rows; j++) |
27f35b66 | 7457 | { |
2f024384 | 7458 | for (i=col; i < col + cell_cols; i++) |
27f35b66 SN |
7459 | { |
7460 | if ((i != col) || (j != row)) | |
7461 | { | |
7462 | wxGridCellAttr *attr_stub = GetOrCreateCellAttr(j, i); | |
7463 | attr_stub->SetSize( 1, 1 ); | |
7464 | attr_stub->DecRef(); | |
7465 | } | |
7466 | } | |
7467 | } | |
7468 | } | |
7469 | ||
7470 | // mark the cells that will be covered by this cell to | |
7471 | // negative or zero values to point back at this cell | |
7472 | if (((num_rows > 1) || (num_cols > 1)) && (num_rows >= 1) && (num_cols >= 1)) | |
7473 | { | |
7474 | int i, j; | |
2f024384 | 7475 | for (j=row; j < row + num_rows; j++) |
27f35b66 | 7476 | { |
2f024384 | 7477 | for (i=col; i < col + num_cols; i++) |
27f35b66 SN |
7478 | { |
7479 | if ((i != col) || (j != row)) | |
7480 | { | |
7481 | wxGridCellAttr *attr_stub = GetOrCreateCellAttr(j, i); | |
2f024384 | 7482 | attr_stub->SetSize( row - j, col - i ); |
27f35b66 SN |
7483 | attr_stub->DecRef(); |
7484 | } | |
7485 | } | |
7486 | } | |
7487 | } | |
7488 | } | |
7489 | } | |
7490 | ||
ab79958a VZ |
7491 | void wxGrid::SetCellRenderer(int row, int col, wxGridCellRenderer *renderer) |
7492 | { | |
7493 | if ( CanHaveAttributes() ) | |
7494 | { | |
0a976765 | 7495 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
ab79958a VZ |
7496 | attr->SetRenderer(renderer); |
7497 | attr->DecRef(); | |
9b4aede2 RD |
7498 | } |
7499 | } | |
7500 | ||
7501 | void wxGrid::SetCellEditor(int row, int col, wxGridCellEditor* editor) | |
7502 | { | |
7503 | if ( CanHaveAttributes() ) | |
7504 | { | |
7505 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); | |
7506 | attr->SetEditor(editor); | |
7507 | attr->DecRef(); | |
283b7808 VZ |
7508 | } |
7509 | } | |
7510 | ||
7511 | void wxGrid::SetReadOnly(int row, int col, bool isReadOnly) | |
7512 | { | |
7513 | if ( CanHaveAttributes() ) | |
7514 | { | |
7515 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); | |
7516 | attr->SetReadOnly(isReadOnly); | |
7517 | attr->DecRef(); | |
2e9a6788 | 7518 | } |
f85afd4e MB |
7519 | } |
7520 | ||
f2d76237 RD |
7521 | // ---------------------------------------------------------------------------- |
7522 | // Data type registration | |
7523 | // ---------------------------------------------------------------------------- | |
7524 | ||
7525 | void wxGrid::RegisterDataType(const wxString& typeName, | |
7526 | wxGridCellRenderer* renderer, | |
7527 | wxGridCellEditor* editor) | |
7528 | { | |
7529 | m_typeRegistry->RegisterDataType(typeName, renderer, editor); | |
7530 | } | |
7531 | ||
7532 | ||
a9339fe2 | 7533 | wxGridCellEditor * wxGrid::GetDefaultEditorForCell(int row, int col) const |
f2d76237 RD |
7534 | { |
7535 | wxString typeName = m_table->GetTypeName(row, col); | |
7536 | return GetDefaultEditorForType(typeName); | |
7537 | } | |
7538 | ||
a9339fe2 | 7539 | wxGridCellRenderer * wxGrid::GetDefaultRendererForCell(int row, int col) const |
f2d76237 RD |
7540 | { |
7541 | wxString typeName = m_table->GetTypeName(row, col); | |
7542 | return GetDefaultRendererForType(typeName); | |
7543 | } | |
7544 | ||
a9339fe2 | 7545 | wxGridCellEditor * wxGrid::GetDefaultEditorForType(const wxString& typeName) const |
f2d76237 | 7546 | { |
c4608a8a | 7547 | int index = m_typeRegistry->FindOrCloneDataType(typeName); |
0b190b0f VZ |
7548 | if ( index == wxNOT_FOUND ) |
7549 | { | |
767e0835 | 7550 | wxFAIL_MSG(wxString::Format(wxT("Unknown data type name [%s]"), typeName.c_str())); |
0b190b0f | 7551 | |
f2d76237 RD |
7552 | return NULL; |
7553 | } | |
0b190b0f | 7554 | |
f2d76237 RD |
7555 | return m_typeRegistry->GetEditor(index); |
7556 | } | |
7557 | ||
a9339fe2 | 7558 | wxGridCellRenderer * wxGrid::GetDefaultRendererForType(const wxString& typeName) const |
f2d76237 | 7559 | { |
c4608a8a | 7560 | int index = m_typeRegistry->FindOrCloneDataType(typeName); |
0b190b0f VZ |
7561 | if ( index == wxNOT_FOUND ) |
7562 | { | |
767e0835 | 7563 | wxFAIL_MSG(wxString::Format(wxT("Unknown data type name [%s]"), typeName.c_str())); |
0b190b0f | 7564 | |
c4608a8a | 7565 | return NULL; |
e72b4213 | 7566 | } |
0b190b0f | 7567 | |
c4608a8a | 7568 | return m_typeRegistry->GetRenderer(index); |
f2d76237 RD |
7569 | } |
7570 | ||
2e9a6788 VZ |
7571 | // ---------------------------------------------------------------------------- |
7572 | // row/col size | |
7573 | // ---------------------------------------------------------------------------- | |
7574 | ||
82edfbe7 VZ |
7575 | void wxGrid::DoDisableLineResize(int line, wxGridFixedIndicesSet *& setFixed) |
7576 | { | |
7577 | if ( !setFixed ) | |
7578 | { | |
7579 | setFixed = new wxGridFixedIndicesSet; | |
7580 | } | |
7581 | ||
7582 | setFixed->insert(line); | |
7583 | } | |
7584 | ||
7585 | bool | |
7586 | wxGrid::DoCanResizeLine(int line, const wxGridFixedIndicesSet *setFixed) const | |
7587 | { | |
7588 | return !setFixed || !setFixed->count(line); | |
7589 | } | |
7590 | ||
6e8524b1 MB |
7591 | void wxGrid::EnableDragRowSize( bool enable ) |
7592 | { | |
7593 | m_canDragRowSize = enable; | |
7594 | } | |
7595 | ||
6e8524b1 MB |
7596 | void wxGrid::EnableDragColSize( bool enable ) |
7597 | { | |
7598 | m_canDragColSize = enable; | |
7599 | } | |
7600 | ||
4cfa5de6 RD |
7601 | void wxGrid::EnableDragGridSize( bool enable ) |
7602 | { | |
7603 | m_canDragGridSize = enable; | |
7604 | } | |
7605 | ||
79dbea21 RD |
7606 | void wxGrid::EnableDragCell( bool enable ) |
7607 | { | |
7608 | m_canDragCell = enable; | |
7609 | } | |
6e8524b1 | 7610 | |
f85afd4e MB |
7611 | void wxGrid::SetDefaultRowSize( int height, bool resizeExistingRows ) |
7612 | { | |
b8d24d4e | 7613 | m_defaultRowHeight = wxMax( height, m_minAcceptableRowHeight ); |
f85afd4e MB |
7614 | |
7615 | if ( resizeExistingRows ) | |
7616 | { | |
b1da8107 SN |
7617 | // since we are resizing all rows to the default row size, |
7618 | // we can simply clear the row heights and row bottoms | |
7619 | // arrays (which also allows us to take advantage of | |
7620 | // some speed optimisations) | |
7621 | m_rowHeights.Empty(); | |
7622 | m_rowBottoms.Empty(); | |
edb89f7e VZ |
7623 | if ( !GetBatchCount() ) |
7624 | CalcDimensions(); | |
f85afd4e MB |
7625 | } |
7626 | } | |
7627 | ||
7628 | void wxGrid::SetRowSize( int row, int height ) | |
7629 | { | |
9a83f860 | 7630 | wxCHECK_RET( row >= 0 && row < m_numRows, wxT("invalid row index") ); |
60ff3b99 | 7631 | |
ad7502d8 SN |
7632 | // if < 0 then calculate new height from label |
7633 | if ( height < 0 ) | |
7634 | { | |
7635 | long w, h; | |
7636 | wxArrayString lines; | |
7637 | wxClientDC dc(m_rowLabelWin); | |
7638 | dc.SetFont(GetLabelFont()); | |
7639 | StringToLines(GetRowLabelValue( row ), lines); | |
ace8d849 VZ |
7640 | GetTextBoxSize( dc, lines, &w, &h ); |
7641 | //check that it is not less than the minimal height | |
7642 | height = wxMax(h, GetRowMinimalAcceptableHeight()); | |
ad7502d8 SN |
7643 | } |
7644 | ||
b4bfd0fa | 7645 | // See comment in SetColSize |
4db6714b KH |
7646 | if ( height < GetRowMinimalAcceptableHeight()) |
7647 | return; | |
b8d24d4e | 7648 | |
7c1cb261 VZ |
7649 | if ( m_rowHeights.IsEmpty() ) |
7650 | { | |
7651 | // need to really create the array | |
7652 | InitRowHeights(); | |
7653 | } | |
60ff3b99 | 7654 | |
b99be8fb VZ |
7655 | int h = wxMax( 0, height ); |
7656 | int diff = h - m_rowHeights[row]; | |
60ff3b99 | 7657 | |
b99be8fb | 7658 | m_rowHeights[row] = h; |
0ed3b812 | 7659 | for ( int i = row; i < m_numRows; i++ ) |
f85afd4e | 7660 | { |
b99be8fb | 7661 | m_rowBottoms[i] += diff; |
f85afd4e | 7662 | } |
2f024384 | 7663 | |
faec5a43 SN |
7664 | if ( !GetBatchCount() ) |
7665 | CalcDimensions(); | |
f85afd4e MB |
7666 | } |
7667 | ||
7668 | void wxGrid::SetDefaultColSize( int width, bool resizeExistingCols ) | |
7669 | { | |
ef316e23 VZ |
7670 | // we dont allow zero default column width |
7671 | m_defaultColWidth = wxMax( wxMax( width, m_minAcceptableColWidth ), 1 ); | |
f85afd4e MB |
7672 | |
7673 | if ( resizeExistingCols ) | |
7674 | { | |
b1da8107 SN |
7675 | // since we are resizing all columns to the default column size, |
7676 | // we can simply clear the col widths and col rights | |
7677 | // arrays (which also allows us to take advantage of | |
7678 | // some speed optimisations) | |
7679 | m_colWidths.Empty(); | |
7680 | m_colRights.Empty(); | |
edb89f7e VZ |
7681 | if ( !GetBatchCount() ) |
7682 | CalcDimensions(); | |
f85afd4e MB |
7683 | } |
7684 | } | |
7685 | ||
7686 | void wxGrid::SetColSize( int col, int width ) | |
7687 | { | |
9a83f860 | 7688 | wxCHECK_RET( col >= 0 && col < m_numCols, wxT("invalid column index") ); |
60ff3b99 | 7689 | |
ad7502d8 SN |
7690 | // if < 0 then calculate new width from label |
7691 | if ( width < 0 ) | |
7692 | { | |
7693 | long w, h; | |
7694 | wxArrayString lines; | |
ad805b9e | 7695 | wxClientDC dc(m_colWindow); |
ad7502d8 SN |
7696 | dc.SetFont(GetLabelFont()); |
7697 | StringToLines(GetColLabelValue(col), lines); | |
7698 | if ( GetColLabelTextOrientation() == wxHORIZONTAL ) | |
7699 | GetTextBoxSize( dc, lines, &w, &h ); | |
7700 | else | |
7701 | GetTextBoxSize( dc, lines, &h, &w ); | |
7702 | width = w + 6; | |
ace8d849 | 7703 | //check that it is not less than the minimal width |
54181a33 | 7704 | width = wxMax(width, GetColMinimalAcceptableWidth()); |
ad7502d8 SN |
7705 | } |
7706 | ||
a06072d0 VZ |
7707 | // we intentionally don't test whether the width is less than |
7708 | // GetColMinimalWidth() here but we do compare it with | |
7709 | // GetColMinimalAcceptableWidth() as otherwise things currently break (see | |
009c7216 VZ |
7710 | // #651) -- and we also always allow the width of 0 as it has the special |
7711 | // sense of hiding the column | |
7712 | if ( width > 0 && width < GetColMinimalAcceptableWidth() ) | |
4db6714b | 7713 | return; |
3e13956a | 7714 | |
7c1cb261 VZ |
7715 | if ( m_colWidths.IsEmpty() ) |
7716 | { | |
7717 | // need to really create the array | |
7718 | InitColWidths(); | |
7719 | } | |
f85afd4e | 7720 | |
009c7216 VZ |
7721 | const int diff = width - m_colWidths[col]; |
7722 | m_colWidths[col] = width; | |
7723 | if ( m_useNativeHeader ) | |
3039ade9 | 7724 | GetGridColHeader()->UpdateColumn(col); |
009c7216 | 7725 | //else: will be refreshed when the header is redrawn |
60ff3b99 | 7726 | |
0ed3b812 | 7727 | for ( int colPos = GetColPos(col); colPos < m_numCols; colPos++ ) |
f85afd4e | 7728 | { |
0ed3b812 | 7729 | m_colRights[GetColAt(colPos)] += diff; |
f85afd4e | 7730 | } |
962a48f6 | 7731 | |
faec5a43 | 7732 | if ( !GetBatchCount() ) |
ad805b9e | 7733 | { |
faec5a43 | 7734 | CalcDimensions(); |
ad805b9e VZ |
7735 | Refresh(); |
7736 | } | |
f85afd4e MB |
7737 | } |
7738 | ||
43947979 VZ |
7739 | void wxGrid::SetColMinimalWidth( int col, int width ) |
7740 | { | |
4db6714b KH |
7741 | if (width > GetColMinimalAcceptableWidth()) |
7742 | { | |
c6fbe2f0 | 7743 | wxLongToLongHashMap::key_type key = (wxLongToLongHashMap::key_type)col; |
8253f2e0 | 7744 | m_colMinWidths[key] = width; |
b8d24d4e | 7745 | } |
af547d51 VZ |
7746 | } |
7747 | ||
7748 | void wxGrid::SetRowMinimalHeight( int row, int width ) | |
7749 | { | |
4db6714b KH |
7750 | if (width > GetRowMinimalAcceptableHeight()) |
7751 | { | |
c6fbe2f0 | 7752 | wxLongToLongHashMap::key_type key = (wxLongToLongHashMap::key_type)row; |
8253f2e0 | 7753 | m_rowMinHeights[key] = width; |
b8d24d4e | 7754 | } |
43947979 VZ |
7755 | } |
7756 | ||
7757 | int wxGrid::GetColMinimalWidth(int col) const | |
7758 | { | |
c6fbe2f0 | 7759 | wxLongToLongHashMap::key_type key = (wxLongToLongHashMap::key_type)col; |
8253f2e0 | 7760 | wxLongToLongHashMap::const_iterator it = m_colMinWidths.find(key); |
962a48f6 | 7761 | |
ba8c1601 | 7762 | return it != m_colMinWidths.end() ? (int)it->second : m_minAcceptableColWidth; |
af547d51 VZ |
7763 | } |
7764 | ||
7765 | int wxGrid::GetRowMinimalHeight(int row) const | |
7766 | { | |
c6fbe2f0 | 7767 | wxLongToLongHashMap::key_type key = (wxLongToLongHashMap::key_type)row; |
8253f2e0 | 7768 | wxLongToLongHashMap::const_iterator it = m_rowMinHeights.find(key); |
962a48f6 | 7769 | |
ba8c1601 | 7770 | return it != m_rowMinHeights.end() ? (int)it->second : m_minAcceptableRowHeight; |
b8d24d4e RG |
7771 | } |
7772 | ||
7773 | void wxGrid::SetColMinimalAcceptableWidth( int width ) | |
7774 | { | |
20c84410 | 7775 | // We do allow a width of 0 since this gives us |
962a48f6 DS |
7776 | // an easy way to temporarily hiding columns. |
7777 | if ( width >= 0 ) | |
7778 | m_minAcceptableColWidth = width; | |
b8d24d4e RG |
7779 | } |
7780 | ||
7781 | void wxGrid::SetRowMinimalAcceptableHeight( int height ) | |
7782 | { | |
20c84410 | 7783 | // We do allow a height of 0 since this gives us |
962a48f6 DS |
7784 | // an easy way to temporarily hiding rows. |
7785 | if ( height >= 0 ) | |
7786 | m_minAcceptableRowHeight = height; | |
17a1ebd1 | 7787 | } |
b8d24d4e RG |
7788 | |
7789 | int wxGrid::GetColMinimalAcceptableWidth() const | |
7790 | { | |
7791 | return m_minAcceptableColWidth; | |
7792 | } | |
7793 | ||
7794 | int wxGrid::GetRowMinimalAcceptableHeight() const | |
7795 | { | |
7796 | return m_minAcceptableRowHeight; | |
43947979 VZ |
7797 | } |
7798 | ||
57c086ef VZ |
7799 | // ---------------------------------------------------------------------------- |
7800 | // auto sizing | |
7801 | // ---------------------------------------------------------------------------- | |
7802 | ||
733f486a VZ |
7803 | void |
7804 | wxGrid::AutoSizeColOrRow(int colOrRow, bool setAsMin, wxGridDirection direction) | |
65e4e78e | 7805 | { |
733f486a VZ |
7806 | const bool column = direction == wxGRID_COLUMN; |
7807 | ||
65e4e78e VZ |
7808 | wxClientDC dc(m_gridWin); |
7809 | ||
962a48f6 | 7810 | // cancel editing of cell |
13f6e9e8 RG |
7811 | HideCellEditControl(); |
7812 | SaveEditControlValue(); | |
7813 | ||
774f6b31 | 7814 | // initialize both of them just to avoid compiler warnings |
a95e38c0 VZ |
7815 | int row = -1, |
7816 | col = -1; | |
af547d51 VZ |
7817 | |
7818 | wxCoord extent, extentMax = 0; | |
7819 | int max = column ? m_numRows : m_numCols; | |
39bcce60 | 7820 | for ( int rowOrCol = 0; rowOrCol < max; rowOrCol++ ) |
65e4e78e | 7821 | { |
af547d51 | 7822 | if ( column ) |
774f6b31 | 7823 | { |
af547d51 | 7824 | row = rowOrCol; |
774f6b31 VZ |
7825 | col = colOrRow; |
7826 | } | |
af547d51 | 7827 | else |
774f6b31 VZ |
7828 | { |
7829 | row = colOrRow; | |
af547d51 | 7830 | col = rowOrCol; |
774f6b31 VZ |
7831 | } |
7832 | ||
7833 | // we need to account for the cells spanning multiple columns/rows: | |
7834 | // while they may need a lot of space, they don't need all of it in | |
7835 | // this column/row | |
7836 | int numRows, numCols; | |
7837 | const CellSpan span = GetCellSize(row, col, &numRows, &numCols); | |
7838 | if ( span == CellSpan_Inside ) | |
7839 | { | |
7840 | // we need to get the size of the main cell, not of a cell hidden | |
7841 | // by it | |
7842 | row += numRows; | |
7843 | col += numCols; | |
7844 | ||
7845 | // get the size of the main cell too | |
7846 | GetCellSize(row, col, &numRows, &numCols); | |
7847 | } | |
af547d51 | 7848 | |
2f024384 DS |
7849 | wxGridCellAttr *attr = GetCellAttr(row, col); |
7850 | wxGridCellRenderer *renderer = attr->GetRenderer(this, row, col); | |
65e4e78e VZ |
7851 | if ( renderer ) |
7852 | { | |
af547d51 VZ |
7853 | wxSize size = renderer->GetBestSize(*this, *attr, dc, row, col); |
7854 | extent = column ? size.x : size.y; | |
774f6b31 VZ |
7855 | |
7856 | if ( span != CellSpan_None ) | |
7857 | { | |
7858 | // we spread the size of a spanning cell over all the cells it | |
7859 | // covers evenly -- this is probably not ideal but we can't | |
7860 | // really do much better here | |
7861 | // | |
7862 | // notice that numCols and numRows are never 0 as they | |
7863 | // correspond to the size of the main cell of the span and not | |
7864 | // of the cell inside it | |
7865 | extent /= column ? numCols : numRows; | |
7866 | } | |
7867 | ||
af547d51 | 7868 | if ( extent > extentMax ) |
af547d51 | 7869 | extentMax = extent; |
0b190b0f VZ |
7870 | |
7871 | renderer->DecRef(); | |
65e4e78e VZ |
7872 | } |
7873 | ||
7874 | attr->DecRef(); | |
7875 | } | |
7876 | ||
af547d51 VZ |
7877 | // now also compare with the column label extent |
7878 | wxCoord w, h; | |
65e4e78e | 7879 | dc.SetFont( GetLabelFont() ); |
294d195c MB |
7880 | |
7881 | if ( column ) | |
d43851f7 | 7882 | { |
9d4b8a5d | 7883 | dc.GetMultiLineTextExtent( GetColLabelValue(col), &w, &h ); |
4db6714b | 7884 | if ( GetColLabelTextOrientation() == wxVERTICAL ) |
d43851f7 JS |
7885 | w = h; |
7886 | } | |
294d195c | 7887 | else |
9d4b8a5d | 7888 | dc.GetMultiLineTextExtent( GetRowLabelValue(row), &w, &h ); |
294d195c | 7889 | |
af547d51 VZ |
7890 | extent = column ? w : h; |
7891 | if ( extent > extentMax ) | |
af547d51 | 7892 | extentMax = extent; |
65e4e78e | 7893 | |
af547d51 | 7894 | if ( !extentMax ) |
65e4e78e | 7895 | { |
af547d51 | 7896 | // empty column - give default extent (notice that if extentMax is less |
2f024384 | 7897 | // than default extent but != 0, it's OK) |
af547d51 | 7898 | extentMax = column ? m_defaultColWidth : m_defaultRowHeight; |
65e4e78e VZ |
7899 | } |
7900 | else | |
7901 | { | |
a95e38c0 | 7902 | if ( column ) |
a95e38c0 VZ |
7903 | // leave some space around text |
7904 | extentMax += 10; | |
f6bcfd97 | 7905 | else |
f6bcfd97 | 7906 | extentMax += 6; |
65e4e78e VZ |
7907 | } |
7908 | ||
edb89f7e VZ |
7909 | if ( column ) |
7910 | { | |
a01cfc08 VS |
7911 | // Ensure automatic width is not less than minimal width. See the |
7912 | // comment in SetColSize() for explanation of why this isn't done | |
7913 | // in SetColSize(). | |
7914 | if ( !setAsMin ) | |
7915 | extentMax = wxMax(extentMax, GetColMinimalWidth(col)); | |
7916 | ||
962a48f6 | 7917 | SetColSize( col, extentMax ); |
faec5a43 SN |
7918 | if ( !GetBatchCount() ) |
7919 | { | |
ad805b9e VZ |
7920 | if ( m_useNativeHeader ) |
7921 | { | |
3039ade9 | 7922 | GetGridColHeader()->UpdateColumn(col); |
ad805b9e VZ |
7923 | } |
7924 | else | |
7925 | { | |
7926 | int cw, ch, dummy; | |
7927 | m_gridWin->GetClientSize( &cw, &ch ); | |
7928 | wxRect rect ( CellToRect( 0, col ) ); | |
7929 | rect.y = 0; | |
7930 | CalcScrolledPosition(rect.x, 0, &rect.x, &dummy); | |
7931 | rect.width = cw - rect.x; | |
7932 | rect.height = m_colLabelHeight; | |
7933 | GetColLabelWindow()->Refresh( true, &rect ); | |
7934 | } | |
edb89f7e VZ |
7935 | } |
7936 | } | |
7937 | else | |
7938 | { | |
a01cfc08 VS |
7939 | // Ensure automatic width is not less than minimal height. See the |
7940 | // comment in SetColSize() for explanation of why this isn't done | |
7941 | // in SetRowSize(). | |
7942 | if ( !setAsMin ) | |
7943 | extentMax = wxMax(extentMax, GetRowMinimalHeight(row)); | |
7944 | ||
39bcce60 | 7945 | SetRowSize(row, extentMax); |
faec5a43 SN |
7946 | if ( !GetBatchCount() ) |
7947 | { | |
edb89f7e VZ |
7948 | int cw, ch, dummy; |
7949 | m_gridWin->GetClientSize( &cw, &ch ); | |
ccdee36f | 7950 | wxRect rect( CellToRect( row, 0 ) ); |
edb89f7e VZ |
7951 | rect.x = 0; |
7952 | CalcScrolledPosition(0, rect.y, &dummy, &rect.y); | |
7953 | rect.width = m_rowLabelWidth; | |
faec5a43 | 7954 | rect.height = ch - rect.y; |
ca65c044 | 7955 | m_rowLabelWin->Refresh( true, &rect ); |
edb89f7e | 7956 | } |
faec5a43 | 7957 | } |
2f024384 | 7958 | |
65e4e78e VZ |
7959 | if ( setAsMin ) |
7960 | { | |
af547d51 VZ |
7961 | if ( column ) |
7962 | SetColMinimalWidth(col, extentMax); | |
7963 | else | |
39bcce60 | 7964 | SetRowMinimalHeight(row, extentMax); |
65e4e78e VZ |
7965 | } |
7966 | } | |
7967 | ||
733f486a VZ |
7968 | wxCoord wxGrid::CalcColOrRowLabelAreaMinSize(wxGridDirection direction) |
7969 | { | |
7970 | // calculate size for the rows or columns? | |
7971 | const bool calcRows = direction == wxGRID_ROW; | |
7972 | ||
7973 | wxClientDC dc(calcRows ? GetGridRowLabelWindow() | |
7974 | : GetGridColLabelWindow()); | |
7975 | dc.SetFont(GetLabelFont()); | |
7976 | ||
7977 | // which dimension should we take into account for calculations? | |
7978 | // | |
7979 | // for columns, the text can be only horizontal so it's easy but for rows | |
7980 | // we also have to take into account the text orientation | |
7981 | const bool | |
7982 | useWidth = calcRows || (GetColLabelTextOrientation() == wxVERTICAL); | |
7983 | ||
7984 | wxArrayString lines; | |
7985 | wxCoord extentMax = 0; | |
7986 | ||
7987 | const int numRowsOrCols = calcRows ? m_numRows : m_numCols; | |
7988 | for ( int rowOrCol = 0; rowOrCol < numRowsOrCols; rowOrCol++ ) | |
7989 | { | |
7990 | lines.Clear(); | |
add4bb40 VS |
7991 | |
7992 | wxString label = calcRows ? GetRowLabelValue(rowOrCol) | |
7993 | : GetColLabelValue(rowOrCol); | |
7994 | StringToLines(label, lines); | |
733f486a VZ |
7995 | |
7996 | long w, h; | |
7997 | GetTextBoxSize(dc, lines, &w, &h); | |
7998 | ||
7999 | const wxCoord extent = useWidth ? w : h; | |
8000 | if ( extent > extentMax ) | |
8001 | extentMax = extent; | |
8002 | } | |
8003 | ||
8004 | if ( !extentMax ) | |
8005 | { | |
8006 | // empty column - give default extent (notice that if extentMax is less | |
8007 | // than default extent but != 0, it's OK) | |
8008 | extentMax = calcRows ? GetDefaultRowLabelSize() | |
8009 | : GetDefaultColLabelSize(); | |
8010 | } | |
8011 | ||
8012 | // leave some space around text (taken from AutoSizeColOrRow) | |
8013 | if ( calcRows ) | |
8014 | extentMax += 10; | |
8015 | else | |
8016 | extentMax += 6; | |
8017 | ||
8018 | return extentMax; | |
8019 | } | |
8020 | ||
266e8367 | 8021 | int wxGrid::SetOrCalcColumnSizes(bool calcOnly, bool setAsMin) |
65e4e78e | 8022 | { |
57c086ef VZ |
8023 | int width = m_rowLabelWidth; |
8024 | ||
b62f94ff VZ |
8025 | wxGridUpdateLocker locker; |
8026 | if(!calcOnly) | |
8027 | locker.Create(this); | |
97a9929e | 8028 | |
65e4e78e VZ |
8029 | for ( int col = 0; col < m_numCols; col++ ) |
8030 | { | |
266e8367 | 8031 | if ( !calcOnly ) |
266e8367 | 8032 | AutoSizeColumn(col, setAsMin); |
57c086ef VZ |
8033 | |
8034 | width += GetColWidth(col); | |
65e4e78e | 8035 | } |
97a9929e | 8036 | |
266e8367 | 8037 | return width; |
65e4e78e VZ |
8038 | } |
8039 | ||
266e8367 | 8040 | int wxGrid::SetOrCalcRowSizes(bool calcOnly, bool setAsMin) |
57c086ef VZ |
8041 | { |
8042 | int height = m_colLabelHeight; | |
8043 | ||
b62f94ff VZ |
8044 | wxGridUpdateLocker locker; |
8045 | if(!calcOnly) | |
8046 | locker.Create(this); | |
97a9929e | 8047 | |
57c086ef VZ |
8048 | for ( int row = 0; row < m_numRows; row++ ) |
8049 | { | |
af547d51 | 8050 | if ( !calcOnly ) |
af547d51 | 8051 | AutoSizeRow(row, setAsMin); |
57c086ef VZ |
8052 | |
8053 | height += GetRowHeight(row); | |
8054 | } | |
97a9929e | 8055 | |
266e8367 | 8056 | return height; |
57c086ef VZ |
8057 | } |
8058 | ||
8059 | void wxGrid::AutoSize() | |
8060 | { | |
b62f94ff | 8061 | wxGridUpdateLocker locker(this); |
97a9929e | 8062 | |
0ed3b812 VZ |
8063 | wxSize size(SetOrCalcColumnSizes(false) - m_rowLabelWidth + m_extraWidth, |
8064 | SetOrCalcRowSizes(false) - m_colLabelHeight + m_extraHeight); | |
97a9929e | 8065 | |
0ed3b812 VZ |
8066 | // we know that we're not going to have scrollbars so disable them now to |
8067 | // avoid trouble in SetClientSize() which can otherwise set the correct | |
8068 | // client size but also leave space for (not needed any more) scrollbars | |
39621ee0 | 8069 | SetScrollbars(0, 0, 0, 0, 0, 0, true); |
72b0a1de VZ |
8070 | |
8071 | // restore the scroll rate parameters overwritten by SetScrollbars() | |
8072 | SetScrollRate(m_scrollLineX, m_scrollLineY); | |
8073 | ||
8074 | SetClientSize(size.x + m_rowLabelWidth, size.y + m_colLabelHeight); | |
266e8367 VZ |
8075 | } |
8076 | ||
d43851f7 JS |
8077 | void wxGrid::AutoSizeRowLabelSize( int row ) |
8078 | { | |
d43851f7 | 8079 | // Hide the edit control, so it |
4db6714b KH |
8080 | // won't interfere with drag-shrinking. |
8081 | if ( IsCellEditControlShown() ) | |
d43851f7 JS |
8082 | { |
8083 | HideCellEditControl(); | |
8084 | SaveEditControlValue(); | |
8085 | } | |
8086 | ||
8087 | // autosize row height depending on label text | |
ad7502d8 | 8088 | SetRowSize(row, -1); |
d43851f7 JS |
8089 | ForceRefresh(); |
8090 | } | |
8091 | ||
8092 | void wxGrid::AutoSizeColLabelSize( int col ) | |
8093 | { | |
d43851f7 | 8094 | // Hide the edit control, so it |
c2f5b920 | 8095 | // won't interfere with drag-shrinking. |
4db6714b | 8096 | if ( IsCellEditControlShown() ) |
d43851f7 JS |
8097 | { |
8098 | HideCellEditControl(); | |
8099 | SaveEditControlValue(); | |
8100 | } | |
8101 | ||
8102 | // autosize column width depending on label text | |
ad7502d8 | 8103 | SetColSize(col, -1); |
d43851f7 JS |
8104 | ForceRefresh(); |
8105 | } | |
8106 | ||
266e8367 VZ |
8107 | wxSize wxGrid::DoGetBestSize() const |
8108 | { | |
266e8367 VZ |
8109 | wxGrid *self = (wxGrid *)this; // const_cast |
8110 | ||
dc4689ef VZ |
8111 | // we do the same as in AutoSize() here with the exception that we don't |
8112 | // change the column/row sizes, only calculate them | |
8113 | wxSize size(self->SetOrCalcColumnSizes(true) - m_rowLabelWidth + m_extraWidth, | |
8114 | self->SetOrCalcRowSizes(true) - m_colLabelHeight + m_extraHeight); | |
962a48f6 | 8115 | |
6d308072 RD |
8116 | // NOTE: This size should be cached, but first we need to add calls to |
8117 | // InvalidateBestSize everywhere that could change the results of this | |
8118 | // calculation. | |
8119 | // CacheBestSize(size); | |
962a48f6 | 8120 | |
72b0a1de | 8121 | return wxSize(size.x + m_rowLabelWidth, size.y + m_colLabelHeight) |
dc4689ef | 8122 | + GetWindowBorderSize(); |
266e8367 VZ |
8123 | } |
8124 | ||
8125 | void wxGrid::Fit() | |
8126 | { | |
8127 | AutoSize(); | |
57c086ef VZ |
8128 | } |
8129 | ||
6fc0f38f SN |
8130 | wxPen& wxGrid::GetDividerPen() const |
8131 | { | |
8132 | return wxNullPen; | |
8133 | } | |
8134 | ||
57c086ef VZ |
8135 | // ---------------------------------------------------------------------------- |
8136 | // cell value accessor functions | |
8137 | // ---------------------------------------------------------------------------- | |
f85afd4e MB |
8138 | |
8139 | void wxGrid::SetCellValue( int row, int col, const wxString& s ) | |
8140 | { | |
8141 | if ( m_table ) | |
8142 | { | |
f6bcfd97 | 8143 | m_table->SetValue( row, col, s ); |
2d66e025 MB |
8144 | if ( !GetBatchCount() ) |
8145 | { | |
27f35b66 SN |
8146 | int dummy; |
8147 | wxRect rect( CellToRect( row, col ) ); | |
8148 | rect.x = 0; | |
8149 | rect.width = m_gridWin->GetClientSize().GetWidth(); | |
8150 | CalcScrolledPosition(0, rect.y, &dummy, &rect.y); | |
ca65c044 | 8151 | m_gridWin->Refresh( false, &rect ); |
2d66e025 | 8152 | } |
60ff3b99 | 8153 | |
f85afd4e | 8154 | if ( m_currentCellCoords.GetRow() == row && |
4cfa5de6 | 8155 | m_currentCellCoords.GetCol() == col && |
f6bcfd97 BP |
8156 | IsCellEditControlShown()) |
8157 | // Note: If we are using IsCellEditControlEnabled, | |
8158 | // this interacts badly with calling SetCellValue from | |
8159 | // an EVT_GRID_CELL_CHANGE handler. | |
f85afd4e | 8160 | { |
4cfa5de6 RD |
8161 | HideCellEditControl(); |
8162 | ShowCellEditControl(); // will reread data from table | |
f85afd4e | 8163 | } |
f85afd4e MB |
8164 | } |
8165 | } | |
8166 | ||
962a48f6 | 8167 | // ---------------------------------------------------------------------------- |
2f024384 | 8168 | // block, row and column selection |
962a48f6 | 8169 | // ---------------------------------------------------------------------------- |
f85afd4e MB |
8170 | |
8171 | void wxGrid::SelectRow( int row, bool addToSelected ) | |
8172 | { | |
8b5f6d9d VZ |
8173 | if ( !m_selection ) |
8174 | return; | |
8175 | ||
8176 | if ( !addToSelected ) | |
e32352cf | 8177 | ClearSelection(); |
70c7a608 | 8178 | |
8b5f6d9d | 8179 | m_selection->SelectRow(row); |
f85afd4e MB |
8180 | } |
8181 | ||
f85afd4e MB |
8182 | void wxGrid::SelectCol( int col, bool addToSelected ) |
8183 | { | |
8b5f6d9d VZ |
8184 | if ( !m_selection ) |
8185 | return; | |
8186 | ||
8187 | if ( !addToSelected ) | |
e32352cf | 8188 | ClearSelection(); |
f85afd4e | 8189 | |
8b5f6d9d | 8190 | m_selection->SelectCol(col); |
f85afd4e MB |
8191 | } |
8192 | ||
8b5f6d9d VZ |
8193 | void wxGrid::SelectBlock(int topRow, int leftCol, int bottomRow, int rightCol, |
8194 | bool addToSelected) | |
f85afd4e | 8195 | { |
8b5f6d9d VZ |
8196 | if ( !m_selection ) |
8197 | return; | |
8198 | ||
8199 | if ( !addToSelected ) | |
c9097836 | 8200 | ClearSelection(); |
f85afd4e | 8201 | |
8b5f6d9d | 8202 | m_selection->SelectBlock(topRow, leftCol, bottomRow, rightCol); |
f85afd4e MB |
8203 | } |
8204 | ||
8205 | void wxGrid::SelectAll() | |
8206 | { | |
f74d0b57 | 8207 | if ( m_numRows > 0 && m_numCols > 0 ) |
3f3dc2ef VZ |
8208 | { |
8209 | if ( m_selection ) | |
ccdee36f | 8210 | m_selection->SelectBlock( 0, 0, m_numRows - 1, m_numCols - 1 ); |
3f3dc2ef | 8211 | } |
b5808881 | 8212 | } |
f85afd4e | 8213 | |
962a48f6 DS |
8214 | // ---------------------------------------------------------------------------- |
8215 | // cell, row and col deselection | |
8216 | // ---------------------------------------------------------------------------- | |
f7b4b343 | 8217 | |
bec70262 | 8218 | void wxGrid::DeselectLine(int line, const wxGridOperations& oper) |
f7b4b343 | 8219 | { |
3f3dc2ef VZ |
8220 | if ( !m_selection ) |
8221 | return; | |
8222 | ||
bec70262 | 8223 | const wxGridSelectionModes mode = m_selection->GetSelectionMode(); |
475be9ce VZ |
8224 | if ( mode == oper.GetSelectionMode() || |
8225 | mode == wxGrid::wxGridSelectRowsOrColumns ) | |
f7b4b343 | 8226 | { |
bec70262 VZ |
8227 | const wxGridCellCoords c(oper.MakeCoords(line, 0)); |
8228 | if ( m_selection->IsInSelection(c) ) | |
8229 | m_selection->ToggleCellSelection(c); | |
ffdd3c98 | 8230 | } |
bec70262 | 8231 | else if ( mode != oper.Dual().GetSelectionMode() ) |
f7b4b343 | 8232 | { |
bec70262 VZ |
8233 | const int nOther = oper.Dual().GetNumberOfLines(this); |
8234 | for ( int i = 0; i < nOther; i++ ) | |
f7b4b343 | 8235 | { |
bec70262 VZ |
8236 | const wxGridCellCoords c(oper.MakeCoords(line, i)); |
8237 | if ( m_selection->IsInSelection(c) ) | |
8238 | m_selection->ToggleCellSelection(c); | |
f7b4b343 VZ |
8239 | } |
8240 | } | |
bec70262 VZ |
8241 | //else: can only select orthogonal lines so no lines in this direction |
8242 | // could have been selected anyhow | |
f7b4b343 VZ |
8243 | } |
8244 | ||
bec70262 | 8245 | void wxGrid::DeselectRow(int row) |
f7b4b343 | 8246 | { |
bec70262 VZ |
8247 | DeselectLine(row, wxGridRowOperations()); |
8248 | } | |
3f3dc2ef | 8249 | |
bec70262 VZ |
8250 | void wxGrid::DeselectCol(int col) |
8251 | { | |
8252 | DeselectLine(col, wxGridColumnOperations()); | |
f7b4b343 VZ |
8253 | } |
8254 | ||
8255 | void wxGrid::DeselectCell( int row, int col ) | |
8256 | { | |
3f3dc2ef | 8257 | if ( m_selection && m_selection->IsInSelection(row, col) ) |
f7b4b343 VZ |
8258 | m_selection->ToggleCellSelection(row, col); |
8259 | } | |
8260 | ||
ef316e23 | 8261 | bool wxGrid::IsSelection() const |
b5808881 | 8262 | { |
3f3dc2ef | 8263 | return ( m_selection && (m_selection->IsSelection() || |
8a3e536c VZ |
8264 | ( m_selectedBlockTopLeft != wxGridNoCellCoords && |
8265 | m_selectedBlockBottomRight != wxGridNoCellCoords) ) ); | |
f85afd4e MB |
8266 | } |
8267 | ||
84035150 | 8268 | bool wxGrid::IsInSelection( int row, int col ) const |
b5808881 | 8269 | { |
3f3dc2ef | 8270 | return ( m_selection && (m_selection->IsInSelection( row, col ) || |
8a3e536c VZ |
8271 | ( row >= m_selectedBlockTopLeft.GetRow() && |
8272 | col >= m_selectedBlockTopLeft.GetCol() && | |
8273 | row <= m_selectedBlockBottomRight.GetRow() && | |
8274 | col <= m_selectedBlockBottomRight.GetCol() )) ); | |
b5808881 | 8275 | } |
f85afd4e | 8276 | |
aa5b8857 SN |
8277 | wxGridCellCoordsArray wxGrid::GetSelectedCells() const |
8278 | { | |
4db6714b KH |
8279 | if (!m_selection) |
8280 | { | |
8281 | wxGridCellCoordsArray a; | |
8282 | return a; | |
8283 | } | |
8284 | ||
aa5b8857 SN |
8285 | return m_selection->m_cellSelection; |
8286 | } | |
4db6714b | 8287 | |
aa5b8857 SN |
8288 | wxGridCellCoordsArray wxGrid::GetSelectionBlockTopLeft() const |
8289 | { | |
4db6714b KH |
8290 | if (!m_selection) |
8291 | { | |
8292 | wxGridCellCoordsArray a; | |
8293 | return a; | |
8294 | } | |
8295 | ||
aa5b8857 SN |
8296 | return m_selection->m_blockSelectionTopLeft; |
8297 | } | |
4db6714b | 8298 | |
aa5b8857 SN |
8299 | wxGridCellCoordsArray wxGrid::GetSelectionBlockBottomRight() const |
8300 | { | |
4db6714b KH |
8301 | if (!m_selection) |
8302 | { | |
8303 | wxGridCellCoordsArray a; | |
8304 | return a; | |
8305 | } | |
8306 | ||
a8de8190 | 8307 | return m_selection->m_blockSelectionBottomRight; |
aa5b8857 | 8308 | } |
4db6714b | 8309 | |
aa5b8857 SN |
8310 | wxArrayInt wxGrid::GetSelectedRows() const |
8311 | { | |
4db6714b KH |
8312 | if (!m_selection) |
8313 | { | |
8314 | wxArrayInt a; | |
8315 | return a; | |
8316 | } | |
8317 | ||
aa5b8857 SN |
8318 | return m_selection->m_rowSelection; |
8319 | } | |
4db6714b | 8320 | |
aa5b8857 SN |
8321 | wxArrayInt wxGrid::GetSelectedCols() const |
8322 | { | |
4db6714b KH |
8323 | if (!m_selection) |
8324 | { | |
8325 | wxArrayInt a; | |
8326 | return a; | |
8327 | } | |
8328 | ||
aa5b8857 SN |
8329 | return m_selection->m_colSelection; |
8330 | } | |
8331 | ||
f85afd4e MB |
8332 | void wxGrid::ClearSelection() |
8333 | { | |
8a3e536c VZ |
8334 | wxRect r1 = BlockToDeviceRect(m_selectedBlockTopLeft, |
8335 | m_selectedBlockBottomRight); | |
8336 | wxRect r2 = BlockToDeviceRect(m_currentCellCoords, | |
8337 | m_selectedBlockCorner); | |
8338 | ||
8339 | m_selectedBlockTopLeft = | |
8340 | m_selectedBlockBottomRight = | |
8341 | m_selectedBlockCorner = wxGridNoCellCoords; | |
8342 | ||
efc49a21 VZ |
8343 | if ( !r1.IsEmpty() ) |
8344 | RefreshRect(r1, false); | |
8345 | if ( !r2.IsEmpty() ) | |
8346 | RefreshRect(r2, false); | |
8a3e536c | 8347 | |
3f3dc2ef VZ |
8348 | if ( m_selection ) |
8349 | m_selection->ClearSelection(); | |
8f177c8e | 8350 | } |
f85afd4e | 8351 | |
da6af900 | 8352 | // This function returns the rectangle that encloses the given block |
2d66e025 MB |
8353 | // in device coords clipped to the client size of the grid window. |
8354 | // | |
731330ec VZ |
8355 | wxRect wxGrid::BlockToDeviceRect( const wxGridCellCoords& topLeft, |
8356 | const wxGridCellCoords& bottomRight ) const | |
f85afd4e | 8357 | { |
731330ec VZ |
8358 | wxRect resultRect; |
8359 | wxRect tempCellRect = CellToRect(topLeft); | |
8360 | if ( tempCellRect != wxGridNoCellRect ) | |
f85afd4e | 8361 | { |
731330ec | 8362 | resultRect = tempCellRect; |
58dd5b3b MB |
8363 | } |
8364 | else | |
8365 | { | |
731330ec | 8366 | resultRect = wxRect(0, 0, 0, 0); |
58dd5b3b | 8367 | } |
60ff3b99 | 8368 | |
731330ec VZ |
8369 | tempCellRect = CellToRect(bottomRight); |
8370 | if ( tempCellRect != wxGridNoCellRect ) | |
58dd5b3b | 8371 | { |
731330ec | 8372 | resultRect += tempCellRect; |
2d66e025 MB |
8373 | } |
8374 | else | |
8375 | { | |
731330ec | 8376 | // If both inputs were "wxGridNoCellRect," then there's nothing to do. |
2d66e025 | 8377 | return wxGridNoCellRect; |
f85afd4e MB |
8378 | } |
8379 | ||
731330ec VZ |
8380 | // Ensure that left/right and top/bottom pairs are in order. |
8381 | int left = resultRect.GetLeft(); | |
8382 | int top = resultRect.GetTop(); | |
8383 | int right = resultRect.GetRight(); | |
8384 | int bottom = resultRect.GetBottom(); | |
27f35b66 SN |
8385 | |
8386 | int leftCol = topLeft.GetCol(); | |
8387 | int topRow = topLeft.GetRow(); | |
8388 | int rightCol = bottomRight.GetCol(); | |
8389 | int bottomRow = bottomRight.GetRow(); | |
8390 | ||
3ed884a0 SN |
8391 | if (left > right) |
8392 | { | |
731330ec | 8393 | int tmp = left; |
3ed884a0 | 8394 | left = right; |
731330ec VZ |
8395 | right = tmp; |
8396 | ||
8397 | tmp = leftCol; | |
4db6714b | 8398 | leftCol = rightCol; |
731330ec | 8399 | rightCol = tmp; |
3ed884a0 SN |
8400 | } |
8401 | ||
8402 | if (top > bottom) | |
8403 | { | |
731330ec | 8404 | int tmp = top; |
3ed884a0 | 8405 | top = bottom; |
731330ec VZ |
8406 | bottom = tmp; |
8407 | ||
8408 | tmp = topRow; | |
3ed884a0 | 8409 | topRow = bottomRow; |
731330ec | 8410 | bottomRow = tmp; |
3ed884a0 SN |
8411 | } |
8412 | ||
731330ec VZ |
8413 | // The following loop is ONLY necessary to detect and handle merged cells. |
8414 | int cw, ch; | |
8415 | m_gridWin->GetClientSize( &cw, &ch ); | |
8416 | ||
8417 | // Get the origin coordinates: notice that they will be negative if the | |
8418 | // grid is scrolled downwards/to the right. | |
8419 | int gridOriginX = 0; | |
8420 | int gridOriginY = 0; | |
8421 | CalcScrolledPosition(gridOriginX, gridOriginY, &gridOriginX, &gridOriginY); | |
8422 | ||
8423 | int onScreenLeftmostCol = internalXToCol(-gridOriginX); | |
8424 | int onScreenUppermostRow = internalYToRow(-gridOriginY); | |
8425 | ||
8426 | int onScreenRightmostCol = internalXToCol(-gridOriginX + cw); | |
8427 | int onScreenBottommostRow = internalYToRow(-gridOriginY + ch); | |
8428 | ||
8429 | // Bound our loop so that we only examine the portion of the selected block | |
8430 | // that is shown on screen. Therefore, we compare the Top-Left block values | |
8431 | // to the Top-Left screen values, and the Bottom-Right block values to the | |
8432 | // Bottom-Right screen values, choosing appropriately. | |
8433 | const int visibleTopRow = wxMax(topRow, onScreenUppermostRow); | |
8434 | const int visibleBottomRow = wxMin(bottomRow, onScreenBottommostRow); | |
8435 | const int visibleLeftCol = wxMax(leftCol, onScreenLeftmostCol); | |
8436 | const int visibleRightCol = wxMin(rightCol, onScreenRightmostCol); | |
8437 | ||
8438 | for ( int j = visibleTopRow; j <= visibleBottomRow; j++ ) | |
27f35b66 | 8439 | { |
731330ec | 8440 | for ( int i = visibleLeftCol; i <= visibleRightCol; i++ ) |
27f35b66 | 8441 | { |
731330ec VZ |
8442 | if ( (j == visibleTopRow) || (j == visibleBottomRow) || |
8443 | (i == visibleLeftCol) || (i == visibleRightCol) ) | |
27f35b66 | 8444 | { |
731330ec | 8445 | tempCellRect = CellToRect( j, i ); |
27f35b66 | 8446 | |
731330ec VZ |
8447 | if (tempCellRect.x < left) |
8448 | left = tempCellRect.x; | |
8449 | if (tempCellRect.y < top) | |
8450 | top = tempCellRect.y; | |
8451 | if (tempCellRect.x + tempCellRect.width > right) | |
8452 | right = tempCellRect.x + tempCellRect.width; | |
8453 | if (tempCellRect.y + tempCellRect.height > bottom) | |
8454 | bottom = tempCellRect.y + tempCellRect.height; | |
27f35b66 | 8455 | } |
4db6714b KH |
8456 | else |
8457 | { | |
731330ec | 8458 | i = visibleRightCol; // jump over inner cells. |
4db6714b | 8459 | } |
27f35b66 SN |
8460 | } |
8461 | } | |
8462 | ||
731330ec | 8463 | // Convert to scrolled coords |
27f35b66 SN |
8464 | CalcScrolledPosition( left, top, &left, &top ); |
8465 | CalcScrolledPosition( right, bottom, &right, &bottom ); | |
58dd5b3b | 8466 | |
f6bcfd97 | 8467 | if (right < 0 || bottom < 0 || left > cw || top > ch) |
c47addef | 8468 | return wxRect(0,0,0,0); |
f6bcfd97 | 8469 | |
731330ec VZ |
8470 | resultRect.SetLeft( wxMax(0, left) ); |
8471 | resultRect.SetTop( wxMax(0, top) ); | |
8472 | resultRect.SetRight( wxMin(cw, right) ); | |
8473 | resultRect.SetBottom( wxMin(ch, bottom) ); | |
58dd5b3b | 8474 | |
731330ec | 8475 | return resultRect; |
f85afd4e MB |
8476 | } |
8477 | ||
574e1c5a VZ |
8478 | void wxGrid::DoSetSizes(const wxGridSizesInfo& sizeInfo, |
8479 | const wxGridOperations& oper) | |
8480 | { | |
8481 | BeginBatch(); | |
8482 | oper.SetDefaultLineSize(this, sizeInfo.m_sizeDefault, true); | |
8483 | const int numLines = oper.GetNumberOfLines(this); | |
8484 | for ( int i = 0; i < numLines; i++ ) | |
8485 | { | |
8486 | int size = sizeInfo.GetSize(i); | |
8487 | if ( size != sizeInfo.m_sizeDefault) | |
8488 | oper.SetLineSize(this, i, size); | |
8489 | } | |
8490 | EndBatch(); | |
8491 | } | |
8492 | ||
8493 | void wxGrid::SetColSizes(const wxGridSizesInfo& sizeInfo) | |
8494 | { | |
8495 | DoSetSizes(sizeInfo, wxGridColumnOperations()); | |
8496 | } | |
8497 | ||
8498 | void wxGrid::SetRowSizes(const wxGridSizesInfo& sizeInfo) | |
8499 | { | |
8500 | DoSetSizes(sizeInfo, wxGridRowOperations()); | |
8501 | } | |
8502 | ||
8503 | wxGridSizesInfo::wxGridSizesInfo(int defSize, const wxArrayInt& allSizes) | |
8504 | { | |
8505 | m_sizeDefault = defSize; | |
8506 | for ( size_t i = 0; i < allSizes.size(); i++ ) | |
8507 | { | |
8508 | if ( allSizes[i] != defSize ) | |
8509 | m_customSizes[i] = allSizes[i]; | |
8510 | } | |
8511 | } | |
8512 | ||
8513 | int wxGridSizesInfo::GetSize(unsigned pos) const | |
8514 | { | |
8515 | wxUnsignedToIntHashMap::const_iterator it = m_customSizes.find(pos); | |
8516 | ||
8517 | return it == m_customSizes.end() ? m_sizeDefault : it->second; | |
8518 | } | |
8519 | ||
1edce33f VZ |
8520 | // ---------------------------------------------------------------------------- |
8521 | // drop target | |
8522 | // ---------------------------------------------------------------------------- | |
8523 | ||
8524 | #if wxUSE_DRAG_AND_DROP | |
8525 | ||
8526 | // this allow setting drop target directly on wxGrid | |
8527 | void wxGrid::SetDropTarget(wxDropTarget *dropTarget) | |
8528 | { | |
8529 | GetGridWindow()->SetDropTarget(dropTarget); | |
8530 | } | |
8531 | ||
8532 | #endif // wxUSE_DRAG_AND_DROP | |
8533 | ||
962a48f6 DS |
8534 | // ---------------------------------------------------------------------------- |
8535 | // grid event classes | |
8536 | // ---------------------------------------------------------------------------- | |
f85afd4e | 8537 | |
bf7945ce | 8538 | IMPLEMENT_DYNAMIC_CLASS( wxGridEvent, wxNotifyEvent ) |
f85afd4e MB |
8539 | |
8540 | wxGridEvent::wxGridEvent( int id, wxEventType type, wxObject* obj, | |
5c8fc7c1 | 8541 | int row, int col, int x, int y, bool sel, |
f85afd4e | 8542 | bool control, bool shift, bool alt, bool meta ) |
8b5f6d9d VZ |
8543 | : wxNotifyEvent( type, id ), |
8544 | wxKeyboardState(control, shift, alt, meta) | |
f85afd4e | 8545 | { |
8b5f6d9d | 8546 | Init(row, col, x, y, sel); |
8f177c8e | 8547 | |
f85afd4e MB |
8548 | SetEventObject(obj); |
8549 | } | |
8550 | ||
bf7945ce | 8551 | IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent, wxNotifyEvent ) |
f85afd4e MB |
8552 | |
8553 | wxGridSizeEvent::wxGridSizeEvent( int id, wxEventType type, wxObject* obj, | |
8554 | int rowOrCol, int x, int y, | |
8555 | bool control, bool shift, bool alt, bool meta ) | |
8b5f6d9d VZ |
8556 | : wxNotifyEvent( type, id ), |
8557 | wxKeyboardState(control, shift, alt, meta) | |
f85afd4e | 8558 | { |
8b5f6d9d | 8559 | Init(rowOrCol, x, y); |
8f177c8e | 8560 | |
f85afd4e MB |
8561 | SetEventObject(obj); |
8562 | } | |
8563 | ||
8564 | ||
bf7945ce | 8565 | IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent, wxNotifyEvent ) |
f85afd4e MB |
8566 | |
8567 | wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id, wxEventType type, wxObject* obj, | |
8f177c8e VZ |
8568 | const wxGridCellCoords& topLeft, |
8569 | const wxGridCellCoords& bottomRight, | |
5c8fc7c1 SN |
8570 | bool sel, bool control, |
8571 | bool shift, bool alt, bool meta ) | |
8b5f6d9d VZ |
8572 | : wxNotifyEvent( type, id ), |
8573 | wxKeyboardState(control, shift, alt, meta) | |
8574 | { | |
8575 | Init(topLeft, bottomRight, sel); | |
f85afd4e MB |
8576 | |
8577 | SetEventObject(obj); | |
8578 | } | |
8579 | ||
8580 | ||
bf7945ce RD |
8581 | IMPLEMENT_DYNAMIC_CLASS(wxGridEditorCreatedEvent, wxCommandEvent) |
8582 | ||
8583 | wxGridEditorCreatedEvent::wxGridEditorCreatedEvent(int id, wxEventType type, | |
8584 | wxObject* obj, int row, | |
8585 | int col, wxControl* ctrl) | |
8586 | : wxCommandEvent(type, id) | |
8587 | { | |
8588 | SetEventObject(obj); | |
8589 | m_row = row; | |
8590 | m_col = col; | |
8591 | m_ctrl = ctrl; | |
8592 | } | |
8593 | ||
29efc6e4 FM |
8594 | |
8595 | // ---------------------------------------------------------------------------- | |
8596 | // wxGridTypeRegistry | |
8597 | // ---------------------------------------------------------------------------- | |
8598 | ||
8599 | wxGridTypeRegistry::~wxGridTypeRegistry() | |
8600 | { | |
8601 | size_t count = m_typeinfo.GetCount(); | |
8602 | for ( size_t i = 0; i < count; i++ ) | |
8603 | delete m_typeinfo[i]; | |
8604 | } | |
8605 | ||
8606 | void wxGridTypeRegistry::RegisterDataType(const wxString& typeName, | |
8607 | wxGridCellRenderer* renderer, | |
8608 | wxGridCellEditor* editor) | |
8609 | { | |
8610 | wxGridDataTypeInfo* info = new wxGridDataTypeInfo(typeName, renderer, editor); | |
8611 | ||
8612 | // is it already registered? | |
8613 | int loc = FindRegisteredDataType(typeName); | |
8614 | if ( loc != wxNOT_FOUND ) | |
8615 | { | |
8616 | delete m_typeinfo[loc]; | |
8617 | m_typeinfo[loc] = info; | |
8618 | } | |
8619 | else | |
8620 | { | |
8621 | m_typeinfo.Add(info); | |
8622 | } | |
8623 | } | |
8624 | ||
8625 | int wxGridTypeRegistry::FindRegisteredDataType(const wxString& typeName) | |
8626 | { | |
8627 | size_t count = m_typeinfo.GetCount(); | |
8628 | for ( size_t i = 0; i < count; i++ ) | |
8629 | { | |
8630 | if ( typeName == m_typeinfo[i]->m_typeName ) | |
8631 | { | |
8632 | return i; | |
8633 | } | |
8634 | } | |
8635 | ||
8636 | return wxNOT_FOUND; | |
8637 | } | |
8638 | ||
8639 | int wxGridTypeRegistry::FindDataType(const wxString& typeName) | |
8640 | { | |
8641 | int index = FindRegisteredDataType(typeName); | |
8642 | if ( index == wxNOT_FOUND ) | |
8643 | { | |
8644 | // check whether this is one of the standard ones, in which case | |
8645 | // register it "on the fly" | |
8646 | #if wxUSE_TEXTCTRL | |
8647 | if ( typeName == wxGRID_VALUE_STRING ) | |
8648 | { | |
8649 | RegisterDataType(wxGRID_VALUE_STRING, | |
8650 | new wxGridCellStringRenderer, | |
8651 | new wxGridCellTextEditor); | |
8652 | } | |
8653 | else | |
8654 | #endif // wxUSE_TEXTCTRL | |
8655 | #if wxUSE_CHECKBOX | |
8656 | if ( typeName == wxGRID_VALUE_BOOL ) | |
8657 | { | |
8658 | RegisterDataType(wxGRID_VALUE_BOOL, | |
8659 | new wxGridCellBoolRenderer, | |
8660 | new wxGridCellBoolEditor); | |
8661 | } | |
8662 | else | |
8663 | #endif // wxUSE_CHECKBOX | |
8664 | #if wxUSE_TEXTCTRL | |
8665 | if ( typeName == wxGRID_VALUE_NUMBER ) | |
8666 | { | |
8667 | RegisterDataType(wxGRID_VALUE_NUMBER, | |
8668 | new wxGridCellNumberRenderer, | |
8669 | new wxGridCellNumberEditor); | |
8670 | } | |
8671 | else if ( typeName == wxGRID_VALUE_FLOAT ) | |
8672 | { | |
8673 | RegisterDataType(wxGRID_VALUE_FLOAT, | |
8674 | new wxGridCellFloatRenderer, | |
8675 | new wxGridCellFloatEditor); | |
8676 | } | |
8677 | else | |
8678 | #endif // wxUSE_TEXTCTRL | |
8679 | #if wxUSE_COMBOBOX | |
8680 | if ( typeName == wxGRID_VALUE_CHOICE ) | |
8681 | { | |
8682 | RegisterDataType(wxGRID_VALUE_CHOICE, | |
8683 | new wxGridCellStringRenderer, | |
8684 | new wxGridCellChoiceEditor); | |
8685 | } | |
8686 | else | |
8687 | #endif // wxUSE_COMBOBOX | |
8688 | { | |
8689 | return wxNOT_FOUND; | |
8690 | } | |
8691 | ||
8692 | // we get here only if just added the entry for this type, so return | |
8693 | // the last index | |
8694 | index = m_typeinfo.GetCount() - 1; | |
8695 | } | |
8696 | ||
8697 | return index; | |
8698 | } | |
8699 | ||
8700 | int wxGridTypeRegistry::FindOrCloneDataType(const wxString& typeName) | |
8701 | { | |
8702 | int index = FindDataType(typeName); | |
8703 | if ( index == wxNOT_FOUND ) | |
8704 | { | |
8705 | // the first part of the typename is the "real" type, anything after ':' | |
8706 | // are the parameters for the renderer | |
9a83f860 | 8707 | index = FindDataType(typeName.BeforeFirst(wxT(':'))); |
29efc6e4 FM |
8708 | if ( index == wxNOT_FOUND ) |
8709 | { | |
8710 | return wxNOT_FOUND; | |
8711 | } | |
8712 | ||
8713 | wxGridCellRenderer *renderer = GetRenderer(index); | |
8714 | wxGridCellRenderer *rendererOld = renderer; | |
8715 | renderer = renderer->Clone(); | |
8716 | rendererOld->DecRef(); | |
8717 | ||
8718 | wxGridCellEditor *editor = GetEditor(index); | |
8719 | wxGridCellEditor *editorOld = editor; | |
8720 | editor = editor->Clone(); | |
8721 | editorOld->DecRef(); | |
8722 | ||
8723 | // do it even if there are no parameters to reset them to defaults | |
9a83f860 | 8724 | wxString params = typeName.AfterFirst(wxT(':')); |
29efc6e4 FM |
8725 | renderer->SetParameters(params); |
8726 | editor->SetParameters(params); | |
8727 | ||
8728 | // register the new typename | |
8729 | RegisterDataType(typeName, renderer, editor); | |
8730 | ||
8731 | // we just registered it, it's the last one | |
8732 | index = m_typeinfo.GetCount() - 1; | |
8733 | } | |
8734 | ||
8735 | return index; | |
8736 | } | |
8737 | ||
8738 | wxGridCellRenderer* wxGridTypeRegistry::GetRenderer(int index) | |
8739 | { | |
8740 | wxGridCellRenderer* renderer = m_typeinfo[index]->m_renderer; | |
8741 | if (renderer) | |
8742 | renderer->IncRef(); | |
8743 | ||
8744 | return renderer; | |
8745 | } | |
8746 | ||
8747 | wxGridCellEditor* wxGridTypeRegistry::GetEditor(int index) | |
8748 | { | |
8749 | wxGridCellEditor* editor = m_typeinfo[index]->m_editor; | |
8750 | if (editor) | |
8751 | editor->IncRef(); | |
8752 | ||
8753 | return editor; | |
8754 | } | |
8755 | ||
27b92ca4 | 8756 | #endif // wxUSE_GRID |