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