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