]>
Commit | Line | Data |
---|---|---|
2796cce3 | 1 | /////////////////////////////////////////////////////////////////////////// |
faa94f3e | 2 | // Name: src/generic/grid.cpp |
f85afd4e MB |
3 | // Purpose: wxGrid and related classes |
4 | // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn) | |
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) | |
65571936 | 9 | // Licence: wxWindows licence |
f85afd4e MB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
95427194 | 12 | // For compilers that support precompilation, includes "wx/wx.h". |
4d85bcd1 JS |
13 | #include "wx/wxprec.h" |
14 | ||
f85afd4e MB |
15 | #ifdef __BORLANDC__ |
16 | #pragma hdrstop | |
17 | #endif | |
18 | ||
27b92ca4 VZ |
19 | #if wxUSE_GRID |
20 | ||
f85afd4e MB |
21 | #ifndef WX_PRECOMP |
22 | #include "wx/utils.h" | |
23 | #include "wx/dcclient.h" | |
24 | #include "wx/settings.h" | |
25 | #include "wx/log.h" | |
508011ce VZ |
26 | #include "wx/textctrl.h" |
27 | #include "wx/checkbox.h" | |
4ee5fc9c | 28 | #include "wx/combobox.h" |
816be743 | 29 | #include "wx/valtext.h" |
60d876f3 | 30 | #include "wx/intl.h" |
c77a6796 | 31 | #include "wx/math.h" |
f85afd4e MB |
32 | #endif |
33 | ||
cb5df486 | 34 | #include "wx/textfile.h" |
816be743 | 35 | #include "wx/spinctrl.h" |
c4608a8a | 36 | #include "wx/tokenzr.h" |
4d1bc39c | 37 | #include "wx/renderer.h" |
6d004f67 | 38 | |
07296f0b | 39 | #include "wx/grid.h" |
b5808881 | 40 | #include "wx/generic/gridsel.h" |
07296f0b | 41 | |
0b7e6e7d SN |
42 | #if defined(__WXMOTIF__) |
43 | #define WXUNUSED_MOTIF(identifier) WXUNUSED(identifier) | |
c78b3acd | 44 | #else |
0b7e6e7d | 45 | #define WXUNUSED_MOTIF(identifier) identifier |
c78b3acd SN |
46 | #endif |
47 | ||
48 | #if defined(__WXGTK__) | |
49 | #define WXUNUSED_GTK(identifier) WXUNUSED(identifier) | |
50 | #else | |
51 | #define WXUNUSED_GTK(identifier) identifier | |
52 | #endif | |
53 | ||
3f8e5072 JS |
54 | // Required for wxIs... functions |
55 | #include <ctype.h> | |
56 | ||
b99be8fb | 57 | // ---------------------------------------------------------------------------- |
758cbedf | 58 | // array classes |
b99be8fb VZ |
59 | // ---------------------------------------------------------------------------- |
60 | ||
d5d29b8a | 61 | WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridCellAttr *, wxArrayAttrs, |
160ba750 | 62 | class WXDLLIMPEXP_ADV); |
758cbedf | 63 | |
b99be8fb VZ |
64 | struct wxGridCellWithAttr |
65 | { | |
2e9a6788 VZ |
66 | wxGridCellWithAttr(int row, int col, wxGridCellAttr *attr_) |
67 | : coords(row, col), attr(attr_) | |
b99be8fb VZ |
68 | { |
69 | } | |
70 | ||
2e9a6788 VZ |
71 | ~wxGridCellWithAttr() |
72 | { | |
73 | attr->DecRef(); | |
74 | } | |
75 | ||
b99be8fb | 76 | wxGridCellCoords coords; |
2e9a6788 | 77 | wxGridCellAttr *attr; |
22f3361e VZ |
78 | |
79 | // Cannot do this: | |
80 | // DECLARE_NO_COPY_CLASS(wxGridCellWithAttr) | |
81 | // without rewriting the macros, which require a public copy constructor. | |
b99be8fb VZ |
82 | }; |
83 | ||
160ba750 VS |
84 | WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellWithAttr, wxGridCellWithAttrArray, |
85 | class WXDLLIMPEXP_ADV); | |
b99be8fb VZ |
86 | |
87 | #include "wx/arrimpl.cpp" | |
88 | ||
89 | WX_DEFINE_OBJARRAY(wxGridCellCoordsArray) | |
90 | WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray) | |
91 | ||
0f442030 RR |
92 | // ---------------------------------------------------------------------------- |
93 | // events | |
94 | // ---------------------------------------------------------------------------- | |
95 | ||
2e4df4bf VZ |
96 | DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_CLICK) |
97 | DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_CLICK) | |
98 | DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_DCLICK) | |
99 | DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_DCLICK) | |
79dbea21 | 100 | DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_BEGIN_DRAG) |
2e4df4bf VZ |
101 | DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_CLICK) |
102 | DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_CLICK) | |
103 | DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_DCLICK) | |
104 | DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_DCLICK) | |
105 | DEFINE_EVENT_TYPE(wxEVT_GRID_ROW_SIZE) | |
106 | DEFINE_EVENT_TYPE(wxEVT_GRID_COL_SIZE) | |
107 | DEFINE_EVENT_TYPE(wxEVT_GRID_RANGE_SELECT) | |
108 | DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_CHANGE) | |
109 | DEFINE_EVENT_TYPE(wxEVT_GRID_SELECT_CELL) | |
110 | DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_SHOWN) | |
111 | DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_HIDDEN) | |
bf7945ce | 112 | DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_CREATED) |
0f442030 | 113 | |
b99be8fb VZ |
114 | // ---------------------------------------------------------------------------- |
115 | // private classes | |
116 | // ---------------------------------------------------------------------------- | |
117 | ||
12f190b0 | 118 | class WXDLLIMPEXP_ADV wxGridRowLabelWindow : public wxWindow |
b99be8fb VZ |
119 | { |
120 | public: | |
121 | wxGridRowLabelWindow() { m_owner = (wxGrid *)NULL; } | |
122 | wxGridRowLabelWindow( wxGrid *parent, wxWindowID id, | |
123 | const wxPoint &pos, const wxSize &size ); | |
124 | ||
125 | private: | |
126 | wxGrid *m_owner; | |
127 | ||
128 | void OnPaint( wxPaintEvent& event ); | |
129 | void OnMouseEvent( wxMouseEvent& event ); | |
b51c3f27 | 130 | void OnMouseWheel( wxMouseEvent& event ); |
b99be8fb | 131 | void OnKeyDown( wxKeyEvent& event ); |
f6bcfd97 | 132 | void OnKeyUp( wxKeyEvent& ); |
63e2147c | 133 | void OnChar( wxKeyEvent& ); |
b99be8fb VZ |
134 | |
135 | DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow) | |
136 | DECLARE_EVENT_TABLE() | |
22f3361e | 137 | DECLARE_NO_COPY_CLASS(wxGridRowLabelWindow) |
b99be8fb VZ |
138 | }; |
139 | ||
140 | ||
12f190b0 | 141 | class WXDLLIMPEXP_ADV wxGridColLabelWindow : public wxWindow |
b99be8fb VZ |
142 | { |
143 | public: | |
144 | wxGridColLabelWindow() { m_owner = (wxGrid *)NULL; } | |
145 | wxGridColLabelWindow( wxGrid *parent, wxWindowID id, | |
146 | const wxPoint &pos, const wxSize &size ); | |
147 | ||
148 | private: | |
149 | wxGrid *m_owner; | |
150 | ||
a9339fe2 | 151 | void OnPaint( wxPaintEvent& event ); |
b99be8fb | 152 | void OnMouseEvent( wxMouseEvent& event ); |
b51c3f27 | 153 | void OnMouseWheel( wxMouseEvent& event ); |
b99be8fb | 154 | void OnKeyDown( wxKeyEvent& event ); |
f6bcfd97 | 155 | void OnKeyUp( wxKeyEvent& ); |
63e2147c | 156 | void OnChar( wxKeyEvent& ); |
b99be8fb VZ |
157 | |
158 | DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow) | |
159 | DECLARE_EVENT_TABLE() | |
22f3361e | 160 | DECLARE_NO_COPY_CLASS(wxGridColLabelWindow) |
b99be8fb VZ |
161 | }; |
162 | ||
163 | ||
12f190b0 | 164 | class WXDLLIMPEXP_ADV wxGridCornerLabelWindow : public wxWindow |
b99be8fb VZ |
165 | { |
166 | public: | |
167 | wxGridCornerLabelWindow() { m_owner = (wxGrid *)NULL; } | |
168 | wxGridCornerLabelWindow( wxGrid *parent, wxWindowID id, | |
169 | const wxPoint &pos, const wxSize &size ); | |
170 | ||
171 | private: | |
172 | wxGrid *m_owner; | |
173 | ||
174 | void OnMouseEvent( wxMouseEvent& event ); | |
b51c3f27 | 175 | void OnMouseWheel( wxMouseEvent& event ); |
b99be8fb | 176 | void OnKeyDown( wxKeyEvent& event ); |
f6bcfd97 | 177 | void OnKeyUp( wxKeyEvent& ); |
63e2147c | 178 | void OnChar( wxKeyEvent& ); |
b99be8fb VZ |
179 | void OnPaint( wxPaintEvent& event ); |
180 | ||
181 | DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow) | |
182 | DECLARE_EVENT_TABLE() | |
22f3361e | 183 | DECLARE_NO_COPY_CLASS(wxGridCornerLabelWindow) |
b99be8fb VZ |
184 | }; |
185 | ||
12f190b0 | 186 | class WXDLLIMPEXP_ADV wxGridWindow : public wxWindow |
b99be8fb VZ |
187 | { |
188 | public: | |
189 | wxGridWindow() | |
190 | { | |
191 | m_owner = (wxGrid *)NULL; | |
192 | m_rowLabelWin = (wxGridRowLabelWindow *)NULL; | |
193 | m_colLabelWin = (wxGridColLabelWindow *)NULL; | |
194 | } | |
195 | ||
196 | wxGridWindow( wxGrid *parent, | |
197 | wxGridRowLabelWindow *rowLblWin, | |
198 | wxGridColLabelWindow *colLblWin, | |
199 | wxWindowID id, const wxPoint &pos, const wxSize &size ); | |
4db6714b | 200 | ~wxGridWindow() {} |
b99be8fb VZ |
201 | |
202 | void ScrollWindow( int dx, int dy, const wxRect *rect ); | |
203 | ||
b819b854 JS |
204 | wxGrid* GetOwner() { return m_owner; } |
205 | ||
b99be8fb VZ |
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& ); |
63e2147c | 216 | void OnChar( wxKeyEvent& ); |
2796cce3 | 217 | void OnEraseBackground( wxEraseEvent& ); |
80acaf25 | 218 | void OnFocus( wxFocusEvent& ); |
b99be8fb VZ |
219 | |
220 | DECLARE_DYNAMIC_CLASS(wxGridWindow) | |
221 | DECLARE_EVENT_TABLE() | |
22f3361e | 222 | DECLARE_NO_COPY_CLASS(wxGridWindow) |
b99be8fb VZ |
223 | }; |
224 | ||
2796cce3 | 225 | |
2796cce3 RD |
226 | class wxGridCellEditorEvtHandler : public wxEvtHandler |
227 | { | |
228 | public: | |
2796cce3 | 229 | wxGridCellEditorEvtHandler(wxGrid* grid, wxGridCellEditor* editor) |
140954fd | 230 | : m_grid(grid), |
08dd04d0 JS |
231 | m_editor(editor), |
232 | m_inSetFocus(false) | |
140954fd VZ |
233 | { |
234 | } | |
2796cce3 | 235 | |
140954fd | 236 | void OnKillFocus(wxFocusEvent& event); |
2796cce3 | 237 | void OnKeyDown(wxKeyEvent& event); |
fb0de762 | 238 | void OnChar(wxKeyEvent& event); |
2796cce3 | 239 | |
08dd04d0 JS |
240 | void SetInSetFocus(bool inSetFocus) { m_inSetFocus = inSetFocus; } |
241 | ||
2796cce3 | 242 | private: |
2f024384 DS |
243 | wxGrid *m_grid; |
244 | wxGridCellEditor *m_editor; | |
140954fd | 245 | |
08dd04d0 JS |
246 | // Work around the fact that a focus kill event can be sent to |
247 | // a combobox within a set focus event. | |
248 | bool m_inSetFocus; | |
7448de8d | 249 | |
2796cce3 | 250 | DECLARE_EVENT_TABLE() |
140954fd | 251 | DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler) |
22f3361e | 252 | DECLARE_NO_COPY_CLASS(wxGridCellEditorEvtHandler) |
2796cce3 RD |
253 | }; |
254 | ||
255 | ||
140954fd VZ |
256 | IMPLEMENT_ABSTRACT_CLASS(wxGridCellEditorEvtHandler, wxEvtHandler) |
257 | ||
2796cce3 | 258 | BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler, wxEvtHandler ) |
140954fd | 259 | EVT_KILL_FOCUS( wxGridCellEditorEvtHandler::OnKillFocus ) |
2796cce3 | 260 | EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown ) |
fb0de762 | 261 | EVT_CHAR( wxGridCellEditorEvtHandler::OnChar ) |
2796cce3 RD |
262 | END_EVENT_TABLE() |
263 | ||
264 | ||
758cbedf | 265 | // ---------------------------------------------------------------------------- |
b99be8fb | 266 | // the internal data representation used by wxGridCellAttrProvider |
758cbedf VZ |
267 | // ---------------------------------------------------------------------------- |
268 | ||
269 | // this class stores attributes set for cells | |
12f190b0 | 270 | class WXDLLIMPEXP_ADV wxGridCellAttrData |
b99be8fb VZ |
271 | { |
272 | public: | |
2e9a6788 | 273 | void SetAttr(wxGridCellAttr *attr, int row, int col); |
b99be8fb | 274 | wxGridCellAttr *GetAttr(int row, int col) const; |
4d60017a SN |
275 | void UpdateAttrRows( size_t pos, int numRows ); |
276 | void UpdateAttrCols( size_t pos, int numCols ); | |
b99be8fb VZ |
277 | |
278 | private: | |
279 | // searches for the attr for given cell, returns wxNOT_FOUND if not found | |
280 | int FindIndex(int row, int col) const; | |
281 | ||
282 | wxGridCellWithAttrArray m_attrs; | |
283 | }; | |
284 | ||
758cbedf | 285 | // this class stores attributes set for rows or columns |
12f190b0 | 286 | class WXDLLIMPEXP_ADV wxGridRowOrColAttrData |
758cbedf VZ |
287 | { |
288 | public: | |
ee6694a7 | 289 | // empty ctor to suppress warnings |
2f024384 | 290 | wxGridRowOrColAttrData() {} |
758cbedf VZ |
291 | ~wxGridRowOrColAttrData(); |
292 | ||
293 | void SetAttr(wxGridCellAttr *attr, int rowOrCol); | |
294 | wxGridCellAttr *GetAttr(int rowOrCol) const; | |
4d60017a | 295 | void UpdateAttrRowsOrCols( size_t pos, int numRowsOrCols ); |
758cbedf VZ |
296 | |
297 | private: | |
298 | wxArrayInt m_rowsOrCols; | |
299 | wxArrayAttrs m_attrs; | |
300 | }; | |
301 | ||
302 | // NB: this is just a wrapper around 3 objects: one which stores cell | |
303 | // attributes, and 2 others for row/col ones | |
12f190b0 | 304 | class WXDLLIMPEXP_ADV wxGridCellAttrProviderData |
758cbedf VZ |
305 | { |
306 | public: | |
307 | wxGridCellAttrData m_cellAttrs; | |
308 | wxGridRowOrColAttrData m_rowAttrs, | |
309 | m_colAttrs; | |
310 | }; | |
311 | ||
f2d76237 RD |
312 | |
313 | // ---------------------------------------------------------------------------- | |
314 | // data structures used for the data type registry | |
315 | // ---------------------------------------------------------------------------- | |
316 | ||
b94ae1ea VZ |
317 | struct wxGridDataTypeInfo |
318 | { | |
f2d76237 RD |
319 | wxGridDataTypeInfo(const wxString& typeName, |
320 | wxGridCellRenderer* renderer, | |
321 | wxGridCellEditor* editor) | |
322 | : m_typeName(typeName), m_renderer(renderer), m_editor(editor) | |
2f024384 | 323 | {} |
f2d76237 | 324 | |
39bcce60 VZ |
325 | ~wxGridDataTypeInfo() |
326 | { | |
327 | wxSafeDecRef(m_renderer); | |
328 | wxSafeDecRef(m_editor); | |
329 | } | |
f2d76237 RD |
330 | |
331 | wxString m_typeName; | |
332 | wxGridCellRenderer* m_renderer; | |
333 | wxGridCellEditor* m_editor; | |
22f3361e VZ |
334 | |
335 | DECLARE_NO_COPY_CLASS(wxGridDataTypeInfo) | |
f2d76237 RD |
336 | }; |
337 | ||
338 | ||
d5d29b8a | 339 | WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridDataTypeInfo*, wxGridDataTypeInfoArray, |
160ba750 | 340 | class WXDLLIMPEXP_ADV); |
f2d76237 RD |
341 | |
342 | ||
12f190b0 | 343 | class WXDLLIMPEXP_ADV wxGridTypeRegistry |
b94ae1ea | 344 | { |
f2d76237 | 345 | public: |
c78b3acd | 346 | wxGridTypeRegistry() {} |
f2d76237 | 347 | ~wxGridTypeRegistry(); |
b94ae1ea | 348 | |
f2d76237 RD |
349 | void RegisterDataType(const wxString& typeName, |
350 | wxGridCellRenderer* renderer, | |
351 | wxGridCellEditor* editor); | |
c4608a8a VZ |
352 | |
353 | // find one of already registered data types | |
354 | int FindRegisteredDataType(const wxString& typeName); | |
355 | ||
356 | // try to FindRegisteredDataType(), if this fails and typeName is one of | |
357 | // standard typenames, register it and return its index | |
f2d76237 | 358 | int FindDataType(const wxString& typeName); |
c4608a8a VZ |
359 | |
360 | // try to FindDataType(), if it fails see if it is not one of already | |
361 | // registered data types with some params in which case clone the | |
362 | // registered data type and set params for it | |
363 | int FindOrCloneDataType(const wxString& typeName); | |
364 | ||
f2d76237 RD |
365 | wxGridCellRenderer* GetRenderer(int index); |
366 | wxGridCellEditor* GetEditor(int index); | |
367 | ||
368 | private: | |
369 | wxGridDataTypeInfoArray m_typeinfo; | |
370 | }; | |
371 | ||
a9339fe2 | 372 | |
b99be8fb VZ |
373 | // ---------------------------------------------------------------------------- |
374 | // conditional compilation | |
375 | // ---------------------------------------------------------------------------- | |
376 | ||
9496deb5 MB |
377 | #ifndef WXGRID_DRAW_LINES |
378 | #define WXGRID_DRAW_LINES 1 | |
796df70a SN |
379 | #endif |
380 | ||
0a976765 VZ |
381 | // ---------------------------------------------------------------------------- |
382 | // globals | |
383 | // ---------------------------------------------------------------------------- | |
384 | ||
385 | //#define DEBUG_ATTR_CACHE | |
386 | #ifdef DEBUG_ATTR_CACHE | |
387 | static size_t gs_nAttrCacheHits = 0; | |
388 | static size_t gs_nAttrCacheMisses = 0; | |
2f024384 | 389 | #endif |
f85afd4e | 390 | |
43947979 VZ |
391 | // ---------------------------------------------------------------------------- |
392 | // constants | |
393 | // ---------------------------------------------------------------------------- | |
394 | ||
f85afd4e | 395 | wxGridCellCoords wxGridNoCellCoords( -1, -1 ); |
2f024384 | 396 | wxRect wxGridNoCellRect( -1, -1, -1, -1 ); |
f85afd4e | 397 | |
f0102d2a | 398 | // scroll line size |
faec5a43 SN |
399 | // TODO: this doesn't work at all, grid cells have different sizes and approx |
400 | // calculations don't work as because of the size mismatch scrollbars | |
401 | // sometimes fail to be shown when they should be or vice versa | |
b51c3f27 RD |
402 | // |
403 | // The scroll bars may be a little flakey once in a while, but that is | |
404 | // surely much less horrible than having scroll lines of only 1!!! | |
405 | // -- Robin | |
97a9929e VZ |
406 | // |
407 | // Well, it's still seriously broken so it might be better but needs | |
408 | // fixing anyhow | |
409 | // -- Vadim | |
410 | static const size_t GRID_SCROLL_LINE_X = 15; // 1; | |
411 | static const size_t GRID_SCROLL_LINE_Y = GRID_SCROLL_LINE_X; | |
f85afd4e | 412 | |
43947979 VZ |
413 | // the size of hash tables used a bit everywhere (the max number of elements |
414 | // in these hash tables is the number of rows/columns) | |
415 | static const int GRID_HASH_SIZE = 100; | |
416 | ||
608754c4 | 417 | #if 0 |
97a9929e VZ |
418 | // ---------------------------------------------------------------------------- |
419 | // private functions | |
420 | // ---------------------------------------------------------------------------- | |
421 | ||
d0eb7e56 | 422 | static inline int GetScrollX(int x) |
97a9929e VZ |
423 | { |
424 | return (x + GRID_SCROLL_LINE_X - 1) / GRID_SCROLL_LINE_X; | |
425 | } | |
426 | ||
d0eb7e56 | 427 | static inline int GetScrollY(int y) |
97a9929e VZ |
428 | { |
429 | return (y + GRID_SCROLL_LINE_Y - 1) / GRID_SCROLL_LINE_Y; | |
430 | } | |
608754c4 | 431 | #endif |
97a9929e | 432 | |
ab79958a VZ |
433 | // ============================================================================ |
434 | // implementation | |
435 | // ============================================================================ | |
436 | ||
2796cce3 RD |
437 | // ---------------------------------------------------------------------------- |
438 | // wxGridCellEditor | |
439 | // ---------------------------------------------------------------------------- | |
440 | ||
441 | wxGridCellEditor::wxGridCellEditor() | |
442 | { | |
443 | m_control = NULL; | |
1bd71df9 | 444 | m_attr = NULL; |
2796cce3 RD |
445 | } |
446 | ||
2796cce3 RD |
447 | wxGridCellEditor::~wxGridCellEditor() |
448 | { | |
449 | Destroy(); | |
450 | } | |
451 | ||
508011ce VZ |
452 | void wxGridCellEditor::Create(wxWindow* WXUNUSED(parent), |
453 | wxWindowID WXUNUSED(id), | |
454 | wxEvtHandler* evtHandler) | |
455 | { | |
189d0213 | 456 | if ( evtHandler ) |
508011ce VZ |
457 | m_control->PushEventHandler(evtHandler); |
458 | } | |
2796cce3 | 459 | |
189d0213 VZ |
460 | void wxGridCellEditor::PaintBackground(const wxRect& rectCell, |
461 | wxGridCellAttr *attr) | |
462 | { | |
463 | // erase the background because we might not fill the cell | |
464 | wxClientDC dc(m_control->GetParent()); | |
b819b854 JS |
465 | wxGridWindow* gridWindow = wxDynamicCast(m_control->GetParent(), wxGridWindow); |
466 | if (gridWindow) | |
467 | gridWindow->GetOwner()->PrepareDC(dc); | |
ef5df12b | 468 | |
189d0213 VZ |
469 | dc.SetPen(*wxTRANSPARENT_PEN); |
470 | dc.SetBrush(wxBrush(attr->GetBackgroundColour(), wxSOLID)); | |
471 | dc.DrawRectangle(rectCell); | |
472 | ||
473 | // redraw the control we just painted over | |
474 | m_control->Refresh(); | |
475 | } | |
476 | ||
2796cce3 RD |
477 | void wxGridCellEditor::Destroy() |
478 | { | |
508011ce VZ |
479 | if (m_control) |
480 | { | |
a9339fe2 | 481 | m_control->PopEventHandler( true /* delete it*/ ); |
b94ae1ea | 482 | |
2796cce3 RD |
483 | m_control->Destroy(); |
484 | m_control = NULL; | |
485 | } | |
486 | } | |
487 | ||
3da93aae | 488 | void wxGridCellEditor::Show(bool show, wxGridCellAttr *attr) |
2796cce3 | 489 | { |
2f024384 DS |
490 | wxASSERT_MSG(m_control, wxT("The wxGridCellEditor must be created first!")); |
491 | ||
2796cce3 | 492 | m_control->Show(show); |
3da93aae VZ |
493 | |
494 | if ( show ) | |
495 | { | |
496 | // set the colours/fonts if we have any | |
497 | if ( attr ) | |
498 | { | |
f2d76237 RD |
499 | m_colFgOld = m_control->GetForegroundColour(); |
500 | m_control->SetForegroundColour(attr->GetTextColour()); | |
3da93aae | 501 | |
f2d76237 RD |
502 | m_colBgOld = m_control->GetBackgroundColour(); |
503 | m_control->SetBackgroundColour(attr->GetBackgroundColour()); | |
3da93aae | 504 | |
0e871ad0 | 505 | // Workaround for GTK+1 font setting problem on some platforms |
ea2d542c | 506 | #if !defined(__WXGTK__) || defined(__WXGTK20__) |
f2d76237 RD |
507 | m_fontOld = m_control->GetFont(); |
508 | m_control->SetFont(attr->GetFont()); | |
ea2d542c | 509 | #endif |
a9339fe2 | 510 | |
3da93aae VZ |
511 | // can't do anything more in the base class version, the other |
512 | // attributes may only be used by the derived classes | |
513 | } | |
514 | } | |
515 | else | |
516 | { | |
517 | // restore the standard colours fonts | |
518 | if ( m_colFgOld.Ok() ) | |
519 | { | |
520 | m_control->SetForegroundColour(m_colFgOld); | |
521 | m_colFgOld = wxNullColour; | |
522 | } | |
523 | ||
524 | if ( m_colBgOld.Ok() ) | |
525 | { | |
526 | m_control->SetBackgroundColour(m_colBgOld); | |
527 | m_colBgOld = wxNullColour; | |
528 | } | |
2f024384 | 529 | |
0e871ad0 | 530 | // Workaround for GTK+1 font setting problem on some platforms |
ea2d542c | 531 | #if !defined(__WXGTK__) || defined(__WXGTK20__) |
3da93aae VZ |
532 | if ( m_fontOld.Ok() ) |
533 | { | |
534 | m_control->SetFont(m_fontOld); | |
535 | m_fontOld = wxNullFont; | |
536 | } | |
ea2d542c | 537 | #endif |
3da93aae | 538 | } |
2796cce3 RD |
539 | } |
540 | ||
541 | void wxGridCellEditor::SetSize(const wxRect& rect) | |
542 | { | |
2f024384 DS |
543 | wxASSERT_MSG(m_control, wxT("The wxGridCellEditor must be created first!")); |
544 | ||
28a77bc4 | 545 | m_control->SetSize(rect, wxSIZE_ALLOW_MINUS_ONE); |
2796cce3 RD |
546 | } |
547 | ||
548 | void wxGridCellEditor::HandleReturn(wxKeyEvent& event) | |
549 | { | |
550 | event.Skip(); | |
551 | } | |
552 | ||
f6bcfd97 BP |
553 | bool wxGridCellEditor::IsAcceptedKey(wxKeyEvent& event) |
554 | { | |
63e2147c RD |
555 | bool ctrl = event.ControlDown(); |
556 | bool alt = event.AltDown(); | |
2f024384 | 557 | |
63e2147c RD |
558 | #ifdef __WXMAC__ |
559 | // On the Mac the Alt key is more like shift and is used for entry of | |
560 | // valid characters, so check for Ctrl and Meta instead. | |
561 | alt = event.MetaDown(); | |
562 | #endif | |
563 | ||
564 | // Assume it's not a valid char if ctrl or alt is down, but if both are | |
565 | // down then it may be because of an AltGr key combination, so let them | |
566 | // through in that case. | |
567 | if ((ctrl || alt) && !(ctrl && alt)) | |
568 | return false; | |
902725ee | 569 | |
2f024384 | 570 | int key = 0; |
63e2147c RD |
571 | bool keyOk = true; |
572 | ||
2f024384 | 573 | #if wxUSE_UNICODE |
63e2147c RD |
574 | // if the unicode key code is not really a unicode character (it may |
575 | // be a function key or etc., the platforms appear to always give us a | |
2f024384 | 576 | // small value in this case) then fallback to the ASCII key code but |
63e2147c | 577 | // don't do anything for function keys or etc. |
2f024384 | 578 | key = event.GetUnicodeKey(); |
63e2147c RD |
579 | if (key <= 127) |
580 | { | |
581 | key = event.GetKeyCode(); | |
582 | keyOk = (key <= 127); | |
583 | } | |
2f024384 DS |
584 | #else |
585 | key = event.GetKeyCode(); | |
586 | keyOk = (key <= 255); | |
587 | #endif | |
588 | ||
63e2147c | 589 | return keyOk; |
f6bcfd97 | 590 | } |
2796cce3 | 591 | |
2c9a89e0 RD |
592 | void wxGridCellEditor::StartingKey(wxKeyEvent& event) |
593 | { | |
e195a54c VZ |
594 | event.Skip(); |
595 | } | |
2c9a89e0 | 596 | |
e195a54c VZ |
597 | void wxGridCellEditor::StartingClick() |
598 | { | |
b54ba671 | 599 | } |
2c9a89e0 | 600 | |
3a8c693a VZ |
601 | #if wxUSE_TEXTCTRL |
602 | ||
b54ba671 VZ |
603 | // ---------------------------------------------------------------------------- |
604 | // wxGridCellTextEditor | |
605 | // ---------------------------------------------------------------------------- | |
2c9a89e0 | 606 | |
2796cce3 RD |
607 | wxGridCellTextEditor::wxGridCellTextEditor() |
608 | { | |
c4608a8a | 609 | m_maxChars = 0; |
2796cce3 RD |
610 | } |
611 | ||
612 | void wxGridCellTextEditor::Create(wxWindow* parent, | |
613 | wxWindowID id, | |
2796cce3 RD |
614 | wxEvtHandler* evtHandler) |
615 | { | |
508011ce | 616 | m_control = new wxTextCtrl(parent, id, wxEmptyString, |
2c9a89e0 | 617 | wxDefaultPosition, wxDefaultSize |
2796cce3 | 618 | #if defined(__WXMSW__) |
aaae069f | 619 | , wxTE_PROCESS_TAB | wxTE_AUTO_SCROLL |
2796cce3 | 620 | #endif |
508011ce | 621 | ); |
2796cce3 | 622 | |
46a5010a RD |
623 | // set max length allowed in the textctrl, if the parameter was set |
624 | if (m_maxChars != 0) | |
625 | { | |
626 | ((wxTextCtrl*)m_control)->SetMaxLength(m_maxChars); | |
627 | } | |
c4608a8a | 628 | |
508011ce | 629 | wxGridCellEditor::Create(parent, id, evtHandler); |
2796cce3 RD |
630 | } |
631 | ||
189d0213 VZ |
632 | void wxGridCellTextEditor::PaintBackground(const wxRect& WXUNUSED(rectCell), |
633 | wxGridCellAttr * WXUNUSED(attr)) | |
634 | { | |
a9339fe2 DS |
635 | // as we fill the entire client area, |
636 | // don't do anything here to minimize flicker | |
189d0213 | 637 | } |
2796cce3 | 638 | |
99306db2 VZ |
639 | void wxGridCellTextEditor::SetSize(const wxRect& rectOrig) |
640 | { | |
641 | wxRect rect(rectOrig); | |
642 | ||
2f024384 | 643 | // Make the edit control large enough to allow for internal margins |
99306db2 | 644 | // |
2f024384 | 645 | // TODO: remove this if the text ctrl sizing is improved esp. for unix |
99306db2 VZ |
646 | // |
647 | #if defined(__WXGTK__) | |
b0e282b3 RR |
648 | if (rect.x != 0) |
649 | { | |
650 | rect.x += 1; | |
651 | rect.y += 1; | |
652 | rect.width -= 1; | |
653 | rect.height -= 1; | |
654 | } | |
99306db2 | 655 | #else // !GTK |
ccdee36f | 656 | int extra_x = ( rect.x > 2 ) ? 2 : 1; |
84912ef8 RD |
657 | |
658 | // MB: treat MSW separately here otherwise the caret doesn't show | |
659 | // when the editor is in the first row. | |
a0948e27 MB |
660 | #if defined(__WXMSW__) |
661 | int extra_y = 2; | |
662 | #else | |
2f024384 DS |
663 | int extra_y = ( rect.y > 2 ) ? 2 : 1; |
664 | #endif | |
a0948e27 | 665 | |
99306db2 | 666 | #if defined(__WXMOTIF__) |
cb105ad4 SN |
667 | extra_x *= 2; |
668 | extra_y *= 2; | |
99306db2 | 669 | #endif |
2f024384 | 670 | |
cb105ad4 SN |
671 | rect.SetLeft( wxMax(0, rect.x - extra_x) ); |
672 | rect.SetTop( wxMax(0, rect.y - extra_y) ); | |
2f024384 DS |
673 | rect.SetRight( rect.GetRight() + 2 * extra_x ); |
674 | rect.SetBottom( rect.GetBottom() + 2 * extra_y ); | |
99306db2 VZ |
675 | #endif // GTK/!GTK |
676 | ||
677 | wxGridCellEditor::SetSize(rect); | |
678 | } | |
679 | ||
3da93aae | 680 | void wxGridCellTextEditor::BeginEdit(int row, int col, wxGrid* grid) |
2796cce3 | 681 | { |
2f024384 | 682 | wxASSERT_MSG(m_control, wxT("The wxGridCellEditor must be created first!")); |
2796cce3 RD |
683 | |
684 | m_startValue = grid->GetTable()->GetValue(row, col); | |
816be743 VZ |
685 | |
686 | DoBeginEdit(m_startValue); | |
687 | } | |
688 | ||
689 | void wxGridCellTextEditor::DoBeginEdit(const wxString& startValue) | |
690 | { | |
691 | Text()->SetValue(startValue); | |
b54ba671 | 692 | Text()->SetInsertionPointEnd(); |
2f024384 | 693 | Text()->SetSelection(-1, -1); |
b54ba671 | 694 | Text()->SetFocus(); |
2796cce3 RD |
695 | } |
696 | ||
ccdee36f | 697 | bool wxGridCellTextEditor::EndEdit(int row, int col, wxGrid* grid) |
2796cce3 | 698 | { |
2f024384 | 699 | wxASSERT_MSG(m_control, wxT("The wxGridCellEditor must be created first!")); |
2796cce3 | 700 | |
ca65c044 | 701 | bool changed = false; |
b54ba671 | 702 | wxString value = Text()->GetValue(); |
2796cce3 | 703 | if (value != m_startValue) |
ca65c044 | 704 | changed = true; |
2796cce3 RD |
705 | |
706 | if (changed) | |
707 | grid->GetTable()->SetValue(row, col, value); | |
2c9a89e0 | 708 | |
3da93aae | 709 | m_startValue = wxEmptyString; |
a9339fe2 | 710 | |
7b519e5e JS |
711 | // No point in setting the text of the hidden control |
712 | //Text()->SetValue(m_startValue); | |
2796cce3 RD |
713 | |
714 | return changed; | |
715 | } | |
716 | ||
2796cce3 RD |
717 | void wxGridCellTextEditor::Reset() |
718 | { | |
2f024384 | 719 | wxASSERT_MSG(m_control, wxT("The wxGridCellEditor must be created first!")); |
2796cce3 | 720 | |
816be743 VZ |
721 | DoReset(m_startValue); |
722 | } | |
723 | ||
724 | void wxGridCellTextEditor::DoReset(const wxString& startValue) | |
725 | { | |
726 | Text()->SetValue(startValue); | |
b54ba671 | 727 | Text()->SetInsertionPointEnd(); |
2796cce3 RD |
728 | } |
729 | ||
f6bcfd97 BP |
730 | bool wxGridCellTextEditor::IsAcceptedKey(wxKeyEvent& event) |
731 | { | |
63e2147c | 732 | return wxGridCellEditor::IsAcceptedKey(event); |
f6bcfd97 BP |
733 | } |
734 | ||
2c9a89e0 RD |
735 | void wxGridCellTextEditor::StartingKey(wxKeyEvent& event) |
736 | { | |
63e2147c RD |
737 | // Since this is now happening in the EVT_CHAR event EmulateKeyPress is no |
738 | // longer an appropriate way to get the character into the text control. | |
739 | // Do it ourselves instead. We know that if we get this far that we have | |
740 | // a valid character, so not a whole lot of testing needs to be done. | |
741 | ||
742 | wxTextCtrl* tc = Text(); | |
743 | wxChar ch; | |
744 | long pos; | |
902725ee | 745 | |
63e2147c RD |
746 | #if wxUSE_UNICODE |
747 | ch = event.GetUnicodeKey(); | |
748 | if (ch <= 127) | |
6f0d2cee | 749 | ch = (wxChar)event.GetKeyCode(); |
63e2147c | 750 | #else |
6f0d2cee | 751 | ch = (wxChar)event.GetKeyCode(); |
63e2147c | 752 | #endif |
2f024384 | 753 | |
63e2147c | 754 | switch (ch) |
f6bcfd97 | 755 | { |
63e2147c RD |
756 | case WXK_DELETE: |
757 | // delete the character at the cursor | |
758 | pos = tc->GetInsertionPoint(); | |
759 | if (pos < tc->GetLastPosition()) | |
2f024384 | 760 | tc->Remove(pos, pos + 1); |
63e2147c RD |
761 | break; |
762 | ||
763 | case WXK_BACK: | |
764 | // delete the character before the cursor | |
765 | pos = tc->GetInsertionPoint(); | |
766 | if (pos > 0) | |
2f024384 | 767 | tc->Remove(pos - 1, pos); |
63e2147c RD |
768 | break; |
769 | ||
770 | default: | |
771 | tc->WriteText(ch); | |
772 | break; | |
f6bcfd97 | 773 | } |
b54ba671 | 774 | } |
2c9a89e0 | 775 | |
c78b3acd | 776 | void wxGridCellTextEditor::HandleReturn( wxKeyEvent& |
0b7e6e7d | 777 | WXUNUSED_GTK(WXUNUSED_MOTIF(event)) ) |
2796cce3 RD |
778 | { |
779 | #if defined(__WXMOTIF__) || defined(__WXGTK__) | |
780 | // wxMotif needs a little extra help... | |
6fc0f38f | 781 | size_t pos = (size_t)( Text()->GetInsertionPoint() ); |
b54ba671 | 782 | wxString s( Text()->GetValue() ); |
8dd8f875 | 783 | s = s.Left(pos) + wxT("\n") + s.Mid(pos); |
b54ba671 VZ |
784 | Text()->SetValue(s); |
785 | Text()->SetInsertionPoint( pos ); | |
2796cce3 RD |
786 | #else |
787 | // the other ports can handle a Return key press | |
788 | // | |
789 | event.Skip(); | |
790 | #endif | |
791 | } | |
792 | ||
c4608a8a VZ |
793 | void wxGridCellTextEditor::SetParameters(const wxString& params) |
794 | { | |
795 | if ( !params ) | |
796 | { | |
797 | // reset to default | |
798 | m_maxChars = 0; | |
799 | } | |
800 | else | |
801 | { | |
802 | long tmp; | |
803 | if ( !params.ToLong(&tmp) ) | |
804 | { | |
a9339fe2 | 805 | wxLogDebug( _T("Invalid wxGridCellTextEditor parameter string '%s' ignored"), params.c_str() ); |
c4608a8a VZ |
806 | } |
807 | else | |
808 | { | |
809 | m_maxChars = (size_t)tmp; | |
810 | } | |
811 | } | |
812 | } | |
813 | ||
73145b0e JS |
814 | // return the value in the text control |
815 | wxString wxGridCellTextEditor::GetValue() const | |
816 | { | |
2f024384 | 817 | return Text()->GetValue(); |
73145b0e JS |
818 | } |
819 | ||
816be743 VZ |
820 | // ---------------------------------------------------------------------------- |
821 | // wxGridCellNumberEditor | |
822 | // ---------------------------------------------------------------------------- | |
823 | ||
824 | wxGridCellNumberEditor::wxGridCellNumberEditor(int min, int max) | |
825 | { | |
826 | m_min = min; | |
827 | m_max = max; | |
828 | } | |
829 | ||
830 | void wxGridCellNumberEditor::Create(wxWindow* parent, | |
831 | wxWindowID id, | |
832 | wxEvtHandler* evtHandler) | |
833 | { | |
0e871ad0 | 834 | #if wxUSE_SPINCTRL |
816be743 VZ |
835 | if ( HasRange() ) |
836 | { | |
837 | // create a spin ctrl | |
ca65c044 | 838 | m_control = new wxSpinCtrl(parent, wxID_ANY, wxEmptyString, |
816be743 VZ |
839 | wxDefaultPosition, wxDefaultSize, |
840 | wxSP_ARROW_KEYS, | |
841 | m_min, m_max); | |
842 | ||
843 | wxGridCellEditor::Create(parent, id, evtHandler); | |
844 | } | |
845 | else | |
0e871ad0 | 846 | #endif |
816be743 VZ |
847 | { |
848 | // just a text control | |
849 | wxGridCellTextEditor::Create(parent, id, evtHandler); | |
850 | ||
851 | #if wxUSE_VALIDATORS | |
85bc0351 | 852 | Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC)); |
816be743 VZ |
853 | #endif // wxUSE_VALIDATORS |
854 | } | |
855 | } | |
856 | ||
857 | void wxGridCellNumberEditor::BeginEdit(int row, int col, wxGrid* grid) | |
858 | { | |
859 | // first get the value | |
860 | wxGridTableBase *table = grid->GetTable(); | |
861 | if ( table->CanGetValueAs(row, col, wxGRID_VALUE_NUMBER) ) | |
862 | { | |
863 | m_valueOld = table->GetValueAsLong(row, col); | |
864 | } | |
865 | else | |
866 | { | |
8a60ff0a | 867 | m_valueOld = 0; |
a5777624 | 868 | wxString sValue = table->GetValue(row, col); |
0e871ad0 | 869 | if (! sValue.ToLong(&m_valueOld) && ! sValue.empty()) |
a5777624 RD |
870 | { |
871 | wxFAIL_MSG( _T("this cell doesn't have numeric value") ); | |
872 | return; | |
873 | } | |
816be743 VZ |
874 | } |
875 | ||
0e871ad0 | 876 | #if wxUSE_SPINCTRL |
816be743 VZ |
877 | if ( HasRange() ) |
878 | { | |
4a64bee4 | 879 | Spin()->SetValue((int)m_valueOld); |
f6bcfd97 | 880 | Spin()->SetFocus(); |
816be743 VZ |
881 | } |
882 | else | |
0e871ad0 | 883 | #endif |
816be743 VZ |
884 | { |
885 | DoBeginEdit(GetString()); | |
886 | } | |
887 | } | |
888 | ||
3324d5f5 | 889 | bool wxGridCellNumberEditor::EndEdit(int row, int col, |
816be743 VZ |
890 | wxGrid* grid) |
891 | { | |
892 | bool changed; | |
8a60ff0a RD |
893 | long value = 0; |
894 | wxString text; | |
816be743 | 895 | |
0e871ad0 | 896 | #if wxUSE_SPINCTRL |
816be743 VZ |
897 | if ( HasRange() ) |
898 | { | |
899 | value = Spin()->GetValue(); | |
900 | changed = value != m_valueOld; | |
8a60ff0a RD |
901 | if (changed) |
902 | text = wxString::Format(wxT("%ld"), value); | |
816be743 VZ |
903 | } |
904 | else | |
0e871ad0 | 905 | #endif |
816be743 | 906 | { |
8a60ff0a | 907 | text = Text()->GetValue(); |
0e871ad0 | 908 | changed = (text.empty() || text.ToLong(&value)) && (value != m_valueOld); |
816be743 VZ |
909 | } |
910 | ||
911 | if ( changed ) | |
912 | { | |
a5777624 RD |
913 | if (grid->GetTable()->CanSetValueAs(row, col, wxGRID_VALUE_NUMBER)) |
914 | grid->GetTable()->SetValueAsLong(row, col, value); | |
915 | else | |
8a60ff0a | 916 | grid->GetTable()->SetValue(row, col, text); |
816be743 VZ |
917 | } |
918 | ||
919 | return changed; | |
920 | } | |
921 | ||
922 | void wxGridCellNumberEditor::Reset() | |
923 | { | |
0e871ad0 | 924 | #if wxUSE_SPINCTRL |
816be743 VZ |
925 | if ( HasRange() ) |
926 | { | |
4a64bee4 | 927 | Spin()->SetValue((int)m_valueOld); |
816be743 VZ |
928 | } |
929 | else | |
0e871ad0 | 930 | #endif |
816be743 VZ |
931 | { |
932 | DoReset(GetString()); | |
933 | } | |
934 | } | |
935 | ||
f6bcfd97 BP |
936 | bool wxGridCellNumberEditor::IsAcceptedKey(wxKeyEvent& event) |
937 | { | |
938 | if ( wxGridCellEditor::IsAcceptedKey(event) ) | |
939 | { | |
940 | int keycode = event.GetKeyCode(); | |
63e2147c RD |
941 | if ( (keycode < 128) && |
942 | (wxIsdigit(keycode) || keycode == '+' || keycode == '-')) | |
f6bcfd97 | 943 | { |
63e2147c | 944 | return true; |
f6bcfd97 BP |
945 | } |
946 | } | |
947 | ||
ca65c044 | 948 | return false; |
f6bcfd97 BP |
949 | } |
950 | ||
816be743 VZ |
951 | void wxGridCellNumberEditor::StartingKey(wxKeyEvent& event) |
952 | { | |
eb5e42b6 | 953 | int keycode = event.GetKeyCode(); |
816be743 VZ |
954 | if ( !HasRange() ) |
955 | { | |
63e2147c | 956 | if ( wxIsdigit(keycode) || keycode == '+' || keycode == '-') |
816be743 VZ |
957 | { |
958 | wxGridCellTextEditor::StartingKey(event); | |
959 | ||
960 | // skip Skip() below | |
961 | return; | |
962 | } | |
963 | } | |
eb5e42b6 RD |
964 | #if wxUSE_SPINCTRL |
965 | else | |
966 | { | |
967 | if ( wxIsdigit(keycode) ) | |
968 | { | |
969 | wxSpinCtrl* spin = (wxSpinCtrl*)m_control; | |
970 | spin->SetValue(keycode - '0'); | |
971 | spin->SetSelection(1,1); | |
972 | return; | |
973 | } | |
974 | } | |
975 | #endif | |
2f024384 | 976 | |
816be743 VZ |
977 | event.Skip(); |
978 | } | |
9c4ba614 | 979 | |
c4608a8a VZ |
980 | void wxGridCellNumberEditor::SetParameters(const wxString& params) |
981 | { | |
982 | if ( !params ) | |
983 | { | |
984 | // reset to default | |
985 | m_min = | |
986 | m_max = -1; | |
987 | } | |
988 | else | |
989 | { | |
990 | long tmp; | |
991 | if ( params.BeforeFirst(_T(',')).ToLong(&tmp) ) | |
992 | { | |
993 | m_min = (int)tmp; | |
994 | ||
995 | if ( params.AfterFirst(_T(',')).ToLong(&tmp) ) | |
996 | { | |
997 | m_max = (int)tmp; | |
998 | ||
999 | // skip the error message below | |
1000 | return; | |
1001 | } | |
1002 | } | |
1003 | ||
f6bcfd97 | 1004 | wxLogDebug(_T("Invalid wxGridCellNumberEditor parameter string '%s' ignored"), params.c_str()); |
c4608a8a VZ |
1005 | } |
1006 | } | |
1007 | ||
73145b0e JS |
1008 | // return the value in the spin control if it is there (the text control otherwise) |
1009 | wxString wxGridCellNumberEditor::GetValue() const | |
1010 | { | |
0e871ad0 WS |
1011 | wxString s; |
1012 | ||
1013 | #if wxUSE_SPINCTRL | |
4db6714b | 1014 | if ( HasRange() ) |
0e871ad0 WS |
1015 | { |
1016 | long value = Spin()->GetValue(); | |
1017 | s.Printf(wxT("%ld"), value); | |
1018 | } | |
1019 | else | |
1020 | #endif | |
1021 | { | |
1022 | s = Text()->GetValue(); | |
1023 | } | |
1024 | ||
1025 | return s; | |
73145b0e JS |
1026 | } |
1027 | ||
816be743 VZ |
1028 | // ---------------------------------------------------------------------------- |
1029 | // wxGridCellFloatEditor | |
1030 | // ---------------------------------------------------------------------------- | |
1031 | ||
f6bcfd97 BP |
1032 | wxGridCellFloatEditor::wxGridCellFloatEditor(int width, int precision) |
1033 | { | |
1034 | m_width = width; | |
1035 | m_precision = precision; | |
1036 | } | |
1037 | ||
816be743 VZ |
1038 | void wxGridCellFloatEditor::Create(wxWindow* parent, |
1039 | wxWindowID id, | |
1040 | wxEvtHandler* evtHandler) | |
1041 | { | |
1042 | wxGridCellTextEditor::Create(parent, id, evtHandler); | |
1043 | ||
1044 | #if wxUSE_VALIDATORS | |
85bc0351 | 1045 | Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC)); |
816be743 VZ |
1046 | #endif // wxUSE_VALIDATORS |
1047 | } | |
1048 | ||
1049 | void wxGridCellFloatEditor::BeginEdit(int row, int col, wxGrid* grid) | |
1050 | { | |
1051 | // first get the value | |
1052 | wxGridTableBase *table = grid->GetTable(); | |
1053 | if ( table->CanGetValueAs(row, col, wxGRID_VALUE_FLOAT) ) | |
1054 | { | |
1055 | m_valueOld = table->GetValueAsDouble(row, col); | |
1056 | } | |
1057 | else | |
1058 | { | |
8a60ff0a | 1059 | m_valueOld = 0.0; |
a5777624 | 1060 | wxString sValue = table->GetValue(row, col); |
0e871ad0 | 1061 | if (! sValue.ToDouble(&m_valueOld) && ! sValue.empty()) |
a5777624 RD |
1062 | { |
1063 | wxFAIL_MSG( _T("this cell doesn't have float value") ); | |
1064 | return; | |
1065 | } | |
816be743 VZ |
1066 | } |
1067 | ||
1068 | DoBeginEdit(GetString()); | |
1069 | } | |
1070 | ||
3324d5f5 | 1071 | bool wxGridCellFloatEditor::EndEdit(int row, int col, |
816be743 VZ |
1072 | wxGrid* grid) |
1073 | { | |
8a60ff0a RD |
1074 | double value = 0.0; |
1075 | wxString text(Text()->GetValue()); | |
1076 | ||
c77a6796 VZ |
1077 | if ( (text.empty() || text.ToDouble(&value)) && |
1078 | !wxIsSameDouble(value, m_valueOld) ) | |
816be743 | 1079 | { |
a5777624 RD |
1080 | if (grid->GetTable()->CanSetValueAs(row, col, wxGRID_VALUE_FLOAT)) |
1081 | grid->GetTable()->SetValueAsDouble(row, col, value); | |
1082 | else | |
8a60ff0a | 1083 | grid->GetTable()->SetValue(row, col, text); |
816be743 | 1084 | |
ca65c044 | 1085 | return true; |
816be743 | 1086 | } |
2f024384 | 1087 | |
ca65c044 | 1088 | return false; |
816be743 VZ |
1089 | } |
1090 | ||
1091 | void wxGridCellFloatEditor::Reset() | |
1092 | { | |
1093 | DoReset(GetString()); | |
1094 | } | |
1095 | ||
1096 | void wxGridCellFloatEditor::StartingKey(wxKeyEvent& event) | |
1097 | { | |
12a3f227 | 1098 | int keycode = event.GetKeyCode(); |
3fe73755 SN |
1099 | char tmpbuf[2]; |
1100 | tmpbuf[0] = (char) keycode; | |
1101 | tmpbuf[1] = '\0'; | |
42841dfc | 1102 | wxString strbuf(tmpbuf, *wxConvCurrent); |
2f024384 | 1103 | |
902725ee | 1104 | #if wxUSE_INTL |
42841dfc | 1105 | bool is_decimal_point = ( strbuf == |
63e2147c | 1106 | wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT, wxLOCALE_CAT_NUMBER) ); |
5335e9c4 MW |
1107 | #else |
1108 | bool is_decimal_point = ( strbuf == _T(".") ); | |
1109 | #endif | |
2f024384 | 1110 | |
63e2147c RD |
1111 | if ( wxIsdigit(keycode) || keycode == '+' || keycode == '-' |
1112 | || is_decimal_point ) | |
816be743 VZ |
1113 | { |
1114 | wxGridCellTextEditor::StartingKey(event); | |
1115 | ||
1116 | // skip Skip() below | |
1117 | return; | |
1118 | } | |
1119 | ||
1120 | event.Skip(); | |
1121 | } | |
1122 | ||
f6bcfd97 BP |
1123 | void wxGridCellFloatEditor::SetParameters(const wxString& params) |
1124 | { | |
1125 | if ( !params ) | |
1126 | { | |
1127 | // reset to default | |
1128 | m_width = | |
1129 | m_precision = -1; | |
1130 | } | |
1131 | else | |
1132 | { | |
1133 | long tmp; | |
1134 | if ( params.BeforeFirst(_T(',')).ToLong(&tmp) ) | |
1135 | { | |
1136 | m_width = (int)tmp; | |
1137 | ||
1138 | if ( params.AfterFirst(_T(',')).ToLong(&tmp) ) | |
1139 | { | |
1140 | m_precision = (int)tmp; | |
1141 | ||
1142 | // skip the error message below | |
1143 | return; | |
1144 | } | |
1145 | } | |
1146 | ||
1147 | wxLogDebug(_T("Invalid wxGridCellFloatEditor parameter string '%s' ignored"), params.c_str()); | |
1148 | } | |
1149 | } | |
1150 | ||
1151 | wxString wxGridCellFloatEditor::GetString() const | |
1152 | { | |
1153 | wxString fmt; | |
fe4cb4f5 | 1154 | if ( m_precision == -1 && m_width != -1) |
f6bcfd97 BP |
1155 | { |
1156 | // default precision | |
ec53826c | 1157 | fmt.Printf(_T("%%%d.f"), m_width); |
f6bcfd97 | 1158 | } |
fe4cb4f5 JS |
1159 | else if ( m_precision != -1 && m_width == -1) |
1160 | { | |
1161 | // default width | |
1162 | fmt.Printf(_T("%%.%df"), m_precision); | |
1163 | } | |
1164 | else if ( m_precision != -1 && m_width != -1 ) | |
f6bcfd97 | 1165 | { |
ec53826c | 1166 | fmt.Printf(_T("%%%d.%df"), m_width, m_precision); |
f6bcfd97 | 1167 | } |
fe4cb4f5 JS |
1168 | else |
1169 | { | |
1170 | // default width/precision | |
1171 | fmt = _T("%f"); | |
1172 | } | |
f6bcfd97 BP |
1173 | |
1174 | return wxString::Format(fmt, m_valueOld); | |
1175 | } | |
1176 | ||
1177 | bool wxGridCellFloatEditor::IsAcceptedKey(wxKeyEvent& event) | |
1178 | { | |
1179 | if ( wxGridCellEditor::IsAcceptedKey(event) ) | |
1180 | { | |
1181 | int keycode = event.GetKeyCode(); | |
63e2147c RD |
1182 | printf("%d\n", keycode); |
1183 | // accept digits, 'e' as in '1e+6', also '-', '+', and '.' | |
1184 | char tmpbuf[2]; | |
1185 | tmpbuf[0] = (char) keycode; | |
1186 | tmpbuf[1] = '\0'; | |
1187 | wxString strbuf(tmpbuf, *wxConvCurrent); | |
2f024384 | 1188 | |
902725ee | 1189 | #if wxUSE_INTL |
63e2147c RD |
1190 | bool is_decimal_point = |
1191 | ( strbuf == wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT, | |
1192 | wxLOCALE_CAT_NUMBER) ); | |
5335e9c4 MW |
1193 | #else |
1194 | bool is_decimal_point = ( strbuf == _T(".") ); | |
1195 | #endif | |
2f024384 | 1196 | |
902725ee | 1197 | if ( (keycode < 128) && |
63e2147c RD |
1198 | (wxIsdigit(keycode) || tolower(keycode) == 'e' || |
1199 | is_decimal_point || keycode == '+' || keycode == '-') ) | |
2f024384 | 1200 | { |
63e2147c | 1201 | return true; |
2f024384 | 1202 | } |
f6bcfd97 BP |
1203 | } |
1204 | ||
ca65c044 | 1205 | return false; |
f6bcfd97 BP |
1206 | } |
1207 | ||
3a8c693a VZ |
1208 | #endif // wxUSE_TEXTCTRL |
1209 | ||
1210 | #if wxUSE_CHECKBOX | |
1211 | ||
508011ce VZ |
1212 | // ---------------------------------------------------------------------------- |
1213 | // wxGridCellBoolEditor | |
1214 | // ---------------------------------------------------------------------------- | |
1215 | ||
1216 | void wxGridCellBoolEditor::Create(wxWindow* parent, | |
1217 | wxWindowID id, | |
1218 | wxEvtHandler* evtHandler) | |
1219 | { | |
1220 | m_control = new wxCheckBox(parent, id, wxEmptyString, | |
1221 | wxDefaultPosition, wxDefaultSize, | |
1222 | wxNO_BORDER); | |
1223 | ||
1224 | wxGridCellEditor::Create(parent, id, evtHandler); | |
1225 | } | |
1226 | ||
1227 | void wxGridCellBoolEditor::SetSize(const wxRect& r) | |
1228 | { | |
ca65c044 | 1229 | bool resize = false; |
b94ae1ea VZ |
1230 | wxSize size = m_control->GetSize(); |
1231 | wxCoord minSize = wxMin(r.width, r.height); | |
1232 | ||
1233 | // check if the checkbox is not too big/small for this cell | |
1234 | wxSize sizeBest = m_control->GetBestSize(); | |
1235 | if ( !(size == sizeBest) ) | |
1236 | { | |
1237 | // reset to default size if it had been made smaller | |
1238 | size = sizeBest; | |
1239 | ||
ca65c044 | 1240 | resize = true; |
b94ae1ea VZ |
1241 | } |
1242 | ||
1243 | if ( size.x >= minSize || size.y >= minSize ) | |
1244 | { | |
1245 | // leave 1 pixel margin | |
1246 | size.x = size.y = minSize - 2; | |
1247 | ||
ca65c044 | 1248 | resize = true; |
b94ae1ea VZ |
1249 | } |
1250 | ||
1251 | if ( resize ) | |
1252 | { | |
1253 | m_control->SetSize(size); | |
1254 | } | |
1255 | ||
508011ce | 1256 | // position it in the centre of the rectangle (TODO: support alignment?) |
508011ce | 1257 | |
b94ae1ea | 1258 | #if defined(__WXGTK__) || defined (__WXMOTIF__) |
508011ce VZ |
1259 | // the checkbox without label still has some space to the right in wxGTK, |
1260 | // so shift it to the right | |
b94ae1ea VZ |
1261 | size.x -= 8; |
1262 | #elif defined(__WXMSW__) | |
a95e38c0 VZ |
1263 | // here too, but in other way |
1264 | size.x += 1; | |
b94ae1ea VZ |
1265 | size.y -= 2; |
1266 | #endif | |
508011ce | 1267 | |
1bd71df9 JS |
1268 | int hAlign = wxALIGN_CENTRE; |
1269 | int vAlign = wxALIGN_CENTRE; | |
1270 | if (GetCellAttr()) | |
1271 | GetCellAttr()->GetAlignment(& hAlign, & vAlign); | |
52d6f640 | 1272 | |
1bd71df9 JS |
1273 | int x = 0, y = 0; |
1274 | if (hAlign == wxALIGN_LEFT) | |
1275 | { | |
1276 | x = r.x + 2; | |
2f024384 | 1277 | |
1bd71df9 JS |
1278 | #ifdef __WXMSW__ |
1279 | x += 2; | |
52d6f640 | 1280 | #endif |
2f024384 DS |
1281 | |
1282 | y = r.y + r.height / 2 - size.y / 2; | |
1bd71df9 JS |
1283 | } |
1284 | else if (hAlign == wxALIGN_RIGHT) | |
1285 | { | |
1286 | x = r.x + r.width - size.x - 2; | |
2f024384 | 1287 | y = r.y + r.height / 2 - size.y / 2; |
1bd71df9 JS |
1288 | } |
1289 | else if (hAlign == wxALIGN_CENTRE) | |
1290 | { | |
2f024384 DS |
1291 | x = r.x + r.width / 2 - size.x / 2; |
1292 | y = r.y + r.height / 2 - size.y / 2; | |
1bd71df9 | 1293 | } |
52d6f640 | 1294 | |
1bd71df9 | 1295 | m_control->Move(x, y); |
508011ce VZ |
1296 | } |
1297 | ||
1298 | void wxGridCellBoolEditor::Show(bool show, wxGridCellAttr *attr) | |
1299 | { | |
99306db2 VZ |
1300 | m_control->Show(show); |
1301 | ||
189d0213 | 1302 | if ( show ) |
508011ce | 1303 | { |
189d0213 VZ |
1304 | wxColour colBg = attr ? attr->GetBackgroundColour() : *wxLIGHT_GREY; |
1305 | CBox()->SetBackgroundColour(colBg); | |
508011ce | 1306 | } |
508011ce VZ |
1307 | } |
1308 | ||
1309 | void wxGridCellBoolEditor::BeginEdit(int row, int col, wxGrid* grid) | |
1310 | { | |
1311 | wxASSERT_MSG(m_control, | |
1312 | wxT("The wxGridCellEditor must be Created first!")); | |
1313 | ||
28a77bc4 | 1314 | if (grid->GetTable()->CanGetValueAs(row, col, wxGRID_VALUE_BOOL)) |
2f024384 | 1315 | { |
f2d76237 | 1316 | m_startValue = grid->GetTable()->GetValueAsBool(row, col); |
2f024384 | 1317 | } |
f2d76237 | 1318 | else |
695a3263 MB |
1319 | { |
1320 | wxString cellval( grid->GetTable()->GetValue(row, col) ); | |
8dd8f875 | 1321 | m_startValue = !( !cellval || (cellval == wxT("0")) ); |
695a3263 | 1322 | } |
2f024384 | 1323 | |
508011ce VZ |
1324 | CBox()->SetValue(m_startValue); |
1325 | CBox()->SetFocus(); | |
1326 | } | |
1327 | ||
1328 | bool wxGridCellBoolEditor::EndEdit(int row, int col, | |
508011ce VZ |
1329 | wxGrid* grid) |
1330 | { | |
1331 | wxASSERT_MSG(m_control, | |
1332 | wxT("The wxGridCellEditor must be Created first!")); | |
1333 | ||
ca65c044 | 1334 | bool changed = false; |
508011ce VZ |
1335 | bool value = CBox()->GetValue(); |
1336 | if ( value != m_startValue ) | |
ca65c044 | 1337 | changed = true; |
508011ce VZ |
1338 | |
1339 | if ( changed ) | |
1340 | { | |
28a77bc4 | 1341 | if (grid->GetTable()->CanGetValueAs(row, col, wxGRID_VALUE_BOOL)) |
f2d76237 RD |
1342 | grid->GetTable()->SetValueAsBool(row, col, value); |
1343 | else | |
1344 | grid->GetTable()->SetValue(row, col, value ? _T("1") : wxEmptyString); | |
508011ce VZ |
1345 | } |
1346 | ||
1347 | return changed; | |
1348 | } | |
1349 | ||
1350 | void wxGridCellBoolEditor::Reset() | |
1351 | { | |
1352 | wxASSERT_MSG(m_control, | |
1353 | wxT("The wxGridCellEditor must be Created first!")); | |
1354 | ||
1355 | CBox()->SetValue(m_startValue); | |
1356 | } | |
1357 | ||
e195a54c | 1358 | void wxGridCellBoolEditor::StartingClick() |
508011ce | 1359 | { |
e195a54c | 1360 | CBox()->SetValue(!CBox()->GetValue()); |
508011ce VZ |
1361 | } |
1362 | ||
f6bcfd97 BP |
1363 | bool wxGridCellBoolEditor::IsAcceptedKey(wxKeyEvent& event) |
1364 | { | |
1365 | if ( wxGridCellEditor::IsAcceptedKey(event) ) | |
1366 | { | |
1367 | int keycode = event.GetKeyCode(); | |
1368 | switch ( keycode ) | |
1369 | { | |
f6bcfd97 BP |
1370 | case WXK_SPACE: |
1371 | case '+': | |
1372 | case '-': | |
ca65c044 | 1373 | return true; |
f6bcfd97 BP |
1374 | } |
1375 | } | |
1376 | ||
ca65c044 | 1377 | return false; |
f6bcfd97 | 1378 | } |
04418332 | 1379 | |
63e2147c RD |
1380 | void wxGridCellBoolEditor::StartingKey(wxKeyEvent& event) |
1381 | { | |
1382 | int keycode = event.GetKeyCode(); | |
1383 | switch ( keycode ) | |
1384 | { | |
1385 | case WXK_SPACE: | |
1386 | CBox()->SetValue(!CBox()->GetValue()); | |
1387 | break; | |
902725ee | 1388 | |
63e2147c RD |
1389 | case '+': |
1390 | CBox()->SetValue(true); | |
1391 | break; | |
902725ee | 1392 | |
63e2147c RD |
1393 | case '-': |
1394 | CBox()->SetValue(false); | |
1395 | break; | |
1396 | } | |
1397 | } | |
1398 | ||
1399 | ||
73145b0e JS |
1400 | // return the value as "1" for true and the empty string for false |
1401 | wxString wxGridCellBoolEditor::GetValue() const | |
1402 | { | |
1403 | bool bSet = CBox()->GetValue(); | |
04418332 | 1404 | return bSet ? _T("1") : wxEmptyString; |
73145b0e | 1405 | } |
f6bcfd97 | 1406 | |
3a8c693a VZ |
1407 | #endif // wxUSE_CHECKBOX |
1408 | ||
1409 | #if wxUSE_COMBOBOX | |
1410 | ||
4ee5fc9c VZ |
1411 | // ---------------------------------------------------------------------------- |
1412 | // wxGridCellChoiceEditor | |
1413 | // ---------------------------------------------------------------------------- | |
1414 | ||
7db33cc3 MB |
1415 | wxGridCellChoiceEditor::wxGridCellChoiceEditor(const wxArrayString& choices, |
1416 | bool allowOthers) | |
1417 | : m_choices(choices), | |
1418 | m_allowOthers(allowOthers) { } | |
1419 | ||
4ee5fc9c | 1420 | wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count, |
f6bcfd97 | 1421 | const wxString choices[], |
4ee5fc9c VZ |
1422 | bool allowOthers) |
1423 | : m_allowOthers(allowOthers) | |
1424 | { | |
c4608a8a | 1425 | if ( count ) |
4ee5fc9c | 1426 | { |
c4608a8a VZ |
1427 | m_choices.Alloc(count); |
1428 | for ( size_t n = 0; n < count; n++ ) | |
1429 | { | |
1430 | m_choices.Add(choices[n]); | |
1431 | } | |
4ee5fc9c VZ |
1432 | } |
1433 | } | |
1434 | ||
c4608a8a VZ |
1435 | wxGridCellEditor *wxGridCellChoiceEditor::Clone() const |
1436 | { | |
1437 | wxGridCellChoiceEditor *editor = new wxGridCellChoiceEditor; | |
1438 | editor->m_allowOthers = m_allowOthers; | |
1439 | editor->m_choices = m_choices; | |
1440 | ||
1441 | return editor; | |
1442 | } | |
1443 | ||
4ee5fc9c VZ |
1444 | void wxGridCellChoiceEditor::Create(wxWindow* parent, |
1445 | wxWindowID id, | |
1446 | wxEvtHandler* evtHandler) | |
1447 | { | |
4ee5fc9c VZ |
1448 | m_control = new wxComboBox(parent, id, wxEmptyString, |
1449 | wxDefaultPosition, wxDefaultSize, | |
584ad2a3 | 1450 | m_choices, |
4ee5fc9c VZ |
1451 | m_allowOthers ? 0 : wxCB_READONLY); |
1452 | ||
4ee5fc9c VZ |
1453 | wxGridCellEditor::Create(parent, id, evtHandler); |
1454 | } | |
1455 | ||
a5777624 RD |
1456 | void wxGridCellChoiceEditor::PaintBackground(const wxRect& rectCell, |
1457 | wxGridCellAttr * attr) | |
4ee5fc9c VZ |
1458 | { |
1459 | // as we fill the entire client area, don't do anything here to minimize | |
1460 | // flicker | |
a5777624 RD |
1461 | |
1462 | // TODO: It doesn't actually fill the client area since the height of a | |
1463 | // combo always defaults to the standard... Until someone has time to | |
1464 | // figure out the right rectangle to paint, just do it the normal way... | |
1465 | wxGridCellEditor::PaintBackground(rectCell, attr); | |
4ee5fc9c VZ |
1466 | } |
1467 | ||
1468 | void wxGridCellChoiceEditor::BeginEdit(int row, int col, wxGrid* grid) | |
1469 | { | |
1470 | wxASSERT_MSG(m_control, | |
1471 | wxT("The wxGridCellEditor must be Created first!")); | |
1472 | ||
08dd04d0 JS |
1473 | wxGridCellEditorEvtHandler* evtHandler = NULL; |
1474 | if (m_control) | |
1475 | evtHandler = wxDynamicCast(m_control->GetEventHandler(), wxGridCellEditorEvtHandler); | |
1476 | ||
1477 | // Don't immediately end if we get a kill focus event within BeginEdit | |
1478 | if (evtHandler) | |
1479 | evtHandler->SetInSetFocus(true); | |
1480 | ||
4ee5fc9c VZ |
1481 | m_startValue = grid->GetTable()->GetValue(row, col); |
1482 | ||
2b5f62a0 | 1483 | if (m_allowOthers) |
2f024384 | 1484 | { |
2b5f62a0 | 1485 | Combo()->SetValue(m_startValue); |
2f024384 | 1486 | } |
2b5f62a0 | 1487 | else |
28a77bc4 | 1488 | { |
2b5f62a0 VZ |
1489 | // find the right position, or default to the first if not found |
1490 | int pos = Combo()->FindString(m_startValue); | |
902725ee | 1491 | if (pos == wxNOT_FOUND) |
2b5f62a0 VZ |
1492 | pos = 0; |
1493 | Combo()->SetSelection(pos); | |
28a77bc4 | 1494 | } |
2f024384 | 1495 | |
4ee5fc9c VZ |
1496 | Combo()->SetInsertionPointEnd(); |
1497 | Combo()->SetFocus(); | |
08dd04d0 JS |
1498 | |
1499 | if (evtHandler) | |
46cbb21e JS |
1500 | { |
1501 | // When dropping down the menu, a kill focus event | |
1502 | // happens after this point, so we can't reset the flag yet. | |
1503 | #if !defined(__WXGTK20__) | |
08dd04d0 | 1504 | evtHandler->SetInSetFocus(false); |
46cbb21e JS |
1505 | #endif |
1506 | } | |
4ee5fc9c VZ |
1507 | } |
1508 | ||
28a77bc4 | 1509 | bool wxGridCellChoiceEditor::EndEdit(int row, int col, |
4ee5fc9c VZ |
1510 | wxGrid* grid) |
1511 | { | |
1512 | wxString value = Combo()->GetValue(); | |
faffacec VZ |
1513 | if ( value == m_startValue ) |
1514 | return false; | |
4ee5fc9c | 1515 | |
faffacec | 1516 | grid->GetTable()->SetValue(row, col, value); |
4ee5fc9c | 1517 | |
faffacec | 1518 | return true; |
4ee5fc9c VZ |
1519 | } |
1520 | ||
1521 | void wxGridCellChoiceEditor::Reset() | |
1522 | { | |
1523 | Combo()->SetValue(m_startValue); | |
1524 | Combo()->SetInsertionPointEnd(); | |
1525 | } | |
1526 | ||
c4608a8a VZ |
1527 | void wxGridCellChoiceEditor::SetParameters(const wxString& params) |
1528 | { | |
1529 | if ( !params ) | |
1530 | { | |
1531 | // what can we do? | |
1532 | return; | |
1533 | } | |
1534 | ||
1535 | m_choices.Empty(); | |
1536 | ||
1537 | wxStringTokenizer tk(params, _T(',')); | |
1538 | while ( tk.HasMoreTokens() ) | |
1539 | { | |
1540 | m_choices.Add(tk.GetNextToken()); | |
1541 | } | |
1542 | } | |
1543 | ||
73145b0e JS |
1544 | // return the value in the text control |
1545 | wxString wxGridCellChoiceEditor::GetValue() const | |
1546 | { | |
1547 | return Combo()->GetValue(); | |
1548 | } | |
04418332 | 1549 | |
3a8c693a VZ |
1550 | #endif // wxUSE_COMBOBOX |
1551 | ||
508011ce VZ |
1552 | // ---------------------------------------------------------------------------- |
1553 | // wxGridCellEditorEvtHandler | |
1554 | // ---------------------------------------------------------------------------- | |
2796cce3 | 1555 | |
140954fd VZ |
1556 | void wxGridCellEditorEvtHandler::OnKillFocus(wxFocusEvent& event) |
1557 | { | |
08dd04d0 JS |
1558 | // Don't disable the cell if we're just starting to edit it |
1559 | if (m_inSetFocus) | |
1560 | return; | |
1561 | ||
140954fd VZ |
1562 | // accept changes |
1563 | m_grid->DisableCellEditControl(); | |
1564 | ||
1565 | event.Skip(); | |
1566 | } | |
1567 | ||
2796cce3 RD |
1568 | void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent& event) |
1569 | { | |
12a3f227 | 1570 | switch ( event.GetKeyCode() ) |
2796cce3 RD |
1571 | { |
1572 | case WXK_ESCAPE: | |
1573 | m_editor->Reset(); | |
b54ba671 | 1574 | m_grid->DisableCellEditControl(); |
2796cce3 RD |
1575 | break; |
1576 | ||
2c9a89e0 | 1577 | case WXK_TAB: |
b51c3f27 | 1578 | m_grid->GetEventHandler()->ProcessEvent( event ); |
9b4aede2 RD |
1579 | break; |
1580 | ||
2796cce3 | 1581 | case WXK_RETURN: |
faec5a43 SN |
1582 | case WXK_NUMPAD_ENTER: |
1583 | if (!m_grid->GetEventHandler()->ProcessEvent(event)) | |
2796cce3 RD |
1584 | m_editor->HandleReturn(event); |
1585 | break; | |
1586 | ||
2796cce3 RD |
1587 | default: |
1588 | event.Skip(); | |
2f024384 | 1589 | break; |
2796cce3 RD |
1590 | } |
1591 | } | |
1592 | ||
fb0de762 RD |
1593 | void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent& event) |
1594 | { | |
7db713ae JS |
1595 | int row = m_grid->GetGridCursorRow(); |
1596 | int col = m_grid->GetGridCursorCol(); | |
1597 | wxRect rect = m_grid->CellToRect( row, col ); | |
1598 | int cw, ch; | |
1599 | m_grid->GetGridWindow()->GetClientSize( &cw, &ch ); | |
2f024384 | 1600 | |
7db713ae JS |
1601 | // if cell width is smaller than grid client area, cell is wholly visible |
1602 | bool wholeCellVisible = (rect.GetWidth() < cw); | |
1603 | ||
12a3f227 | 1604 | switch ( event.GetKeyCode() ) |
fb0de762 RD |
1605 | { |
1606 | case WXK_ESCAPE: | |
1607 | case WXK_TAB: | |
1608 | case WXK_RETURN: | |
a4f7bf58 | 1609 | case WXK_NUMPAD_ENTER: |
fb0de762 RD |
1610 | break; |
1611 | ||
7db713ae JS |
1612 | case WXK_HOME: |
1613 | { | |
2f024384 | 1614 | if ( wholeCellVisible ) |
7db713ae JS |
1615 | { |
1616 | // no special processing needed... | |
1617 | event.Skip(); | |
1618 | break; | |
1619 | } | |
1620 | ||
1621 | // do special processing for partly visible cell... | |
1622 | ||
1623 | // get the widths of all cells previous to this one | |
1624 | int colXPos = 0; | |
faa94f3e | 1625 | for ( int i = 0; i < col; i++ ) |
7db713ae JS |
1626 | { |
1627 | colXPos += m_grid->GetColSize(i); | |
1628 | } | |
1629 | ||
1630 | int xUnit = 1, yUnit = 1; | |
1631 | m_grid->GetScrollPixelsPerUnit(&xUnit, &yUnit); | |
1632 | if (col != 0) | |
1633 | { | |
2f024384 | 1634 | m_grid->Scroll(colXPos / xUnit - 1, m_grid->GetScrollPos(wxVERTICAL)); |
7db713ae JS |
1635 | } |
1636 | else | |
1637 | { | |
2f024384 | 1638 | m_grid->Scroll(colXPos / xUnit, m_grid->GetScrollPos(wxVERTICAL)); |
7db713ae JS |
1639 | } |
1640 | event.Skip(); | |
1641 | break; | |
1642 | } | |
1643 | case WXK_END: | |
1644 | { | |
2f024384 | 1645 | if ( wholeCellVisible ) |
7db713ae JS |
1646 | { |
1647 | // no special processing needed... | |
1648 | event.Skip(); | |
1649 | break; | |
1650 | } | |
1651 | ||
1652 | // do special processing for partly visible cell... | |
1653 | ||
1654 | int textWidth = 0; | |
1655 | wxString value = m_grid->GetCellValue(row, col); | |
1656 | if ( wxEmptyString != value ) | |
1657 | { | |
1658 | // get width of cell CONTENTS (text) | |
1659 | int y; | |
1660 | wxFont font = m_grid->GetCellFont(row, col); | |
1661 | m_grid->GetTextExtent(value, &textWidth, &y, NULL, NULL, &font); | |
2f024384 | 1662 | |
7db713ae JS |
1663 | // try to RIGHT align the text by scrolling |
1664 | int client_right = m_grid->GetGridWindow()->GetClientSize().GetWidth(); | |
2f024384 | 1665 | |
7db713ae JS |
1666 | // (m_grid->GetScrollLineX()*2) is a factor for not scrolling to far, |
1667 | // otherwise the last part of the cell content might be hidden below the scroll bar | |
1668 | // FIXME: maybe there is a more suitable correction? | |
2f024384 | 1669 | textWidth -= (client_right - (m_grid->GetScrollLineX() * 2)); |
7db713ae JS |
1670 | if ( textWidth < 0 ) |
1671 | { | |
1672 | textWidth = 0; | |
1673 | } | |
1674 | } | |
1675 | ||
1676 | // get the widths of all cells previous to this one | |
1677 | int colXPos = 0; | |
faa94f3e | 1678 | for ( int i = 0; i < col; i++ ) |
7db713ae JS |
1679 | { |
1680 | colXPos += m_grid->GetColSize(i); | |
1681 | } | |
2f024384 | 1682 | |
7db713ae JS |
1683 | // and add the (modified) text width of the cell contents |
1684 | // as we'd like to see the last part of the cell contents | |
1685 | colXPos += textWidth; | |
1686 | ||
1687 | int xUnit = 1, yUnit = 1; | |
1688 | m_grid->GetScrollPixelsPerUnit(&xUnit, &yUnit); | |
ccdee36f | 1689 | m_grid->Scroll(colXPos / xUnit - 1, m_grid->GetScrollPos(wxVERTICAL)); |
7db713ae JS |
1690 | event.Skip(); |
1691 | break; | |
1692 | } | |
1693 | ||
fb0de762 RD |
1694 | default: |
1695 | event.Skip(); | |
1696 | } | |
1697 | } | |
1698 | ||
c4608a8a VZ |
1699 | // ---------------------------------------------------------------------------- |
1700 | // wxGridCellWorker is an (almost) empty common base class for | |
1701 | // wxGridCellRenderer and wxGridCellEditor managing ref counting | |
1702 | // ---------------------------------------------------------------------------- | |
1703 | ||
1704 | void wxGridCellWorker::SetParameters(const wxString& WXUNUSED(params)) | |
1705 | { | |
1706 | // nothing to do | |
1707 | } | |
1708 | ||
1709 | wxGridCellWorker::~wxGridCellWorker() | |
1710 | { | |
1711 | } | |
1712 | ||
508011ce VZ |
1713 | // ============================================================================ |
1714 | // renderer classes | |
1715 | // ============================================================================ | |
1716 | ||
ab79958a VZ |
1717 | // ---------------------------------------------------------------------------- |
1718 | // wxGridCellRenderer | |
1719 | // ---------------------------------------------------------------------------- | |
1720 | ||
1721 | void wxGridCellRenderer::Draw(wxGrid& grid, | |
2796cce3 | 1722 | wxGridCellAttr& attr, |
ab79958a VZ |
1723 | wxDC& dc, |
1724 | const wxRect& rect, | |
c78b3acd | 1725 | int WXUNUSED(row), int WXUNUSED(col), |
ab79958a VZ |
1726 | bool isSelected) |
1727 | { | |
1728 | dc.SetBackgroundMode( wxSOLID ); | |
1729 | ||
04418332 | 1730 | // grey out fields if the grid is disabled |
4db6714b | 1731 | if ( grid.IsEnabled() ) |
ab79958a | 1732 | { |
ec157c8f WS |
1733 | if ( isSelected ) |
1734 | { | |
1735 | dc.SetBrush( wxBrush(grid.GetSelectionBackground(), wxSOLID) ); | |
1736 | } | |
1737 | else | |
1738 | { | |
1739 | dc.SetBrush( wxBrush(attr.GetBackgroundColour(), wxSOLID) ); | |
1740 | } | |
52d6f640 | 1741 | } |
ab79958a VZ |
1742 | else |
1743 | { | |
ec157c8f | 1744 | dc.SetBrush(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE), wxSOLID)); |
ab79958a VZ |
1745 | } |
1746 | ||
1747 | dc.SetPen( *wxTRANSPARENT_PEN ); | |
ab79958a VZ |
1748 | dc.DrawRectangle(rect); |
1749 | } | |
1750 | ||
508011ce VZ |
1751 | // ---------------------------------------------------------------------------- |
1752 | // wxGridCellStringRenderer | |
1753 | // ---------------------------------------------------------------------------- | |
1754 | ||
fbfb8bcc VZ |
1755 | void wxGridCellStringRenderer::SetTextColoursAndFont(const wxGrid& grid, |
1756 | const wxGridCellAttr& attr, | |
816be743 VZ |
1757 | wxDC& dc, |
1758 | bool isSelected) | |
ab79958a | 1759 | { |
ab79958a VZ |
1760 | dc.SetBackgroundMode( wxTRANSPARENT ); |
1761 | ||
283b7808 VZ |
1762 | // TODO some special colours for attr.IsReadOnly() case? |
1763 | ||
04418332 | 1764 | // different coloured text when the grid is disabled |
4db6714b | 1765 | if ( grid.IsEnabled() ) |
ab79958a | 1766 | { |
73145b0e JS |
1767 | if ( isSelected ) |
1768 | { | |
1769 | dc.SetTextBackground( grid.GetSelectionBackground() ); | |
1770 | dc.SetTextForeground( grid.GetSelectionForeground() ); | |
1771 | } | |
1772 | else | |
1773 | { | |
1774 | dc.SetTextBackground( attr.GetBackgroundColour() ); | |
1775 | dc.SetTextForeground( attr.GetTextColour() ); | |
1776 | } | |
ab79958a VZ |
1777 | } |
1778 | else | |
1779 | { | |
ec157c8f WS |
1780 | dc.SetTextBackground(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE)); |
1781 | dc.SetTextForeground(wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT)); | |
ab79958a | 1782 | } |
816be743 | 1783 | |
2796cce3 | 1784 | dc.SetFont( attr.GetFont() ); |
816be743 VZ |
1785 | } |
1786 | ||
fbfb8bcc | 1787 | wxSize wxGridCellStringRenderer::DoGetBestSize(const wxGridCellAttr& attr, |
65e4e78e VZ |
1788 | wxDC& dc, |
1789 | const wxString& text) | |
1790 | { | |
f6bcfd97 | 1791 | wxCoord x = 0, y = 0, max_x = 0; |
65e4e78e | 1792 | dc.SetFont(attr.GetFont()); |
f6bcfd97 BP |
1793 | wxStringTokenizer tk(text, _T('\n')); |
1794 | while ( tk.HasMoreTokens() ) | |
1795 | { | |
1796 | dc.GetTextExtent(tk.GetNextToken(), &x, &y); | |
1797 | max_x = wxMax(max_x, x); | |
1798 | } | |
1799 | ||
1800 | y *= 1 + text.Freq(wxT('\n')); // multiply by the number of lines. | |
65e4e78e | 1801 | |
f6bcfd97 | 1802 | return wxSize(max_x, y); |
65e4e78e VZ |
1803 | } |
1804 | ||
1805 | wxSize wxGridCellStringRenderer::GetBestSize(wxGrid& grid, | |
1806 | wxGridCellAttr& attr, | |
1807 | wxDC& dc, | |
1808 | int row, int col) | |
1809 | { | |
1810 | return DoGetBestSize(attr, dc, grid.GetCellValue(row, col)); | |
1811 | } | |
1812 | ||
816be743 VZ |
1813 | void wxGridCellStringRenderer::Draw(wxGrid& grid, |
1814 | wxGridCellAttr& attr, | |
1815 | wxDC& dc, | |
1816 | const wxRect& rectCell, | |
1817 | int row, int col, | |
1818 | bool isSelected) | |
1819 | { | |
27f35b66 | 1820 | wxRect rect = rectCell; |
dc1f566f SN |
1821 | rect.Inflate(-1); |
1822 | ||
1823 | // erase only this cells background, overflow cells should have been erased | |
1824 | wxGridCellRenderer::Draw(grid, attr, dc, rectCell, row, col, isSelected); | |
1825 | ||
1826 | int hAlign, vAlign; | |
1827 | attr.GetAlignment(&hAlign, &vAlign); | |
27f35b66 | 1828 | |
39b80349 SN |
1829 | int overflowCols = 0; |
1830 | ||
27f35b66 SN |
1831 | if (attr.GetOverflow()) |
1832 | { | |
1833 | int cols = grid.GetNumberCols(); | |
1834 | int best_width = GetBestSize(grid,attr,dc,row,col).GetWidth(); | |
1835 | int cell_rows, cell_cols; | |
2f024384 | 1836 | attr.GetSize( &cell_rows, &cell_cols ); // shouldn't get here if <= 0 |
27f35b66 SN |
1837 | if ((best_width > rectCell.width) && (col < cols) && grid.GetTable()) |
1838 | { | |
1839 | int i, c_cols, c_rows; | |
1840 | for (i = col+cell_cols; i < cols; i++) | |
1841 | { | |
ca65c044 | 1842 | bool is_empty = true; |
2f024384 | 1843 | for (int j=row; j < row + cell_rows; j++) |
27f35b66 | 1844 | { |
39b80349 | 1845 | // check w/ anchor cell for multicell block |
ef4d6ce8 | 1846 | grid.GetCellSize(j, i, &c_rows, &c_cols); |
2f024384 DS |
1847 | if (c_rows > 0) |
1848 | c_rows = 0; | |
1849 | if (!grid.GetTable()->IsEmptyCell(j + c_rows, i)) | |
39b80349 | 1850 | { |
ca65c044 | 1851 | is_empty = false; |
ef4d6ce8 | 1852 | break; |
39b80349 | 1853 | } |
27f35b66 | 1854 | } |
2f024384 | 1855 | |
39b80349 SN |
1856 | if (is_empty) |
1857 | rect.width += grid.GetColSize(i); | |
dc1f566f SN |
1858 | else |
1859 | { | |
1860 | i--; | |
1861 | break; | |
1862 | } | |
2f024384 | 1863 | |
4db6714b KH |
1864 | if (rect.width >= best_width) |
1865 | break; | |
2b5f62a0 | 1866 | } |
2f024384 | 1867 | |
39b80349 | 1868 | overflowCols = i - col - cell_cols + 1; |
4db6714b KH |
1869 | if (overflowCols >= cols) |
1870 | overflowCols = cols - 1; | |
39b80349 | 1871 | } |
27f35b66 | 1872 | |
dc1f566f SN |
1873 | if (overflowCols > 0) // redraw overflow cells w/ proper hilight |
1874 | { | |
39b80349 | 1875 | hAlign = wxALIGN_LEFT; // if oveflowed then it's left aligned |
2b5f62a0 | 1876 | wxRect clip = rect; |
39b80349 | 1877 | clip.x += rectCell.width; |
dc1f566f | 1878 | // draw each overflow cell individually |
2f024384 | 1879 | int col_end = col+cell_cols + overflowCols; |
dc1f566f | 1880 | if (col_end >= grid.GetNumberCols()) |
2b5f62a0 | 1881 | col_end = grid.GetNumberCols() - 1; |
dc1f566f SN |
1882 | for (int i = col+cell_cols; i <= col_end; i++) |
1883 | { | |
dc1f566f SN |
1884 | clip.width = grid.GetColSize(i) - 1; |
1885 | dc.DestroyClippingRegion(); | |
1886 | dc.SetClippingRegion(clip); | |
39b80349 SN |
1887 | |
1888 | SetTextColoursAndFont(grid, attr, dc, | |
2b5f62a0 | 1889 | grid.IsInSelection(row,i)); |
39b80349 | 1890 | |
dc1f566f | 1891 | grid.DrawTextRectangle(dc, grid.GetCellValue(row, col), |
2b5f62a0 | 1892 | rect, hAlign, vAlign); |
39b80349 | 1893 | clip.x += grid.GetColSize(i) - 1; |
dc1f566f | 1894 | } |
ab79958a | 1895 | |
39b80349 | 1896 | rect = rectCell; |
2b5f62a0 | 1897 | rect.Inflate(-1); |
dc1f566f | 1898 | rect.width++; |
39b80349 | 1899 | dc.DestroyClippingRegion(); |
dc1f566f | 1900 | } |
39b80349 | 1901 | } |
ab79958a | 1902 | |
dc1f566f SN |
1903 | // now we only have to draw the text |
1904 | SetTextColoursAndFont(grid, attr, dc, isSelected); | |
39b80349 | 1905 | |
ab79958a VZ |
1906 | grid.DrawTextRectangle(dc, grid.GetCellValue(row, col), |
1907 | rect, hAlign, vAlign); | |
1908 | } | |
1909 | ||
65e4e78e VZ |
1910 | // ---------------------------------------------------------------------------- |
1911 | // wxGridCellNumberRenderer | |
1912 | // ---------------------------------------------------------------------------- | |
1913 | ||
fbfb8bcc | 1914 | wxString wxGridCellNumberRenderer::GetString(const wxGrid& grid, int row, int col) |
65e4e78e VZ |
1915 | { |
1916 | wxGridTableBase *table = grid.GetTable(); | |
1917 | wxString text; | |
1918 | if ( table->CanGetValueAs(row, col, wxGRID_VALUE_NUMBER) ) | |
1919 | { | |
1920 | text.Printf(_T("%ld"), table->GetValueAsLong(row, col)); | |
1921 | } | |
9c4ba614 VZ |
1922 | else |
1923 | { | |
1924 | text = table->GetValue(row, col); | |
1925 | } | |
65e4e78e VZ |
1926 | |
1927 | return text; | |
1928 | } | |
1929 | ||
816be743 VZ |
1930 | void wxGridCellNumberRenderer::Draw(wxGrid& grid, |
1931 | wxGridCellAttr& attr, | |
1932 | wxDC& dc, | |
1933 | const wxRect& rectCell, | |
1934 | int row, int col, | |
1935 | bool isSelected) | |
1936 | { | |
1937 | wxGridCellRenderer::Draw(grid, attr, dc, rectCell, row, col, isSelected); | |
1938 | ||
1939 | SetTextColoursAndFont(grid, attr, dc, isSelected); | |
1940 | ||
1941 | // draw the text right aligned by default | |
1942 | int hAlign, vAlign; | |
1943 | attr.GetAlignment(&hAlign, &vAlign); | |
4c7277db | 1944 | hAlign = wxALIGN_RIGHT; |
816be743 VZ |
1945 | |
1946 | wxRect rect = rectCell; | |
1947 | rect.Inflate(-1); | |
1948 | ||
65e4e78e VZ |
1949 | grid.DrawTextRectangle(dc, GetString(grid, row, col), rect, hAlign, vAlign); |
1950 | } | |
816be743 | 1951 | |
65e4e78e VZ |
1952 | wxSize wxGridCellNumberRenderer::GetBestSize(wxGrid& grid, |
1953 | wxGridCellAttr& attr, | |
1954 | wxDC& dc, | |
1955 | int row, int col) | |
1956 | { | |
1957 | return DoGetBestSize(attr, dc, GetString(grid, row, col)); | |
816be743 VZ |
1958 | } |
1959 | ||
1960 | // ---------------------------------------------------------------------------- | |
1961 | // wxGridCellFloatRenderer | |
1962 | // ---------------------------------------------------------------------------- | |
1963 | ||
1964 | wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width, int precision) | |
1965 | { | |
1966 | SetWidth(width); | |
1967 | SetPrecision(precision); | |
1968 | } | |
1969 | ||
e72b4213 VZ |
1970 | wxGridCellRenderer *wxGridCellFloatRenderer::Clone() const |
1971 | { | |
1972 | wxGridCellFloatRenderer *renderer = new wxGridCellFloatRenderer; | |
1973 | renderer->m_width = m_width; | |
1974 | renderer->m_precision = m_precision; | |
1975 | renderer->m_format = m_format; | |
1976 | ||
1977 | return renderer; | |
1978 | } | |
1979 | ||
fbfb8bcc | 1980 | wxString wxGridCellFloatRenderer::GetString(const wxGrid& grid, int row, int col) |
65e4e78e VZ |
1981 | { |
1982 | wxGridTableBase *table = grid.GetTable(); | |
0b190b0f VZ |
1983 | |
1984 | bool hasDouble; | |
1985 | double val; | |
65e4e78e VZ |
1986 | wxString text; |
1987 | if ( table->CanGetValueAs(row, col, wxGRID_VALUE_FLOAT) ) | |
1988 | { | |
0b190b0f | 1989 | val = table->GetValueAsDouble(row, col); |
ca65c044 | 1990 | hasDouble = true; |
65e4e78e | 1991 | } |
9c4ba614 VZ |
1992 | else |
1993 | { | |
1994 | text = table->GetValue(row, col); | |
0b190b0f | 1995 | hasDouble = text.ToDouble(&val); |
9c4ba614 | 1996 | } |
65e4e78e | 1997 | |
0b190b0f VZ |
1998 | if ( hasDouble ) |
1999 | { | |
2000 | if ( !m_format ) | |
2001 | { | |
2002 | if ( m_width == -1 ) | |
2003 | { | |
19d7140e VZ |
2004 | if ( m_precision == -1 ) |
2005 | { | |
2b5f62a0 VZ |
2006 | // default width/precision |
2007 | m_format = _T("%f"); | |
2008 | } | |
19d7140e VZ |
2009 | else |
2010 | { | |
2011 | m_format.Printf(_T("%%.%df"), m_precision); | |
2012 | } | |
0b190b0f VZ |
2013 | } |
2014 | else if ( m_precision == -1 ) | |
2015 | { | |
2016 | // default precision | |
2017 | m_format.Printf(_T("%%%d.f"), m_width); | |
2018 | } | |
2019 | else | |
2020 | { | |
2021 | m_format.Printf(_T("%%%d.%df"), m_width, m_precision); | |
2022 | } | |
2023 | } | |
2024 | ||
2025 | text.Printf(m_format, val); | |
19d7140e | 2026 | |
0b190b0f VZ |
2027 | } |
2028 | //else: text already contains the string | |
2029 | ||
65e4e78e VZ |
2030 | return text; |
2031 | } | |
2032 | ||
816be743 VZ |
2033 | void wxGridCellFloatRenderer::Draw(wxGrid& grid, |
2034 | wxGridCellAttr& attr, | |
2035 | wxDC& dc, | |
2036 | const wxRect& rectCell, | |
2037 | int row, int col, | |
2038 | bool isSelected) | |
2039 | { | |
2040 | wxGridCellRenderer::Draw(grid, attr, dc, rectCell, row, col, isSelected); | |
2041 | ||
2042 | SetTextColoursAndFont(grid, attr, dc, isSelected); | |
2043 | ||
2044 | // draw the text right aligned by default | |
2045 | int hAlign, vAlign; | |
2046 | attr.GetAlignment(&hAlign, &vAlign); | |
4c7277db | 2047 | hAlign = wxALIGN_RIGHT; |
816be743 VZ |
2048 | |
2049 | wxRect rect = rectCell; | |
2050 | rect.Inflate(-1); | |
2051 | ||
65e4e78e VZ |
2052 | grid.DrawTextRectangle(dc, GetString(grid, row, col), rect, hAlign, vAlign); |
2053 | } | |
816be743 | 2054 | |
65e4e78e VZ |
2055 | wxSize wxGridCellFloatRenderer::GetBestSize(wxGrid& grid, |
2056 | wxGridCellAttr& attr, | |
2057 | wxDC& dc, | |
2058 | int row, int col) | |
2059 | { | |
2060 | return DoGetBestSize(attr, dc, GetString(grid, row, col)); | |
816be743 VZ |
2061 | } |
2062 | ||
0b190b0f VZ |
2063 | void wxGridCellFloatRenderer::SetParameters(const wxString& params) |
2064 | { | |
0b190b0f VZ |
2065 | if ( !params ) |
2066 | { | |
2067 | // reset to defaults | |
2068 | SetWidth(-1); | |
2069 | SetPrecision(-1); | |
2070 | } | |
2071 | else | |
2072 | { | |
2073 | wxString tmp = params.BeforeFirst(_T(',')); | |
ec157c8f | 2074 | if ( !tmp.empty() ) |
0b190b0f VZ |
2075 | { |
2076 | long width; | |
19d7140e | 2077 | if ( tmp.ToLong(&width) ) |
0b190b0f | 2078 | { |
19d7140e | 2079 | SetWidth((int)width); |
0b190b0f VZ |
2080 | } |
2081 | else | |
2082 | { | |
19d7140e VZ |
2083 | wxLogDebug(_T("Invalid wxGridCellFloatRenderer width parameter string '%s ignored"), params.c_str()); |
2084 | } | |
19d7140e | 2085 | } |
2f024384 | 2086 | |
7448de8d WS |
2087 | tmp = params.AfterFirst(_T(',')); |
2088 | if ( !tmp.empty() ) | |
2089 | { | |
2090 | long precision; | |
19d7140e | 2091 | if ( tmp.ToLong(&precision) ) |
7448de8d | 2092 | { |
19d7140e | 2093 | SetPrecision((int)precision); |
7448de8d WS |
2094 | } |
2095 | else | |
2096 | { | |
19d7140e | 2097 | wxLogDebug(_T("Invalid wxGridCellFloatRenderer precision parameter string '%s ignored"), params.c_str()); |
7448de8d | 2098 | } |
0b190b0f VZ |
2099 | } |
2100 | } | |
2101 | } | |
2102 | ||
508011ce VZ |
2103 | // ---------------------------------------------------------------------------- |
2104 | // wxGridCellBoolRenderer | |
2105 | // ---------------------------------------------------------------------------- | |
2106 | ||
65e4e78e | 2107 | wxSize wxGridCellBoolRenderer::ms_sizeCheckMark; |
508011ce | 2108 | |
b94ae1ea VZ |
2109 | // FIXME these checkbox size calculations are really ugly... |
2110 | ||
65e4e78e | 2111 | // between checkmark and box |
a95e38c0 | 2112 | static const wxCoord wxGRID_CHECKMARK_MARGIN = 2; |
508011ce | 2113 | |
65e4e78e VZ |
2114 | wxSize wxGridCellBoolRenderer::GetBestSize(wxGrid& grid, |
2115 | wxGridCellAttr& WXUNUSED(attr), | |
2116 | wxDC& WXUNUSED(dc), | |
2117 | int WXUNUSED(row), | |
2118 | int WXUNUSED(col)) | |
2119 | { | |
2120 | // compute it only once (no locks for MT safeness in GUI thread...) | |
2121 | if ( !ms_sizeCheckMark.x ) | |
297da4ba | 2122 | { |
65e4e78e | 2123 | // get checkbox size |
ca65c044 | 2124 | wxCheckBox *checkbox = new wxCheckBox(&grid, wxID_ANY, wxEmptyString); |
297da4ba | 2125 | wxSize size = checkbox->GetBestSize(); |
2f024384 | 2126 | wxCoord checkSize = size.y + 2 * wxGRID_CHECKMARK_MARGIN; |
297da4ba | 2127 | |
65e4e78e | 2128 | // FIXME wxGTK::wxCheckBox::GetBestSize() gives "wrong" result |
69d8f612 | 2129 | #if defined(__WXGTK__) || defined(__WXMOTIF__) |
65e4e78e | 2130 | checkSize -= size.y / 2; |
297da4ba VZ |
2131 | #endif |
2132 | ||
2133 | delete checkbox; | |
65e4e78e VZ |
2134 | |
2135 | ms_sizeCheckMark.x = ms_sizeCheckMark.y = checkSize; | |
297da4ba VZ |
2136 | } |
2137 | ||
65e4e78e VZ |
2138 | return ms_sizeCheckMark; |
2139 | } | |
2140 | ||
2141 | void wxGridCellBoolRenderer::Draw(wxGrid& grid, | |
2142 | wxGridCellAttr& attr, | |
2143 | wxDC& dc, | |
2144 | const wxRect& rect, | |
2145 | int row, int col, | |
2146 | bool isSelected) | |
2147 | { | |
2148 | wxGridCellRenderer::Draw(grid, attr, dc, rect, row, col, isSelected); | |
2149 | ||
297da4ba | 2150 | // draw a check mark in the centre (ignoring alignment - TODO) |
65e4e78e | 2151 | wxSize size = GetBestSize(grid, attr, dc, row, col); |
b94ae1ea VZ |
2152 | |
2153 | // don't draw outside the cell | |
2154 | wxCoord minSize = wxMin(rect.width, rect.height); | |
2155 | if ( size.x >= minSize || size.y >= minSize ) | |
2156 | { | |
2157 | // and even leave (at least) 1 pixel margin | |
2158 | size.x = size.y = minSize - 2; | |
2159 | } | |
2160 | ||
2161 | // draw a border around checkmark | |
1bd71df9 JS |
2162 | int vAlign, hAlign; |
2163 | attr.GetAlignment(& hAlign, &vAlign); | |
52d6f640 | 2164 | |
a95e38c0 | 2165 | wxRect rectBorder; |
1bd71df9 JS |
2166 | if (hAlign == wxALIGN_CENTRE) |
2167 | { | |
2f024384 DS |
2168 | rectBorder.x = rect.x + rect.width / 2 - size.x / 2; |
2169 | rectBorder.y = rect.y + rect.height / 2 - size.y / 2; | |
1bd71df9 JS |
2170 | rectBorder.width = size.x; |
2171 | rectBorder.height = size.y; | |
2172 | } | |
2173 | else if (hAlign == wxALIGN_LEFT) | |
2174 | { | |
2175 | rectBorder.x = rect.x + 2; | |
2f024384 | 2176 | rectBorder.y = rect.y + rect.height / 2 - size.y / 2; |
1bd71df9 | 2177 | rectBorder.width = size.x; |
52d6f640 | 2178 | rectBorder.height = size.y; |
1bd71df9 JS |
2179 | } |
2180 | else if (hAlign == wxALIGN_RIGHT) | |
2181 | { | |
2182 | rectBorder.x = rect.x + rect.width - size.x - 2; | |
2f024384 | 2183 | rectBorder.y = rect.y + rect.height / 2 - size.y / 2; |
1bd71df9 | 2184 | rectBorder.width = size.x; |
52d6f640 | 2185 | rectBorder.height = size.y; |
1bd71df9 | 2186 | } |
b94ae1ea | 2187 | |
f2d76237 | 2188 | bool value; |
b94ae1ea | 2189 | if ( grid.GetTable()->CanGetValueAs(row, col, wxGRID_VALUE_BOOL) ) |
f2d76237 RD |
2190 | value = grid.GetTable()->GetValueAsBool(row, col); |
2191 | else | |
695a3263 MB |
2192 | { |
2193 | wxString cellval( grid.GetTable()->GetValue(row, col) ); | |
8dd8f875 | 2194 | value = !( !cellval || (cellval == wxT("0")) ); |
695a3263 | 2195 | } |
f2d76237 RD |
2196 | |
2197 | if ( value ) | |
508011ce | 2198 | { |
a95e38c0 | 2199 | wxRect rectMark = rectBorder; |
2f024384 | 2200 | |
a95e38c0 VZ |
2201 | #ifdef __WXMSW__ |
2202 | // MSW DrawCheckMark() is weird (and should probably be changed...) | |
2f024384 | 2203 | rectMark.Inflate(-wxGRID_CHECKMARK_MARGIN / 2); |
a95e38c0 VZ |
2204 | rectMark.x++; |
2205 | rectMark.y++; | |
2f024384 | 2206 | #else |
a95e38c0 | 2207 | rectMark.Inflate(-wxGRID_CHECKMARK_MARGIN); |
2f024384 | 2208 | #endif |
a95e38c0 | 2209 | |
508011ce VZ |
2210 | dc.SetTextForeground(attr.GetTextColour()); |
2211 | dc.DrawCheckMark(rectMark); | |
2212 | } | |
a95e38c0 VZ |
2213 | |
2214 | dc.SetBrush(*wxTRANSPARENT_BRUSH); | |
2215 | dc.SetPen(wxPen(attr.GetTextColour(), 1, wxSOLID)); | |
2216 | dc.DrawRectangle(rectBorder); | |
508011ce VZ |
2217 | } |
2218 | ||
2796cce3 RD |
2219 | // ---------------------------------------------------------------------------- |
2220 | // wxGridCellAttr | |
2221 | // ---------------------------------------------------------------------------- | |
2222 | ||
1df4050d VZ |
2223 | void wxGridCellAttr::Init(wxGridCellAttr *attrDefault) |
2224 | { | |
2225 | m_nRef = 1; | |
2226 | ||
2227 | m_isReadOnly = Unset; | |
2228 | ||
2229 | m_renderer = NULL; | |
2230 | m_editor = NULL; | |
2231 | ||
2232 | m_attrkind = wxGridCellAttr::Cell; | |
2233 | ||
27f35b66 | 2234 | m_sizeRows = m_sizeCols = 1; |
b63fce94 | 2235 | m_overflow = UnsetOverflow; |
27f35b66 | 2236 | |
1df4050d VZ |
2237 | SetDefAttr(attrDefault); |
2238 | } | |
2239 | ||
39bcce60 | 2240 | wxGridCellAttr *wxGridCellAttr::Clone() const |
a68c1246 | 2241 | { |
1df4050d VZ |
2242 | wxGridCellAttr *attr = new wxGridCellAttr(m_defGridAttr); |
2243 | ||
a68c1246 VZ |
2244 | if ( HasTextColour() ) |
2245 | attr->SetTextColour(GetTextColour()); | |
2246 | if ( HasBackgroundColour() ) | |
2247 | attr->SetBackgroundColour(GetBackgroundColour()); | |
2248 | if ( HasFont() ) | |
2249 | attr->SetFont(GetFont()); | |
2250 | if ( HasAlignment() ) | |
2251 | attr->SetAlignment(m_hAlign, m_vAlign); | |
2252 | ||
27f35b66 SN |
2253 | attr->SetSize( m_sizeRows, m_sizeCols ); |
2254 | ||
a68c1246 VZ |
2255 | if ( m_renderer ) |
2256 | { | |
2257 | attr->SetRenderer(m_renderer); | |
39bcce60 | 2258 | m_renderer->IncRef(); |
a68c1246 VZ |
2259 | } |
2260 | if ( m_editor ) | |
2261 | { | |
2262 | attr->SetEditor(m_editor); | |
39bcce60 | 2263 | m_editor->IncRef(); |
a68c1246 VZ |
2264 | } |
2265 | ||
2266 | if ( IsReadOnly() ) | |
2267 | attr->SetReadOnly(); | |
2268 | ||
19d7140e VZ |
2269 | attr->SetKind( m_attrkind ); |
2270 | ||
a68c1246 VZ |
2271 | return attr; |
2272 | } | |
2273 | ||
19d7140e VZ |
2274 | void wxGridCellAttr::MergeWith(wxGridCellAttr *mergefrom) |
2275 | { | |
2276 | if ( !HasTextColour() && mergefrom->HasTextColour() ) | |
2277 | SetTextColour(mergefrom->GetTextColour()); | |
2278 | if ( !HasBackgroundColour() && mergefrom->HasBackgroundColour() ) | |
2279 | SetBackgroundColour(mergefrom->GetBackgroundColour()); | |
2280 | if ( !HasFont() && mergefrom->HasFont() ) | |
2281 | SetFont(mergefrom->GetFont()); | |
4db6714b KH |
2282 | if ( !HasAlignment() && mergefrom->HasAlignment() ) |
2283 | { | |
19d7140e VZ |
2284 | int hAlign, vAlign; |
2285 | mergefrom->GetAlignment( &hAlign, &vAlign); | |
2286 | SetAlignment(hAlign, vAlign); | |
2287 | } | |
3100c3db RD |
2288 | if ( !HasSize() && mergefrom->HasSize() ) |
2289 | mergefrom->GetSize( &m_sizeRows, &m_sizeCols ); | |
27f35b66 | 2290 | |
19d7140e VZ |
2291 | // Directly access member functions as GetRender/Editor don't just return |
2292 | // m_renderer/m_editor | |
2293 | // | |
2294 | // Maybe add support for merge of Render and Editor? | |
2295 | if (!HasRenderer() && mergefrom->HasRenderer() ) | |
bf7945ce | 2296 | { |
19d7140e VZ |
2297 | m_renderer = mergefrom->m_renderer; |
2298 | m_renderer->IncRef(); | |
2299 | } | |
2300 | if ( !HasEditor() && mergefrom->HasEditor() ) | |
2301 | { | |
2302 | m_editor = mergefrom->m_editor; | |
2303 | m_editor->IncRef(); | |
2304 | } | |
2f024384 | 2305 | if ( !HasReadWriteMode() && mergefrom->HasReadWriteMode() ) |
19d7140e VZ |
2306 | SetReadOnly(mergefrom->IsReadOnly()); |
2307 | ||
2f024384 | 2308 | if (!HasOverflowMode() && mergefrom->HasOverflowMode() ) |
ff699386 | 2309 | SetOverflow(mergefrom->GetOverflow()); |
ef5df12b | 2310 | |
19d7140e VZ |
2311 | SetDefAttr(mergefrom->m_defGridAttr); |
2312 | } | |
2313 | ||
27f35b66 SN |
2314 | void wxGridCellAttr::SetSize(int num_rows, int num_cols) |
2315 | { | |
2316 | // The size of a cell is normally 1,1 | |
2317 | ||
2318 | // If this cell is larger (2,2) then this is the top left cell | |
2319 | // the other cells that will be covered (lower right cells) must be | |
2320 | // set to negative or zero values such that | |
2321 | // row + num_rows of the covered cell points to the larger cell (this cell) | |
2322 | // same goes for the col + num_cols. | |
2323 | ||
2324 | // Size of 0,0 is NOT valid, neither is <=0 and any positive value | |
2325 | ||
2f024384 DS |
2326 | wxASSERT_MSG( (!((num_rows > 0) && (num_cols <= 0)) || |
2327 | !((num_rows <= 0) && (num_cols > 0)) || | |
2328 | !((num_rows == 0) && (num_cols == 0))), | |
27f35b66 SN |
2329 | wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values")); |
2330 | ||
2331 | m_sizeRows = num_rows; | |
2332 | m_sizeCols = num_cols; | |
2333 | } | |
2334 | ||
2796cce3 RD |
2335 | const wxColour& wxGridCellAttr::GetTextColour() const |
2336 | { | |
2337 | if (HasTextColour()) | |
508011ce | 2338 | { |
2796cce3 | 2339 | return m_colText; |
508011ce | 2340 | } |
0926b2fc | 2341 | else if (m_defGridAttr && m_defGridAttr != this) |
508011ce | 2342 | { |
2796cce3 | 2343 | return m_defGridAttr->GetTextColour(); |
508011ce VZ |
2344 | } |
2345 | else | |
2346 | { | |
2796cce3 RD |
2347 | wxFAIL_MSG(wxT("Missing default cell attribute")); |
2348 | return wxNullColour; | |
2349 | } | |
2350 | } | |
2351 | ||
2796cce3 RD |
2352 | const wxColour& wxGridCellAttr::GetBackgroundColour() const |
2353 | { | |
2354 | if (HasBackgroundColour()) | |
2f024384 | 2355 | { |
2796cce3 | 2356 | return m_colBack; |
2f024384 | 2357 | } |
0926b2fc | 2358 | else if (m_defGridAttr && m_defGridAttr != this) |
2f024384 | 2359 | { |
2796cce3 | 2360 | return m_defGridAttr->GetBackgroundColour(); |
2f024384 | 2361 | } |
508011ce VZ |
2362 | else |
2363 | { | |
2796cce3 RD |
2364 | wxFAIL_MSG(wxT("Missing default cell attribute")); |
2365 | return wxNullColour; | |
2366 | } | |
2367 | } | |
2368 | ||
2796cce3 RD |
2369 | const wxFont& wxGridCellAttr::GetFont() const |
2370 | { | |
2371 | if (HasFont()) | |
2f024384 | 2372 | { |
2796cce3 | 2373 | return m_font; |
2f024384 | 2374 | } |
0926b2fc | 2375 | else if (m_defGridAttr && m_defGridAttr != this) |
2f024384 | 2376 | { |
2796cce3 | 2377 | return m_defGridAttr->GetFont(); |
2f024384 | 2378 | } |
508011ce VZ |
2379 | else |
2380 | { | |
2796cce3 RD |
2381 | wxFAIL_MSG(wxT("Missing default cell attribute")); |
2382 | return wxNullFont; | |
2383 | } | |
2384 | } | |
2385 | ||
2796cce3 RD |
2386 | void wxGridCellAttr::GetAlignment(int *hAlign, int *vAlign) const |
2387 | { | |
508011ce VZ |
2388 | if (HasAlignment()) |
2389 | { | |
4db6714b KH |
2390 | if ( hAlign ) |
2391 | *hAlign = m_hAlign; | |
2392 | if ( vAlign ) | |
2393 | *vAlign = m_vAlign; | |
2796cce3 | 2394 | } |
0926b2fc | 2395 | else if (m_defGridAttr && m_defGridAttr != this) |
2796cce3 | 2396 | m_defGridAttr->GetAlignment(hAlign, vAlign); |
508011ce VZ |
2397 | else |
2398 | { | |
2796cce3 RD |
2399 | wxFAIL_MSG(wxT("Missing default cell attribute")); |
2400 | } | |
2401 | } | |
2402 | ||
27f35b66 SN |
2403 | void wxGridCellAttr::GetSize( int *num_rows, int *num_cols ) const |
2404 | { | |
4db6714b KH |
2405 | if ( num_rows ) |
2406 | *num_rows = m_sizeRows; | |
2407 | if ( num_cols ) | |
2408 | *num_cols = m_sizeCols; | |
27f35b66 | 2409 | } |
2796cce3 | 2410 | |
f2d76237 | 2411 | // GetRenderer and GetEditor use a slightly different decision path about |
28a77bc4 RD |
2412 | // which attribute to use. If a non-default attr object has one then it is |
2413 | // used, otherwise the default editor or renderer is fetched from the grid and | |
2414 | // used. It should be the default for the data type of the cell. If it is | |
2415 | // NULL (because the table has a type that the grid does not have in its | |
2416 | // registry,) then the grid's default editor or renderer is used. | |
2417 | ||
2418 | wxGridCellRenderer* wxGridCellAttr::GetRenderer(wxGrid* grid, int row, int col) const | |
2419 | { | |
3cf883a2 | 2420 | wxGridCellRenderer *renderer; |
28a77bc4 | 2421 | |
3cf883a2 | 2422 | if ( m_renderer && this != m_defGridAttr ) |
0b190b0f | 2423 | { |
3cf883a2 VZ |
2424 | // use the cells renderer if it has one |
2425 | renderer = m_renderer; | |
2426 | renderer->IncRef(); | |
0b190b0f | 2427 | } |
2f024384 | 2428 | else // no non-default cell renderer |
0b190b0f | 2429 | { |
3cf883a2 VZ |
2430 | // get default renderer for the data type |
2431 | if ( grid ) | |
2432 | { | |
2433 | // GetDefaultRendererForCell() will do IncRef() for us | |
2434 | renderer = grid->GetDefaultRendererForCell(row, col); | |
2435 | } | |
2436 | else | |
2437 | { | |
2438 | renderer = NULL; | |
2439 | } | |
0b190b0f | 2440 | |
3cf883a2 VZ |
2441 | if ( !renderer ) |
2442 | { | |
0926b2fc | 2443 | if (m_defGridAttr && this != m_defGridAttr ) |
3cf883a2 VZ |
2444 | { |
2445 | // if we still don't have one then use the grid default | |
2446 | // (no need for IncRef() here neither) | |
2447 | renderer = m_defGridAttr->GetRenderer(NULL, 0, 0); | |
2448 | } | |
2449 | else // default grid attr | |
2450 | { | |
2451 | // use m_renderer which we had decided not to use initially | |
2452 | renderer = m_renderer; | |
2453 | if ( renderer ) | |
2454 | renderer->IncRef(); | |
2455 | } | |
2456 | } | |
0b190b0f | 2457 | } |
28a77bc4 | 2458 | |
3cf883a2 VZ |
2459 | // we're supposed to always find something |
2460 | wxASSERT_MSG(renderer, wxT("Missing default cell renderer")); | |
28a77bc4 RD |
2461 | |
2462 | return renderer; | |
2796cce3 RD |
2463 | } |
2464 | ||
3cf883a2 | 2465 | // same as above, except for s/renderer/editor/g |
28a77bc4 | 2466 | wxGridCellEditor* wxGridCellAttr::GetEditor(wxGrid* grid, int row, int col) const |
07296f0b | 2467 | { |
3cf883a2 | 2468 | wxGridCellEditor *editor; |
0b190b0f | 2469 | |
3cf883a2 | 2470 | if ( m_editor && this != m_defGridAttr ) |
0b190b0f | 2471 | { |
3cf883a2 VZ |
2472 | // use the cells editor if it has one |
2473 | editor = m_editor; | |
2474 | editor->IncRef(); | |
0b190b0f | 2475 | } |
3cf883a2 | 2476 | else // no non default cell editor |
0b190b0f | 2477 | { |
3cf883a2 VZ |
2478 | // get default editor for the data type |
2479 | if ( grid ) | |
2480 | { | |
2481 | // GetDefaultEditorForCell() will do IncRef() for us | |
2482 | editor = grid->GetDefaultEditorForCell(row, col); | |
2483 | } | |
2484 | else | |
2485 | { | |
2486 | editor = NULL; | |
2487 | } | |
2488 | ||
2489 | if ( !editor ) | |
2490 | { | |
0926b2fc | 2491 | if ( m_defGridAttr && this != m_defGridAttr ) |
3cf883a2 VZ |
2492 | { |
2493 | // if we still don't have one then use the grid default | |
2494 | // (no need for IncRef() here neither) | |
2495 | editor = m_defGridAttr->GetEditor(NULL, 0, 0); | |
2496 | } | |
2497 | else // default grid attr | |
2498 | { | |
2499 | // use m_editor which we had decided not to use initially | |
2500 | editor = m_editor; | |
2501 | if ( editor ) | |
2502 | editor->IncRef(); | |
2503 | } | |
2504 | } | |
0b190b0f | 2505 | } |
28a77bc4 | 2506 | |
3cf883a2 VZ |
2507 | // we're supposed to always find something |
2508 | wxASSERT_MSG(editor, wxT("Missing default cell editor")); | |
2509 | ||
28a77bc4 | 2510 | return editor; |
07296f0b RD |
2511 | } |
2512 | ||
b99be8fb | 2513 | // ---------------------------------------------------------------------------- |
758cbedf | 2514 | // wxGridCellAttrData |
b99be8fb VZ |
2515 | // ---------------------------------------------------------------------------- |
2516 | ||
758cbedf | 2517 | void wxGridCellAttrData::SetAttr(wxGridCellAttr *attr, int row, int col) |
b99be8fb VZ |
2518 | { |
2519 | int n = FindIndex(row, col); | |
2520 | if ( n == wxNOT_FOUND ) | |
2521 | { | |
2522 | // add the attribute | |
2523 | m_attrs.Add(new wxGridCellWithAttr(row, col, attr)); | |
2524 | } | |
2525 | else | |
2526 | { | |
6f36917b VZ |
2527 | // free the old attribute |
2528 | m_attrs[(size_t)n].attr->DecRef(); | |
2529 | ||
b99be8fb VZ |
2530 | if ( attr ) |
2531 | { | |
2532 | // change the attribute | |
2e9a6788 | 2533 | m_attrs[(size_t)n].attr = attr; |
b99be8fb VZ |
2534 | } |
2535 | else | |
2536 | { | |
2537 | // remove this attribute | |
2538 | m_attrs.RemoveAt((size_t)n); | |
2539 | } | |
2540 | } | |
b99be8fb VZ |
2541 | } |
2542 | ||
758cbedf | 2543 | wxGridCellAttr *wxGridCellAttrData::GetAttr(int row, int col) const |
b99be8fb VZ |
2544 | { |
2545 | wxGridCellAttr *attr = (wxGridCellAttr *)NULL; | |
2546 | ||
2547 | int n = FindIndex(row, col); | |
2548 | if ( n != wxNOT_FOUND ) | |
2549 | { | |
2e9a6788 VZ |
2550 | attr = m_attrs[(size_t)n].attr; |
2551 | attr->IncRef(); | |
b99be8fb VZ |
2552 | } |
2553 | ||
2554 | return attr; | |
2555 | } | |
2556 | ||
4d60017a SN |
2557 | void wxGridCellAttrData::UpdateAttrRows( size_t pos, int numRows ) |
2558 | { | |
2559 | size_t count = m_attrs.GetCount(); | |
2560 | for ( size_t n = 0; n < count; n++ ) | |
2561 | { | |
2562 | wxGridCellCoords& coords = m_attrs[n].coords; | |
d1c0b4f9 VZ |
2563 | wxCoord row = coords.GetRow(); |
2564 | if ((size_t)row >= pos) | |
2565 | { | |
2566 | if (numRows > 0) | |
2567 | { | |
2568 | // If rows inserted, include row counter where necessary | |
2569 | coords.SetRow(row + numRows); | |
2570 | } | |
2571 | else if (numRows < 0) | |
2572 | { | |
2573 | // If rows deleted ... | |
2574 | if ((size_t)row >= pos - numRows) | |
2575 | { | |
2576 | // ...either decrement row counter (if row still exists)... | |
2577 | coords.SetRow(row + numRows); | |
2578 | } | |
2579 | else | |
2580 | { | |
2581 | // ...or remove the attribute | |
d3e9dd94 SN |
2582 | // No need to DecRef the attribute itself since this is |
2583 | // done be wxGridCellWithAttr's destructor! | |
01dd42b6 | 2584 | m_attrs.RemoveAt(n); |
4db6714b KH |
2585 | n--; |
2586 | count--; | |
d1c0b4f9 VZ |
2587 | } |
2588 | } | |
4d60017a SN |
2589 | } |
2590 | } | |
2591 | } | |
2592 | ||
2593 | void wxGridCellAttrData::UpdateAttrCols( size_t pos, int numCols ) | |
2594 | { | |
2595 | size_t count = m_attrs.GetCount(); | |
2596 | for ( size_t n = 0; n < count; n++ ) | |
2597 | { | |
2598 | wxGridCellCoords& coords = m_attrs[n].coords; | |
d1c0b4f9 VZ |
2599 | wxCoord col = coords.GetCol(); |
2600 | if ( (size_t)col >= pos ) | |
2601 | { | |
2602 | if ( numCols > 0 ) | |
2603 | { | |
2604 | // If rows inserted, include row counter where necessary | |
2605 | coords.SetCol(col + numCols); | |
2606 | } | |
2607 | else if (numCols < 0) | |
2608 | { | |
2609 | // If rows deleted ... | |
2610 | if ((size_t)col >= pos - numCols) | |
2611 | { | |
2612 | // ...either decrement row counter (if row still exists)... | |
2613 | coords.SetCol(col + numCols); | |
2614 | } | |
2615 | else | |
2616 | { | |
2617 | // ...or remove the attribute | |
d3e9dd94 SN |
2618 | // No need to DecRef the attribute itself since this is |
2619 | // done be wxGridCellWithAttr's destructor! | |
01dd42b6 | 2620 | m_attrs.RemoveAt(n); |
2f024384 DS |
2621 | n--; |
2622 | count--; | |
d1c0b4f9 VZ |
2623 | } |
2624 | } | |
4d60017a SN |
2625 | } |
2626 | } | |
2627 | } | |
2628 | ||
758cbedf | 2629 | int wxGridCellAttrData::FindIndex(int row, int col) const |
b99be8fb VZ |
2630 | { |
2631 | size_t count = m_attrs.GetCount(); | |
2632 | for ( size_t n = 0; n < count; n++ ) | |
2633 | { | |
2634 | const wxGridCellCoords& coords = m_attrs[n].coords; | |
2635 | if ( (coords.GetRow() == row) && (coords.GetCol() == col) ) | |
2636 | { | |
2637 | return n; | |
2638 | } | |
2639 | } | |
2640 | ||
2641 | return wxNOT_FOUND; | |
2642 | } | |
2643 | ||
758cbedf VZ |
2644 | // ---------------------------------------------------------------------------- |
2645 | // wxGridRowOrColAttrData | |
2646 | // ---------------------------------------------------------------------------- | |
2647 | ||
2648 | wxGridRowOrColAttrData::~wxGridRowOrColAttrData() | |
2649 | { | |
2650 | size_t count = m_attrs.Count(); | |
2651 | for ( size_t n = 0; n < count; n++ ) | |
2652 | { | |
2653 | m_attrs[n]->DecRef(); | |
2654 | } | |
2655 | } | |
2656 | ||
2657 | wxGridCellAttr *wxGridRowOrColAttrData::GetAttr(int rowOrCol) const | |
2658 | { | |
2659 | wxGridCellAttr *attr = (wxGridCellAttr *)NULL; | |
2660 | ||
2661 | int n = m_rowsOrCols.Index(rowOrCol); | |
2662 | if ( n != wxNOT_FOUND ) | |
2663 | { | |
2664 | attr = m_attrs[(size_t)n]; | |
2665 | attr->IncRef(); | |
2666 | } | |
2667 | ||
2668 | return attr; | |
2669 | } | |
2670 | ||
2671 | void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr *attr, int rowOrCol) | |
2672 | { | |
a95e38c0 VZ |
2673 | int i = m_rowsOrCols.Index(rowOrCol); |
2674 | if ( i == wxNOT_FOUND ) | |
758cbedf VZ |
2675 | { |
2676 | // add the attribute | |
2677 | m_rowsOrCols.Add(rowOrCol); | |
2678 | m_attrs.Add(attr); | |
2679 | } | |
2680 | else | |
2681 | { | |
a95e38c0 | 2682 | size_t n = (size_t)i; |
758cbedf VZ |
2683 | if ( attr ) |
2684 | { | |
2685 | // change the attribute | |
a95e38c0 VZ |
2686 | m_attrs[n]->DecRef(); |
2687 | m_attrs[n] = attr; | |
758cbedf VZ |
2688 | } |
2689 | else | |
2690 | { | |
2691 | // remove this attribute | |
a95e38c0 VZ |
2692 | m_attrs[n]->DecRef(); |
2693 | m_rowsOrCols.RemoveAt(n); | |
2694 | m_attrs.RemoveAt(n); | |
758cbedf VZ |
2695 | } |
2696 | } | |
2697 | } | |
2698 | ||
4d60017a SN |
2699 | void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos, int numRowsOrCols ) |
2700 | { | |
2701 | size_t count = m_attrs.GetCount(); | |
2702 | for ( size_t n = 0; n < count; n++ ) | |
2703 | { | |
2704 | int & rowOrCol = m_rowsOrCols[n]; | |
d1c0b4f9 VZ |
2705 | if ( (size_t)rowOrCol >= pos ) |
2706 | { | |
2707 | if ( numRowsOrCols > 0 ) | |
2708 | { | |
2709 | // If rows inserted, include row counter where necessary | |
2710 | rowOrCol += numRowsOrCols; | |
2711 | } | |
2712 | else if ( numRowsOrCols < 0) | |
2713 | { | |
2714 | // If rows deleted, either decrement row counter (if row still exists) | |
2715 | if ((size_t)rowOrCol >= pos - numRowsOrCols) | |
2716 | rowOrCol += numRowsOrCols; | |
2717 | else | |
2718 | { | |
01dd42b6 VZ |
2719 | m_rowsOrCols.RemoveAt(n); |
2720 | m_attrs[n]->DecRef(); | |
2721 | m_attrs.RemoveAt(n); | |
4db6714b KH |
2722 | n--; |
2723 | count--; | |
d1c0b4f9 VZ |
2724 | } |
2725 | } | |
4d60017a SN |
2726 | } |
2727 | } | |
2728 | } | |
2729 | ||
b99be8fb VZ |
2730 | // ---------------------------------------------------------------------------- |
2731 | // wxGridCellAttrProvider | |
2732 | // ---------------------------------------------------------------------------- | |
2733 | ||
2734 | wxGridCellAttrProvider::wxGridCellAttrProvider() | |
2735 | { | |
2736 | m_data = (wxGridCellAttrProviderData *)NULL; | |
2737 | } | |
2738 | ||
2739 | wxGridCellAttrProvider::~wxGridCellAttrProvider() | |
2740 | { | |
2741 | delete m_data; | |
2742 | } | |
2743 | ||
2744 | void wxGridCellAttrProvider::InitData() | |
2745 | { | |
2746 | m_data = new wxGridCellAttrProviderData; | |
2747 | } | |
2748 | ||
19d7140e VZ |
2749 | wxGridCellAttr *wxGridCellAttrProvider::GetAttr(int row, int col, |
2750 | wxGridCellAttr::wxAttrKind kind ) const | |
b99be8fb | 2751 | { |
758cbedf VZ |
2752 | wxGridCellAttr *attr = (wxGridCellAttr *)NULL; |
2753 | if ( m_data ) | |
2754 | { | |
962a48f6 | 2755 | switch (kind) |
758cbedf | 2756 | { |
19d7140e | 2757 | case (wxGridCellAttr::Any): |
962a48f6 DS |
2758 | // Get cached merge attributes. |
2759 | // Currently not used as no cache implemented as not mutable | |
19d7140e | 2760 | // attr = m_data->m_mergeAttr.GetAttr(row, col); |
4db6714b | 2761 | if (!attr) |
19d7140e | 2762 | { |
962a48f6 DS |
2763 | // Basically implement old version. |
2764 | // Also check merge cache, so we don't have to re-merge every time.. | |
999836aa VZ |
2765 | wxGridCellAttr *attrcell = m_data->m_cellAttrs.GetAttr(row, col); |
2766 | wxGridCellAttr *attrrow = m_data->m_rowAttrs.GetAttr(row); | |
2767 | wxGridCellAttr *attrcol = m_data->m_colAttrs.GetAttr(col); | |
19d7140e | 2768 | |
4db6714b KH |
2769 | if ((attrcell != attrrow) && (attrrow != attrcol) && (attrcell != attrcol)) |
2770 | { | |
2d0c2e79 | 2771 | // Two or more are non NULL |
19d7140e VZ |
2772 | attr = new wxGridCellAttr; |
2773 | attr->SetKind(wxGridCellAttr::Merged); | |
2774 | ||
962a48f6 | 2775 | // Order is important.. |
4db6714b KH |
2776 | if (attrcell) |
2777 | { | |
19d7140e VZ |
2778 | attr->MergeWith(attrcell); |
2779 | attrcell->DecRef(); | |
2780 | } | |
4db6714b KH |
2781 | if (attrcol) |
2782 | { | |
19d7140e VZ |
2783 | attr->MergeWith(attrcol); |
2784 | attrcol->DecRef(); | |
2785 | } | |
4db6714b KH |
2786 | if (attrrow) |
2787 | { | |
19d7140e VZ |
2788 | attr->MergeWith(attrrow); |
2789 | attrrow->DecRef(); | |
2790 | } | |
962a48f6 DS |
2791 | |
2792 | // store merge attr if cache implemented | |
19d7140e VZ |
2793 | //attr->IncRef(); |
2794 | //m_data->m_mergeAttr.SetAttr(attr, row, col); | |
2795 | } | |
2796 | else | |
2d0c2e79 | 2797 | { |
19d7140e | 2798 | // one or none is non null return it or null. |
4db6714b KH |
2799 | if (attrrow) |
2800 | attr = attrrow; | |
2801 | if (attrcol) | |
2d0c2e79 | 2802 | { |
962a48f6 | 2803 | if (attr) |
2d0c2e79 RD |
2804 | attr->DecRef(); |
2805 | attr = attrcol; | |
2806 | } | |
4db6714b | 2807 | if (attrcell) |
2d0c2e79 | 2808 | { |
4db6714b | 2809 | if (attr) |
2d0c2e79 RD |
2810 | attr->DecRef(); |
2811 | attr = attrcell; | |
2812 | } | |
19d7140e VZ |
2813 | } |
2814 | } | |
2f024384 | 2815 | break; |
4db6714b | 2816 | |
19d7140e VZ |
2817 | case (wxGridCellAttr::Cell): |
2818 | attr = m_data->m_cellAttrs.GetAttr(row, col); | |
2f024384 | 2819 | break; |
4db6714b | 2820 | |
19d7140e | 2821 | case (wxGridCellAttr::Col): |
2d0c2e79 | 2822 | attr = m_data->m_colAttrs.GetAttr(col); |
2f024384 | 2823 | break; |
4db6714b | 2824 | |
19d7140e | 2825 | case (wxGridCellAttr::Row): |
2d0c2e79 | 2826 | attr = m_data->m_rowAttrs.GetAttr(row); |
2f024384 | 2827 | break; |
4db6714b | 2828 | |
19d7140e VZ |
2829 | default: |
2830 | // unused as yet... | |
2831 | // (wxGridCellAttr::Default): | |
2832 | // (wxGridCellAttr::Merged): | |
2f024384 | 2833 | break; |
758cbedf VZ |
2834 | } |
2835 | } | |
2f024384 | 2836 | |
758cbedf | 2837 | return attr; |
b99be8fb VZ |
2838 | } |
2839 | ||
2e9a6788 | 2840 | void wxGridCellAttrProvider::SetAttr(wxGridCellAttr *attr, |
b99be8fb VZ |
2841 | int row, int col) |
2842 | { | |
2843 | if ( !m_data ) | |
2844 | InitData(); | |
2845 | ||
758cbedf VZ |
2846 | m_data->m_cellAttrs.SetAttr(attr, row, col); |
2847 | } | |
2848 | ||
2849 | void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr *attr, int row) | |
2850 | { | |
2851 | if ( !m_data ) | |
2852 | InitData(); | |
2853 | ||
2854 | m_data->m_rowAttrs.SetAttr(attr, row); | |
2855 | } | |
2856 | ||
2857 | void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr *attr, int col) | |
2858 | { | |
2859 | if ( !m_data ) | |
2860 | InitData(); | |
2861 | ||
2862 | m_data->m_colAttrs.SetAttr(attr, col); | |
b99be8fb VZ |
2863 | } |
2864 | ||
4d60017a SN |
2865 | void wxGridCellAttrProvider::UpdateAttrRows( size_t pos, int numRows ) |
2866 | { | |
2867 | if ( m_data ) | |
2868 | { | |
2869 | m_data->m_cellAttrs.UpdateAttrRows( pos, numRows ); | |
2870 | ||
d1c0b4f9 | 2871 | m_data->m_rowAttrs.UpdateAttrRowsOrCols( pos, numRows ); |
4d60017a SN |
2872 | } |
2873 | } | |
2874 | ||
2875 | void wxGridCellAttrProvider::UpdateAttrCols( size_t pos, int numCols ) | |
2876 | { | |
2877 | if ( m_data ) | |
2878 | { | |
2879 | m_data->m_cellAttrs.UpdateAttrCols( pos, numCols ); | |
2880 | ||
d1c0b4f9 | 2881 | m_data->m_colAttrs.UpdateAttrRowsOrCols( pos, numCols ); |
4d60017a SN |
2882 | } |
2883 | } | |
2884 | ||
f2d76237 RD |
2885 | // ---------------------------------------------------------------------------- |
2886 | // wxGridTypeRegistry | |
2887 | // ---------------------------------------------------------------------------- | |
2888 | ||
2889 | wxGridTypeRegistry::~wxGridTypeRegistry() | |
2890 | { | |
b94ae1ea VZ |
2891 | size_t count = m_typeinfo.Count(); |
2892 | for ( size_t i = 0; i < count; i++ ) | |
f2d76237 RD |
2893 | delete m_typeinfo[i]; |
2894 | } | |
2895 | ||
f2d76237 RD |
2896 | void wxGridTypeRegistry::RegisterDataType(const wxString& typeName, |
2897 | wxGridCellRenderer* renderer, | |
2898 | wxGridCellEditor* editor) | |
2899 | { | |
f2d76237 RD |
2900 | wxGridDataTypeInfo* info = new wxGridDataTypeInfo(typeName, renderer, editor); |
2901 | ||
2902 | // is it already registered? | |
c4608a8a | 2903 | int loc = FindRegisteredDataType(typeName); |
39bcce60 VZ |
2904 | if ( loc != wxNOT_FOUND ) |
2905 | { | |
f2d76237 RD |
2906 | delete m_typeinfo[loc]; |
2907 | m_typeinfo[loc] = info; | |
2908 | } | |
39bcce60 VZ |
2909 | else |
2910 | { | |
f2d76237 RD |
2911 | m_typeinfo.Add(info); |
2912 | } | |
2913 | } | |
2914 | ||
c4608a8a VZ |
2915 | int wxGridTypeRegistry::FindRegisteredDataType(const wxString& typeName) |
2916 | { | |
2917 | size_t count = m_typeinfo.GetCount(); | |
2918 | for ( size_t i = 0; i < count; i++ ) | |
2919 | { | |
2920 | if ( typeName == m_typeinfo[i]->m_typeName ) | |
2921 | { | |
2922 | return i; | |
2923 | } | |
2924 | } | |
2925 | ||
2926 | return wxNOT_FOUND; | |
2927 | } | |
2928 | ||
f2d76237 RD |
2929 | int wxGridTypeRegistry::FindDataType(const wxString& typeName) |
2930 | { | |
c4608a8a VZ |
2931 | int index = FindRegisteredDataType(typeName); |
2932 | if ( index == wxNOT_FOUND ) | |
2933 | { | |
2934 | // check whether this is one of the standard ones, in which case | |
2935 | // register it "on the fly" | |
3a8c693a | 2936 | #if wxUSE_TEXTCTRL |
c4608a8a VZ |
2937 | if ( typeName == wxGRID_VALUE_STRING ) |
2938 | { | |
2939 | RegisterDataType(wxGRID_VALUE_STRING, | |
2940 | new wxGridCellStringRenderer, | |
2941 | new wxGridCellTextEditor); | |
4db6714b KH |
2942 | } |
2943 | else | |
3a8c693a VZ |
2944 | #endif // wxUSE_TEXTCTRL |
2945 | #if wxUSE_CHECKBOX | |
2946 | if ( typeName == wxGRID_VALUE_BOOL ) | |
c4608a8a VZ |
2947 | { |
2948 | RegisterDataType(wxGRID_VALUE_BOOL, | |
2949 | new wxGridCellBoolRenderer, | |
2950 | new wxGridCellBoolEditor); | |
4db6714b KH |
2951 | } |
2952 | else | |
3a8c693a VZ |
2953 | #endif // wxUSE_CHECKBOX |
2954 | #if wxUSE_TEXTCTRL | |
2955 | if ( typeName == wxGRID_VALUE_NUMBER ) | |
c4608a8a VZ |
2956 | { |
2957 | RegisterDataType(wxGRID_VALUE_NUMBER, | |
2958 | new wxGridCellNumberRenderer, | |
2959 | new wxGridCellNumberEditor); | |
2960 | } | |
2961 | else if ( typeName == wxGRID_VALUE_FLOAT ) | |
2962 | { | |
2963 | RegisterDataType(wxGRID_VALUE_FLOAT, | |
2964 | new wxGridCellFloatRenderer, | |
2965 | new wxGridCellFloatEditor); | |
4db6714b KH |
2966 | } |
2967 | else | |
3a8c693a VZ |
2968 | #endif // wxUSE_TEXTCTRL |
2969 | #if wxUSE_COMBOBOX | |
2970 | if ( typeName == wxGRID_VALUE_CHOICE ) | |
c4608a8a VZ |
2971 | { |
2972 | RegisterDataType(wxGRID_VALUE_CHOICE, | |
2973 | new wxGridCellStringRenderer, | |
2974 | new wxGridCellChoiceEditor); | |
4db6714b KH |
2975 | } |
2976 | else | |
3a8c693a | 2977 | #endif // wxUSE_COMBOBOX |
c4608a8a VZ |
2978 | { |
2979 | return wxNOT_FOUND; | |
2980 | } | |
f2d76237 | 2981 | |
c4608a8a VZ |
2982 | // we get here only if just added the entry for this type, so return |
2983 | // the last index | |
2984 | index = m_typeinfo.GetCount() - 1; | |
2985 | } | |
2986 | ||
2987 | return index; | |
2988 | } | |
2989 | ||
2990 | int wxGridTypeRegistry::FindOrCloneDataType(const wxString& typeName) | |
2991 | { | |
2992 | int index = FindDataType(typeName); | |
2993 | if ( index == wxNOT_FOUND ) | |
2994 | { | |
2995 | // the first part of the typename is the "real" type, anything after ':' | |
2996 | // are the parameters for the renderer | |
2997 | index = FindDataType(typeName.BeforeFirst(_T(':'))); | |
2998 | if ( index == wxNOT_FOUND ) | |
2999 | { | |
3000 | return wxNOT_FOUND; | |
f2d76237 | 3001 | } |
c4608a8a VZ |
3002 | |
3003 | wxGridCellRenderer *renderer = GetRenderer(index); | |
3004 | wxGridCellRenderer *rendererOld = renderer; | |
3005 | renderer = renderer->Clone(); | |
3006 | rendererOld->DecRef(); | |
3007 | ||
3008 | wxGridCellEditor *editor = GetEditor(index); | |
3009 | wxGridCellEditor *editorOld = editor; | |
3010 | editor = editor->Clone(); | |
3011 | editorOld->DecRef(); | |
3012 | ||
3013 | // do it even if there are no parameters to reset them to defaults | |
3014 | wxString params = typeName.AfterFirst(_T(':')); | |
3015 | renderer->SetParameters(params); | |
3016 | editor->SetParameters(params); | |
3017 | ||
3018 | // register the new typename | |
c4608a8a VZ |
3019 | RegisterDataType(typeName, renderer, editor); |
3020 | ||
3021 | // we just registered it, it's the last one | |
3022 | index = m_typeinfo.GetCount() - 1; | |
f2d76237 RD |
3023 | } |
3024 | ||
c4608a8a | 3025 | return index; |
f2d76237 RD |
3026 | } |
3027 | ||
3028 | wxGridCellRenderer* wxGridTypeRegistry::GetRenderer(int index) | |
3029 | { | |
3030 | wxGridCellRenderer* renderer = m_typeinfo[index]->m_renderer; | |
faec5a43 SN |
3031 | if (renderer) |
3032 | renderer->IncRef(); | |
2f024384 | 3033 | |
f2d76237 RD |
3034 | return renderer; |
3035 | } | |
3036 | ||
0b190b0f | 3037 | wxGridCellEditor* wxGridTypeRegistry::GetEditor(int index) |
f2d76237 RD |
3038 | { |
3039 | wxGridCellEditor* editor = m_typeinfo[index]->m_editor; | |
faec5a43 SN |
3040 | if (editor) |
3041 | editor->IncRef(); | |
2f024384 | 3042 | |
f2d76237 RD |
3043 | return editor; |
3044 | } | |
3045 | ||
758cbedf VZ |
3046 | // ---------------------------------------------------------------------------- |
3047 | // wxGridTableBase | |
3048 | // ---------------------------------------------------------------------------- | |
3049 | ||
f85afd4e MB |
3050 | IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase, wxObject ) |
3051 | ||
f85afd4e | 3052 | wxGridTableBase::wxGridTableBase() |
f85afd4e MB |
3053 | { |
3054 | m_view = (wxGrid *) NULL; | |
b99be8fb | 3055 | m_attrProvider = (wxGridCellAttrProvider *) NULL; |
f85afd4e MB |
3056 | } |
3057 | ||
3058 | wxGridTableBase::~wxGridTableBase() | |
3059 | { | |
b99be8fb VZ |
3060 | delete m_attrProvider; |
3061 | } | |
3062 | ||
3063 | void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider *attrProvider) | |
3064 | { | |
3065 | delete m_attrProvider; | |
3066 | m_attrProvider = attrProvider; | |
f85afd4e MB |
3067 | } |
3068 | ||
f2d76237 RD |
3069 | bool wxGridTableBase::CanHaveAttributes() |
3070 | { | |
3071 | if ( ! GetAttrProvider() ) | |
3072 | { | |
3073 | // use the default attr provider by default | |
3074 | SetAttrProvider(new wxGridCellAttrProvider); | |
3075 | } | |
2f024384 | 3076 | |
ca65c044 | 3077 | return true; |
f2d76237 RD |
3078 | } |
3079 | ||
19d7140e | 3080 | wxGridCellAttr *wxGridTableBase::GetAttr(int row, int col, wxGridCellAttr::wxAttrKind kind) |
b99be8fb VZ |
3081 | { |
3082 | if ( m_attrProvider ) | |
19d7140e | 3083 | return m_attrProvider->GetAttr(row, col, kind); |
b99be8fb VZ |
3084 | else |
3085 | return (wxGridCellAttr *)NULL; | |
3086 | } | |
3087 | ||
758cbedf | 3088 | void wxGridTableBase::SetAttr(wxGridCellAttr* attr, int row, int col) |
b99be8fb VZ |
3089 | { |
3090 | if ( m_attrProvider ) | |
3091 | { | |
19d7140e | 3092 | attr->SetKind(wxGridCellAttr::Cell); |
b99be8fb VZ |
3093 | m_attrProvider->SetAttr(attr, row, col); |
3094 | } | |
3095 | else | |
3096 | { | |
3097 | // as we take ownership of the pointer and don't store it, we must | |
3098 | // free it now | |
39bcce60 | 3099 | wxSafeDecRef(attr); |
b99be8fb VZ |
3100 | } |
3101 | } | |
3102 | ||
758cbedf VZ |
3103 | void wxGridTableBase::SetRowAttr(wxGridCellAttr *attr, int row) |
3104 | { | |
3105 | if ( m_attrProvider ) | |
3106 | { | |
19d7140e | 3107 | attr->SetKind(wxGridCellAttr::Row); |
758cbedf VZ |
3108 | m_attrProvider->SetRowAttr(attr, row); |
3109 | } | |
3110 | else | |
3111 | { | |
3112 | // as we take ownership of the pointer and don't store it, we must | |
3113 | // free it now | |
39bcce60 | 3114 | wxSafeDecRef(attr); |
758cbedf VZ |
3115 | } |
3116 | } | |
3117 | ||
3118 | void wxGridTableBase::SetColAttr(wxGridCellAttr *attr, int col) | |
3119 | { | |
3120 | if ( m_attrProvider ) | |
3121 | { | |
19d7140e | 3122 | attr->SetKind(wxGridCellAttr::Col); |
758cbedf VZ |
3123 | m_attrProvider->SetColAttr(attr, col); |
3124 | } | |
3125 | else | |
3126 | { | |
3127 | // as we take ownership of the pointer and don't store it, we must | |
3128 | // free it now | |
39bcce60 | 3129 | wxSafeDecRef(attr); |
758cbedf VZ |
3130 | } |
3131 | } | |
3132 | ||
aa5e1f75 SN |
3133 | bool wxGridTableBase::InsertRows( size_t WXUNUSED(pos), |
3134 | size_t WXUNUSED(numRows) ) | |
f85afd4e | 3135 | { |
f6bcfd97 | 3136 | wxFAIL_MSG( wxT("Called grid table class function InsertRows\nbut your derived table class does not override this function") ); |
8f177c8e | 3137 | |
ca65c044 | 3138 | return false; |
f85afd4e MB |
3139 | } |
3140 | ||
aa5e1f75 | 3141 | bool wxGridTableBase::AppendRows( size_t WXUNUSED(numRows) ) |
f85afd4e | 3142 | { |
f6bcfd97 | 3143 | wxFAIL_MSG( wxT("Called grid table class function AppendRows\nbut your derived table class does not override this function")); |
8f177c8e | 3144 | |
ca65c044 | 3145 | return false; |
f85afd4e MB |
3146 | } |
3147 | ||
aa5e1f75 SN |
3148 | bool wxGridTableBase::DeleteRows( size_t WXUNUSED(pos), |
3149 | size_t WXUNUSED(numRows) ) | |
f85afd4e | 3150 | { |
f6bcfd97 | 3151 | wxFAIL_MSG( wxT("Called grid table class function DeleteRows\nbut your derived table class does not override this function")); |
8f177c8e | 3152 | |
ca65c044 | 3153 | return false; |
f85afd4e MB |
3154 | } |
3155 | ||
aa5e1f75 SN |
3156 | bool wxGridTableBase::InsertCols( size_t WXUNUSED(pos), |
3157 | size_t WXUNUSED(numCols) ) | |
f85afd4e | 3158 | { |
f6bcfd97 | 3159 | wxFAIL_MSG( wxT("Called grid table class function InsertCols\nbut your derived table class does not override this function")); |
8f177c8e | 3160 | |
ca65c044 | 3161 | return false; |
f85afd4e MB |
3162 | } |
3163 | ||
aa5e1f75 | 3164 | bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols) ) |
f85afd4e | 3165 | { |
f6bcfd97 | 3166 | wxFAIL_MSG(wxT("Called grid table class function AppendCols\nbut your derived table class does not override this function")); |
8f177c8e | 3167 | |
ca65c044 | 3168 | return false; |
f85afd4e MB |
3169 | } |
3170 | ||
aa5e1f75 SN |
3171 | bool wxGridTableBase::DeleteCols( size_t WXUNUSED(pos), |
3172 | size_t WXUNUSED(numCols) ) | |
f85afd4e | 3173 | { |
f6bcfd97 | 3174 | wxFAIL_MSG( wxT("Called grid table class function DeleteCols\nbut your derived table class does not override this function")); |
8f177c8e | 3175 | |
ca65c044 | 3176 | return false; |
f85afd4e MB |
3177 | } |
3178 | ||
f85afd4e MB |
3179 | wxString wxGridTableBase::GetRowLabelValue( int row ) |
3180 | { | |
3181 | wxString s; | |
93763ad5 | 3182 | |
2f024384 DS |
3183 | // RD: Starting the rows at zero confuses users, |
3184 | // no matter how much it makes sense to us geeks. | |
3185 | s << row + 1; | |
3186 | ||
f85afd4e MB |
3187 | return s; |
3188 | } | |
3189 | ||
3190 | wxString wxGridTableBase::GetColLabelValue( int col ) | |
3191 | { | |
3192 | // default col labels are: | |
3193 | // cols 0 to 25 : A-Z | |
3194 | // cols 26 to 675 : AA-ZZ | |
3195 | // etc. | |
3196 | ||
3197 | wxString s; | |
3198 | unsigned int i, n; | |
3199 | for ( n = 1; ; n++ ) | |
3200 | { | |
2f024384 DS |
3201 | s += (wxChar) (_T('A') + (wxChar)(col % 26)); |
3202 | col = col / 26 - 1; | |
4db6714b KH |
3203 | if ( col < 0 ) |
3204 | break; | |
f85afd4e MB |
3205 | } |
3206 | ||
3207 | // reverse the string... | |
3208 | wxString s2; | |
3d59537f | 3209 | for ( i = 0; i < n; i++ ) |
f85afd4e | 3210 | { |
2f024384 | 3211 | s2 += s[n - i - 1]; |
f85afd4e MB |
3212 | } |
3213 | ||
3214 | return s2; | |
3215 | } | |
3216 | ||
f2d76237 RD |
3217 | wxString wxGridTableBase::GetTypeName( int WXUNUSED(row), int WXUNUSED(col) ) |
3218 | { | |
816be743 | 3219 | return wxGRID_VALUE_STRING; |
f2d76237 RD |
3220 | } |
3221 | ||
3222 | bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row), int WXUNUSED(col), | |
3223 | const wxString& typeName ) | |
3224 | { | |
816be743 | 3225 | return typeName == wxGRID_VALUE_STRING; |
f2d76237 RD |
3226 | } |
3227 | ||
3228 | bool wxGridTableBase::CanSetValueAs( int row, int col, const wxString& typeName ) | |
3229 | { | |
3230 | return CanGetValueAs(row, col, typeName); | |
3231 | } | |
3232 | ||
3233 | long wxGridTableBase::GetValueAsLong( int WXUNUSED(row), int WXUNUSED(col) ) | |
3234 | { | |
3235 | return 0; | |
3236 | } | |
3237 | ||
3238 | double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row), int WXUNUSED(col) ) | |
3239 | { | |
3240 | return 0.0; | |
3241 | } | |
3242 | ||
3243 | bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row), int WXUNUSED(col) ) | |
3244 | { | |
ca65c044 | 3245 | return false; |
f2d76237 RD |
3246 | } |
3247 | ||
3248 | void wxGridTableBase::SetValueAsLong( int WXUNUSED(row), int WXUNUSED(col), | |
3249 | long WXUNUSED(value) ) | |
3250 | { | |
3251 | } | |
3252 | ||
3253 | void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row), int WXUNUSED(col), | |
3254 | double WXUNUSED(value) ) | |
3255 | { | |
3256 | } | |
3257 | ||
3258 | void wxGridTableBase::SetValueAsBool( int WXUNUSED(row), int WXUNUSED(col), | |
3259 | bool WXUNUSED(value) ) | |
3260 | { | |
3261 | } | |
3262 | ||
f2d76237 RD |
3263 | void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row), int WXUNUSED(col), |
3264 | const wxString& WXUNUSED(typeName) ) | |
3265 | { | |
3266 | return NULL; | |
3267 | } | |
3268 | ||
3269 | void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row), int WXUNUSED(col), | |
3270 | const wxString& WXUNUSED(typeName), | |
3271 | void* WXUNUSED(value) ) | |
3272 | { | |
3273 | } | |
3274 | ||
f85afd4e MB |
3275 | ////////////////////////////////////////////////////////////////////// |
3276 | // | |
3277 | // Message class for the grid table to send requests and notifications | |
3278 | // to the grid view | |
3279 | // | |
3280 | ||
3281 | wxGridTableMessage::wxGridTableMessage() | |
3282 | { | |
3283 | m_table = (wxGridTableBase *) NULL; | |
3284 | m_id = -1; | |
3285 | m_comInt1 = -1; | |
3286 | m_comInt2 = -1; | |
3287 | } | |
3288 | ||
3289 | wxGridTableMessage::wxGridTableMessage( wxGridTableBase *table, int id, | |
3290 | int commandInt1, int commandInt2 ) | |
3291 | { | |
3292 | m_table = table; | |
3293 | m_id = id; | |
3294 | m_comInt1 = commandInt1; | |
3295 | m_comInt2 = commandInt2; | |
3296 | } | |
3297 | ||
f85afd4e MB |
3298 | ////////////////////////////////////////////////////////////////////// |
3299 | // | |
3300 | // A basic grid table for string data. An object of this class will | |
3301 | // created by wxGrid if you don't specify an alternative table class. | |
3302 | // | |
3303 | ||
223d09f6 | 3304 | WX_DEFINE_OBJARRAY(wxGridStringArray) |
f85afd4e MB |
3305 | |
3306 | IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable, wxGridTableBase ) | |
3307 | ||
3308 | wxGridStringTable::wxGridStringTable() | |
3309 | : wxGridTableBase() | |
3310 | { | |
3311 | } | |
3312 | ||
3313 | wxGridStringTable::wxGridStringTable( int numRows, int numCols ) | |
3314 | : wxGridTableBase() | |
3315 | { | |
f85afd4e MB |
3316 | m_data.Alloc( numRows ); |
3317 | ||
3318 | wxArrayString sa; | |
3319 | sa.Alloc( numCols ); | |
27f35b66 | 3320 | sa.Add( wxEmptyString, numCols ); |
8f177c8e | 3321 | |
27f35b66 | 3322 | m_data.Add( sa, numRows ); |
f85afd4e MB |
3323 | } |
3324 | ||
3325 | wxGridStringTable::~wxGridStringTable() | |
3326 | { | |
3327 | } | |
3328 | ||
e32352cf | 3329 | int wxGridStringTable::GetNumberRows() |
f85afd4e MB |
3330 | { |
3331 | return m_data.GetCount(); | |
3332 | } | |
3333 | ||
e32352cf | 3334 | int wxGridStringTable::GetNumberCols() |
f85afd4e MB |
3335 | { |
3336 | if ( m_data.GetCount() > 0 ) | |
3337 | return m_data[0].GetCount(); | |
3338 | else | |
3339 | return 0; | |
3340 | } | |
3341 | ||
3342 | wxString wxGridStringTable::GetValue( int row, int col ) | |
3343 | { | |
3e13956a RD |
3344 | wxCHECK_MSG( (row < GetNumberRows()) && (col < GetNumberCols()), |
3345 | wxEmptyString, | |
3346 | _T("invalid row or column index in wxGridStringTable") ); | |
af547d51 | 3347 | |
f85afd4e MB |
3348 | return m_data[row][col]; |
3349 | } | |
3350 | ||
f2d76237 | 3351 | void wxGridStringTable::SetValue( int row, int col, const wxString& value ) |
f85afd4e | 3352 | { |
3e13956a RD |
3353 | wxCHECK_RET( (row < GetNumberRows()) && (col < GetNumberCols()), |
3354 | _T("invalid row or column index in wxGridStringTable") ); | |
af547d51 | 3355 | |
f2d76237 | 3356 | m_data[row][col] = value; |
f85afd4e MB |
3357 | } |
3358 | ||
3359 | bool wxGridStringTable::IsEmptyCell( int row, int col ) | |
3360 | { | |
3e13956a RD |
3361 | wxCHECK_MSG( (row < GetNumberRows()) && (col < GetNumberCols()), |
3362 | true, | |
af547d51 VZ |
3363 | _T("invalid row or column index in wxGridStringTable") ); |
3364 | ||
f85afd4e MB |
3365 | return (m_data[row][col] == wxEmptyString); |
3366 | } | |
3367 | ||
f85afd4e MB |
3368 | void wxGridStringTable::Clear() |
3369 | { | |
3370 | int row, col; | |
3371 | int numRows, numCols; | |
8f177c8e | 3372 | |
f85afd4e MB |
3373 | numRows = m_data.GetCount(); |
3374 | if ( numRows > 0 ) | |
3375 | { | |
3376 | numCols = m_data[0].GetCount(); | |
3377 | ||
3d59537f | 3378 | for ( row = 0; row < numRows; row++ ) |
f85afd4e | 3379 | { |
3d59537f | 3380 | for ( col = 0; col < numCols; col++ ) |
f85afd4e MB |
3381 | { |
3382 | m_data[row][col] = wxEmptyString; | |
3383 | } | |
3384 | } | |
3385 | } | |
3386 | } | |
3387 | ||
f85afd4e MB |
3388 | bool wxGridStringTable::InsertRows( size_t pos, size_t numRows ) |
3389 | { | |
f85afd4e | 3390 | size_t curNumRows = m_data.GetCount(); |
f6bcfd97 BP |
3391 | size_t curNumCols = ( curNumRows > 0 ? m_data[0].GetCount() : |
3392 | ( GetView() ? GetView()->GetNumberCols() : 0 ) ); | |
8f177c8e | 3393 | |
f85afd4e MB |
3394 | if ( pos >= curNumRows ) |
3395 | { | |
3396 | return AppendRows( numRows ); | |
3397 | } | |
8f177c8e | 3398 | |
f85afd4e MB |
3399 | wxArrayString sa; |
3400 | sa.Alloc( curNumCols ); | |
27f35b66 SN |
3401 | sa.Add( wxEmptyString, curNumCols ); |
3402 | m_data.Insert( sa, pos, numRows ); | |
2f024384 | 3403 | |
f85afd4e MB |
3404 | if ( GetView() ) |
3405 | { | |
3406 | wxGridTableMessage msg( this, | |
3407 | wxGRIDTABLE_NOTIFY_ROWS_INSERTED, | |
3408 | pos, | |
3409 | numRows ); | |
8f177c8e | 3410 | |
f85afd4e MB |
3411 | GetView()->ProcessTableMessage( msg ); |
3412 | } | |
3413 | ||
ca65c044 | 3414 | return true; |
f85afd4e MB |
3415 | } |
3416 | ||
3417 | bool wxGridStringTable::AppendRows( size_t numRows ) | |
3418 | { | |
f85afd4e | 3419 | size_t curNumRows = m_data.GetCount(); |
4db6714b KH |
3420 | size_t curNumCols = ( curNumRows > 0 |
3421 | ? m_data[0].GetCount() | |
3422 | : ( GetView() ? GetView()->GetNumberCols() : 0 ) ); | |
8f177c8e | 3423 | |
f85afd4e MB |
3424 | wxArrayString sa; |
3425 | if ( curNumCols > 0 ) | |
3426 | { | |
3427 | sa.Alloc( curNumCols ); | |
27f35b66 | 3428 | sa.Add( wxEmptyString, curNumCols ); |
f85afd4e | 3429 | } |
8f177c8e | 3430 | |
27f35b66 | 3431 | m_data.Add( sa, numRows ); |
f85afd4e MB |
3432 | |
3433 | if ( GetView() ) | |
3434 | { | |
3435 | wxGridTableMessage msg( this, | |
3436 | wxGRIDTABLE_NOTIFY_ROWS_APPENDED, | |
3437 | numRows ); | |
8f177c8e | 3438 | |
f85afd4e MB |
3439 | GetView()->ProcessTableMessage( msg ); |
3440 | } | |
3441 | ||
ca65c044 | 3442 | return true; |
f85afd4e MB |
3443 | } |
3444 | ||
3445 | bool wxGridStringTable::DeleteRows( size_t pos, size_t numRows ) | |
3446 | { | |
f85afd4e | 3447 | size_t curNumRows = m_data.GetCount(); |
8f177c8e | 3448 | |
f85afd4e MB |
3449 | if ( pos >= curNumRows ) |
3450 | { | |
e91d2033 VZ |
3451 | wxFAIL_MSG( wxString::Format |
3452 | ( | |
3453 | wxT("Called wxGridStringTable::DeleteRows(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu rows"), | |
3454 | (unsigned long)pos, | |
3455 | (unsigned long)numRows, | |
3456 | (unsigned long)curNumRows | |
3457 | ) ); | |
3458 | ||
ca65c044 | 3459 | return false; |
f85afd4e MB |
3460 | } |
3461 | ||
3462 | if ( numRows > curNumRows - pos ) | |
3463 | { | |
3464 | numRows = curNumRows - pos; | |
3465 | } | |
8f177c8e | 3466 | |
f85afd4e MB |
3467 | if ( numRows >= curNumRows ) |
3468 | { | |
d57ad377 | 3469 | m_data.Clear(); |
f85afd4e MB |
3470 | } |
3471 | else | |
3472 | { | |
27f35b66 | 3473 | m_data.RemoveAt( pos, numRows ); |
f85afd4e | 3474 | } |
4db6714b | 3475 | |
f85afd4e MB |
3476 | if ( GetView() ) |
3477 | { | |
3478 | wxGridTableMessage msg( this, | |
3479 | wxGRIDTABLE_NOTIFY_ROWS_DELETED, | |
3480 | pos, | |
3481 | numRows ); | |
8f177c8e | 3482 | |
f85afd4e MB |
3483 | GetView()->ProcessTableMessage( msg ); |
3484 | } | |
3485 | ||
ca65c044 | 3486 | return true; |
f85afd4e MB |
3487 | } |
3488 | ||
3489 | bool wxGridStringTable::InsertCols( size_t pos, size_t numCols ) | |
3490 | { | |
3491 | size_t row, col; | |
3492 | ||
3493 | size_t curNumRows = m_data.GetCount(); | |
4db6714b KH |
3494 | size_t curNumCols = ( curNumRows > 0 |
3495 | ? m_data[0].GetCount() | |
3496 | : ( GetView() ? GetView()->GetNumberCols() : 0 ) ); | |
8f177c8e | 3497 | |
f85afd4e MB |
3498 | if ( pos >= curNumCols ) |
3499 | { | |
3500 | return AppendCols( numCols ); | |
3501 | } | |
3502 | ||
3d59537f | 3503 | for ( row = 0; row < curNumRows; row++ ) |
f85afd4e | 3504 | { |
3d59537f | 3505 | for ( col = pos; col < pos + numCols; col++ ) |
f85afd4e MB |
3506 | { |
3507 | m_data[row].Insert( wxEmptyString, col ); | |
3508 | } | |
3509 | } | |
4db6714b | 3510 | |
f85afd4e MB |
3511 | if ( GetView() ) |
3512 | { | |
3513 | wxGridTableMessage msg( this, | |
3514 | wxGRIDTABLE_NOTIFY_COLS_INSERTED, | |
3515 | pos, | |
3516 | numCols ); | |
8f177c8e | 3517 | |
f85afd4e MB |
3518 | GetView()->ProcessTableMessage( msg ); |
3519 | } | |
3520 | ||
ca65c044 | 3521 | return true; |
f85afd4e MB |
3522 | } |
3523 | ||
3524 | bool wxGridStringTable::AppendCols( size_t numCols ) | |
3525 | { | |
27f35b66 | 3526 | size_t row; |
f85afd4e MB |
3527 | |
3528 | size_t curNumRows = m_data.GetCount(); | |
2f024384 | 3529 | |
f6bcfd97 | 3530 | #if 0 |
f85afd4e MB |
3531 | if ( !curNumRows ) |
3532 | { | |
3533 | // TODO: something better than this ? | |
3534 | // | |
f6bcfd97 | 3535 | wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\nCall AppendRows() first") ); |
ca65c044 | 3536 | return false; |
f85afd4e | 3537 | } |
f6bcfd97 | 3538 | #endif |
8f177c8e | 3539 | |
3d59537f | 3540 | for ( row = 0; row < curNumRows; row++ ) |
f85afd4e | 3541 | { |
27f35b66 | 3542 | m_data[row].Add( wxEmptyString, numCols ); |
f85afd4e MB |
3543 | } |
3544 | ||
3545 | if ( GetView() ) | |
3546 | { | |
3547 | wxGridTableMessage msg( this, | |
3548 | wxGRIDTABLE_NOTIFY_COLS_APPENDED, | |
3549 | numCols ); | |
8f177c8e | 3550 | |
f85afd4e MB |
3551 | GetView()->ProcessTableMessage( msg ); |
3552 | } | |
3553 | ||
ca65c044 | 3554 | return true; |
f85afd4e MB |
3555 | } |
3556 | ||
3557 | bool wxGridStringTable::DeleteCols( size_t pos, size_t numCols ) | |
3558 | { | |
27f35b66 | 3559 | size_t row; |
f85afd4e MB |
3560 | |
3561 | size_t curNumRows = m_data.GetCount(); | |
f6bcfd97 BP |
3562 | size_t curNumCols = ( curNumRows > 0 ? m_data[0].GetCount() : |
3563 | ( GetView() ? GetView()->GetNumberCols() : 0 ) ); | |
8f177c8e | 3564 | |
f85afd4e MB |
3565 | if ( pos >= curNumCols ) |
3566 | { | |
e91d2033 VZ |
3567 | wxFAIL_MSG( wxString::Format |
3568 | ( | |
3569 | wxT("Called wxGridStringTable::DeleteCols(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu cols"), | |
3570 | (unsigned long)pos, | |
3571 | (unsigned long)numCols, | |
3572 | (unsigned long)curNumCols | |
3573 | ) ); | |
ca65c044 | 3574 | return false; |
f85afd4e MB |
3575 | } |
3576 | ||
3577 | if ( numCols > curNumCols - pos ) | |
3578 | { | |
8f177c8e | 3579 | numCols = curNumCols - pos; |
f85afd4e MB |
3580 | } |
3581 | ||
3d59537f | 3582 | for ( row = 0; row < curNumRows; row++ ) |
f85afd4e MB |
3583 | { |
3584 | if ( numCols >= curNumCols ) | |
3585 | { | |
dcdce64e | 3586 | m_data[row].Clear(); |
f85afd4e MB |
3587 | } |
3588 | else | |
3589 | { | |
27f35b66 | 3590 | m_data[row].RemoveAt( pos, numCols ); |
f85afd4e MB |
3591 | } |
3592 | } | |
4db6714b | 3593 | |
f85afd4e MB |
3594 | if ( GetView() ) |
3595 | { | |
3596 | wxGridTableMessage msg( this, | |
3597 | wxGRIDTABLE_NOTIFY_COLS_DELETED, | |
3598 | pos, | |
3599 | numCols ); | |
8f177c8e | 3600 | |
f85afd4e MB |
3601 | GetView()->ProcessTableMessage( msg ); |
3602 | } | |
3603 | ||
ca65c044 | 3604 | return true; |
f85afd4e MB |
3605 | } |
3606 | ||
3607 | wxString wxGridStringTable::GetRowLabelValue( int row ) | |
3608 | { | |
3609 | if ( row > (int)(m_rowLabels.GetCount()) - 1 ) | |
3610 | { | |
3611 | // using default label | |
3612 | // | |
3613 | return wxGridTableBase::GetRowLabelValue( row ); | |
3614 | } | |
3615 | else | |
3616 | { | |
2f024384 | 3617 | return m_rowLabels[row]; |
f85afd4e MB |
3618 | } |
3619 | } | |
3620 | ||
3621 | wxString wxGridStringTable::GetColLabelValue( int col ) | |
3622 | { | |
3623 | if ( col > (int)(m_colLabels.GetCount()) - 1 ) | |
3624 | { | |
3625 | // using default label | |
3626 | // | |
3627 | return wxGridTableBase::GetColLabelValue( col ); | |
3628 | } | |
3629 | else | |
3630 | { | |
2f024384 | 3631 | return m_colLabels[col]; |
f85afd4e MB |
3632 | } |
3633 | } | |
3634 | ||
3635 | void wxGridStringTable::SetRowLabelValue( int row, const wxString& value ) | |
3636 | { | |
3637 | if ( row > (int)(m_rowLabels.GetCount()) - 1 ) | |
3638 | { | |
3639 | int n = m_rowLabels.GetCount(); | |
3640 | int i; | |
2f024384 | 3641 | |
3d59537f | 3642 | for ( i = n; i <= row; i++ ) |
f85afd4e MB |
3643 | { |
3644 | m_rowLabels.Add( wxGridTableBase::GetRowLabelValue(i) ); | |
3645 | } | |
3646 | } | |
3647 | ||
3648 | m_rowLabels[row] = value; | |
3649 | } | |
3650 | ||
3651 | void wxGridStringTable::SetColLabelValue( int col, const wxString& value ) | |
3652 | { | |
3653 | if ( col > (int)(m_colLabels.GetCount()) - 1 ) | |
3654 | { | |
3655 | int n = m_colLabels.GetCount(); | |
3656 | int i; | |
2f024384 | 3657 | |
3d59537f | 3658 | for ( i = n; i <= col; i++ ) |
f85afd4e MB |
3659 | { |
3660 | m_colLabels.Add( wxGridTableBase::GetColLabelValue(i) ); | |
3661 | } | |
3662 | } | |
3663 | ||
3664 | m_colLabels[col] = value; | |
3665 | } | |
3666 | ||
3667 | ||
f85afd4e | 3668 | ////////////////////////////////////////////////////////////////////// |
2d66e025 MB |
3669 | ////////////////////////////////////////////////////////////////////// |
3670 | ||
3671 | IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow, wxWindow ) | |
3672 | ||
3673 | BEGIN_EVENT_TABLE( wxGridRowLabelWindow, wxWindow ) | |
3674 | EVT_PAINT( wxGridRowLabelWindow::OnPaint ) | |
a9339fe2 | 3675 | EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel ) |
2d66e025 MB |
3676 | EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent ) |
3677 | EVT_KEY_DOWN( wxGridRowLabelWindow::OnKeyDown ) | |
f6bcfd97 | 3678 | EVT_KEY_UP( wxGridRowLabelWindow::OnKeyUp ) |
a9339fe2 | 3679 | EVT_CHAR( wxGridRowLabelWindow::OnChar ) |
2d66e025 MB |
3680 | END_EVENT_TABLE() |
3681 | ||
60ff3b99 VZ |
3682 | wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid *parent, |
3683 | wxWindowID id, | |
2d66e025 | 3684 | const wxPoint &pos, const wxSize &size ) |
a9339fe2 | 3685 | : wxWindow( parent, id, pos, size, wxWANTS_CHARS | wxBORDER_NONE | wxFULL_REPAINT_ON_RESIZE ) |
2d66e025 MB |
3686 | { |
3687 | m_owner = parent; | |
3688 | } | |
3689 | ||
aa5e1f75 | 3690 | void wxGridRowLabelWindow::OnPaint( wxPaintEvent& WXUNUSED(event) ) |
2d66e025 MB |
3691 | { |
3692 | wxPaintDC dc(this); | |
3693 | ||
3694 | // NO - don't do this because it will set both the x and y origin | |
3695 | // coords to match the parent scrolled window and we just want to | |
3696 | // set the y coord - MB | |
3697 | // | |
3698 | // m_owner->PrepareDC( dc ); | |
60ff3b99 | 3699 | |
790ad94f | 3700 | int x, y; |
2d66e025 MB |
3701 | m_owner->CalcUnscrolledPosition( 0, 0, &x, &y ); |
3702 | dc.SetDeviceOrigin( 0, -y ); | |
60ff3b99 | 3703 | |
d10f4bf9 | 3704 | wxArrayInt rows = m_owner->CalcRowLabelsExposed( GetUpdateRegion() ); |
a9339fe2 | 3705 | m_owner->DrawRowLabels( dc, rows ); |
2d66e025 MB |
3706 | } |
3707 | ||
2d66e025 MB |
3708 | void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent& event ) |
3709 | { | |
3710 | m_owner->ProcessRowLabelMouseEvent( event ); | |
3711 | } | |
3712 | ||
b51c3f27 RD |
3713 | void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent& event ) |
3714 | { | |
a9339fe2 | 3715 | m_owner->GetEventHandler()->ProcessEvent( event ); |
b51c3f27 RD |
3716 | } |
3717 | ||
2d66e025 MB |
3718 | // This seems to be required for wxMotif otherwise the mouse |
3719 | // cursor must be in the cell edit control to get key events | |
3720 | // | |
3721 | void wxGridRowLabelWindow::OnKeyDown( wxKeyEvent& event ) | |
3722 | { | |
2f024384 DS |
3723 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
3724 | event.Skip(); | |
2d66e025 MB |
3725 | } |
3726 | ||
f6bcfd97 BP |
3727 | void wxGridRowLabelWindow::OnKeyUp( wxKeyEvent& event ) |
3728 | { | |
2f024384 DS |
3729 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
3730 | event.Skip(); | |
f6bcfd97 BP |
3731 | } |
3732 | ||
63e2147c RD |
3733 | void wxGridRowLabelWindow::OnChar( wxKeyEvent& event ) |
3734 | { | |
2f024384 DS |
3735 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
3736 | event.Skip(); | |
63e2147c RD |
3737 | } |
3738 | ||
2d66e025 MB |
3739 | ////////////////////////////////////////////////////////////////////// |
3740 | ||
3741 | IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow, wxWindow ) | |
3742 | ||
3743 | BEGIN_EVENT_TABLE( wxGridColLabelWindow, wxWindow ) | |
3744 | EVT_PAINT( wxGridColLabelWindow::OnPaint ) | |
a9339fe2 | 3745 | EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel ) |
2d66e025 MB |
3746 | EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent ) |
3747 | EVT_KEY_DOWN( wxGridColLabelWindow::OnKeyDown ) | |
f6bcfd97 | 3748 | EVT_KEY_UP( wxGridColLabelWindow::OnKeyUp ) |
a9339fe2 | 3749 | EVT_CHAR( wxGridColLabelWindow::OnChar ) |
2d66e025 MB |
3750 | END_EVENT_TABLE() |
3751 | ||
60ff3b99 VZ |
3752 | wxGridColLabelWindow::wxGridColLabelWindow( wxGrid *parent, |
3753 | wxWindowID id, | |
2d66e025 | 3754 | const wxPoint &pos, const wxSize &size ) |
a9339fe2 | 3755 | : wxWindow( parent, id, pos, size, wxWANTS_CHARS | wxBORDER_NONE | wxFULL_REPAINT_ON_RESIZE ) |
2d66e025 MB |
3756 | { |
3757 | m_owner = parent; | |
3758 | } | |
3759 | ||
aa5e1f75 | 3760 | void wxGridColLabelWindow::OnPaint( wxPaintEvent& WXUNUSED(event) ) |
2d66e025 MB |
3761 | { |
3762 | wxPaintDC dc(this); | |
3763 | ||
3764 | // NO - don't do this because it will set both the x and y origin | |
3765 | // coords to match the parent scrolled window and we just want to | |
3766 | // set the x coord - MB | |
3767 | // | |
3768 | // m_owner->PrepareDC( dc ); | |
60ff3b99 | 3769 | |
790ad94f | 3770 | int x, y; |
2d66e025 MB |
3771 | m_owner->CalcUnscrolledPosition( 0, 0, &x, &y ); |
3772 | dc.SetDeviceOrigin( -x, 0 ); | |
3773 | ||
d10f4bf9 | 3774 | wxArrayInt cols = m_owner->CalcColLabelsExposed( GetUpdateRegion() ); |
a9339fe2 | 3775 | m_owner->DrawColLabels( dc, cols ); |
2d66e025 MB |
3776 | } |
3777 | ||
2d66e025 MB |
3778 | void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent& event ) |
3779 | { | |
3780 | m_owner->ProcessColLabelMouseEvent( event ); | |
3781 | } | |
3782 | ||
b51c3f27 RD |
3783 | void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent& event ) |
3784 | { | |
a9339fe2 | 3785 | m_owner->GetEventHandler()->ProcessEvent( event ); |
b51c3f27 RD |
3786 | } |
3787 | ||
2d66e025 MB |
3788 | // This seems to be required for wxMotif otherwise the mouse |
3789 | // cursor must be in the cell edit control to get key events | |
3790 | // | |
3791 | void wxGridColLabelWindow::OnKeyDown( wxKeyEvent& event ) | |
3792 | { | |
4db6714b KH |
3793 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
3794 | event.Skip(); | |
2d66e025 MB |
3795 | } |
3796 | ||
f6bcfd97 BP |
3797 | void wxGridColLabelWindow::OnKeyUp( wxKeyEvent& event ) |
3798 | { | |
4db6714b KH |
3799 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
3800 | event.Skip(); | |
f6bcfd97 BP |
3801 | } |
3802 | ||
63e2147c RD |
3803 | void wxGridColLabelWindow::OnChar( wxKeyEvent& event ) |
3804 | { | |
4db6714b KH |
3805 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
3806 | event.Skip(); | |
63e2147c | 3807 | } |
2d66e025 | 3808 | |
2d66e025 MB |
3809 | ////////////////////////////////////////////////////////////////////// |
3810 | ||
3811 | IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow, wxWindow ) | |
3812 | ||
3813 | BEGIN_EVENT_TABLE( wxGridCornerLabelWindow, wxWindow ) | |
a9339fe2 | 3814 | EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel ) |
2d66e025 | 3815 | EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent ) |
a9339fe2 | 3816 | EVT_PAINT( wxGridCornerLabelWindow::OnPaint ) |
2d66e025 | 3817 | EVT_KEY_DOWN( wxGridCornerLabelWindow::OnKeyDown ) |
f6bcfd97 | 3818 | EVT_KEY_UP( wxGridCornerLabelWindow::OnKeyUp ) |
a9339fe2 | 3819 | EVT_CHAR( wxGridCornerLabelWindow::OnChar ) |
2d66e025 MB |
3820 | END_EVENT_TABLE() |
3821 | ||
60ff3b99 VZ |
3822 | wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid *parent, |
3823 | wxWindowID id, | |
2d66e025 | 3824 | const wxPoint &pos, const wxSize &size ) |
56b6cf26 | 3825 | : wxWindow( parent, id, pos, size, wxWANTS_CHARS | wxBORDER_NONE | wxFULL_REPAINT_ON_RESIZE ) |
2d66e025 MB |
3826 | { |
3827 | m_owner = parent; | |
3828 | } | |
3829 | ||
d2fdd8d2 RR |
3830 | void wxGridCornerLabelWindow::OnPaint( wxPaintEvent& WXUNUSED(event) ) |
3831 | { | |
3832 | wxPaintDC dc(this); | |
b99be8fb | 3833 | |
d2fdd8d2 RR |
3834 | int client_height = 0; |
3835 | int client_width = 0; | |
3836 | GetClientSize( &client_width, &client_height ); | |
b99be8fb | 3837 | |
11850ff3 VZ |
3838 | // VZ: any reason for this ifdef? (FIXME) |
3839 | #ifdef __WXGTK__ | |
4d1bc39c RR |
3840 | wxRect rect; |
3841 | rect.SetX( 1 ); | |
3842 | rect.SetY( 1 ); | |
3843 | rect.SetWidth( client_width - 2 ); | |
3844 | rect.SetHeight( client_height - 2 ); | |
ec157c8f | 3845 | |
4d1bc39c | 3846 | wxRendererNative::Get().DrawHeaderButton( this, dc, rect, 0 ); |
11850ff3 | 3847 | #else // !__WXGTK__ |
ccdee36f DS |
3848 | dc.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW), 1, wxSOLID) ); |
3849 | dc.DrawLine( client_width - 1, client_height - 1, client_width - 1, 0 ); | |
3850 | dc.DrawLine( client_width - 1, client_height - 1, 0, client_height - 1 ); | |
d2fdd8d2 RR |
3851 | dc.DrawLine( 0, 0, client_width, 0 ); |
3852 | dc.DrawLine( 0, 0, 0, client_height ); | |
73145b0e JS |
3853 | |
3854 | dc.SetPen( *wxWHITE_PEN ); | |
ccdee36f DS |
3855 | dc.DrawLine( 1, 1, client_width - 1, 1 ); |
3856 | dc.DrawLine( 1, 1, 1, client_height - 1 ); | |
3857 | #endif | |
d2fdd8d2 RR |
3858 | } |
3859 | ||
2d66e025 MB |
3860 | void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent& event ) |
3861 | { | |
3862 | m_owner->ProcessCornerLabelMouseEvent( event ); | |
3863 | } | |
3864 | ||
b51c3f27 RD |
3865 | void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent& event ) |
3866 | { | |
3867 | m_owner->GetEventHandler()->ProcessEvent(event); | |
3868 | } | |
3869 | ||
2d66e025 MB |
3870 | // This seems to be required for wxMotif otherwise the mouse |
3871 | // cursor must be in the cell edit control to get key events | |
3872 | // | |
3873 | void wxGridCornerLabelWindow::OnKeyDown( wxKeyEvent& event ) | |
3874 | { | |
2f024384 DS |
3875 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
3876 | event.Skip(); | |
2d66e025 MB |
3877 | } |
3878 | ||
f6bcfd97 BP |
3879 | void wxGridCornerLabelWindow::OnKeyUp( wxKeyEvent& event ) |
3880 | { | |
2f024384 DS |
3881 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
3882 | event.Skip(); | |
f6bcfd97 BP |
3883 | } |
3884 | ||
63e2147c RD |
3885 | void wxGridCornerLabelWindow::OnChar( wxKeyEvent& event ) |
3886 | { | |
2f024384 DS |
3887 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
3888 | event.Skip(); | |
63e2147c | 3889 | } |
2d66e025 | 3890 | |
f85afd4e MB |
3891 | ////////////////////////////////////////////////////////////////////// |
3892 | ||
59ddac01 | 3893 | IMPLEMENT_DYNAMIC_CLASS( wxGridWindow, wxWindow ) |
2d66e025 | 3894 | |
59ddac01 | 3895 | BEGIN_EVENT_TABLE( wxGridWindow, wxWindow ) |
2d66e025 | 3896 | EVT_PAINT( wxGridWindow::OnPaint ) |
a9339fe2 | 3897 | EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel ) |
2d66e025 MB |
3898 | EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent ) |
3899 | EVT_KEY_DOWN( wxGridWindow::OnKeyDown ) | |
f6bcfd97 | 3900 | EVT_KEY_UP( wxGridWindow::OnKeyUp ) |
a9339fe2 | 3901 | EVT_CHAR( wxGridWindow::OnChar ) |
80acaf25 JS |
3902 | EVT_SET_FOCUS( wxGridWindow::OnFocus ) |
3903 | EVT_KILL_FOCUS( wxGridWindow::OnFocus ) | |
2796cce3 | 3904 | EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground ) |
2d66e025 MB |
3905 | END_EVENT_TABLE() |
3906 | ||
60ff3b99 VZ |
3907 | wxGridWindow::wxGridWindow( wxGrid *parent, |
3908 | wxGridRowLabelWindow *rowLblWin, | |
2d66e025 | 3909 | wxGridColLabelWindow *colLblWin, |
04418332 VZ |
3910 | wxWindowID id, |
3911 | const wxPoint &pos, | |
3912 | const wxSize &size ) | |
ccdee36f DS |
3913 | : wxWindow( |
3914 | parent, id, pos, size, | |
3915 | wxWANTS_CHARS | wxBORDER_NONE | wxCLIP_CHILDREN | wxFULL_REPAINT_ON_RESIZE, | |
3916 | wxT("grid window") ) | |
2d66e025 MB |
3917 | { |
3918 | m_owner = parent; | |
3919 | m_rowLabelWin = rowLblWin; | |
3920 | m_colLabelWin = colLblWin; | |
2d66e025 MB |
3921 | } |
3922 | ||
2d66e025 MB |
3923 | void wxGridWindow::OnPaint( wxPaintEvent &WXUNUSED(event) ) |
3924 | { | |
3925 | wxPaintDC dc( this ); | |
3926 | m_owner->PrepareDC( dc ); | |
796df70a | 3927 | wxRegion reg = GetUpdateRegion(); |
ccdee36f DS |
3928 | wxGridCellCoordsArray dirtyCells = m_owner->CalcCellsExposed( reg ); |
3929 | m_owner->DrawGridCellArea( dc, dirtyCells ); | |
2f024384 | 3930 | |
9496deb5 | 3931 | #if WXGRID_DRAW_LINES |
796df70a SN |
3932 | m_owner->DrawAllGridLines( dc, reg ); |
3933 | #endif | |
2f024384 | 3934 | |
a5777624 | 3935 | m_owner->DrawGridSpace( dc ); |
ccdee36f | 3936 | m_owner->DrawHighlight( dc, dirtyCells ); |
2d66e025 MB |
3937 | } |
3938 | ||
2d66e025 MB |
3939 | void wxGridWindow::ScrollWindow( int dx, int dy, const wxRect *rect ) |
3940 | { | |
59ddac01 | 3941 | wxWindow::ScrollWindow( dx, dy, rect ); |
2d66e025 MB |
3942 | m_rowLabelWin->ScrollWindow( 0, dy, rect ); |
3943 | m_colLabelWin->ScrollWindow( dx, 0, rect ); | |
3944 | } | |
3945 | ||
2d66e025 MB |
3946 | void wxGridWindow::OnMouseEvent( wxMouseEvent& event ) |
3947 | { | |
33e9fc54 RD |
3948 | if (event.ButtonDown(wxMOUSE_BTN_LEFT) && FindFocus() != this) |
3949 | SetFocus(); | |
902725ee | 3950 | |
2d66e025 MB |
3951 | m_owner->ProcessGridCellMouseEvent( event ); |
3952 | } | |
3953 | ||
b51c3f27 RD |
3954 | void wxGridWindow::OnMouseWheel( wxMouseEvent& event ) |
3955 | { | |
a9339fe2 | 3956 | m_owner->GetEventHandler()->ProcessEvent( event ); |
b51c3f27 | 3957 | } |
2d66e025 | 3958 | |
f6bcfd97 | 3959 | // This seems to be required for wxMotif/wxGTK otherwise the mouse |
2d66e025 MB |
3960 | // cursor must be in the cell edit control to get key events |
3961 | // | |
3962 | void wxGridWindow::OnKeyDown( wxKeyEvent& event ) | |
3963 | { | |
4db6714b KH |
3964 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
3965 | event.Skip(); | |
2d66e025 | 3966 | } |
f85afd4e | 3967 | |
f6bcfd97 BP |
3968 | void wxGridWindow::OnKeyUp( wxKeyEvent& event ) |
3969 | { | |
4db6714b KH |
3970 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
3971 | event.Skip(); | |
f6bcfd97 | 3972 | } |
7c8a8ad5 | 3973 | |
63e2147c RD |
3974 | void wxGridWindow::OnChar( wxKeyEvent& event ) |
3975 | { | |
4db6714b KH |
3976 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
3977 | event.Skip(); | |
63e2147c RD |
3978 | } |
3979 | ||
aa5e1f75 | 3980 | void wxGridWindow::OnEraseBackground( wxEraseEvent& WXUNUSED(event) ) |
8dd4f536 | 3981 | { |
8dd4f536 | 3982 | } |
025562fe | 3983 | |
80acaf25 JS |
3984 | void wxGridWindow::OnFocus(wxFocusEvent& event) |
3985 | { | |
3986 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) | |
3987 | event.Skip(); | |
3988 | } | |
2d66e025 MB |
3989 | |
3990 | ////////////////////////////////////////////////////////////////////// | |
3991 | ||
33188aa4 SN |
3992 | // Internal Helper function for computing row or column from some |
3993 | // (unscrolled) coordinate value, using either | |
70e8d961 | 3994 | // m_defaultRowHeight/m_defaultColWidth or binary search on array |
33188aa4 SN |
3995 | // of m_rowBottoms/m_ColRights to speed up the search! |
3996 | ||
3997 | // Internal helper macros for simpler use of that function | |
3998 | ||
3999 | static int CoordToRowOrCol(int coord, int defaultDist, int minDist, | |
64e15340 | 4000 | const wxArrayInt& BorderArray, int nMax, |
a967f048 | 4001 | bool clipToMinMax); |
33188aa4 SN |
4002 | |
4003 | #define internalXToCol(x) CoordToRowOrCol(x, m_defaultColWidth, \ | |
b8d24d4e | 4004 | m_minAcceptableColWidth, \ |
ca65c044 | 4005 | m_colRights, m_numCols, true) |
33188aa4 | 4006 | #define internalYToRow(y) CoordToRowOrCol(y, m_defaultRowHeight, \ |
b8d24d4e | 4007 | m_minAcceptableRowHeight, \ |
ca65c044 | 4008 | m_rowBottoms, m_numRows, true) |
ccdee36f | 4009 | |
33188aa4 | 4010 | ///////////////////////////////////////////////////////////////////// |
07296f0b | 4011 | |
b0a877ec | 4012 | #if wxUSE_EXTENDED_RTTI |
73c36334 JS |
4013 | WX_DEFINE_FLAGS( wxGridStyle ) |
4014 | ||
3ff066a4 | 4015 | wxBEGIN_FLAGS( wxGridStyle ) |
73c36334 JS |
4016 | // new style border flags, we put them first to |
4017 | // use them for streaming out | |
3ff066a4 SC |
4018 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) |
4019 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
4020 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
4021 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
4022 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
4023 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
ca65c044 | 4024 | |
73c36334 | 4025 | // old style border flags |
3ff066a4 SC |
4026 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) |
4027 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
4028 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
4029 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
4030 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
cb0afb26 | 4031 | wxFLAGS_MEMBER(wxBORDER) |
73c36334 JS |
4032 | |
4033 | // standard window styles | |
3ff066a4 SC |
4034 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) |
4035 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
4036 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
4037 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
cb0afb26 | 4038 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) |
ccdee36f | 4039 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB) |
3ff066a4 SC |
4040 | wxFLAGS_MEMBER(wxVSCROLL) |
4041 | wxFLAGS_MEMBER(wxHSCROLL) | |
73c36334 | 4042 | |
3ff066a4 | 4043 | wxEND_FLAGS( wxGridStyle ) |
73c36334 | 4044 | |
b0a877ec SC |
4045 | IMPLEMENT_DYNAMIC_CLASS_XTI(wxGrid, wxScrolledWindow,"wx/grid.h") |
4046 | ||
3ff066a4 SC |
4047 | wxBEGIN_PROPERTIES_TABLE(wxGrid) |
4048 | wxHIDE_PROPERTY( Children ) | |
af498247 | 4049 | wxPROPERTY_FLAGS( WindowStyle , wxGridStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style |
3ff066a4 | 4050 | wxEND_PROPERTIES_TABLE() |
b0a877ec | 4051 | |
3ff066a4 SC |
4052 | wxBEGIN_HANDLERS_TABLE(wxGrid) |
4053 | wxEND_HANDLERS_TABLE() | |
b0a877ec | 4054 | |
ca65c044 | 4055 | wxCONSTRUCTOR_5( wxGrid , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle ) |
b0a877ec SC |
4056 | |
4057 | /* | |
ccdee36f | 4058 | TODO : Expose more information of a list's layout, etc. via appropriate objects (e.g., NotebookPageInfo) |
b0a877ec SC |
4059 | */ |
4060 | #else | |
2d66e025 | 4061 | IMPLEMENT_DYNAMIC_CLASS( wxGrid, wxScrolledWindow ) |
b0a877ec | 4062 | #endif |
2d66e025 MB |
4063 | |
4064 | BEGIN_EVENT_TABLE( wxGrid, wxScrolledWindow ) | |
f85afd4e MB |
4065 | EVT_PAINT( wxGrid::OnPaint ) |
4066 | EVT_SIZE( wxGrid::OnSize ) | |
f85afd4e | 4067 | EVT_KEY_DOWN( wxGrid::OnKeyDown ) |
f6bcfd97 | 4068 | EVT_KEY_UP( wxGrid::OnKeyUp ) |
63e2147c | 4069 | EVT_CHAR ( wxGrid::OnChar ) |
2796cce3 | 4070 | EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground ) |
f85afd4e | 4071 | END_EVENT_TABLE() |
8f177c8e | 4072 | |
b0a877ec SC |
4073 | wxGrid::wxGrid() |
4074 | { | |
4075 | // in order to make sure that a size event is not | |
4076 | // trigerred in a unfinished state | |
2f024384 DS |
4077 | m_cornerLabelWin = NULL; |
4078 | m_rowLabelWin = NULL; | |
4079 | m_colLabelWin = NULL; | |
4080 | m_gridWin = NULL; | |
b0a877ec SC |
4081 | } |
4082 | ||
2d66e025 MB |
4083 | wxGrid::wxGrid( wxWindow *parent, |
4084 | wxWindowID id, | |
4085 | const wxPoint& pos, | |
4086 | const wxSize& size, | |
4087 | long style, | |
4088 | const wxString& name ) | |
ebd773c6 | 4089 | : wxScrolledWindow( parent, id, pos, size, (style | wxWANTS_CHARS), name ), |
af547d51 VZ |
4090 | m_colMinWidths(GRID_HASH_SIZE), |
4091 | m_rowMinHeights(GRID_HASH_SIZE) | |
2d66e025 MB |
4092 | { |
4093 | Create(); | |
5a9b107d | 4094 | SetBestFittingSize(size); |
58dd5b3b MB |
4095 | } |
4096 | ||
b0a877ec SC |
4097 | bool wxGrid::Create(wxWindow *parent, wxWindowID id, |
4098 | const wxPoint& pos, const wxSize& size, | |
4099 | long style, const wxString& name) | |
4100 | { | |
4101 | if (!wxScrolledWindow::Create(parent, id, pos, size, | |
4102 | style | wxWANTS_CHARS , name)) | |
ca65c044 | 4103 | return false; |
b0a877ec | 4104 | |
2f024384 DS |
4105 | m_colMinWidths = wxLongToLongHashMap(GRID_HASH_SIZE); |
4106 | m_rowMinHeights = wxLongToLongHashMap(GRID_HASH_SIZE); | |
b0a877ec | 4107 | |
2f024384 | 4108 | Create(); |
5a9b107d | 4109 | SetBestFittingSize(size); |
b0a877ec | 4110 | |
ca65c044 | 4111 | return true; |
b0a877ec SC |
4112 | } |
4113 | ||
58dd5b3b MB |
4114 | wxGrid::~wxGrid() |
4115 | { | |
606b005f JS |
4116 | // Must do this or ~wxScrollHelper will pop the wrong event handler |
4117 | SetTargetWindow(this); | |
0a976765 | 4118 | ClearAttrCache(); |
39bcce60 | 4119 | wxSafeDecRef(m_defaultCellAttr); |
0a976765 VZ |
4120 | |
4121 | #ifdef DEBUG_ATTR_CACHE | |
4122 | size_t total = gs_nAttrCacheHits + gs_nAttrCacheMisses; | |
4123 | wxPrintf(_T("wxGrid attribute cache statistics: " | |
4124 | "total: %u, hits: %u (%u%%)\n"), | |
4125 | total, gs_nAttrCacheHits, | |
4126 | total ? (gs_nAttrCacheHits*100) / total : 0); | |
4127 | #endif | |
4128 | ||
2796cce3 RD |
4129 | if (m_ownTable) |
4130 | delete m_table; | |
f2d76237 RD |
4131 | |
4132 | delete m_typeRegistry; | |
b5808881 | 4133 | delete m_selection; |
58dd5b3b MB |
4134 | } |
4135 | ||
58dd5b3b MB |
4136 | // |
4137 | // ----- internal init and update functions | |
4138 | // | |
4139 | ||
9950649c RD |
4140 | // NOTE: If using the default visual attributes works everywhere then this can |
4141 | // be removed as well as the #else cases below. | |
4142 | #define _USE_VISATTR 0 | |
4143 | ||
944b1f5e RD |
4144 | #if _USE_VISATTR |
4145 | #include "wx/listbox.h" | |
4146 | #endif | |
4147 | ||
58dd5b3b | 4148 | void wxGrid::Create() |
f0102d2a | 4149 | { |
3d59537f DS |
4150 | // set to true by CreateGrid |
4151 | m_created = false; | |
4634a5d6 | 4152 | |
3d59537f DS |
4153 | // create the type registry |
4154 | m_typeRegistry = new wxGridTypeRegistry; | |
4155 | m_selection = NULL; | |
4156 | ||
4157 | m_table = (wxGridTableBase *) NULL; | |
4158 | m_ownTable = false; | |
2c9a89e0 | 4159 | |
ca65c044 | 4160 | m_cellEditCtrlEnabled = false; |
4634a5d6 | 4161 | |
ccd970b1 | 4162 | m_defaultCellAttr = new wxGridCellAttr(); |
f2d76237 RD |
4163 | |
4164 | // Set default cell attributes | |
ccd970b1 | 4165 | m_defaultCellAttr->SetDefAttr(m_defaultCellAttr); |
19d7140e | 4166 | m_defaultCellAttr->SetKind(wxGridCellAttr::Default); |
f2d76237 | 4167 | m_defaultCellAttr->SetFont(GetFont()); |
4c7277db | 4168 | m_defaultCellAttr->SetAlignment(wxALIGN_LEFT, wxALIGN_TOP); |
9950649c RD |
4169 | m_defaultCellAttr->SetRenderer(new wxGridCellStringRenderer); |
4170 | m_defaultCellAttr->SetEditor(new wxGridCellTextEditor); | |
4171 | ||
4172 | #if _USE_VISATTR | |
4173 | wxVisualAttributes gva = wxListBox::GetClassDefaultAttributes(); | |
4174 | wxVisualAttributes lva = wxPanel::GetClassDefaultAttributes(); | |
4175 | ||
4176 | m_defaultCellAttr->SetTextColour(gva.colFg); | |
4177 | m_defaultCellAttr->SetBackgroundColour(gva.colBg); | |
ca65c044 | 4178 | |
9950649c | 4179 | #else |
f2d76237 | 4180 | m_defaultCellAttr->SetTextColour( |
a756f210 | 4181 | wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT)); |
f2d76237 | 4182 | m_defaultCellAttr->SetBackgroundColour( |
a756f210 | 4183 | wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); |
9950649c | 4184 | #endif |
2796cce3 | 4185 | |
4634a5d6 MB |
4186 | m_numRows = 0; |
4187 | m_numCols = 0; | |
4188 | m_currentCellCoords = wxGridNoCellCoords; | |
b99be8fb | 4189 | |
18f9565d MB |
4190 | m_rowLabelWidth = WXGRID_DEFAULT_ROW_LABEL_WIDTH; |
4191 | m_colLabelHeight = WXGRID_DEFAULT_COL_LABEL_HEIGHT; | |
2d66e025 | 4192 | |
f2d76237 | 4193 | // subwindow components that make up the wxGrid |
60ff3b99 | 4194 | m_rowLabelWin = new wxGridRowLabelWindow( this, |
ca65c044 | 4195 | wxID_ANY, |
18f9565d MB |
4196 | wxDefaultPosition, |
4197 | wxDefaultSize ); | |
2d66e025 MB |
4198 | |
4199 | m_colLabelWin = new wxGridColLabelWindow( this, | |
ca65c044 | 4200 | wxID_ANY, |
18f9565d MB |
4201 | wxDefaultPosition, |
4202 | wxDefaultSize ); | |
60ff3b99 | 4203 | |
3d59537f DS |
4204 | m_cornerLabelWin = new wxGridCornerLabelWindow( this, |
4205 | wxID_ANY, | |
4206 | wxDefaultPosition, | |
4207 | wxDefaultSize ); | |
4208 | ||
60ff3b99 VZ |
4209 | m_gridWin = new wxGridWindow( this, |
4210 | m_rowLabelWin, | |
4211 | m_colLabelWin, | |
ca65c044 | 4212 | wxID_ANY, |
18f9565d | 4213 | wxDefaultPosition, |
2d66e025 MB |
4214 | wxDefaultSize ); |
4215 | ||
4216 | SetTargetWindow( m_gridWin ); | |
6f36917b | 4217 | |
9950649c RD |
4218 | #if _USE_VISATTR |
4219 | wxColour gfg = gva.colFg; | |
4220 | wxColour gbg = gva.colBg; | |
4221 | wxColour lfg = lva.colFg; | |
4222 | wxColour lbg = lva.colBg; | |
4223 | #else | |
4224 | wxColour gfg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT ); | |
4225 | wxColour gbg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW ); | |
4226 | wxColour lfg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT ); | |
4227 | wxColour lbg = wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE ); | |
4228 | #endif | |
2f024384 | 4229 | |
fa47d7a7 VS |
4230 | m_cornerLabelWin->SetOwnForegroundColour(lfg); |
4231 | m_cornerLabelWin->SetOwnBackgroundColour(lbg); | |
4232 | m_rowLabelWin->SetOwnForegroundColour(lfg); | |
4233 | m_rowLabelWin->SetOwnBackgroundColour(lbg); | |
4234 | m_colLabelWin->SetOwnForegroundColour(lfg); | |
4235 | m_colLabelWin->SetOwnBackgroundColour(lbg); | |
4236 | ||
4237 | m_gridWin->SetOwnForegroundColour(gfg); | |
4238 | m_gridWin->SetOwnBackgroundColour(gbg); | |
ca65c044 | 4239 | |
6f36917b | 4240 | Init(); |
2d66e025 | 4241 | } |
f85afd4e | 4242 | |
b5808881 SN |
4243 | bool wxGrid::CreateGrid( int numRows, int numCols, |
4244 | wxGrid::wxGridSelectionModes selmode ) | |
2d66e025 | 4245 | { |
f6bcfd97 | 4246 | wxCHECK_MSG( !m_created, |
ca65c044 | 4247 | false, |
f6bcfd97 BP |
4248 | wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") ); |
4249 | ||
4250 | m_numRows = numRows; | |
4251 | m_numCols = numCols; | |
4252 | ||
4253 | m_table = new wxGridStringTable( m_numRows, m_numCols ); | |
4254 | m_table->SetView( this ); | |
ca65c044 | 4255 | m_ownTable = true; |
f6bcfd97 | 4256 | m_selection = new wxGridSelection( this, selmode ); |
6f36917b VZ |
4257 | |
4258 | CalcDimensions(); | |
4259 | ||
ca65c044 | 4260 | m_created = true; |
2d66e025 | 4261 | |
2796cce3 RD |
4262 | return m_created; |
4263 | } | |
4264 | ||
f1567cdd SN |
4265 | void wxGrid::SetSelectionMode(wxGrid::wxGridSelectionModes selmode) |
4266 | { | |
6f36917b VZ |
4267 | wxCHECK_RET( m_created, |
4268 | wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") ); | |
4269 | ||
4270 | m_selection->SetSelectionMode( selmode ); | |
f1567cdd SN |
4271 | } |
4272 | ||
aa5b8857 SN |
4273 | wxGrid::wxGridSelectionModes wxGrid::GetSelectionMode() const |
4274 | { | |
4275 | wxCHECK_MSG( m_created, wxGrid::wxGridSelectCells, | |
4276 | wxT("Called wxGrid::GetSelectionMode() before calling CreateGrid()") ); | |
4277 | ||
4278 | return m_selection->GetSelectionMode(); | |
4279 | } | |
4280 | ||
043d16b2 SN |
4281 | bool wxGrid::SetTable( wxGridTableBase *table, bool takeOwnership, |
4282 | wxGrid::wxGridSelectionModes selmode ) | |
2796cce3 RD |
4283 | { |
4284 | if ( m_created ) | |
4285 | { | |
3e13956a | 4286 | // stop all processing |
ca65c044 | 4287 | m_created = false; |
86c7378f SN |
4288 | |
4289 | if (m_ownTable) | |
4290 | { | |
5b061713 DS |
4291 | wxGridTableBase *t = m_table; |
4292 | m_table = NULL; | |
3e13956a | 4293 | delete t; |
86c7378f | 4294 | } |
2f024384 | 4295 | |
3e13956a RD |
4296 | delete m_selection; |
4297 | ||
5b061713 DS |
4298 | m_table = NULL; |
4299 | m_selection = NULL; | |
2f024384 DS |
4300 | m_numRows = 0; |
4301 | m_numCols = 0; | |
233a54f6 | 4302 | } |
2f024384 | 4303 | |
233a54f6 | 4304 | if (table) |
2796cce3 RD |
4305 | { |
4306 | m_numRows = table->GetNumberRows(); | |
4307 | m_numCols = table->GetNumberCols(); | |
4308 | ||
4309 | m_table = table; | |
4310 | m_table->SetView( this ); | |
8fc856de | 4311 | m_ownTable = takeOwnership; |
043d16b2 | 4312 | m_selection = new wxGridSelection( this, selmode ); |
6f36917b VZ |
4313 | |
4314 | CalcDimensions(); | |
4315 | ||
ca65c044 | 4316 | m_created = true; |
2d66e025 | 4317 | } |
f85afd4e | 4318 | |
2d66e025 | 4319 | return m_created; |
f85afd4e MB |
4320 | } |
4321 | ||
4322 | void wxGrid::Init() | |
4323 | { | |
f85afd4e MB |
4324 | m_rowLabelWidth = WXGRID_DEFAULT_ROW_LABEL_WIDTH; |
4325 | m_colLabelHeight = WXGRID_DEFAULT_COL_LABEL_HEIGHT; | |
4326 | ||
60ff3b99 VZ |
4327 | if ( m_rowLabelWin ) |
4328 | { | |
4329 | m_labelBackgroundColour = m_rowLabelWin->GetBackgroundColour(); | |
4330 | } | |
4331 | else | |
4332 | { | |
b0fa2187 | 4333 | m_labelBackgroundColour = *wxWHITE; |
60ff3b99 VZ |
4334 | } |
4335 | ||
b0fa2187 | 4336 | m_labelTextColour = *wxBLACK; |
f85afd4e | 4337 | |
0a976765 VZ |
4338 | // init attr cache |
4339 | m_attrCache.row = -1; | |
2b5f62a0 VZ |
4340 | m_attrCache.col = -1; |
4341 | m_attrCache.attr = NULL; | |
0a976765 | 4342 | |
f85afd4e MB |
4343 | // TODO: something better than this ? |
4344 | // | |
4345 | m_labelFont = this->GetFont(); | |
52d6f640 | 4346 | m_labelFont.SetWeight( wxBOLD ); |
8f177c8e | 4347 | |
73145b0e | 4348 | m_rowLabelHorizAlign = wxALIGN_CENTRE; |
4c7277db | 4349 | m_rowLabelVertAlign = wxALIGN_CENTRE; |
f85afd4e | 4350 | |
4c7277db | 4351 | m_colLabelHorizAlign = wxALIGN_CENTRE; |
73145b0e | 4352 | m_colLabelVertAlign = wxALIGN_CENTRE; |
d43851f7 | 4353 | m_colLabelTextOrientation = wxHORIZONTAL; |
f85afd4e | 4354 | |
f85afd4e | 4355 | m_defaultColWidth = WXGRID_DEFAULT_COL_WIDTH; |
1f1ce288 MB |
4356 | m_defaultRowHeight = m_gridWin->GetCharHeight(); |
4357 | ||
b8d24d4e RG |
4358 | m_minAcceptableColWidth = WXGRID_MIN_COL_WIDTH; |
4359 | m_minAcceptableRowHeight = WXGRID_MIN_ROW_HEIGHT; | |
4360 | ||
d2fdd8d2 | 4361 | #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl() |
1f1ce288 MB |
4362 | m_defaultRowHeight += 8; |
4363 | #else | |
4364 | m_defaultRowHeight += 4; | |
4365 | #endif | |
4366 | ||
73145b0e | 4367 | m_gridLineColour = wxColour( 192,192,192 ); |
ca65c044 | 4368 | m_gridLinesEnabled = true; |
73145b0e | 4369 | m_cellHighlightColour = *wxBLACK; |
bf7945ce | 4370 | m_cellHighlightPenWidth = 2; |
d2520c85 | 4371 | m_cellHighlightROPenWidth = 1; |
8f177c8e | 4372 | |
58dd5b3b | 4373 | m_cursorMode = WXGRID_CURSOR_SELECT_CELL; |
e2b42eeb | 4374 | m_winCapture = (wxWindow *)NULL; |
ca65c044 WS |
4375 | m_canDragRowSize = true; |
4376 | m_canDragColSize = true; | |
4377 | m_canDragGridSize = true; | |
79dbea21 | 4378 | m_canDragCell = false; |
f85afd4e MB |
4379 | m_dragLastPos = -1; |
4380 | m_dragRowOrCol = -1; | |
ca65c044 | 4381 | m_isDragging = false; |
07296f0b | 4382 | m_startDragPos = wxDefaultPosition; |
f85afd4e | 4383 | |
ca65c044 | 4384 | m_waitForSlowClick = false; |
025562fe | 4385 | |
f85afd4e MB |
4386 | m_rowResizeCursor = wxCursor( wxCURSOR_SIZENS ); |
4387 | m_colResizeCursor = wxCursor( wxCURSOR_SIZEWE ); | |
4388 | ||
4389 | m_currentCellCoords = wxGridNoCellCoords; | |
f85afd4e | 4390 | |
b5808881 SN |
4391 | m_selectingTopLeft = wxGridNoCellCoords; |
4392 | m_selectingBottomRight = wxGridNoCellCoords; | |
d43851f7 JS |
4393 | m_selectionBackground = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT); |
4394 | m_selectionForeground = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT); | |
8f177c8e | 4395 | |
ca65c044 | 4396 | m_editable = true; // default for whole grid |
f85afd4e | 4397 | |
ca65c044 | 4398 | m_inOnKeyDown = false; |
2d66e025 | 4399 | m_batchCount = 0; |
3c79cf49 | 4400 | |
266e8367 | 4401 | m_extraWidth = |
526dbb95 | 4402 | m_extraHeight = 0; |
608754c4 JS |
4403 | |
4404 | m_scrollLineX = GRID_SCROLL_LINE_X; | |
4405 | m_scrollLineY = GRID_SCROLL_LINE_Y; | |
7c1cb261 VZ |
4406 | } |
4407 | ||
4408 | // ---------------------------------------------------------------------------- | |
4409 | // the idea is to call these functions only when necessary because they create | |
4410 | // quite big arrays which eat memory mostly unnecessary - in particular, if | |
4411 | // default widths/heights are used for all rows/columns, we may not use these | |
4412 | // arrays at all | |
4413 | // | |
4414 | // with some extra code, it should be possible to only store the | |
4415 | // widths/heights different from default ones but this will be done later... | |
4416 | // ---------------------------------------------------------------------------- | |
4417 | ||
4418 | void wxGrid::InitRowHeights() | |
4419 | { | |
4420 | m_rowHeights.Empty(); | |
4421 | m_rowBottoms.Empty(); | |
4422 | ||
4423 | m_rowHeights.Alloc( m_numRows ); | |
4424 | m_rowBottoms.Alloc( m_numRows ); | |
4425 | ||
4426 | int rowBottom = 0; | |
2b5f62a0 | 4427 | |
27f35b66 SN |
4428 | m_rowHeights.Add( m_defaultRowHeight, m_numRows ); |
4429 | ||
3d59537f | 4430 | for ( int i = 0; i < m_numRows; i++ ) |
7c1cb261 | 4431 | { |
7c1cb261 VZ |
4432 | rowBottom += m_defaultRowHeight; |
4433 | m_rowBottoms.Add( rowBottom ); | |
4434 | } | |
4435 | } | |
4436 | ||
4437 | void wxGrid::InitColWidths() | |
4438 | { | |
4439 | m_colWidths.Empty(); | |
4440 | m_colRights.Empty(); | |
4441 | ||
4442 | m_colWidths.Alloc( m_numCols ); | |
4443 | m_colRights.Alloc( m_numCols ); | |
4444 | int colRight = 0; | |
27f35b66 SN |
4445 | |
4446 | m_colWidths.Add( m_defaultColWidth, m_numCols ); | |
4447 | ||
3d59537f | 4448 | for ( int i = 0; i < m_numCols; i++ ) |
7c1cb261 | 4449 | { |
7c1cb261 VZ |
4450 | colRight += m_defaultColWidth; |
4451 | m_colRights.Add( colRight ); | |
4452 | } | |
4453 | } | |
4454 | ||
4455 | int wxGrid::GetColWidth(int col) const | |
4456 | { | |
4457 | return m_colWidths.IsEmpty() ? m_defaultColWidth : m_colWidths[col]; | |
4458 | } | |
4459 | ||
4460 | int wxGrid::GetColLeft(int col) const | |
4461 | { | |
4462 | return m_colRights.IsEmpty() ? col * m_defaultColWidth | |
4463 | : m_colRights[col] - m_colWidths[col]; | |
4464 | } | |
4465 | ||
4466 | int wxGrid::GetColRight(int col) const | |
4467 | { | |
4468 | return m_colRights.IsEmpty() ? (col + 1) * m_defaultColWidth | |
4469 | : m_colRights[col]; | |
4470 | } | |
4471 | ||
4472 | int wxGrid::GetRowHeight(int row) const | |
4473 | { | |
4474 | return m_rowHeights.IsEmpty() ? m_defaultRowHeight : m_rowHeights[row]; | |
4475 | } | |
2d66e025 | 4476 | |
7c1cb261 VZ |
4477 | int wxGrid::GetRowTop(int row) const |
4478 | { | |
4479 | return m_rowBottoms.IsEmpty() ? row * m_defaultRowHeight | |
4480 | : m_rowBottoms[row] - m_rowHeights[row]; | |
f85afd4e MB |
4481 | } |
4482 | ||
7c1cb261 VZ |
4483 | int wxGrid::GetRowBottom(int row) const |
4484 | { | |
4485 | return m_rowBottoms.IsEmpty() ? (row + 1) * m_defaultRowHeight | |
4486 | : m_rowBottoms[row]; | |
4487 | } | |
f85afd4e MB |
4488 | |
4489 | void wxGrid::CalcDimensions() | |
4490 | { | |
f85afd4e | 4491 | int cw, ch; |
2d66e025 | 4492 | GetClientSize( &cw, &ch ); |
f85afd4e | 4493 | |
faec5a43 | 4494 | if ( m_rowLabelWin->IsShown() ) |
ae1d0c6c VZ |
4495 | cw -= m_rowLabelWidth; |
4496 | if ( m_colLabelWin->IsShown() ) | |
faec5a43 | 4497 | ch -= m_colLabelHeight; |
60ff3b99 | 4498 | |
faec5a43 SN |
4499 | // grid total size |
4500 | int w = m_numCols > 0 ? GetColRight(m_numCols - 1) + m_extraWidth + 1 : 0; | |
4501 | int h = m_numRows > 0 ? GetRowBottom(m_numRows - 1) + m_extraHeight + 1 : 0; | |
4502 | ||
73145b0e | 4503 | // take into account editor if shown |
4db6714b | 4504 | if ( IsCellEditControlShown() ) |
73145b0e | 4505 | { |
3d59537f DS |
4506 | int w2, h2; |
4507 | int r = m_currentCellCoords.GetRow(); | |
4508 | int c = m_currentCellCoords.GetCol(); | |
4509 | int x = GetColLeft(c); | |
4510 | int y = GetRowTop(r); | |
4511 | ||
4512 | // how big is the editor | |
4513 | wxGridCellAttr* attr = GetCellAttr(r, c); | |
4514 | wxGridCellEditor* editor = attr->GetEditor(this, r, c); | |
4515 | editor->GetControl()->GetSize(&w2, &h2); | |
4516 | w2 += x; | |
4517 | h2 += y; | |
4518 | if ( w2 > w ) | |
4519 | w = w2; | |
4520 | if ( h2 > h ) | |
4521 | h = h2; | |
4522 | editor->DecRef(); | |
4523 | attr->DecRef(); | |
73145b0e JS |
4524 | } |
4525 | ||
faec5a43 SN |
4526 | // preserve (more or less) the previous position |
4527 | int x, y; | |
4528 | GetViewStart( &x, &y ); | |
97a9929e | 4529 | |
c92ed9f7 | 4530 | // ensure the position is valid for the new scroll ranges |
7b519e5e | 4531 | if ( x >= w ) |
c92ed9f7 | 4532 | x = wxMax( w - 1, 0 ); |
7b519e5e | 4533 | if ( y >= h ) |
c92ed9f7 | 4534 | y = wxMax( h - 1, 0 ); |
faec5a43 SN |
4535 | |
4536 | // do set scrollbar parameters | |
675a9c0d | 4537 | SetScrollbars( m_scrollLineX, m_scrollLineY, |
97a9929e VZ |
4538 | GetScrollX(w), GetScrollY(h), x, y, |
4539 | GetBatchCount() != 0); | |
12314291 VZ |
4540 | |
4541 | // if our OnSize() hadn't been called (it would if we have scrollbars), we | |
4542 | // still must reposition the children | |
4543 | CalcWindowSizes(); | |
f85afd4e MB |
4544 | } |
4545 | ||
7807d81c MB |
4546 | void wxGrid::CalcWindowSizes() |
4547 | { | |
b0a877ec SC |
4548 | // escape if the window is has not been fully created yet |
4549 | ||
4550 | if ( m_cornerLabelWin == NULL ) | |
2f024384 | 4551 | return; |
b0a877ec | 4552 | |
7807d81c MB |
4553 | int cw, ch; |
4554 | GetClientSize( &cw, &ch ); | |
b99be8fb | 4555 | |
6d308072 | 4556 | if ( m_cornerLabelWin && m_cornerLabelWin->IsShown() ) |
7807d81c MB |
4557 | m_cornerLabelWin->SetSize( 0, 0, m_rowLabelWidth, m_colLabelHeight ); |
4558 | ||
6d308072 | 4559 | if ( m_colLabelWin && m_colLabelWin->IsShown() ) |
ccdee36f | 4560 | m_colLabelWin->SetSize( m_rowLabelWidth, 0, cw - m_rowLabelWidth, m_colLabelHeight); |
7807d81c | 4561 | |
6d308072 | 4562 | if ( m_rowLabelWin && m_rowLabelWin->IsShown() ) |
ccdee36f | 4563 | m_rowLabelWin->SetSize( 0, m_colLabelHeight, m_rowLabelWidth, ch - m_colLabelHeight); |
7807d81c | 4564 | |
6d308072 | 4565 | if ( m_gridWin && m_gridWin->IsShown() ) |
ccdee36f | 4566 | m_gridWin->SetSize( m_rowLabelWidth, m_colLabelHeight, cw - m_rowLabelWidth, ch - m_colLabelHeight); |
7807d81c MB |
4567 | } |
4568 | ||
3d59537f DS |
4569 | // this is called when the grid table sends a message |
4570 | // to indicate that it has been redimensioned | |
f85afd4e MB |
4571 | // |
4572 | bool wxGrid::Redimension( wxGridTableMessage& msg ) | |
4573 | { | |
4574 | int i; | |
ca65c044 | 4575 | bool result = false; |
8f177c8e | 4576 | |
a6794685 SN |
4577 | // Clear the attribute cache as the attribute might refer to a different |
4578 | // cell than stored in the cache after adding/removing rows/columns. | |
4579 | ClearAttrCache(); | |
2f024384 | 4580 | |
7e48d7d9 SN |
4581 | // By the same reasoning, the editor should be dismissed if columns are |
4582 | // added or removed. And for consistency, it should IMHO always be | |
4583 | // removed, not only if the cell "underneath" it actually changes. | |
4584 | // For now, I intentionally do not save the editor's content as the | |
4585 | // cell it might want to save that stuff to might no longer exist. | |
bca7bfc8 | 4586 | HideCellEditControl(); |
2f024384 | 4587 | |
f6bcfd97 | 4588 | #if 0 |
7c1cb261 VZ |
4589 | // if we were using the default widths/heights so far, we must change them |
4590 | // now | |
4591 | if ( m_colWidths.IsEmpty() ) | |
4592 | { | |
4593 | InitColWidths(); | |
4594 | } | |
4595 | ||
4596 | if ( m_rowHeights.IsEmpty() ) | |
4597 | { | |
4598 | InitRowHeights(); | |
4599 | } | |
f6bcfd97 | 4600 | #endif |
7c1cb261 | 4601 | |
f85afd4e MB |
4602 | switch ( msg.GetId() ) |
4603 | { | |
4604 | case wxGRIDTABLE_NOTIFY_ROWS_INSERTED: | |
4605 | { | |
4606 | size_t pos = msg.GetCommandInt(); | |
4607 | int numRows = msg.GetCommandInt2(); | |
f6bcfd97 | 4608 | |
f85afd4e | 4609 | m_numRows += numRows; |
2d66e025 | 4610 | |
f6bcfd97 BP |
4611 | if ( !m_rowHeights.IsEmpty() ) |
4612 | { | |
27f35b66 SN |
4613 | m_rowHeights.Insert( m_defaultRowHeight, pos, numRows ); |
4614 | m_rowBottoms.Insert( 0, pos, numRows ); | |
f6bcfd97 BP |
4615 | |
4616 | int bottom = 0; | |
2f024384 DS |
4617 | if ( pos > 0 ) |
4618 | bottom = m_rowBottoms[pos - 1]; | |
60ff3b99 | 4619 | |
3d59537f | 4620 | for ( i = pos; i < m_numRows; i++ ) |
f6bcfd97 BP |
4621 | { |
4622 | bottom += m_rowHeights[i]; | |
4623 | m_rowBottoms[i] = bottom; | |
4624 | } | |
4625 | } | |
2f024384 | 4626 | |
f6bcfd97 BP |
4627 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
4628 | { | |
4629 | // if we have just inserted cols into an empty grid the current | |
4630 | // cell will be undefined... | |
4631 | // | |
4632 | SetCurrentCell( 0, 0 ); | |
4633 | } | |
3f3dc2ef VZ |
4634 | |
4635 | if ( m_selection ) | |
4636 | m_selection->UpdateRows( pos, numRows ); | |
f6bcfd97 BP |
4637 | wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider(); |
4638 | if (attrProvider) | |
4639 | attrProvider->UpdateAttrRows( pos, numRows ); | |
4640 | ||
4641 | if ( !GetBatchCount() ) | |
2d66e025 | 4642 | { |
f6bcfd97 BP |
4643 | CalcDimensions(); |
4644 | m_rowLabelWin->Refresh(); | |
2d66e025 | 4645 | } |
f85afd4e | 4646 | } |
ca65c044 | 4647 | result = true; |
f6bcfd97 | 4648 | break; |
f85afd4e MB |
4649 | |
4650 | case wxGRIDTABLE_NOTIFY_ROWS_APPENDED: | |
4651 | { | |
4652 | int numRows = msg.GetCommandInt(); | |
2d66e025 | 4653 | int oldNumRows = m_numRows; |
f85afd4e | 4654 | m_numRows += numRows; |
2d66e025 | 4655 | |
f6bcfd97 BP |
4656 | if ( !m_rowHeights.IsEmpty() ) |
4657 | { | |
27f35b66 SN |
4658 | m_rowHeights.Add( m_defaultRowHeight, numRows ); |
4659 | m_rowBottoms.Add( 0, numRows ); | |
60ff3b99 | 4660 | |
f6bcfd97 | 4661 | int bottom = 0; |
2f024384 DS |
4662 | if ( oldNumRows > 0 ) |
4663 | bottom = m_rowBottoms[oldNumRows - 1]; | |
f6bcfd97 | 4664 | |
3d59537f | 4665 | for ( i = oldNumRows; i < m_numRows; i++ ) |
f6bcfd97 BP |
4666 | { |
4667 | bottom += m_rowHeights[i]; | |
4668 | m_rowBottoms[i] = bottom; | |
4669 | } | |
4670 | } | |
2f024384 | 4671 | |
f6bcfd97 BP |
4672 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
4673 | { | |
4674 | // if we have just inserted cols into an empty grid the current | |
4675 | // cell will be undefined... | |
4676 | // | |
4677 | SetCurrentCell( 0, 0 ); | |
4678 | } | |
2f024384 | 4679 | |
f6bcfd97 | 4680 | if ( !GetBatchCount() ) |
2d66e025 | 4681 | { |
f6bcfd97 BP |
4682 | CalcDimensions(); |
4683 | m_rowLabelWin->Refresh(); | |
2d66e025 | 4684 | } |
f85afd4e | 4685 | } |
ca65c044 | 4686 | result = true; |
f6bcfd97 | 4687 | break; |
f85afd4e MB |
4688 | |
4689 | case wxGRIDTABLE_NOTIFY_ROWS_DELETED: | |
4690 | { | |
4691 | size_t pos = msg.GetCommandInt(); | |
4692 | int numRows = msg.GetCommandInt2(); | |
f85afd4e MB |
4693 | m_numRows -= numRows; |
4694 | ||
f6bcfd97 | 4695 | if ( !m_rowHeights.IsEmpty() ) |
f85afd4e | 4696 | { |
27f35b66 SN |
4697 | m_rowHeights.RemoveAt( pos, numRows ); |
4698 | m_rowBottoms.RemoveAt( pos, numRows ); | |
2d66e025 MB |
4699 | |
4700 | int h = 0; | |
3d59537f | 4701 | for ( i = 0; i < m_numRows; i++ ) |
2d66e025 MB |
4702 | { |
4703 | h += m_rowHeights[i]; | |
4704 | m_rowBottoms[i] = h; | |
4705 | } | |
f85afd4e | 4706 | } |
3d59537f | 4707 | |
f6bcfd97 BP |
4708 | if ( !m_numRows ) |
4709 | { | |
4710 | m_currentCellCoords = wxGridNoCellCoords; | |
4711 | } | |
4712 | else | |
4713 | { | |
4714 | if ( m_currentCellCoords.GetRow() >= m_numRows ) | |
4715 | m_currentCellCoords.Set( 0, 0 ); | |
4716 | } | |
3f3dc2ef VZ |
4717 | |
4718 | if ( m_selection ) | |
4719 | m_selection->UpdateRows( pos, -((int)numRows) ); | |
f6bcfd97 | 4720 | wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider(); |
4db6714b KH |
4721 | if (attrProvider) |
4722 | { | |
f6bcfd97 | 4723 | attrProvider->UpdateAttrRows( pos, -((int)numRows) ); |
3d59537f | 4724 | |
84912ef8 RD |
4725 | // ifdef'd out following patch from Paul Gammans |
4726 | #if 0 | |
3ca6a5f0 | 4727 | // No need to touch column attributes, unless we |
f6bcfd97 BP |
4728 | // removed _all_ rows, in this case, we remove |
4729 | // all column attributes. | |
4730 | // I hate to do this here, but the | |
4731 | // needed data is not available inside UpdateAttrRows. | |
4732 | if ( !GetNumberRows() ) | |
4733 | attrProvider->UpdateAttrCols( 0, -GetNumberCols() ); | |
84912ef8 | 4734 | #endif |
f6bcfd97 | 4735 | } |
ccdee36f | 4736 | |
f6bcfd97 BP |
4737 | if ( !GetBatchCount() ) |
4738 | { | |
4739 | CalcDimensions(); | |
4740 | m_rowLabelWin->Refresh(); | |
4741 | } | |
f85afd4e | 4742 | } |
ca65c044 | 4743 | result = true; |
f6bcfd97 | 4744 | break; |
f85afd4e MB |
4745 | |
4746 | case wxGRIDTABLE_NOTIFY_COLS_INSERTED: | |
4747 | { | |
4748 | size_t pos = msg.GetCommandInt(); | |
4749 | int numCols = msg.GetCommandInt2(); | |
f85afd4e | 4750 | m_numCols += numCols; |
2d66e025 | 4751 | |
f6bcfd97 BP |
4752 | if ( !m_colWidths.IsEmpty() ) |
4753 | { | |
27f35b66 SN |
4754 | m_colWidths.Insert( m_defaultColWidth, pos, numCols ); |
4755 | m_colRights.Insert( 0, pos, numCols ); | |
f6bcfd97 BP |
4756 | |
4757 | int right = 0; | |
2f024384 DS |
4758 | if ( pos > 0 ) |
4759 | right = m_colRights[pos - 1]; | |
60ff3b99 | 4760 | |
3d59537f | 4761 | for ( i = pos; i < m_numCols; i++ ) |
f6bcfd97 BP |
4762 | { |
4763 | right += m_colWidths[i]; | |
4764 | m_colRights[i] = right; | |
4765 | } | |
4766 | } | |
2f024384 | 4767 | |
f6bcfd97 | 4768 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
2d66e025 | 4769 | { |
f6bcfd97 BP |
4770 | // if we have just inserted cols into an empty grid the current |
4771 | // cell will be undefined... | |
4772 | // | |
4773 | SetCurrentCell( 0, 0 ); | |
2d66e025 | 4774 | } |
3f3dc2ef VZ |
4775 | |
4776 | if ( m_selection ) | |
4777 | m_selection->UpdateCols( pos, numCols ); | |
f6bcfd97 BP |
4778 | wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider(); |
4779 | if (attrProvider) | |
4780 | attrProvider->UpdateAttrCols( pos, numCols ); | |
4781 | if ( !GetBatchCount() ) | |
4782 | { | |
4783 | CalcDimensions(); | |
4784 | m_colLabelWin->Refresh(); | |
4785 | } | |
4786 | ||
f85afd4e | 4787 | } |
ca65c044 | 4788 | result = true; |
f6bcfd97 | 4789 | break; |
f85afd4e MB |
4790 | |
4791 | case wxGRIDTABLE_NOTIFY_COLS_APPENDED: | |
4792 | { | |
4793 | int numCols = msg.GetCommandInt(); | |
2d66e025 | 4794 | int oldNumCols = m_numCols; |
f85afd4e | 4795 | m_numCols += numCols; |
f6bcfd97 BP |
4796 | if ( !m_colWidths.IsEmpty() ) |
4797 | { | |
27f35b66 SN |
4798 | m_colWidths.Add( m_defaultColWidth, numCols ); |
4799 | m_colRights.Add( 0, numCols ); | |
2d66e025 | 4800 | |
f6bcfd97 | 4801 | int right = 0; |
2f024384 DS |
4802 | if ( oldNumCols > 0 ) |
4803 | right = m_colRights[oldNumCols - 1]; | |
60ff3b99 | 4804 | |
3d59537f | 4805 | for ( i = oldNumCols; i < m_numCols; i++ ) |
f6bcfd97 BP |
4806 | { |
4807 | right += m_colWidths[i]; | |
4808 | m_colRights[i] = right; | |
4809 | } | |
4810 | } | |
2f024384 | 4811 | |
f6bcfd97 | 4812 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
2d66e025 | 4813 | { |
f6bcfd97 BP |
4814 | // if we have just inserted cols into an empty grid the current |
4815 | // cell will be undefined... | |
4816 | // | |
4817 | SetCurrentCell( 0, 0 ); | |
4818 | } | |
4819 | if ( !GetBatchCount() ) | |
4820 | { | |
4821 | CalcDimensions(); | |
4822 | m_colLabelWin->Refresh(); | |
2d66e025 | 4823 | } |
f85afd4e | 4824 | } |
ca65c044 | 4825 | result = true; |
f6bcfd97 | 4826 | break; |
f85afd4e MB |
4827 | |
4828 | case wxGRIDTABLE_NOTIFY_COLS_DELETED: | |
4829 | { | |
4830 | size_t pos = msg.GetCommandInt(); | |
4831 | int numCols = msg.GetCommandInt2(); | |
f85afd4e | 4832 | m_numCols -= numCols; |
f85afd4e | 4833 | |
f6bcfd97 | 4834 | if ( !m_colWidths.IsEmpty() ) |
f85afd4e | 4835 | { |
27f35b66 SN |
4836 | m_colWidths.RemoveAt( pos, numCols ); |
4837 | m_colRights.RemoveAt( pos, numCols ); | |
2d66e025 MB |
4838 | |
4839 | int w = 0; | |
3d59537f | 4840 | for ( i = 0; i < m_numCols; i++ ) |
2d66e025 MB |
4841 | { |
4842 | w += m_colWidths[i]; | |
4843 | m_colRights[i] = w; | |
4844 | } | |
f85afd4e | 4845 | } |
2f024384 | 4846 | |
f6bcfd97 BP |
4847 | if ( !m_numCols ) |
4848 | { | |
4849 | m_currentCellCoords = wxGridNoCellCoords; | |
4850 | } | |
4851 | else | |
4852 | { | |
4853 | if ( m_currentCellCoords.GetCol() >= m_numCols ) | |
4854 | m_currentCellCoords.Set( 0, 0 ); | |
4855 | } | |
3f3dc2ef VZ |
4856 | |
4857 | if ( m_selection ) | |
4858 | m_selection->UpdateCols( pos, -((int)numCols) ); | |
f6bcfd97 | 4859 | wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider(); |
4db6714b KH |
4860 | if (attrProvider) |
4861 | { | |
f6bcfd97 | 4862 | attrProvider->UpdateAttrCols( pos, -((int)numCols) ); |
ccdee36f | 4863 | |
84912ef8 RD |
4864 | // ifdef'd out following patch from Paul Gammans |
4865 | #if 0 | |
f6bcfd97 BP |
4866 | // No need to touch row attributes, unless we |
4867 | // removed _all_ columns, in this case, we remove | |
4868 | // all row attributes. | |
4869 | // I hate to do this here, but the | |
4870 | // needed data is not available inside UpdateAttrCols. | |
4871 | if ( !GetNumberCols() ) | |
4872 | attrProvider->UpdateAttrRows( 0, -GetNumberRows() ); | |
84912ef8 | 4873 | #endif |
f6bcfd97 | 4874 | } |
ccdee36f | 4875 | |
f6bcfd97 BP |
4876 | if ( !GetBatchCount() ) |
4877 | { | |
4878 | CalcDimensions(); | |
4879 | m_colLabelWin->Refresh(); | |
4880 | } | |
f85afd4e | 4881 | } |
ca65c044 | 4882 | result = true; |
f6bcfd97 | 4883 | break; |
f85afd4e MB |
4884 | } |
4885 | ||
f6bcfd97 BP |
4886 | if (result && !GetBatchCount() ) |
4887 | m_gridWin->Refresh(); | |
2f024384 | 4888 | |
f6bcfd97 | 4889 | return result; |
f85afd4e MB |
4890 | } |
4891 | ||
d10f4bf9 | 4892 | wxArrayInt wxGrid::CalcRowLabelsExposed( const wxRegion& reg ) |
f85afd4e | 4893 | { |
2d66e025 MB |
4894 | wxRegionIterator iter( reg ); |
4895 | wxRect r; | |
f85afd4e | 4896 | |
275c4ae4 RD |
4897 | wxArrayInt rowlabels; |
4898 | ||
2d66e025 MB |
4899 | int top, bottom; |
4900 | while ( iter ) | |
f85afd4e | 4901 | { |
2d66e025 | 4902 | r = iter.GetRect(); |
f85afd4e | 4903 | |
2d66e025 MB |
4904 | // TODO: remove this when we can... |
4905 | // There is a bug in wxMotif that gives garbage update | |
4906 | // rectangles if you jump-scroll a long way by clicking the | |
4907 | // scrollbar with middle button. This is a work-around | |
4908 | // | |
4909 | #if defined(__WXMOTIF__) | |
4910 | int cw, ch; | |
4911 | m_gridWin->GetClientSize( &cw, &ch ); | |
56b6cf26 DS |
4912 | if ( r.GetTop() > ch ) |
4913 | r.SetTop( 0 ); | |
2d66e025 MB |
4914 | r.SetBottom( wxMin( r.GetBottom(), ch ) ); |
4915 | #endif | |
f85afd4e | 4916 | |
2d66e025 MB |
4917 | // logical bounds of update region |
4918 | // | |
4919 | int dummy; | |
4920 | CalcUnscrolledPosition( 0, r.GetTop(), &dummy, &top ); | |
4921 | CalcUnscrolledPosition( 0, r.GetBottom(), &dummy, &bottom ); | |
4922 | ||
4923 | // find the row labels within these bounds | |
4924 | // | |
4925 | int row; | |
3d59537f | 4926 | for ( row = internalYToRow(top); row < m_numRows; row++ ) |
2d66e025 | 4927 | { |
7c1cb261 VZ |
4928 | if ( GetRowBottom(row) < top ) |
4929 | continue; | |
2d66e025 | 4930 | |
6d55126d | 4931 | if ( GetRowTop(row) > bottom ) |
7c1cb261 | 4932 | break; |
60ff3b99 | 4933 | |
d10f4bf9 | 4934 | rowlabels.Add( row ); |
2d66e025 | 4935 | } |
60ff3b99 | 4936 | |
60d8e886 | 4937 | ++iter; |
f85afd4e | 4938 | } |
d10f4bf9 VZ |
4939 | |
4940 | return rowlabels; | |
f85afd4e MB |
4941 | } |
4942 | ||
d10f4bf9 | 4943 | wxArrayInt wxGrid::CalcColLabelsExposed( const wxRegion& reg ) |
f85afd4e | 4944 | { |
2d66e025 MB |
4945 | wxRegionIterator iter( reg ); |
4946 | wxRect r; | |
f85afd4e | 4947 | |
d10f4bf9 | 4948 | wxArrayInt colLabels; |
f85afd4e | 4949 | |
2d66e025 MB |
4950 | int left, right; |
4951 | while ( iter ) | |
f85afd4e | 4952 | { |
2d66e025 | 4953 | r = iter.GetRect(); |
f85afd4e | 4954 | |
2d66e025 MB |
4955 | // TODO: remove this when we can... |
4956 | // There is a bug in wxMotif that gives garbage update | |
4957 | // rectangles if you jump-scroll a long way by clicking the | |
4958 | // scrollbar with middle button. This is a work-around | |
4959 | // | |
4960 | #if defined(__WXMOTIF__) | |
4961 | int cw, ch; | |
4962 | m_gridWin->GetClientSize( &cw, &ch ); | |
56b6cf26 DS |
4963 | if ( r.GetLeft() > cw ) |
4964 | r.SetLeft( 0 ); | |
2d66e025 MB |
4965 | r.SetRight( wxMin( r.GetRight(), cw ) ); |
4966 | #endif | |
4967 | ||
4968 | // logical bounds of update region | |
4969 | // | |
4970 | int dummy; | |
4971 | CalcUnscrolledPosition( r.GetLeft(), 0, &left, &dummy ); | |
4972 | CalcUnscrolledPosition( r.GetRight(), 0, &right, &dummy ); | |
4973 | ||
4974 | // find the cells within these bounds | |
4975 | // | |
4976 | int col; | |
3d59537f | 4977 | for ( col = internalXToCol(left); col < m_numCols; col++ ) |
2d66e025 | 4978 | { |
7c1cb261 VZ |
4979 | if ( GetColRight(col) < left ) |
4980 | continue; | |
60ff3b99 | 4981 | |
7c1cb261 VZ |
4982 | if ( GetColLeft(col) > right ) |
4983 | break; | |
2d66e025 | 4984 | |
d10f4bf9 | 4985 | colLabels.Add( col ); |
2d66e025 | 4986 | } |
60ff3b99 | 4987 | |
60d8e886 | 4988 | ++iter; |
f85afd4e | 4989 | } |
2f024384 | 4990 | |
d10f4bf9 | 4991 | return colLabels; |
f85afd4e MB |
4992 | } |
4993 | ||
d10f4bf9 | 4994 | wxGridCellCoordsArray wxGrid::CalcCellsExposed( const wxRegion& reg ) |
f85afd4e | 4995 | { |
2d66e025 MB |
4996 | wxRegionIterator iter( reg ); |
4997 | wxRect r; | |
f85afd4e | 4998 | |
d10f4bf9 | 4999 | wxGridCellCoordsArray cellsExposed; |
f85afd4e | 5000 | |
2d66e025 MB |
5001 | int left, top, right, bottom; |
5002 | while ( iter ) | |
5003 | { | |
5004 | r = iter.GetRect(); | |
f85afd4e | 5005 | |
2d66e025 MB |
5006 | // TODO: remove this when we can... |
5007 | // There is a bug in wxMotif that gives garbage update | |
5008 | // rectangles if you jump-scroll a long way by clicking the | |
5009 | // scrollbar with middle button. This is a work-around | |
5010 | // | |
5011 | #if defined(__WXMOTIF__) | |
f85afd4e | 5012 | int cw, ch; |
2d66e025 MB |
5013 | m_gridWin->GetClientSize( &cw, &ch ); |
5014 | if ( r.GetTop() > ch ) r.SetTop( 0 ); | |
5015 | if ( r.GetLeft() > cw ) r.SetLeft( 0 ); | |
5016 | r.SetRight( wxMin( r.GetRight(), cw ) ); | |
5017 | r.SetBottom( wxMin( r.GetBottom(), ch ) ); | |
5018 | #endif | |
8f177c8e | 5019 | |
2d66e025 MB |
5020 | // logical bounds of update region |
5021 | // | |
5022 | CalcUnscrolledPosition( r.GetLeft(), r.GetTop(), &left, &top ); | |
5023 | CalcUnscrolledPosition( r.GetRight(), r.GetBottom(), &right, &bottom ); | |
f85afd4e | 5024 | |
2d66e025 | 5025 | // find the cells within these bounds |
f85afd4e | 5026 | // |
2d66e025 | 5027 | int row, col; |
3d59537f | 5028 | for ( row = internalYToRow(top); row < m_numRows; row++ ) |
f85afd4e | 5029 | { |
7c1cb261 VZ |
5030 | if ( GetRowBottom(row) <= top ) |
5031 | continue; | |
f85afd4e | 5032 | |
7c1cb261 VZ |
5033 | if ( GetRowTop(row) > bottom ) |
5034 | break; | |
60ff3b99 | 5035 | |
3d59537f | 5036 | for ( col = internalXToCol(left); col < m_numCols; col++ ) |
2d66e025 | 5037 | { |
7c1cb261 VZ |
5038 | if ( GetColRight(col) <= left ) |
5039 | continue; | |
60ff3b99 | 5040 | |
7c1cb261 VZ |
5041 | if ( GetColLeft(col) > right ) |
5042 | break; | |
60ff3b99 | 5043 | |
d10f4bf9 | 5044 | cellsExposed.Add( wxGridCellCoords( row, col ) ); |
2d66e025 MB |
5045 | } |
5046 | } | |
60ff3b99 | 5047 | |
60d8e886 | 5048 | ++iter; |
f85afd4e | 5049 | } |
d10f4bf9 VZ |
5050 | |
5051 | return cellsExposed; | |
f85afd4e MB |
5052 | } |
5053 | ||
5054 | ||
2d66e025 | 5055 | void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent& event ) |
f85afd4e | 5056 | { |
2d66e025 MB |
5057 | int x, y, row; |
5058 | wxPoint pos( event.GetPosition() ); | |
5059 | CalcUnscrolledPosition( pos.x, pos.y, &x, &y ); | |
60ff3b99 | 5060 | |
2d66e025 | 5061 | if ( event.Dragging() ) |
f85afd4e | 5062 | { |
426b2d87 JS |
5063 | if (!m_isDragging) |
5064 | { | |
ca65c044 | 5065 | m_isDragging = true; |
426b2d87 JS |
5066 | m_rowLabelWin->CaptureMouse(); |
5067 | } | |
8f177c8e | 5068 | |
2d66e025 | 5069 | if ( event.LeftIsDown() ) |
f85afd4e | 5070 | { |
962a48f6 | 5071 | switch ( m_cursorMode ) |
f85afd4e | 5072 | { |
f85afd4e MB |
5073 | case WXGRID_CURSOR_RESIZE_ROW: |
5074 | { | |
2d66e025 MB |
5075 | int cw, ch, left, dummy; |
5076 | m_gridWin->GetClientSize( &cw, &ch ); | |
5077 | CalcUnscrolledPosition( 0, 0, &left, &dummy ); | |
60ff3b99 | 5078 | |
2d66e025 MB |
5079 | wxClientDC dc( m_gridWin ); |
5080 | PrepareDC( dc ); | |
af547d51 VZ |
5081 | y = wxMax( y, |
5082 | GetRowTop(m_dragRowOrCol) + | |
5083 | GetRowMinimalHeight(m_dragRowOrCol) ); | |
d2fdd8d2 | 5084 | dc.SetLogicalFunction(wxINVERT); |
f85afd4e MB |
5085 | if ( m_dragLastPos >= 0 ) |
5086 | { | |
2d66e025 | 5087 | dc.DrawLine( left, m_dragLastPos, left+cw, m_dragLastPos ); |
f85afd4e | 5088 | } |
2d66e025 MB |
5089 | dc.DrawLine( left, y, left+cw, y ); |
5090 | m_dragLastPos = y; | |
f85afd4e MB |
5091 | } |
5092 | break; | |
5093 | ||
5094 | case WXGRID_CURSOR_SELECT_ROW: | |
902725ee | 5095 | { |
e32352cf | 5096 | if ( (row = YToRow( y )) >= 0 ) |
aa5e1f75 | 5097 | { |
3f3dc2ef VZ |
5098 | if ( m_selection ) |
5099 | { | |
5100 | m_selection->SelectRow( row, | |
5101 | event.ControlDown(), | |
5102 | event.ShiftDown(), | |
5103 | event.AltDown(), | |
5104 | event.MetaDown() ); | |
5105 | } | |
f85afd4e | 5106 | } |
902725ee WS |
5107 | } |
5108 | break; | |
e2b42eeb VZ |
5109 | |
5110 | // default label to suppress warnings about "enumeration value | |
5111 | // 'xxx' not handled in switch | |
5112 | default: | |
5113 | break; | |
f85afd4e MB |
5114 | } |
5115 | } | |
5116 | return; | |
5117 | } | |
5118 | ||
426b2d87 JS |
5119 | if ( m_isDragging && (event.Entering() || event.Leaving()) ) |
5120 | return; | |
8f177c8e | 5121 | |
426b2d87 JS |
5122 | if (m_isDragging) |
5123 | { | |
ccdee36f DS |
5124 | if (m_rowLabelWin->HasCapture()) |
5125 | m_rowLabelWin->ReleaseMouse(); | |
ca65c044 | 5126 | m_isDragging = false; |
426b2d87 | 5127 | } |
60ff3b99 | 5128 | |
6d004f67 MB |
5129 | // ------------ Entering or leaving the window |
5130 | // | |
5131 | if ( event.Entering() || event.Leaving() ) | |
5132 | { | |
e2b42eeb | 5133 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_rowLabelWin); |
6d004f67 MB |
5134 | } |
5135 | ||
2d66e025 | 5136 | // ------------ Left button pressed |
f85afd4e | 5137 | // |
6d004f67 | 5138 | else if ( event.LeftDown() ) |
f85afd4e | 5139 | { |
2d66e025 MB |
5140 | // don't send a label click event for a hit on the |
5141 | // edge of the row label - this is probably the user | |
5142 | // wanting to resize the row | |
5143 | // | |
5144 | if ( YToEdgeOfRow(y) < 0 ) | |
f85afd4e | 5145 | { |
2d66e025 | 5146 | row = YToRow(y); |
2f024384 | 5147 | if ( row >= 0 && |
b54ba671 | 5148 | !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK, row, -1, event ) ) |
f85afd4e | 5149 | { |
2b01fd49 | 5150 | if ( !event.ShiftDown() && !event.CmdDown() ) |
aa5e1f75 | 5151 | ClearSelection(); |
64e15340 | 5152 | if ( m_selection ) |
3f3dc2ef VZ |
5153 | { |
5154 | if ( event.ShiftDown() ) | |
5155 | { | |
5156 | m_selection->SelectBlock( m_currentCellCoords.GetRow(), | |
5157 | 0, | |
5158 | row, | |
5159 | GetNumberCols() - 1, | |
5160 | event.ControlDown(), | |
5161 | event.ShiftDown(), | |
5162 | event.AltDown(), | |
5163 | event.MetaDown() ); | |
5164 | } | |
5165 | else | |
5166 | { | |
5167 | m_selection->SelectRow( row, | |
5168 | event.ControlDown(), | |
5169 | event.ShiftDown(), | |
5170 | event.AltDown(), | |
5171 | event.MetaDown() ); | |
5172 | } | |
5173 | } | |
5174 | ||
e2b42eeb | 5175 | ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW, m_rowLabelWin); |
f85afd4e | 5176 | } |
2d66e025 MB |
5177 | } |
5178 | else | |
5179 | { | |
5180 | // starting to drag-resize a row | |
6e8524b1 MB |
5181 | if ( CanDragRowSize() ) |
5182 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW, m_rowLabelWin); | |
2d66e025 MB |
5183 | } |
5184 | } | |
f85afd4e | 5185 | |
2d66e025 MB |
5186 | // ------------ Left double click |
5187 | // | |
5188 | else if (event.LeftDClick() ) | |
5189 | { | |
4e115ed2 | 5190 | row = YToEdgeOfRow(y); |
d43851f7 | 5191 | if ( row < 0 ) |
2d66e025 MB |
5192 | { |
5193 | row = YToRow(y); | |
a967f048 | 5194 | if ( row >=0 && |
ca65c044 WS |
5195 | !SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK, row, -1, event ) ) |
5196 | { | |
a967f048 | 5197 | // no default action at the moment |
ca65c044 | 5198 | } |
f85afd4e | 5199 | } |
d43851f7 JS |
5200 | else |
5201 | { | |
5202 | // adjust row height depending on label text | |
5203 | AutoSizeRowLabelSize( row ); | |
5204 | ||
5205 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_colLabelWin); | |
ccdee36f | 5206 | m_dragLastPos = -1; |
d43851f7 | 5207 | } |
f85afd4e | 5208 | } |
60ff3b99 | 5209 | |
2d66e025 | 5210 | // ------------ Left button released |
f85afd4e | 5211 | // |
2d66e025 | 5212 | else if ( event.LeftUp() ) |
f85afd4e | 5213 | { |
2d66e025 | 5214 | if ( m_cursorMode == WXGRID_CURSOR_RESIZE_ROW ) |
f85afd4e | 5215 | { |
6d004f67 | 5216 | DoEndDragResizeRow(); |
60ff3b99 | 5217 | |
6d004f67 MB |
5218 | // Note: we are ending the event *after* doing |
5219 | // default processing in this case | |
5220 | // | |
b54ba671 | 5221 | SendEvent( wxEVT_GRID_ROW_SIZE, m_dragRowOrCol, -1, event ); |
2d66e025 | 5222 | } |
f85afd4e | 5223 | |
e2b42eeb VZ |
5224 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_rowLabelWin); |
5225 | m_dragLastPos = -1; | |
2d66e025 | 5226 | } |
f85afd4e | 5227 | |
2d66e025 MB |
5228 | // ------------ Right button down |
5229 | // | |
5230 | else if ( event.RightDown() ) | |
5231 | { | |
5232 | row = YToRow(y); | |
ef5df12b | 5233 | if ( row >=0 && |
ca65c044 | 5234 | !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK, row, -1, event ) ) |
2d66e025 MB |
5235 | { |
5236 | // no default action at the moment | |
f85afd4e MB |
5237 | } |
5238 | } | |
60ff3b99 | 5239 | |
2d66e025 | 5240 | // ------------ Right double click |
f85afd4e | 5241 | // |
2d66e025 MB |
5242 | else if ( event.RightDClick() ) |
5243 | { | |
5244 | row = YToRow(y); | |
a967f048 | 5245 | if ( row >= 0 && |
ca65c044 | 5246 | !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK, row, -1, event ) ) |
2d66e025 MB |
5247 | { |
5248 | // no default action at the moment | |
5249 | } | |
5250 | } | |
60ff3b99 | 5251 | |
2d66e025 | 5252 | // ------------ No buttons down and mouse moving |
f85afd4e | 5253 | // |
2d66e025 | 5254 | else if ( event.Moving() ) |
f85afd4e | 5255 | { |
2d66e025 MB |
5256 | m_dragRowOrCol = YToEdgeOfRow( y ); |
5257 | if ( m_dragRowOrCol >= 0 ) | |
8f177c8e | 5258 | { |
2d66e025 | 5259 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) |
8f177c8e | 5260 | { |
e2b42eeb | 5261 | // don't capture the mouse yet |
6e8524b1 | 5262 | if ( CanDragRowSize() ) |
ca65c044 | 5263 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW, m_rowLabelWin, false); |
8f177c8e | 5264 | } |
2d66e025 | 5265 | } |
6d004f67 | 5266 | else if ( m_cursorMode != WXGRID_CURSOR_SELECT_CELL ) |
2d66e025 | 5267 | { |
ca65c044 | 5268 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_rowLabelWin, false); |
8f177c8e | 5269 | } |
f85afd4e | 5270 | } |
2d66e025 MB |
5271 | } |
5272 | ||
2d66e025 MB |
5273 | void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event ) |
5274 | { | |
5275 | int x, y, col; | |
5276 | wxPoint pos( event.GetPosition() ); | |
5277 | CalcUnscrolledPosition( pos.x, pos.y, &x, &y ); | |
60ff3b99 | 5278 | |
2d66e025 | 5279 | if ( event.Dragging() ) |
f85afd4e | 5280 | { |
fe77cf60 JS |
5281 | if (!m_isDragging) |
5282 | { | |
ca65c044 | 5283 | m_isDragging = true; |
fe77cf60 JS |
5284 | m_colLabelWin->CaptureMouse(); |
5285 | } | |
8f177c8e | 5286 | |
2d66e025 | 5287 | if ( event.LeftIsDown() ) |
8f177c8e | 5288 | { |
962a48f6 | 5289 | switch ( m_cursorMode ) |
8f177c8e | 5290 | { |
2d66e025 | 5291 | case WXGRID_CURSOR_RESIZE_COL: |
8f177c8e | 5292 | { |
2d66e025 MB |
5293 | int cw, ch, dummy, top; |
5294 | m_gridWin->GetClientSize( &cw, &ch ); | |
5295 | CalcUnscrolledPosition( 0, 0, &dummy, &top ); | |
60ff3b99 | 5296 | |
2d66e025 MB |
5297 | wxClientDC dc( m_gridWin ); |
5298 | PrepareDC( dc ); | |
43947979 VZ |
5299 | |
5300 | x = wxMax( x, GetColLeft(m_dragRowOrCol) + | |
5301 | GetColMinimalWidth(m_dragRowOrCol)); | |
d2fdd8d2 | 5302 | dc.SetLogicalFunction(wxINVERT); |
2d66e025 MB |
5303 | if ( m_dragLastPos >= 0 ) |
5304 | { | |
ccdee36f | 5305 | dc.DrawLine( m_dragLastPos, top, m_dragLastPos, top + ch ); |
2d66e025 | 5306 | } |
ccdee36f | 5307 | dc.DrawLine( x, top, x, top + ch ); |
2d66e025 | 5308 | m_dragLastPos = x; |
f85afd4e | 5309 | } |
2d66e025 | 5310 | break; |
f85afd4e | 5311 | |
2d66e025 | 5312 | case WXGRID_CURSOR_SELECT_COL: |
902725ee | 5313 | { |
e32352cf | 5314 | if ( (col = XToCol( x )) >= 0 ) |
aa5e1f75 | 5315 | { |
3f3dc2ef VZ |
5316 | if ( m_selection ) |
5317 | { | |
5318 | m_selection->SelectCol( col, | |
5319 | event.ControlDown(), | |
5320 | event.ShiftDown(), | |
5321 | event.AltDown(), | |
5322 | event.MetaDown() ); | |
5323 | } | |
2d66e025 | 5324 | } |
902725ee WS |
5325 | } |
5326 | break; | |
e2b42eeb VZ |
5327 | |
5328 | // default label to suppress warnings about "enumeration value | |
5329 | // 'xxx' not handled in switch | |
5330 | default: | |
5331 | break; | |
2d66e025 | 5332 | } |
f85afd4e | 5333 | } |
2d66e025 | 5334 | return; |
f85afd4e | 5335 | } |
2d66e025 | 5336 | |
fe77cf60 JS |
5337 | if ( m_isDragging && (event.Entering() || event.Leaving()) ) |
5338 | return; | |
2d66e025 | 5339 | |
fe77cf60 JS |
5340 | if (m_isDragging) |
5341 | { | |
ccdee36f DS |
5342 | if (m_colLabelWin->HasCapture()) |
5343 | m_colLabelWin->ReleaseMouse(); | |
ca65c044 | 5344 | m_isDragging = false; |
fe77cf60 | 5345 | } |
60ff3b99 | 5346 | |
6d004f67 MB |
5347 | // ------------ Entering or leaving the window |
5348 | // | |
5349 | if ( event.Entering() || event.Leaving() ) | |
5350 | { | |
e2b42eeb | 5351 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_colLabelWin); |
6d004f67 MB |
5352 | } |
5353 | ||
2d66e025 | 5354 | // ------------ Left button pressed |
f85afd4e | 5355 | // |
6d004f67 | 5356 | else if ( event.LeftDown() ) |
f85afd4e | 5357 | { |
2d66e025 MB |
5358 | // don't send a label click event for a hit on the |
5359 | // edge of the col label - this is probably the user | |
5360 | // wanting to resize the col | |
5361 | // | |
5362 | if ( XToEdgeOfCol(x) < 0 ) | |
8f177c8e | 5363 | { |
2d66e025 | 5364 | col = XToCol(x); |
2f024384 | 5365 | if ( col >= 0 && |
b54ba671 | 5366 | !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK, -1, col, event ) ) |
8f177c8e | 5367 | { |
2b01fd49 | 5368 | if ( !event.ShiftDown() && !event.CmdDown() ) |
aa5e1f75 | 5369 | ClearSelection(); |
3f3dc2ef VZ |
5370 | if ( m_selection ) |
5371 | { | |
5372 | if ( event.ShiftDown() ) | |
5373 | { | |
5374 | m_selection->SelectBlock( 0, | |
5375 | m_currentCellCoords.GetCol(), | |
5376 | GetNumberRows() - 1, col, | |
5377 | event.ControlDown(), | |
5378 | event.ShiftDown(), | |
5379 | event.AltDown(), | |
5380 | event.MetaDown() ); | |
5381 | } | |
5382 | else | |
5383 | { | |
5384 | m_selection->SelectCol( col, | |
5385 | event.ControlDown(), | |
5386 | event.ShiftDown(), | |
5387 | event.AltDown(), | |
5388 | event.MetaDown() ); | |
5389 | } | |
5390 | } | |
5391 | ||
e2b42eeb | 5392 | ChangeCursorMode(WXGRID_CURSOR_SELECT_COL, m_colLabelWin); |
f85afd4e | 5393 | } |
2d66e025 MB |
5394 | } |
5395 | else | |
5396 | { | |
5397 | // starting to drag-resize a col | |
5398 | // | |
6e8524b1 MB |
5399 | if ( CanDragColSize() ) |
5400 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL, m_colLabelWin); | |
2d66e025 MB |
5401 | } |
5402 | } | |
f85afd4e | 5403 | |
2d66e025 MB |
5404 | // ------------ Left double click |
5405 | // | |
5406 | if ( event.LeftDClick() ) | |
5407 | { | |
4e115ed2 | 5408 | col = XToEdgeOfCol(x); |
d43851f7 | 5409 | if ( col < 0 ) |
2d66e025 MB |
5410 | { |
5411 | col = XToCol(x); | |
a967f048 RG |
5412 | if ( col >= 0 && |
5413 | ! SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK, -1, col, event ) ) | |
5414 | { | |
ca65c044 | 5415 | // no default action at the moment |
a967f048 | 5416 | } |
2d66e025 | 5417 | } |
d43851f7 JS |
5418 | else |
5419 | { | |
5420 | // adjust column width depending on label text | |
5421 | AutoSizeColLabelSize( col ); | |
5422 | ||
5423 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_colLabelWin); | |
ccdee36f | 5424 | m_dragLastPos = -1; |
d43851f7 | 5425 | } |
2d66e025 | 5426 | } |
60ff3b99 | 5427 | |
2d66e025 MB |
5428 | // ------------ Left button released |
5429 | // | |
5430 | else if ( event.LeftUp() ) | |
5431 | { | |
5432 | if ( m_cursorMode == WXGRID_CURSOR_RESIZE_COL ) | |
5433 | { | |
6d004f67 | 5434 | DoEndDragResizeCol(); |
e2b42eeb | 5435 | |
6d004f67 MB |
5436 | // Note: we are ending the event *after* doing |
5437 | // default processing in this case | |
5438 | // | |
b54ba671 | 5439 | SendEvent( wxEVT_GRID_COL_SIZE, -1, m_dragRowOrCol, event ); |
2d66e025 | 5440 | } |
f85afd4e | 5441 | |
e2b42eeb | 5442 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_colLabelWin); |
ccdee36f | 5443 | m_dragLastPos = -1; |
60ff3b99 VZ |
5444 | } |
5445 | ||
2d66e025 MB |
5446 | // ------------ Right button down |
5447 | // | |
5448 | else if ( event.RightDown() ) | |
5449 | { | |
5450 | col = XToCol(x); | |
a967f048 | 5451 | if ( col >= 0 && |
ca65c044 | 5452 | !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK, -1, col, event ) ) |
2d66e025 MB |
5453 | { |
5454 | // no default action at the moment | |
f85afd4e MB |
5455 | } |
5456 | } | |
60ff3b99 | 5457 | |
2d66e025 | 5458 | // ------------ Right double click |
f85afd4e | 5459 | // |
2d66e025 MB |
5460 | else if ( event.RightDClick() ) |
5461 | { | |
5462 | col = XToCol(x); | |
a967f048 | 5463 | if ( col >= 0 && |
ca65c044 | 5464 | !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK, -1, col, event ) ) |
2d66e025 MB |
5465 | { |
5466 | // no default action at the moment | |
5467 | } | |
5468 | } | |
60ff3b99 | 5469 | |
2d66e025 | 5470 | // ------------ No buttons down and mouse moving |
f85afd4e | 5471 | // |
2d66e025 | 5472 | else if ( event.Moving() ) |
f85afd4e | 5473 | { |
2d66e025 MB |
5474 | m_dragRowOrCol = XToEdgeOfCol( x ); |
5475 | if ( m_dragRowOrCol >= 0 ) | |
f85afd4e | 5476 | { |
2d66e025 | 5477 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) |
f85afd4e | 5478 | { |
e2b42eeb | 5479 | // don't capture the cursor yet |
6e8524b1 | 5480 | if ( CanDragColSize() ) |
ca65c044 | 5481 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL, m_colLabelWin, false); |
f85afd4e | 5482 | } |
2d66e025 | 5483 | } |
6d004f67 | 5484 | else if ( m_cursorMode != WXGRID_CURSOR_SELECT_CELL ) |
2d66e025 | 5485 | { |
ca65c044 | 5486 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_colLabelWin, false); |
8f177c8e | 5487 | } |
f85afd4e MB |
5488 | } |
5489 | } | |
5490 | ||
2d66e025 | 5491 | void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent& event ) |
f85afd4e | 5492 | { |
2d66e025 | 5493 | if ( event.LeftDown() ) |
f85afd4e | 5494 | { |
2d66e025 MB |
5495 | // indicate corner label by having both row and |
5496 | // col args == -1 | |
f85afd4e | 5497 | // |
b54ba671 | 5498 | if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK, -1, -1, event ) ) |
2d66e025 MB |
5499 | { |
5500 | SelectAll(); | |
5501 | } | |
f85afd4e | 5502 | } |
2d66e025 MB |
5503 | else if ( event.LeftDClick() ) |
5504 | { | |
b54ba671 | 5505 | SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK, -1, -1, event ); |
2d66e025 | 5506 | } |
2d66e025 | 5507 | else if ( event.RightDown() ) |
f85afd4e | 5508 | { |
b54ba671 | 5509 | if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK, -1, -1, event ) ) |
f85afd4e | 5510 | { |
2d66e025 MB |
5511 | // no default action at the moment |
5512 | } | |
5513 | } | |
2d66e025 MB |
5514 | else if ( event.RightDClick() ) |
5515 | { | |
b54ba671 | 5516 | if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK, -1, -1, event ) ) |
2d66e025 MB |
5517 | { |
5518 | // no default action at the moment | |
5519 | } | |
5520 | } | |
5521 | } | |
f85afd4e | 5522 | |
e2b42eeb VZ |
5523 | void wxGrid::ChangeCursorMode(CursorMode mode, |
5524 | wxWindow *win, | |
5525 | bool captureMouse) | |
5526 | { | |
5527 | #ifdef __WXDEBUG__ | |
5528 | static const wxChar *cursorModes[] = | |
5529 | { | |
5530 | _T("SELECT_CELL"), | |
5531 | _T("RESIZE_ROW"), | |
5532 | _T("RESIZE_COL"), | |
5533 | _T("SELECT_ROW"), | |
5534 | _T("SELECT_COL") | |
5535 | }; | |
5536 | ||
181bfffd VZ |
5537 | wxLogTrace(_T("grid"), |
5538 | _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"), | |
e2b42eeb VZ |
5539 | win == m_colLabelWin ? _T("colLabelWin") |
5540 | : win ? _T("rowLabelWin") | |
5541 | : _T("gridWin"), | |
5542 | cursorModes[m_cursorMode], cursorModes[mode]); | |
2f024384 | 5543 | #endif |
e2b42eeb | 5544 | |
faec5a43 SN |
5545 | if ( mode == m_cursorMode && |
5546 | win == m_winCapture && | |
5547 | captureMouse == (m_winCapture != NULL)) | |
e2b42eeb VZ |
5548 | return; |
5549 | ||
5550 | if ( !win ) | |
5551 | { | |
5552 | // by default use the grid itself | |
5553 | win = m_gridWin; | |
5554 | } | |
5555 | ||
5556 | if ( m_winCapture ) | |
5557 | { | |
2f024384 DS |
5558 | if (m_winCapture->HasCapture()) |
5559 | m_winCapture->ReleaseMouse(); | |
e2b42eeb VZ |
5560 | m_winCapture = (wxWindow *)NULL; |
5561 | } | |
5562 | ||
5563 | m_cursorMode = mode; | |
5564 | ||
5565 | switch ( m_cursorMode ) | |
5566 | { | |
5567 | case WXGRID_CURSOR_RESIZE_ROW: | |
5568 | win->SetCursor( m_rowResizeCursor ); | |
5569 | break; | |
5570 | ||
5571 | case WXGRID_CURSOR_RESIZE_COL: | |
5572 | win->SetCursor( m_colResizeCursor ); | |
5573 | break; | |
5574 | ||
5575 | default: | |
5576 | win->SetCursor( *wxSTANDARD_CURSOR ); | |
2f024384 | 5577 | break; |
e2b42eeb VZ |
5578 | } |
5579 | ||
5580 | // we need to capture mouse when resizing | |
5581 | bool resize = m_cursorMode == WXGRID_CURSOR_RESIZE_ROW || | |
5582 | m_cursorMode == WXGRID_CURSOR_RESIZE_COL; | |
5583 | ||
5584 | if ( captureMouse && resize ) | |
5585 | { | |
5586 | win->CaptureMouse(); | |
5587 | m_winCapture = win; | |
5588 | } | |
5589 | } | |
8f177c8e | 5590 | |
2d66e025 MB |
5591 | void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent& event ) |
5592 | { | |
5593 | int x, y; | |
5594 | wxPoint pos( event.GetPosition() ); | |
5595 | CalcUnscrolledPosition( pos.x, pos.y, &x, &y ); | |
60ff3b99 | 5596 | |
2d66e025 MB |
5597 | wxGridCellCoords coords; |
5598 | XYToCell( x, y, coords ); | |
60ff3b99 | 5599 | |
27f35b66 | 5600 | int cell_rows, cell_cols; |
79dbea21 | 5601 | bool isFirstDrag = !m_isDragging; |
27f35b66 SN |
5602 | GetCellSize( coords.GetRow(), coords.GetCol(), &cell_rows, &cell_cols ); |
5603 | if ((cell_rows < 0) || (cell_cols < 0)) | |
5604 | { | |
5605 | coords.SetRow(coords.GetRow() + cell_rows); | |
5606 | coords.SetCol(coords.GetCol() + cell_cols); | |
5607 | } | |
5608 | ||
2d66e025 MB |
5609 | if ( event.Dragging() ) |
5610 | { | |
07296f0b RD |
5611 | //wxLogDebug("pos(%d, %d) coords(%d, %d)", pos.x, pos.y, coords.GetRow(), coords.GetCol()); |
5612 | ||
962a48f6 | 5613 | // Don't start doing anything until the mouse has been dragged at |
07296f0b | 5614 | // least 3 pixels in any direction... |
508011ce VZ |
5615 | if (! m_isDragging) |
5616 | { | |
5617 | if (m_startDragPos == wxDefaultPosition) | |
5618 | { | |
07296f0b RD |
5619 | m_startDragPos = pos; |
5620 | return; | |
5621 | } | |
5622 | if (abs(m_startDragPos.x - pos.x) < 4 && abs(m_startDragPos.y - pos.y) < 4) | |
5623 | return; | |
5624 | } | |
5625 | ||
ca65c044 | 5626 | m_isDragging = true; |
2d66e025 MB |
5627 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) |
5628 | { | |
f0102d2a | 5629 | // Hide the edit control, so it |
4db6714b | 5630 | // won't interfere with drag-shrinking. |
f6bcfd97 | 5631 | if ( IsCellEditControlShown() ) |
a5777624 | 5632 | { |
f0102d2a | 5633 | HideCellEditControl(); |
a5777624 RD |
5634 | SaveEditControlValue(); |
5635 | } | |
07296f0b RD |
5636 | |
5637 | // Have we captured the mouse yet? | |
508011ce VZ |
5638 | if (! m_winCapture) |
5639 | { | |
07296f0b RD |
5640 | m_winCapture = m_gridWin; |
5641 | m_winCapture->CaptureMouse(); | |
5642 | } | |
5643 | ||
2d66e025 MB |
5644 | if ( coords != wxGridNoCellCoords ) |
5645 | { | |
2b01fd49 | 5646 | if ( event.CmdDown() ) |
aa5e1f75 SN |
5647 | { |
5648 | if ( m_selectingKeyboard == wxGridNoCellCoords) | |
5649 | m_selectingKeyboard = coords; | |
a9339fe2 | 5650 | HighlightBlock( m_selectingKeyboard, coords ); |
aa5e1f75 | 5651 | } |
79dbea21 RD |
5652 | else if ( CanDragCell() ) |
5653 | { | |
5654 | if ( isFirstDrag ) | |
5655 | { | |
5656 | if ( m_selectingKeyboard == wxGridNoCellCoords) | |
5657 | m_selectingKeyboard = coords; | |
5658 | ||
5659 | SendEvent( wxEVT_GRID_CELL_BEGIN_DRAG, | |
5660 | coords.GetRow(), | |
5661 | coords.GetCol(), | |
5662 | event ); | |
5663 | } | |
5664 | } | |
aa5e1f75 SN |
5665 | else |
5666 | { | |
5667 | if ( !IsSelection() ) | |
5668 | { | |
c9097836 | 5669 | HighlightBlock( coords, coords ); |
aa5e1f75 SN |
5670 | } |
5671 | else | |
5672 | { | |
c9097836 | 5673 | HighlightBlock( m_currentCellCoords, coords ); |
aa5e1f75 | 5674 | } |
f85afd4e | 5675 | } |
07296f0b | 5676 | |
508011ce VZ |
5677 | if (! IsVisible(coords)) |
5678 | { | |
07296f0b RD |
5679 | MakeCellVisible(coords); |
5680 | // TODO: need to introduce a delay or something here. The | |
e32352cf | 5681 | // scrolling is way to fast, at least on MSW - also on GTK. |
07296f0b | 5682 | } |
2d66e025 MB |
5683 | } |
5684 | } | |
6d004f67 MB |
5685 | else if ( m_cursorMode == WXGRID_CURSOR_RESIZE_ROW ) |
5686 | { | |
5687 | int cw, ch, left, dummy; | |
5688 | m_gridWin->GetClientSize( &cw, &ch ); | |
5689 | CalcUnscrolledPosition( 0, 0, &left, &dummy ); | |
8f177c8e | 5690 | |
6d004f67 MB |
5691 | wxClientDC dc( m_gridWin ); |
5692 | PrepareDC( dc ); | |
a95e38c0 VZ |
5693 | y = wxMax( y, GetRowTop(m_dragRowOrCol) + |
5694 | GetRowMinimalHeight(m_dragRowOrCol) ); | |
6d004f67 MB |
5695 | dc.SetLogicalFunction(wxINVERT); |
5696 | if ( m_dragLastPos >= 0 ) | |
5697 | { | |
5698 | dc.DrawLine( left, m_dragLastPos, left+cw, m_dragLastPos ); | |
5699 | } | |
5700 | dc.DrawLine( left, y, left+cw, y ); | |
5701 | m_dragLastPos = y; | |
5702 | } | |
5703 | else if ( m_cursorMode == WXGRID_CURSOR_RESIZE_COL ) | |
5704 | { | |
5705 | int cw, ch, dummy, top; | |
5706 | m_gridWin->GetClientSize( &cw, &ch ); | |
5707 | CalcUnscrolledPosition( 0, 0, &dummy, &top ); | |
e2b42eeb | 5708 | |
6d004f67 MB |
5709 | wxClientDC dc( m_gridWin ); |
5710 | PrepareDC( dc ); | |
43947979 VZ |
5711 | x = wxMax( x, GetColLeft(m_dragRowOrCol) + |
5712 | GetColMinimalWidth(m_dragRowOrCol) ); | |
6d004f67 MB |
5713 | dc.SetLogicalFunction(wxINVERT); |
5714 | if ( m_dragLastPos >= 0 ) | |
5715 | { | |
a9339fe2 | 5716 | dc.DrawLine( m_dragLastPos, top, m_dragLastPos, top + ch ); |
6d004f67 | 5717 | } |
a9339fe2 | 5718 | dc.DrawLine( x, top, x, top + ch ); |
6d004f67 MB |
5719 | m_dragLastPos = x; |
5720 | } | |
e2b42eeb | 5721 | |
2d66e025 MB |
5722 | return; |
5723 | } | |
66242c80 | 5724 | |
ca65c044 | 5725 | m_isDragging = false; |
07296f0b RD |
5726 | m_startDragPos = wxDefaultPosition; |
5727 | ||
a5777624 RD |
5728 | // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL |
5729 | // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under | |
5730 | // wxGTK | |
e2b42eeb | 5731 | #if 0 |
a5777624 RD |
5732 | if ( event.Entering() || event.Leaving() ) |
5733 | { | |
5734 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); | |
5735 | m_gridWin->SetCursor( *wxSTANDARD_CURSOR ); | |
5736 | } | |
5737 | else | |
e2b42eeb VZ |
5738 | #endif // 0 |
5739 | ||
a5777624 RD |
5740 | // ------------ Left button pressed |
5741 | // | |
5742 | if ( event.LeftDown() && coords != wxGridNoCellCoords ) | |
f6bcfd97 BP |
5743 | { |
5744 | if ( !SendEvent( wxEVT_GRID_CELL_LEFT_CLICK, | |
5745 | coords.GetRow(), | |
5746 | coords.GetCol(), | |
5747 | event ) ) | |
a5777624 | 5748 | { |
2b01fd49 | 5749 | if ( !event.CmdDown() ) |
f6bcfd97 BP |
5750 | ClearSelection(); |
5751 | if ( event.ShiftDown() ) | |
5752 | { | |
3f3dc2ef VZ |
5753 | if ( m_selection ) |
5754 | { | |
5755 | m_selection->SelectBlock( m_currentCellCoords.GetRow(), | |
5756 | m_currentCellCoords.GetCol(), | |
5757 | coords.GetRow(), | |
5758 | coords.GetCol(), | |
5759 | event.ControlDown(), | |
5760 | event.ShiftDown(), | |
5761 | event.AltDown(), | |
5762 | event.MetaDown() ); | |
5763 | } | |
f6bcfd97 | 5764 | } |
2f024384 | 5765 | else if ( XToEdgeOfCol(x) < 0 && |
f6bcfd97 | 5766 | YToEdgeOfRow(y) < 0 ) |
58dd5b3b | 5767 | { |
a5777624 RD |
5768 | DisableCellEditControl(); |
5769 | MakeCellVisible( coords ); | |
5770 | ||
2b01fd49 | 5771 | if ( event.CmdDown() ) |
58dd5b3b | 5772 | { |
73145b0e JS |
5773 | if ( m_selection ) |
5774 | { | |
5775 | m_selection->ToggleCellSelection( coords.GetRow(), | |
5776 | coords.GetCol(), | |
5777 | event.ControlDown(), | |
5778 | event.ShiftDown(), | |
5779 | event.AltDown(), | |
5780 | event.MetaDown() ); | |
5781 | } | |
5782 | m_selectingTopLeft = wxGridNoCellCoords; | |
5783 | m_selectingBottomRight = wxGridNoCellCoords; | |
5784 | m_selectingKeyboard = coords; | |
a5777624 RD |
5785 | } |
5786 | else | |
5787 | { | |
73145b0e JS |
5788 | m_waitForSlowClick = m_currentCellCoords == coords && coords != wxGridNoCellCoords; |
5789 | SetCurrentCell( coords ); | |
5790 | if ( m_selection ) | |
aa5e1f75 | 5791 | { |
73145b0e JS |
5792 | if ( m_selection->GetSelectionMode() != |
5793 | wxGrid::wxGridSelectCells ) | |
3f3dc2ef | 5794 | { |
73145b0e | 5795 | HighlightBlock( coords, coords ); |
3f3dc2ef | 5796 | } |
aa5e1f75 | 5797 | } |
58dd5b3b MB |
5798 | } |
5799 | } | |
f85afd4e | 5800 | } |
a5777624 | 5801 | } |
f85afd4e | 5802 | |
a5777624 RD |
5803 | // ------------ Left double click |
5804 | // | |
5805 | else if ( event.LeftDClick() && coords != wxGridNoCellCoords ) | |
5806 | { | |
5807 | DisableCellEditControl(); | |
5808 | ||
2f024384 | 5809 | if ( XToEdgeOfCol(x) < 0 && YToEdgeOfRow(y) < 0 ) |
58dd5b3b | 5810 | { |
1ef49ab5 VS |
5811 | if ( !SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK, |
5812 | coords.GetRow(), | |
5813 | coords.GetCol(), | |
5814 | event ) ) | |
5815 | { | |
5816 | // we want double click to select a cell and start editing | |
5817 | // (i.e. to behave in same way as sequence of two slow clicks): | |
5818 | m_waitForSlowClick = true; | |
5819 | } | |
58dd5b3b | 5820 | } |
a5777624 | 5821 | } |
f85afd4e | 5822 | |
a5777624 RD |
5823 | // ------------ Left button released |
5824 | // | |
5825 | else if ( event.LeftUp() ) | |
5826 | { | |
5827 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) | |
f85afd4e | 5828 | { |
f40f9976 JS |
5829 | if (m_winCapture) |
5830 | { | |
2f024384 DS |
5831 | if (m_winCapture->HasCapture()) |
5832 | m_winCapture->ReleaseMouse(); | |
f40f9976 JS |
5833 | m_winCapture = NULL; |
5834 | } | |
5835 | ||
bee19958 | 5836 | if ( coords == m_currentCellCoords && m_waitForSlowClick && CanEnableCellControl() ) |
932b55d0 JS |
5837 | { |
5838 | ClearSelection(); | |
5839 | EnableCellEditControl(); | |
5840 | ||
2f024384 | 5841 | wxGridCellAttr *attr = GetCellAttr(coords); |
932b55d0 JS |
5842 | wxGridCellEditor *editor = attr->GetEditor(this, coords.GetRow(), coords.GetCol()); |
5843 | editor->StartingClick(); | |
5844 | editor->DecRef(); | |
5845 | attr->DecRef(); | |
5846 | ||
ca65c044 | 5847 | m_waitForSlowClick = false; |
932b55d0 JS |
5848 | } |
5849 | else if ( m_selectingTopLeft != wxGridNoCellCoords && | |
b5808881 | 5850 | m_selectingBottomRight != wxGridNoCellCoords ) |
52068ea5 | 5851 | { |
3f3dc2ef VZ |
5852 | if ( m_selection ) |
5853 | { | |
5854 | m_selection->SelectBlock( m_selectingTopLeft.GetRow(), | |
5855 | m_selectingTopLeft.GetCol(), | |
5856 | m_selectingBottomRight.GetRow(), | |
5857 | m_selectingBottomRight.GetCol(), | |
5858 | event.ControlDown(), | |
5859 | event.ShiftDown(), | |
5860 | event.AltDown(), | |
5861 | event.MetaDown() ); | |
5862 | } | |
5863 | ||
5c8fc7c1 SN |
5864 | m_selectingTopLeft = wxGridNoCellCoords; |
5865 | m_selectingBottomRight = wxGridNoCellCoords; | |
2d66e025 | 5866 | |
73145b0e JS |
5867 | // Show the edit control, if it has been hidden for |
5868 | // drag-shrinking. | |
5869 | ShowCellEditControl(); | |
5870 | } | |
a5777624 RD |
5871 | } |
5872 | else if ( m_cursorMode == WXGRID_CURSOR_RESIZE_ROW ) | |
5873 | { | |
5874 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); | |
5875 | DoEndDragResizeRow(); | |
e2b42eeb | 5876 | |
a5777624 RD |
5877 | // Note: we are ending the event *after* doing |
5878 | // default processing in this case | |
5879 | // | |
5880 | SendEvent( wxEVT_GRID_ROW_SIZE, m_dragRowOrCol, -1, event ); | |
5881 | } | |
5882 | else if ( m_cursorMode == WXGRID_CURSOR_RESIZE_COL ) | |
5883 | { | |
5884 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); | |
5885 | DoEndDragResizeCol(); | |
e2b42eeb | 5886 | |
a5777624 RD |
5887 | // Note: we are ending the event *after* doing |
5888 | // default processing in this case | |
5889 | // | |
5890 | SendEvent( wxEVT_GRID_COL_SIZE, -1, m_dragRowOrCol, event ); | |
58dd5b3b | 5891 | } |
f85afd4e | 5892 | |
a5777624 RD |
5893 | m_dragLastPos = -1; |
5894 | } | |
5895 | ||
a5777624 RD |
5896 | // ------------ Right button down |
5897 | // | |
5898 | else if ( event.RightDown() && coords != wxGridNoCellCoords ) | |
5899 | { | |
5900 | DisableCellEditControl(); | |
5901 | if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_CLICK, | |
5902 | coords.GetRow(), | |
5903 | coords.GetCol(), | |
5904 | event ) ) | |
f85afd4e | 5905 | { |
a5777624 | 5906 | // no default action at the moment |
60ff3b99 | 5907 | } |
a5777624 | 5908 | } |
2d66e025 | 5909 | |
a5777624 RD |
5910 | // ------------ Right double click |
5911 | // | |
5912 | else if ( event.RightDClick() && coords != wxGridNoCellCoords ) | |
5913 | { | |
5914 | DisableCellEditControl(); | |
5915 | if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_DCLICK, | |
5916 | coords.GetRow(), | |
5917 | coords.GetCol(), | |
5918 | event ) ) | |
f85afd4e | 5919 | { |
a5777624 | 5920 | // no default action at the moment |
60ff3b99 | 5921 | } |
a5777624 RD |
5922 | } |
5923 | ||
5924 | // ------------ Moving and no button action | |
5925 | // | |
5926 | else if ( event.Moving() && !event.IsButton() ) | |
5927 | { | |
4db6714b | 5928 | if ( coords.GetRow() < 0 || coords.GetCol() < 0 ) |
d57ad377 SN |
5929 | { |
5930 | // out of grid cell area | |
5931 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); | |
5932 | return; | |
5933 | } | |
5934 | ||
a5777624 RD |
5935 | int dragRow = YToEdgeOfRow( y ); |
5936 | int dragCol = XToEdgeOfCol( x ); | |
790cc417 | 5937 | |
a5777624 RD |
5938 | // Dragging on the corner of a cell to resize in both |
5939 | // directions is not implemented yet... | |
790cc417 | 5940 | // |
91894db3 | 5941 | if ( dragRow >= 0 && dragCol >= 0 ) |
790cc417 | 5942 | { |
a5777624 RD |
5943 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); |
5944 | return; | |
5945 | } | |
6d004f67 | 5946 | |
d57ad377 | 5947 | if ( dragRow >= 0 ) |
a5777624 RD |
5948 | { |
5949 | m_dragRowOrCol = dragRow; | |
6d004f67 | 5950 | |
a5777624 | 5951 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) |
6d004f67 | 5952 | { |
a5777624 RD |
5953 | if ( CanDragRowSize() && CanDragGridSize() ) |
5954 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW); | |
6d004f67 | 5955 | } |
a5777624 | 5956 | } |
91894db3 | 5957 | else if ( dragCol >= 0 ) |
a5777624 RD |
5958 | { |
5959 | m_dragRowOrCol = dragCol; | |
e2b42eeb | 5960 | |
a5777624 | 5961 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) |
6d004f67 | 5962 | { |
a5777624 RD |
5963 | if ( CanDragColSize() && CanDragGridSize() ) |
5964 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL); | |
6d004f67 MB |
5965 | } |
5966 | } | |
91894db3 | 5967 | else // Neither on a row or col edge |
a5777624 | 5968 | { |
91894db3 VZ |
5969 | if ( m_cursorMode != WXGRID_CURSOR_SELECT_CELL ) |
5970 | { | |
5971 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); | |
5972 | } | |
a5777624 RD |
5973 | } |
5974 | } | |
6d004f67 MB |
5975 | } |
5976 | ||
6d004f67 MB |
5977 | void wxGrid::DoEndDragResizeRow() |
5978 | { | |
5979 | if ( m_dragLastPos >= 0 ) | |
5980 | { | |
5981 | // erase the last line and resize the row | |
5982 | // | |
5983 | int cw, ch, left, dummy; | |
5984 | m_gridWin->GetClientSize( &cw, &ch ); | |
5985 | CalcUnscrolledPosition( 0, 0, &left, &dummy ); | |
5986 | ||
5987 | wxClientDC dc( m_gridWin ); | |
5988 | PrepareDC( dc ); | |
5989 | dc.SetLogicalFunction( wxINVERT ); | |
a9339fe2 | 5990 | dc.DrawLine( left, m_dragLastPos, left + cw, m_dragLastPos ); |
6d004f67 | 5991 | HideCellEditControl(); |
a5777624 | 5992 | SaveEditControlValue(); |
6d004f67 | 5993 | |
7c1cb261 | 5994 | int rowTop = GetRowTop(m_dragRowOrCol); |
6d004f67 | 5995 | SetRowSize( m_dragRowOrCol, |
b8d24d4e | 5996 | wxMax( m_dragLastPos - rowTop, m_minAcceptableRowHeight ) ); |
e2b42eeb | 5997 | |
6d004f67 MB |
5998 | if ( !GetBatchCount() ) |
5999 | { | |
6000 | // Only needed to get the correct rect.y: | |
6001 | wxRect rect ( CellToRect( m_dragRowOrCol, 0 ) ); | |
6002 | rect.x = 0; | |
6003 | CalcScrolledPosition(0, rect.y, &dummy, &rect.y); | |
6004 | rect.width = m_rowLabelWidth; | |
6005 | rect.height = ch - rect.y; | |
ca65c044 | 6006 | m_rowLabelWin->Refresh( true, &rect ); |
6d004f67 | 6007 | rect.width = cw; |
ccdee36f | 6008 | |
27f35b66 SN |
6009 | // if there is a multicell block, paint all of it |
6010 | if (m_table) | |
6011 | { | |
6012 | int i, cell_rows, cell_cols, subtract_rows = 0; | |
6013 | int leftCol = XToCol(left); | |
a9339fe2 | 6014 | int rightCol = internalXToCol(left + cw); |
27f35b66 SN |
6015 | if (leftCol >= 0) |
6016 | { | |
27f35b66 SN |
6017 | for (i=leftCol; i<rightCol; i++) |
6018 | { | |
6019 | GetCellSize(m_dragRowOrCol, i, &cell_rows, &cell_cols); | |
6020 | if (cell_rows < subtract_rows) | |
6021 | subtract_rows = cell_rows; | |
6022 | } | |
6023 | rect.y = GetRowTop(m_dragRowOrCol + subtract_rows); | |
6024 | CalcScrolledPosition(0, rect.y, &dummy, &rect.y); | |
6025 | rect.height = ch - rect.y; | |
6026 | } | |
6027 | } | |
ca65c044 | 6028 | m_gridWin->Refresh( false, &rect ); |
6d004f67 MB |
6029 | } |
6030 | ||
6031 | ShowCellEditControl(); | |
6032 | } | |
6033 | } | |
6034 | ||
6035 | ||
6036 | void wxGrid::DoEndDragResizeCol() | |
6037 | { | |
6038 | if ( m_dragLastPos >= 0 ) | |
6039 | { | |
6040 | // erase the last line and resize the col | |
6041 | // | |
6042 | int cw, ch, dummy, top; | |
6043 | m_gridWin->GetClientSize( &cw, &ch ); | |
6044 | CalcUnscrolledPosition( 0, 0, &dummy, &top ); | |
6045 | ||
6046 | wxClientDC dc( m_gridWin ); | |
6047 | PrepareDC( dc ); | |
6048 | dc.SetLogicalFunction( wxINVERT ); | |
a9339fe2 | 6049 | dc.DrawLine( m_dragLastPos, top, m_dragLastPos, top + ch ); |
6d004f67 | 6050 | HideCellEditControl(); |
a5777624 | 6051 | SaveEditControlValue(); |
6d004f67 | 6052 | |
7c1cb261 | 6053 | int colLeft = GetColLeft(m_dragRowOrCol); |
6d004f67 | 6054 | SetColSize( m_dragRowOrCol, |
43947979 VZ |
6055 | wxMax( m_dragLastPos - colLeft, |
6056 | GetColMinimalWidth(m_dragRowOrCol) ) ); | |
6d004f67 MB |
6057 | |
6058 | if ( !GetBatchCount() ) | |
6059 | { | |
6060 | // Only needed to get the correct rect.x: | |
6061 | wxRect rect ( CellToRect( 0, m_dragRowOrCol ) ); | |
6062 | rect.y = 0; | |
6063 | CalcScrolledPosition(rect.x, 0, &rect.x, &dummy); | |
6064 | rect.width = cw - rect.x; | |
6065 | rect.height = m_colLabelHeight; | |
ca65c044 | 6066 | m_colLabelWin->Refresh( true, &rect ); |
6d004f67 | 6067 | rect.height = ch; |
2f024384 | 6068 | |
27f35b66 SN |
6069 | // if there is a multicell block, paint all of it |
6070 | if (m_table) | |
6071 | { | |
6072 | int i, cell_rows, cell_cols, subtract_cols = 0; | |
6073 | int topRow = YToRow(top); | |
a9339fe2 | 6074 | int bottomRow = internalYToRow(top + cw); |
27f35b66 SN |
6075 | if (topRow >= 0) |
6076 | { | |
27f35b66 SN |
6077 | for (i=topRow; i<bottomRow; i++) |
6078 | { | |
6079 | GetCellSize(i, m_dragRowOrCol, &cell_rows, &cell_cols); | |
6080 | if (cell_cols < subtract_cols) | |
6081 | subtract_cols = cell_cols; | |
6082 | } | |
a9339fe2 | 6083 | |
27f35b66 SN |
6084 | rect.x = GetColLeft(m_dragRowOrCol + subtract_cols); |
6085 | CalcScrolledPosition(rect.x, 0, &rect.x, &dummy); | |
6086 | rect.width = cw - rect.x; | |
6087 | } | |
6088 | } | |
2f024384 | 6089 | |
ca65c044 | 6090 | m_gridWin->Refresh( false, &rect ); |
790cc417 | 6091 | } |
e2b42eeb | 6092 | |
6d004f67 | 6093 | ShowCellEditControl(); |
f85afd4e | 6094 | } |
f85afd4e MB |
6095 | } |
6096 | ||
2d66e025 MB |
6097 | // |
6098 | // ------ interaction with data model | |
6099 | // | |
6100 | bool wxGrid::ProcessTableMessage( wxGridTableMessage& msg ) | |
f85afd4e | 6101 | { |
2d66e025 | 6102 | switch ( msg.GetId() ) |
17732cec | 6103 | { |
2d66e025 MB |
6104 | case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES: |
6105 | return GetModelValues(); | |
17732cec | 6106 | |
2d66e025 MB |
6107 | case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES: |
6108 | return SetModelValues(); | |
f85afd4e | 6109 | |
2d66e025 MB |
6110 | case wxGRIDTABLE_NOTIFY_ROWS_INSERTED: |
6111 | case wxGRIDTABLE_NOTIFY_ROWS_APPENDED: | |
6112 | case wxGRIDTABLE_NOTIFY_ROWS_DELETED: | |
6113 | case wxGRIDTABLE_NOTIFY_COLS_INSERTED: | |
6114 | case wxGRIDTABLE_NOTIFY_COLS_APPENDED: | |
6115 | case wxGRIDTABLE_NOTIFY_COLS_DELETED: | |
6116 | return Redimension( msg ); | |
6117 | ||
6118 | default: | |
ca65c044 | 6119 | return false; |
f85afd4e | 6120 | } |
2d66e025 | 6121 | } |
f85afd4e | 6122 | |
2d66e025 | 6123 | // The behaviour of this function depends on the grid table class |
5b061713 | 6124 | // Clear() function. For the default wxGridStringTable class the |
2d66e025 MB |
6125 | // behavious is to replace all cell contents with wxEmptyString but |
6126 | // not to change the number of rows or cols. | |
6127 | // | |
6128 | void wxGrid::ClearGrid() | |
6129 | { | |
6130 | if ( m_table ) | |
f85afd4e | 6131 | { |
4cfa5de6 RD |
6132 | if (IsCellEditControlEnabled()) |
6133 | DisableCellEditControl(); | |
6134 | ||
2d66e025 | 6135 | m_table->Clear(); |
5b061713 | 6136 | if (!GetBatchCount()) |
a9339fe2 | 6137 | m_gridWin->Refresh(); |
f85afd4e MB |
6138 | } |
6139 | } | |
6140 | ||
2d66e025 | 6141 | bool wxGrid::InsertRows( int pos, int numRows, bool WXUNUSED(updateLabels) ) |
f85afd4e | 6142 | { |
2d66e025 | 6143 | // TODO: something with updateLabels flag |
8f177c8e | 6144 | |
2d66e025 | 6145 | if ( !m_created ) |
f85afd4e | 6146 | { |
bd3c6758 | 6147 | wxFAIL_MSG( wxT("Called wxGrid::InsertRows() before calling CreateGrid()") ); |
ca65c044 | 6148 | return false; |
2d66e025 | 6149 | } |
8f177c8e | 6150 | |
2d66e025 MB |
6151 | if ( m_table ) |
6152 | { | |
b7fff980 | 6153 | if (IsCellEditControlEnabled()) |
b54ba671 | 6154 | DisableCellEditControl(); |
b7fff980 | 6155 | |
4ea3479c | 6156 | bool done = m_table->InsertRows( pos, numRows ); |
4ea3479c | 6157 | return done; |
f85afd4e | 6158 | |
2d66e025 MB |
6159 | // the table will have sent the results of the insert row |
6160 | // operation to this view object as a grid table message | |
f85afd4e | 6161 | } |
a9339fe2 | 6162 | |
ca65c044 | 6163 | return false; |
f85afd4e MB |
6164 | } |
6165 | ||
2d66e025 | 6166 | bool wxGrid::AppendRows( int numRows, bool WXUNUSED(updateLabels) ) |
f85afd4e | 6167 | { |
2d66e025 MB |
6168 | // TODO: something with updateLabels flag |
6169 | ||
6170 | if ( !m_created ) | |
f85afd4e | 6171 | { |
bd3c6758 | 6172 | wxFAIL_MSG( wxT("Called wxGrid::AppendRows() before calling CreateGrid()") ); |
ca65c044 | 6173 | return false; |
2d66e025 MB |
6174 | } |
6175 | ||
4ea3479c JS |
6176 | if ( m_table ) |
6177 | { | |
6178 | bool done = m_table && m_table->AppendRows( numRows ); | |
4ea3479c | 6179 | return done; |
a9339fe2 | 6180 | |
4ea3479c JS |
6181 | // the table will have sent the results of the append row |
6182 | // operation to this view object as a grid table message | |
6183 | } | |
a9339fe2 | 6184 | |
ca65c044 | 6185 | return false; |
f85afd4e MB |
6186 | } |
6187 | ||
2d66e025 | 6188 | bool wxGrid::DeleteRows( int pos, int numRows, bool WXUNUSED(updateLabels) ) |
f85afd4e | 6189 | { |
2d66e025 MB |
6190 | // TODO: something with updateLabels flag |
6191 | ||
6192 | if ( !m_created ) | |
f85afd4e | 6193 | { |
bd3c6758 | 6194 | wxFAIL_MSG( wxT("Called wxGrid::DeleteRows() before calling CreateGrid()") ); |
ca65c044 | 6195 | return false; |
2d66e025 MB |
6196 | } |
6197 | ||
b7fff980 | 6198 | if ( m_table ) |
2d66e025 | 6199 | { |
b7fff980 | 6200 | if (IsCellEditControlEnabled()) |
b54ba671 | 6201 | DisableCellEditControl(); |
f85afd4e | 6202 | |
4ea3479c | 6203 | bool done = m_table->DeleteRows( pos, numRows ); |
4ea3479c | 6204 | return done; |
f6bcfd97 BP |
6205 | // the table will have sent the results of the delete row |
6206 | // operation to this view object as a grid table message | |
2d66e025 | 6207 | } |
a9339fe2 | 6208 | |
ca65c044 | 6209 | return false; |
2d66e025 | 6210 | } |
f85afd4e | 6211 | |
2d66e025 MB |
6212 | bool wxGrid::InsertCols( int pos, int numCols, bool WXUNUSED(updateLabels) ) |
6213 | { | |
6214 | // TODO: something with updateLabels flag | |
8f177c8e | 6215 | |
2d66e025 MB |
6216 | if ( !m_created ) |
6217 | { | |
bd3c6758 | 6218 | wxFAIL_MSG( wxT("Called wxGrid::InsertCols() before calling CreateGrid()") ); |
ca65c044 | 6219 | return false; |
2d66e025 | 6220 | } |
f85afd4e | 6221 | |
2d66e025 MB |
6222 | if ( m_table ) |
6223 | { | |
b7fff980 | 6224 | if (IsCellEditControlEnabled()) |
b54ba671 | 6225 | DisableCellEditControl(); |
b7fff980 | 6226 | |
4ea3479c | 6227 | bool done = m_table->InsertCols( pos, numCols ); |
4ea3479c | 6228 | return done; |
2d66e025 MB |
6229 | // the table will have sent the results of the insert col |
6230 | // operation to this view object as a grid table message | |
f85afd4e | 6231 | } |
2f024384 | 6232 | |
ca65c044 | 6233 | return false; |
f85afd4e MB |
6234 | } |
6235 | ||
2d66e025 | 6236 | bool wxGrid::AppendCols( int numCols, bool WXUNUSED(updateLabels) ) |
f85afd4e | 6237 | { |
2d66e025 MB |
6238 | // TODO: something with updateLabels flag |
6239 | ||
6240 | if ( !m_created ) | |
f85afd4e | 6241 | { |
bd3c6758 | 6242 | wxFAIL_MSG( wxT("Called wxGrid::AppendCols() before calling CreateGrid()") ); |
ca65c044 | 6243 | return false; |
2d66e025 | 6244 | } |
f85afd4e | 6245 | |
4ea3479c JS |
6246 | if ( m_table ) |
6247 | { | |
6248 | bool done = m_table->AppendCols( numCols ); | |
4ea3479c JS |
6249 | return done; |
6250 | // the table will have sent the results of the append col | |
6251 | // operation to this view object as a grid table message | |
6252 | } | |
2f024384 | 6253 | |
ca65c044 | 6254 | return false; |
f85afd4e MB |
6255 | } |
6256 | ||
2d66e025 | 6257 | bool wxGrid::DeleteCols( int pos, int numCols, bool WXUNUSED(updateLabels) ) |
f85afd4e | 6258 | { |
2d66e025 | 6259 | // TODO: something with updateLabels flag |
8f177c8e | 6260 | |
2d66e025 | 6261 | if ( !m_created ) |
f85afd4e | 6262 | { |
bd3c6758 | 6263 | wxFAIL_MSG( wxT("Called wxGrid::DeleteCols() before calling CreateGrid()") ); |
ca65c044 | 6264 | return false; |
f85afd4e MB |
6265 | } |
6266 | ||
b7fff980 | 6267 | if ( m_table ) |
2d66e025 | 6268 | { |
b7fff980 | 6269 | if (IsCellEditControlEnabled()) |
b54ba671 | 6270 | DisableCellEditControl(); |
8f177c8e | 6271 | |
4ea3479c | 6272 | bool done = m_table->DeleteCols( pos, numCols ); |
4ea3479c | 6273 | return done; |
f6bcfd97 BP |
6274 | // the table will have sent the results of the delete col |
6275 | // operation to this view object as a grid table message | |
f85afd4e | 6276 | } |
2f024384 | 6277 | |
ca65c044 | 6278 | return false; |
f85afd4e MB |
6279 | } |
6280 | ||
2d66e025 MB |
6281 | // |
6282 | // ----- event handlers | |
f85afd4e | 6283 | // |
8f177c8e | 6284 | |
2d66e025 MB |
6285 | // Generate a grid event based on a mouse event and |
6286 | // return the result of ProcessEvent() | |
6287 | // | |
fe7b9ed6 | 6288 | int wxGrid::SendEvent( const wxEventType type, |
2d66e025 MB |
6289 | int row, int col, |
6290 | wxMouseEvent& mouseEv ) | |
6291 | { | |
2f024384 | 6292 | bool claimed, vetoed; |
fe7b9ed6 | 6293 | |
97a9929e VZ |
6294 | if ( type == wxEVT_GRID_ROW_SIZE || type == wxEVT_GRID_COL_SIZE ) |
6295 | { | |
6296 | int rowOrCol = (row == -1 ? col : row); | |
6297 | ||
6298 | wxGridSizeEvent gridEvt( GetId(), | |
6299 | type, | |
6300 | this, | |
6301 | rowOrCol, | |
6302 | mouseEv.GetX() + GetRowLabelSize(), | |
6303 | mouseEv.GetY() + GetColLabelSize(), | |
6304 | mouseEv.ControlDown(), | |
6305 | mouseEv.ShiftDown(), | |
6306 | mouseEv.AltDown(), | |
6307 | mouseEv.MetaDown() ); | |
6308 | ||
6309 | claimed = GetEventHandler()->ProcessEvent(gridEvt); | |
6310 | vetoed = !gridEvt.IsAllowed(); | |
6311 | } | |
fe7b9ed6 | 6312 | else if ( type == wxEVT_GRID_RANGE_SELECT ) |
97a9929e VZ |
6313 | { |
6314 | // Right now, it should _never_ end up here! | |
6315 | wxGridRangeSelectEvent gridEvt( GetId(), | |
6316 | type, | |
6317 | this, | |
6318 | m_selectingTopLeft, | |
6319 | m_selectingBottomRight, | |
ca65c044 | 6320 | true, |
97a9929e VZ |
6321 | mouseEv.ControlDown(), |
6322 | mouseEv.ShiftDown(), | |
6323 | mouseEv.AltDown(), | |
6324 | mouseEv.MetaDown() ); | |
6325 | ||
6326 | claimed = GetEventHandler()->ProcessEvent(gridEvt); | |
6327 | vetoed = !gridEvt.IsAllowed(); | |
6328 | } | |
fe7b9ed6 | 6329 | else |
97a9929e VZ |
6330 | { |
6331 | wxGridEvent gridEvt( GetId(), | |
6332 | type, | |
6333 | this, | |
6334 | row, col, | |
6335 | mouseEv.GetX() + GetRowLabelSize(), | |
6336 | mouseEv.GetY() + GetColLabelSize(), | |
ca65c044 | 6337 | false, |
97a9929e VZ |
6338 | mouseEv.ControlDown(), |
6339 | mouseEv.ShiftDown(), | |
6340 | mouseEv.AltDown(), | |
6341 | mouseEv.MetaDown() ); | |
6342 | claimed = GetEventHandler()->ProcessEvent(gridEvt); | |
6343 | vetoed = !gridEvt.IsAllowed(); | |
6344 | } | |
6345 | ||
6346 | // A Veto'd event may not be `claimed' so test this first | |
4db6714b KH |
6347 | if (vetoed) |
6348 | return -1; | |
6349 | ||
97a9929e | 6350 | return claimed ? 1 : 0; |
f85afd4e MB |
6351 | } |
6352 | ||
2d66e025 MB |
6353 | // Generate a grid event of specified type and return the result |
6354 | // of ProcessEvent(). | |
f85afd4e | 6355 | // |
fe7b9ed6 | 6356 | int wxGrid::SendEvent( const wxEventType type, |
2d66e025 | 6357 | int row, int col ) |
f85afd4e | 6358 | { |
a9339fe2 | 6359 | bool claimed, vetoed; |
fe7b9ed6 | 6360 | |
b54ba671 | 6361 | if ( type == wxEVT_GRID_ROW_SIZE || type == wxEVT_GRID_COL_SIZE ) |
f85afd4e | 6362 | { |
2d66e025 | 6363 | int rowOrCol = (row == -1 ? col : row); |
f85afd4e | 6364 | |
a9339fe2 | 6365 | wxGridSizeEvent gridEvt( GetId(), type, this, rowOrCol ); |
2d66e025 | 6366 | |
fe7b9ed6 VZ |
6367 | claimed = GetEventHandler()->ProcessEvent(gridEvt); |
6368 | vetoed = !gridEvt.IsAllowed(); | |
2d66e025 MB |
6369 | } |
6370 | else | |
6371 | { | |
a9339fe2 | 6372 | wxGridEvent gridEvt( GetId(), type, this, row, col ); |
8f177c8e | 6373 | |
fe7b9ed6 VZ |
6374 | claimed = GetEventHandler()->ProcessEvent(gridEvt); |
6375 | vetoed = !gridEvt.IsAllowed(); | |
6376 | } | |
6377 | ||
97a9929e | 6378 | // A Veto'd event may not be `claimed' so test this first |
4db6714b KH |
6379 | if (vetoed) |
6380 | return -1; | |
6381 | ||
97a9929e | 6382 | return claimed ? 1 : 0; |
f85afd4e MB |
6383 | } |
6384 | ||
2d66e025 | 6385 | void wxGrid::OnPaint( wxPaintEvent& WXUNUSED(event) ) |
f85afd4e | 6386 | { |
3d59537f DS |
6387 | // needed to prevent zillions of paint events on MSW |
6388 | wxPaintDC dc(this); | |
8f177c8e | 6389 | } |
f85afd4e | 6390 | |
bca7bfc8 | 6391 | void wxGrid::Refresh(bool eraseb, const wxRect* rect) |
27f35b66 | 6392 | { |
ad603bf7 VZ |
6393 | // Don't do anything if between Begin/EndBatch... |
6394 | // EndBatch() will do all this on the last nested one anyway. | |
27f35b66 SN |
6395 | if (! GetBatchCount()) |
6396 | { | |
bca7bfc8 | 6397 | // Refresh to get correct scrolled position: |
4db6714b | 6398 | wxScrolledWindow::Refresh(eraseb, rect); |
27f35b66 | 6399 | |
27f35b66 SN |
6400 | if (rect) |
6401 | { | |
bca7bfc8 SN |
6402 | int rect_x, rect_y, rectWidth, rectHeight; |
6403 | int width_label, width_cell, height_label, height_cell; | |
6404 | int x, y; | |
6405 | ||
2f024384 | 6406 | // Copy rectangle can get scroll offsets.. |
bca7bfc8 SN |
6407 | rect_x = rect->GetX(); |
6408 | rect_y = rect->GetY(); | |
6409 | rectWidth = rect->GetWidth(); | |
6410 | rectHeight = rect->GetHeight(); | |
27f35b66 | 6411 | |
bca7bfc8 | 6412 | width_label = m_rowLabelWidth - rect_x; |
4db6714b KH |
6413 | if (width_label > rectWidth) |
6414 | width_label = rectWidth; | |
27f35b66 | 6415 | |
bca7bfc8 | 6416 | height_label = m_colLabelHeight - rect_y; |
a9339fe2 DS |
6417 | if (height_label > rectHeight) |
6418 | height_label = rectHeight; | |
27f35b66 | 6419 | |
bca7bfc8 SN |
6420 | if (rect_x > m_rowLabelWidth) |
6421 | { | |
6422 | x = rect_x - m_rowLabelWidth; | |
6423 | width_cell = rectWidth; | |
6424 | } | |
6425 | else | |
6426 | { | |
6427 | x = 0; | |
6428 | width_cell = rectWidth - (m_rowLabelWidth - rect_x); | |
6429 | } | |
6430 | ||
6431 | if (rect_y > m_colLabelHeight) | |
6432 | { | |
6433 | y = rect_y - m_colLabelHeight; | |
6434 | height_cell = rectHeight; | |
6435 | } | |
6436 | else | |
6437 | { | |
6438 | y = 0; | |
6439 | height_cell = rectHeight - (m_colLabelHeight - rect_y); | |
6440 | } | |
6441 | ||
6442 | // Paint corner label part intersecting rect. | |
6443 | if ( width_label > 0 && height_label > 0 ) | |
6444 | { | |
6445 | wxRect anotherrect(rect_x, rect_y, width_label, height_label); | |
6446 | m_cornerLabelWin->Refresh(eraseb, &anotherrect); | |
6447 | } | |
6448 | ||
6449 | // Paint col labels part intersecting rect. | |
6450 | if ( width_cell > 0 && height_label > 0 ) | |
6451 | { | |
6452 | wxRect anotherrect(x, rect_y, width_cell, height_label); | |
6453 | m_colLabelWin->Refresh(eraseb, &anotherrect); | |
6454 | } | |
6455 | ||
6456 | // Paint row labels part intersecting rect. | |
6457 | if ( width_label > 0 && height_cell > 0 ) | |
6458 | { | |
6459 | wxRect anotherrect(rect_x, y, width_label, height_cell); | |
6460 | m_rowLabelWin->Refresh(eraseb, &anotherrect); | |
6461 | } | |
6462 | ||
6463 | // Paint cell area part intersecting rect. | |
6464 | if ( width_cell > 0 && height_cell > 0 ) | |
6465 | { | |
6466 | wxRect anotherrect(x, y, width_cell, height_cell); | |
6467 | m_gridWin->Refresh(eraseb, &anotherrect); | |
6468 | } | |
6469 | } | |
6470 | else | |
6471 | { | |
6472 | m_cornerLabelWin->Refresh(eraseb, NULL); | |
2b5f62a0 | 6473 | m_colLabelWin->Refresh(eraseb, NULL); |
bca7bfc8 SN |
6474 | m_rowLabelWin->Refresh(eraseb, NULL); |
6475 | m_gridWin->Refresh(eraseb, NULL); | |
6476 | } | |
27f35b66 SN |
6477 | } |
6478 | } | |
f85afd4e | 6479 | |
97a9929e | 6480 | void wxGrid::OnSize( wxSizeEvent& event ) |
f85afd4e | 6481 | { |
97a9929e | 6482 | // position the child windows |
7807d81c | 6483 | CalcWindowSizes(); |
97a9929e VZ |
6484 | |
6485 | // don't call CalcDimensions() from here, the base class handles the size | |
6486 | // changes itself | |
6487 | event.Skip(); | |
f85afd4e MB |
6488 | } |
6489 | ||
2d66e025 | 6490 | void wxGrid::OnKeyDown( wxKeyEvent& event ) |
f85afd4e | 6491 | { |
2d66e025 | 6492 | if ( m_inOnKeyDown ) |
f85afd4e | 6493 | { |
2d66e025 MB |
6494 | // shouldn't be here - we are going round in circles... |
6495 | // | |
07296f0b | 6496 | wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") ); |
f85afd4e MB |
6497 | } |
6498 | ||
ca65c044 | 6499 | m_inOnKeyDown = true; |
f85afd4e | 6500 | |
2d66e025 | 6501 | // propagate the event up and see if it gets processed |
2d66e025 MB |
6502 | wxWindow *parent = GetParent(); |
6503 | wxKeyEvent keyEvt( event ); | |
6504 | keyEvt.SetEventObject( parent ); | |
6505 | ||
6506 | if ( !parent->GetEventHandler()->ProcessEvent( keyEvt ) ) | |
f85afd4e | 6507 | { |
2d66e025 | 6508 | // try local handlers |
12a3f227 | 6509 | switch ( event.GetKeyCode() ) |
2d66e025 MB |
6510 | { |
6511 | case WXK_UP: | |
6512 | if ( event.ControlDown() ) | |
5c8fc7c1 | 6513 | MoveCursorUpBlock( event.ShiftDown() ); |
2d66e025 | 6514 | else |
5c8fc7c1 | 6515 | MoveCursorUp( event.ShiftDown() ); |
2d66e025 | 6516 | break; |
f85afd4e | 6517 | |
2d66e025 MB |
6518 | case WXK_DOWN: |
6519 | if ( event.ControlDown() ) | |
5c8fc7c1 | 6520 | MoveCursorDownBlock( event.ShiftDown() ); |
2d66e025 | 6521 | else |
5c8fc7c1 | 6522 | MoveCursorDown( event.ShiftDown() ); |
2d66e025 | 6523 | break; |
8f177c8e | 6524 | |
2d66e025 MB |
6525 | case WXK_LEFT: |
6526 | if ( event.ControlDown() ) | |
5c8fc7c1 | 6527 | MoveCursorLeftBlock( event.ShiftDown() ); |
2d66e025 | 6528 | else |
5c8fc7c1 | 6529 | MoveCursorLeft( event.ShiftDown() ); |
2d66e025 MB |
6530 | break; |
6531 | ||
6532 | case WXK_RIGHT: | |
6533 | if ( event.ControlDown() ) | |
5c8fc7c1 | 6534 | MoveCursorRightBlock( event.ShiftDown() ); |
2d66e025 | 6535 | else |
5c8fc7c1 | 6536 | MoveCursorRight( event.ShiftDown() ); |
2d66e025 | 6537 | break; |
b99be8fb | 6538 | |
2d66e025 | 6539 | case WXK_RETURN: |
a4f7bf58 | 6540 | case WXK_NUMPAD_ENTER: |
58dd5b3b MB |
6541 | if ( event.ControlDown() ) |
6542 | { | |
6543 | event.Skip(); // to let the edit control have the return | |
6544 | } | |
6545 | else | |
6546 | { | |
f6bcfd97 BP |
6547 | if ( GetGridCursorRow() < GetNumberRows()-1 ) |
6548 | { | |
6549 | MoveCursorDown( event.ShiftDown() ); | |
6550 | } | |
6551 | else | |
6552 | { | |
6553 | // at the bottom of a column | |
13f6e9e8 | 6554 | DisableCellEditControl(); |
f6bcfd97 | 6555 | } |
58dd5b3b | 6556 | } |
2d66e025 MB |
6557 | break; |
6558 | ||
5c8fc7c1 | 6559 | case WXK_ESCAPE: |
e32352cf | 6560 | ClearSelection(); |
5c8fc7c1 SN |
6561 | break; |
6562 | ||
2c9a89e0 RD |
6563 | case WXK_TAB: |
6564 | if (event.ShiftDown()) | |
f6bcfd97 BP |
6565 | { |
6566 | if ( GetGridCursorCol() > 0 ) | |
6567 | { | |
ca65c044 | 6568 | MoveCursorLeft( false ); |
f6bcfd97 BP |
6569 | } |
6570 | else | |
6571 | { | |
6572 | // at left of grid | |
13f6e9e8 | 6573 | DisableCellEditControl(); |
f6bcfd97 BP |
6574 | } |
6575 | } | |
2c9a89e0 | 6576 | else |
f6bcfd97 | 6577 | { |
ccdee36f | 6578 | if ( GetGridCursorCol() < GetNumberCols() - 1 ) |
f6bcfd97 | 6579 | { |
ca65c044 | 6580 | MoveCursorRight( false ); |
f6bcfd97 BP |
6581 | } |
6582 | else | |
6583 | { | |
6584 | // at right of grid | |
13f6e9e8 | 6585 | DisableCellEditControl(); |
f6bcfd97 BP |
6586 | } |
6587 | } | |
2c9a89e0 RD |
6588 | break; |
6589 | ||
2d66e025 MB |
6590 | case WXK_HOME: |
6591 | if ( event.ControlDown() ) | |
6592 | { | |
6593 | MakeCellVisible( 0, 0 ); | |
6594 | SetCurrentCell( 0, 0 ); | |
6595 | } | |
6596 | else | |
6597 | { | |
6598 | event.Skip(); | |
6599 | } | |
6600 | break; | |
6601 | ||
6602 | case WXK_END: | |
6603 | if ( event.ControlDown() ) | |
6604 | { | |
a9339fe2 DS |
6605 | MakeCellVisible( m_numRows - 1, m_numCols - 1 ); |
6606 | SetCurrentCell( m_numRows - 1, m_numCols - 1 ); | |
2d66e025 MB |
6607 | } |
6608 | else | |
6609 | { | |
6610 | event.Skip(); | |
6611 | } | |
6612 | break; | |
6613 | ||
faa94f3e | 6614 | case WXK_PAGEUP: |
2d66e025 MB |
6615 | MovePageUp(); |
6616 | break; | |
6617 | ||
faa94f3e | 6618 | case WXK_PAGEDOWN: |
2d66e025 MB |
6619 | MovePageDown(); |
6620 | break; | |
6621 | ||
07296f0b | 6622 | case WXK_SPACE: |
aa5e1f75 SN |
6623 | if ( event.ControlDown() ) |
6624 | { | |
3f3dc2ef VZ |
6625 | if ( m_selection ) |
6626 | { | |
a9339fe2 DS |
6627 | m_selection->ToggleCellSelection( |
6628 | m_currentCellCoords.GetRow(), | |
6629 | m_currentCellCoords.GetCol(), | |
6630 | event.ControlDown(), | |
6631 | event.ShiftDown(), | |
6632 | event.AltDown(), | |
6633 | event.MetaDown() ); | |
3f3dc2ef | 6634 | } |
aa5e1f75 SN |
6635 | break; |
6636 | } | |
ccdee36f | 6637 | |
07296f0b | 6638 | if ( !IsEditable() ) |
ca65c044 | 6639 | MoveCursorRight( false ); |
ccdee36f DS |
6640 | else |
6641 | event.Skip(); | |
6642 | break; | |
07296f0b | 6643 | |
2d66e025 | 6644 | default: |
63e2147c | 6645 | event.Skip(); |
025562fe | 6646 | break; |
2d66e025 | 6647 | } |
f85afd4e MB |
6648 | } |
6649 | ||
ca65c044 | 6650 | m_inOnKeyDown = false; |
f85afd4e MB |
6651 | } |
6652 | ||
f6bcfd97 BP |
6653 | void wxGrid::OnKeyUp( wxKeyEvent& event ) |
6654 | { | |
6655 | // try local handlers | |
6656 | // | |
12a3f227 | 6657 | if ( event.GetKeyCode() == WXK_SHIFT ) |
f6bcfd97 BP |
6658 | { |
6659 | if ( m_selectingTopLeft != wxGridNoCellCoords && | |
6660 | m_selectingBottomRight != wxGridNoCellCoords ) | |
3f3dc2ef VZ |
6661 | { |
6662 | if ( m_selection ) | |
6663 | { | |
a9339fe2 DS |
6664 | m_selection->SelectBlock( |
6665 | m_selectingTopLeft.GetRow(), | |
6666 | m_selectingTopLeft.GetCol(), | |
6667 | m_selectingBottomRight.GetRow(), | |
6668 | m_selectingBottomRight.GetCol(), | |
6669 | event.ControlDown(), | |
6670 | true, | |
6671 | event.AltDown(), | |
6672 | event.MetaDown() ); | |
3f3dc2ef VZ |
6673 | } |
6674 | } | |
6675 | ||
f6bcfd97 BP |
6676 | m_selectingTopLeft = wxGridNoCellCoords; |
6677 | m_selectingBottomRight = wxGridNoCellCoords; | |
6678 | m_selectingKeyboard = wxGridNoCellCoords; | |
6679 | } | |
6680 | } | |
6681 | ||
63e2147c RD |
6682 | void wxGrid::OnChar( wxKeyEvent& event ) |
6683 | { | |
6684 | // is it possible to edit the current cell at all? | |
6685 | if ( !IsCellEditControlEnabled() && CanEnableCellControl() ) | |
6686 | { | |
6687 | // yes, now check whether the cells editor accepts the key | |
6688 | int row = m_currentCellCoords.GetRow(); | |
6689 | int col = m_currentCellCoords.GetCol(); | |
2f024384 | 6690 | wxGridCellAttr *attr = GetCellAttr(row, col); |
63e2147c RD |
6691 | wxGridCellEditor *editor = attr->GetEditor(this, row, col); |
6692 | ||
6693 | // <F2> is special and will always start editing, for | |
6694 | // other keys - ask the editor itself | |
6695 | if ( (event.GetKeyCode() == WXK_F2 && !event.HasModifiers()) | |
6696 | || editor->IsAcceptedKey(event) ) | |
6697 | { | |
6698 | // ensure cell is visble | |
6699 | MakeCellVisible(row, col); | |
6700 | EnableCellEditControl(); | |
6701 | ||
6702 | // a problem can arise if the cell is not completely | |
6703 | // visible (even after calling MakeCellVisible the | |
6704 | // control is not created and calling StartingKey will | |
6705 | // crash the app | |
046d682f | 6706 | if ( event.GetKeyCode() != WXK_F2 && editor->IsCreated() && m_cellEditCtrlEnabled ) |
63e2147c RD |
6707 | editor->StartingKey(event); |
6708 | } | |
6709 | else | |
6710 | { | |
6711 | event.Skip(); | |
6712 | } | |
6713 | ||
6714 | editor->DecRef(); | |
6715 | attr->DecRef(); | |
6716 | } | |
6717 | else | |
6718 | { | |
6719 | event.Skip(); | |
6720 | } | |
6721 | } | |
6722 | ||
2796cce3 | 6723 | void wxGrid::OnEraseBackground(wxEraseEvent&) |
508011ce VZ |
6724 | { |
6725 | } | |
07296f0b | 6726 | |
2d66e025 | 6727 | void wxGrid::SetCurrentCell( const wxGridCellCoords& coords ) |
66242c80 | 6728 | { |
f6bcfd97 BP |
6729 | if ( SendEvent( wxEVT_GRID_SELECT_CELL, coords.GetRow(), coords.GetCol() ) ) |
6730 | { | |
6731 | // the event has been intercepted - do nothing | |
6732 | return; | |
6733 | } | |
6734 | ||
bee19958 DS |
6735 | wxClientDC dc( m_gridWin ); |
6736 | PrepareDC( dc ); | |
f6bcfd97 | 6737 | |
2a7750d9 | 6738 | if ( m_currentCellCoords != wxGridNoCellCoords ) |
2d66e025 | 6739 | { |
b54ba671 | 6740 | DisableCellEditControl(); |
07296f0b | 6741 | |
ca65c044 | 6742 | if ( IsVisible( m_currentCellCoords, false ) ) |
f6bcfd97 BP |
6743 | { |
6744 | wxRect r; | |
bee19958 | 6745 | r = BlockToDeviceRect( m_currentCellCoords, m_currentCellCoords ); |
f6bcfd97 BP |
6746 | if ( !m_gridLinesEnabled ) |
6747 | { | |
6748 | r.x--; | |
6749 | r.y--; | |
6750 | r.width++; | |
6751 | r.height++; | |
6752 | } | |
d1c0b4f9 | 6753 | |
3ed884a0 | 6754 | wxGridCellCoordsArray cells = CalcCellsExposed( r ); |
84912ef8 | 6755 | |
f6bcfd97 BP |
6756 | // Otherwise refresh redraws the highlight! |
6757 | m_currentCellCoords = coords; | |
275c4ae4 | 6758 | |
bee19958 | 6759 | DrawGridCellArea( dc, cells ); |
f6bcfd97 BP |
6760 | DrawAllGridLines( dc, r ); |
6761 | } | |
66242c80 | 6762 | } |
8f177c8e | 6763 | |
2d66e025 MB |
6764 | m_currentCellCoords = coords; |
6765 | ||
bee19958 DS |
6766 | wxGridCellAttr *attr = GetCellAttr( coords ); |
6767 | DrawCellHighlight( dc, attr ); | |
2a7750d9 | 6768 | attr->DecRef(); |
66242c80 MB |
6769 | } |
6770 | ||
c9097836 MB |
6771 | void wxGrid::HighlightBlock( int topRow, int leftCol, int bottomRow, int rightCol ) |
6772 | { | |
6773 | int temp; | |
6774 | wxGridCellCoords updateTopLeft, updateBottomRight; | |
6775 | ||
3f3dc2ef | 6776 | if ( m_selection ) |
c9097836 | 6777 | { |
3f3dc2ef VZ |
6778 | if ( m_selection->GetSelectionMode() == wxGrid::wxGridSelectRows ) |
6779 | { | |
6780 | leftCol = 0; | |
6781 | rightCol = GetNumberCols() - 1; | |
6782 | } | |
6783 | else if ( m_selection->GetSelectionMode() == wxGrid::wxGridSelectColumns ) | |
6784 | { | |
6785 | topRow = 0; | |
6786 | bottomRow = GetNumberRows() - 1; | |
6787 | } | |
c9097836 | 6788 | } |
3f3dc2ef | 6789 | |
c9097836 MB |
6790 | if ( topRow > bottomRow ) |
6791 | { | |
6792 | temp = topRow; | |
6793 | topRow = bottomRow; | |
6794 | bottomRow = temp; | |
6795 | } | |
6796 | ||
6797 | if ( leftCol > rightCol ) | |
6798 | { | |
6799 | temp = leftCol; | |
6800 | leftCol = rightCol; | |
6801 | rightCol = temp; | |
6802 | } | |
6803 | ||
6804 | updateTopLeft = wxGridCellCoords( topRow, leftCol ); | |
6805 | updateBottomRight = wxGridCellCoords( bottomRow, rightCol ); | |
6806 | ||
3ed884a0 SN |
6807 | // First the case that we selected a completely new area |
6808 | if ( m_selectingTopLeft == wxGridNoCellCoords || | |
6809 | m_selectingBottomRight == wxGridNoCellCoords ) | |
6810 | { | |
6811 | wxRect rect; | |
6812 | rect = BlockToDeviceRect( wxGridCellCoords ( topRow, leftCol ), | |
6813 | wxGridCellCoords ( bottomRow, rightCol ) ); | |
ca65c044 | 6814 | m_gridWin->Refresh( false, &rect ); |
3ed884a0 | 6815 | } |
2f024384 | 6816 | |
3ed884a0 SN |
6817 | // Now handle changing an existing selection area. |
6818 | else if ( m_selectingTopLeft != updateTopLeft || | |
6819 | m_selectingBottomRight != updateBottomRight ) | |
c9097836 MB |
6820 | { |
6821 | // Compute two optimal update rectangles: | |
6822 | // Either one rectangle is a real subset of the | |
6823 | // other, or they are (almost) disjoint! | |
6824 | wxRect rect[4]; | |
6825 | bool need_refresh[4]; | |
6826 | need_refresh[0] = | |
6827 | need_refresh[1] = | |
6828 | need_refresh[2] = | |
ca65c044 | 6829 | need_refresh[3] = false; |
c9097836 MB |
6830 | int i; |
6831 | ||
6832 | // Store intermediate values | |
a9339fe2 DS |
6833 | wxCoord oldLeft = m_selectingTopLeft.GetCol(); |
6834 | wxCoord oldTop = m_selectingTopLeft.GetRow(); | |
6835 | wxCoord oldRight = m_selectingBottomRight.GetCol(); | |
c9097836 MB |
6836 | wxCoord oldBottom = m_selectingBottomRight.GetRow(); |
6837 | ||
6838 | // Determine the outer/inner coordinates. | |
6839 | if (oldLeft > leftCol) | |
6840 | { | |
6841 | temp = oldLeft; | |
6842 | oldLeft = leftCol; | |
6843 | leftCol = temp; | |
6844 | } | |
6845 | if (oldTop > topRow ) | |
6846 | { | |
6847 | temp = oldTop; | |
6848 | oldTop = topRow; | |
6849 | topRow = temp; | |
6850 | } | |
6851 | if (oldRight < rightCol ) | |
6852 | { | |
6853 | temp = oldRight; | |
6854 | oldRight = rightCol; | |
6855 | rightCol = temp; | |
6856 | } | |
6857 | if (oldBottom < bottomRow) | |
6858 | { | |
6859 | temp = oldBottom; | |
6860 | oldBottom = bottomRow; | |
6861 | bottomRow = temp; | |
6862 | } | |
6863 | ||
6864 | // Now, either the stuff marked old is the outer | |
6865 | // rectangle or we don't have a situation where one | |
6866 | // is contained in the other. | |
6867 | ||
6868 | if ( oldLeft < leftCol ) | |
6869 | { | |
3ed884a0 SN |
6870 | // Refresh the newly selected or deselected |
6871 | // area to the left of the old or new selection. | |
ca65c044 | 6872 | need_refresh[0] = true; |
a9339fe2 DS |
6873 | rect[0] = BlockToDeviceRect( |
6874 | wxGridCellCoords( oldTop, oldLeft ), | |
6875 | wxGridCellCoords( oldBottom, leftCol - 1 ) ); | |
c9097836 MB |
6876 | } |
6877 | ||
2f024384 | 6878 | if ( oldTop < topRow ) |
c9097836 | 6879 | { |
3ed884a0 SN |
6880 | // Refresh the newly selected or deselected |
6881 | // area above the old or new selection. | |
ca65c044 | 6882 | need_refresh[1] = true; |
2f024384 DS |
6883 | rect[1] = BlockToDeviceRect( |
6884 | wxGridCellCoords( oldTop, leftCol ), | |
6885 | wxGridCellCoords( topRow - 1, rightCol ) ); | |
c9097836 MB |
6886 | } |
6887 | ||
6888 | if ( oldRight > rightCol ) | |
6889 | { | |
3ed884a0 SN |
6890 | // Refresh the newly selected or deselected |
6891 | // area to the right of the old or new selection. | |
ca65c044 | 6892 | need_refresh[2] = true; |
2f024384 | 6893 | rect[2] = BlockToDeviceRect( |
a9339fe2 DS |
6894 | wxGridCellCoords( oldTop, rightCol + 1 ), |
6895 | wxGridCellCoords( oldBottom, oldRight ) ); | |
c9097836 MB |
6896 | } |
6897 | ||
6898 | if ( oldBottom > bottomRow ) | |
6899 | { | |
3ed884a0 SN |
6900 | // Refresh the newly selected or deselected |
6901 | // area below the old or new selection. | |
ca65c044 | 6902 | need_refresh[3] = true; |
2f024384 | 6903 | rect[3] = BlockToDeviceRect( |
a9339fe2 DS |
6904 | wxGridCellCoords( bottomRow + 1, leftCol ), |
6905 | wxGridCellCoords( oldBottom, rightCol ) ); | |
c9097836 MB |
6906 | } |
6907 | ||
c9097836 MB |
6908 | // various Refresh() calls |
6909 | for (i = 0; i < 4; i++ ) | |
6910 | if ( need_refresh[i] && rect[i] != wxGridNoCellRect ) | |
ca65c044 | 6911 | m_gridWin->Refresh( false, &(rect[i]) ); |
c9097836 | 6912 | } |
2f024384 DS |
6913 | |
6914 | // change selection | |
3ed884a0 SN |
6915 | m_selectingTopLeft = updateTopLeft; |
6916 | m_selectingBottomRight = updateBottomRight; | |
c9097836 MB |
6917 | } |
6918 | ||
2d66e025 MB |
6919 | // |
6920 | // ------ functions to get/send data (see also public functions) | |
6921 | // | |
6922 | ||
6923 | bool wxGrid::GetModelValues() | |
66242c80 | 6924 | { |
bca7bfc8 SN |
6925 | // Hide the editor, so it won't hide a changed value. |
6926 | HideCellEditControl(); | |
c6707d16 | 6927 | |
2d66e025 | 6928 | if ( m_table ) |
66242c80 | 6929 | { |
2d66e025 | 6930 | // all we need to do is repaint the grid |
66242c80 | 6931 | // |
2d66e025 | 6932 | m_gridWin->Refresh(); |
ca65c044 | 6933 | return true; |
66242c80 | 6934 | } |
8f177c8e | 6935 | |
ca65c044 | 6936 | return false; |
66242c80 MB |
6937 | } |
6938 | ||
2d66e025 | 6939 | bool wxGrid::SetModelValues() |
f85afd4e | 6940 | { |
2d66e025 | 6941 | int row, col; |
8f177c8e | 6942 | |
c6707d16 SN |
6943 | // Disable the editor, so it won't hide a changed value. |
6944 | // Do we also want to save the current value of the editor first? | |
6945 | // I think so ... | |
c6707d16 SN |
6946 | DisableCellEditControl(); |
6947 | ||
2d66e025 MB |
6948 | if ( m_table ) |
6949 | { | |
56b6cf26 | 6950 | for ( row = 0; row < m_numRows; row++ ) |
f85afd4e | 6951 | { |
56b6cf26 | 6952 | for ( col = 0; col < m_numCols; col++ ) |
f85afd4e | 6953 | { |
2d66e025 | 6954 | m_table->SetValue( row, col, GetCellValue(row, col) ); |
f85afd4e MB |
6955 | } |
6956 | } | |
8f177c8e | 6957 | |
ca65c044 | 6958 | return true; |
f85afd4e MB |
6959 | } |
6960 | ||
ca65c044 | 6961 | return false; |
f85afd4e MB |
6962 | } |
6963 | ||
2d66e025 MB |
6964 | // Note - this function only draws cells that are in the list of |
6965 | // exposed cells (usually set from the update region by | |
6966 | // CalcExposedCells) | |
6967 | // | |
d10f4bf9 | 6968 | void wxGrid::DrawGridCellArea( wxDC& dc, const wxGridCellCoordsArray& cells ) |
f85afd4e | 6969 | { |
4db6714b KH |
6970 | if ( !m_numRows || !m_numCols ) |
6971 | return; | |
60ff3b99 | 6972 | |
dc1f566f | 6973 | int i, numCells = cells.GetCount(); |
27f35b66 SN |
6974 | int row, col, cell_rows, cell_cols; |
6975 | wxGridCellCoordsArray redrawCells; | |
60ff3b99 | 6976 | |
a9339fe2 | 6977 | for ( i = numCells - 1; i >= 0; i-- ) |
f85afd4e | 6978 | { |
27f35b66 SN |
6979 | row = cells[i].GetRow(); |
6980 | col = cells[i].GetCol(); | |
6981 | GetCellSize( row, col, &cell_rows, &cell_cols ); | |
6982 | ||
6983 | // If this cell is part of a multicell block, find owner for repaint | |
6984 | if ( cell_rows <= 0 || cell_cols <= 0 ) | |
6985 | { | |
a9339fe2 | 6986 | wxGridCellCoords cell( row + cell_rows, col + cell_cols ); |
ca65c044 | 6987 | bool marked = false; |
56b6cf26 | 6988 | for ( int j = 0; j < numCells; j++ ) |
27f35b66 SN |
6989 | { |
6990 | if ( cell == cells[j] ) | |
6991 | { | |
ca65c044 | 6992 | marked = true; |
3ed884a0 | 6993 | break; |
27f35b66 SN |
6994 | } |
6995 | } | |
2f024384 | 6996 | |
27f35b66 SN |
6997 | if (!marked) |
6998 | { | |
6999 | int count = redrawCells.GetCount(); | |
dc1f566f | 7000 | for (int j = 0; j < count; j++) |
27f35b66 SN |
7001 | { |
7002 | if ( cell == redrawCells[j] ) | |
7003 | { | |
ca65c044 | 7004 | marked = true; |
27f35b66 SN |
7005 | break; |
7006 | } | |
7007 | } | |
2f024384 | 7008 | |
4db6714b KH |
7009 | if (!marked) |
7010 | redrawCells.Add( cell ); | |
27f35b66 | 7011 | } |
2f024384 DS |
7012 | |
7013 | // don't bother drawing this cell | |
7014 | continue; | |
27f35b66 SN |
7015 | } |
7016 | ||
7017 | // If this cell is empty, find cell to left that might want to overflow | |
7018 | if (m_table && m_table->IsEmptyCell(row, col)) | |
7019 | { | |
dc1f566f | 7020 | for ( int l = 0; l < cell_rows; l++ ) |
27f35b66 | 7021 | { |
56b6cf26 | 7022 | // find a cell in this row to leave already marked for repaint |
dc1f566f SN |
7023 | int left = col; |
7024 | for (int k = 0; k < int(redrawCells.GetCount()); k++) | |
7025 | if ((redrawCells[k].GetCol() < left) && | |
7026 | (redrawCells[k].GetRow() == row)) | |
2f024384 | 7027 | { |
4db6714b | 7028 | left = redrawCells[k].GetCol(); |
2f024384 | 7029 | } |
dc1f566f | 7030 | |
4db6714b KH |
7031 | if (left == col) |
7032 | left = 0; // oh well | |
dc1f566f | 7033 | |
2f024384 | 7034 | for (int j = col - 1; j >= left; j--) |
27f35b66 | 7035 | { |
2f024384 | 7036 | if (!m_table->IsEmptyCell(row + l, j)) |
27f35b66 | 7037 | { |
2f024384 | 7038 | if (GetCellOverflow(row + l, j)) |
27f35b66 | 7039 | { |
2f024384 | 7040 | wxGridCellCoords cell(row + l, j); |
ca65c044 | 7041 | bool marked = false; |
27f35b66 | 7042 | |
dc1f566f | 7043 | for (int k = 0; k < numCells; k++) |
27f35b66 SN |
7044 | { |
7045 | if ( cell == cells[k] ) | |
7046 | { | |
ca65c044 | 7047 | marked = true; |
27f35b66 SN |
7048 | break; |
7049 | } | |
7050 | } | |
4db6714b | 7051 | |
27f35b66 SN |
7052 | if (!marked) |
7053 | { | |
7054 | int count = redrawCells.GetCount(); | |
dc1f566f | 7055 | for (int k = 0; k < count; k++) |
27f35b66 SN |
7056 | { |
7057 | if ( cell == redrawCells[k] ) | |
7058 | { | |
ca65c044 | 7059 | marked = true; |
27f35b66 SN |
7060 | break; |
7061 | } | |
7062 | } | |
4db6714b KH |
7063 | if (!marked) |
7064 | redrawCells.Add( cell ); | |
27f35b66 SN |
7065 | } |
7066 | } | |
7067 | break; | |
7068 | } | |
7069 | } | |
7070 | } | |
7071 | } | |
4db6714b | 7072 | |
d10f4bf9 | 7073 | DrawCell( dc, cells[i] ); |
2d66e025 | 7074 | } |
27f35b66 SN |
7075 | |
7076 | numCells = redrawCells.GetCount(); | |
7077 | ||
56b6cf26 | 7078 | for ( i = numCells - 1; i >= 0; i-- ) |
27f35b66 SN |
7079 | { |
7080 | DrawCell( dc, redrawCells[i] ); | |
7081 | } | |
2d66e025 | 7082 | } |
8f177c8e | 7083 | |
7c8a8ad5 MB |
7084 | void wxGrid::DrawGridSpace( wxDC& dc ) |
7085 | { | |
f6bcfd97 BP |
7086 | int cw, ch; |
7087 | m_gridWin->GetClientSize( &cw, &ch ); | |
7c8a8ad5 | 7088 | |
f6bcfd97 BP |
7089 | int right, bottom; |
7090 | CalcUnscrolledPosition( cw, ch, &right, &bottom ); | |
7c8a8ad5 | 7091 | |
f6bcfd97 | 7092 | int rightCol = m_numCols > 0 ? GetColRight(m_numCols - 1) : 0; |
2f024384 | 7093 | int bottomRow = m_numRows > 0 ? GetRowBottom(m_numRows - 1) : 0; |
7c8a8ad5 | 7094 | |
f6bcfd97 BP |
7095 | if ( right > rightCol || bottom > bottomRow ) |
7096 | { | |
7097 | int left, top; | |
7098 | CalcUnscrolledPosition( 0, 0, &left, &top ); | |
7c8a8ad5 | 7099 | |
f6bcfd97 BP |
7100 | dc.SetBrush( wxBrush(GetDefaultCellBackgroundColour(), wxSOLID) ); |
7101 | dc.SetPen( *wxTRANSPARENT_PEN ); | |
7c8a8ad5 | 7102 | |
f6bcfd97 BP |
7103 | if ( right > rightCol ) |
7104 | { | |
a9339fe2 | 7105 | dc.DrawRectangle( rightCol, top, right - rightCol, ch ); |
f6bcfd97 BP |
7106 | } |
7107 | ||
7108 | if ( bottom > bottomRow ) | |
7109 | { | |
a9339fe2 | 7110 | dc.DrawRectangle( left, bottomRow, cw, bottom - bottomRow ); |
f6bcfd97 BP |
7111 | } |
7112 | } | |
7c8a8ad5 MB |
7113 | } |
7114 | ||
2d66e025 MB |
7115 | void wxGrid::DrawCell( wxDC& dc, const wxGridCellCoords& coords ) |
7116 | { | |
ab79958a VZ |
7117 | int row = coords.GetRow(); |
7118 | int col = coords.GetCol(); | |
60ff3b99 | 7119 | |
7c1cb261 | 7120 | if ( GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) |
ab79958a VZ |
7121 | return; |
7122 | ||
7123 | // we draw the cell border ourselves | |
9496deb5 | 7124 | #if !WXGRID_DRAW_LINES |
2d66e025 MB |
7125 | if ( m_gridLinesEnabled ) |
7126 | DrawCellBorder( dc, coords ); | |
796df70a | 7127 | #endif |
f85afd4e | 7128 | |
189d0213 VZ |
7129 | wxGridCellAttr* attr = GetCellAttr(row, col); |
7130 | ||
7131 | bool isCurrent = coords == m_currentCellCoords; | |
508011ce | 7132 | |
f6bcfd97 | 7133 | wxRect rect = CellToRect( row, col ); |
f85afd4e | 7134 | |
189d0213 | 7135 | // if the editor is shown, we should use it and not the renderer |
f6bcfd97 BP |
7136 | // Note: However, only if it is really _shown_, i.e. not hidden! |
7137 | if ( isCurrent && IsCellEditControlShown() ) | |
189d0213 | 7138 | { |
a9339fe2 | 7139 | // NB: this "#if..." is temporary and fixes a problem where the |
962a48f6 DS |
7140 | // edit control is erased by this code after being rendered. |
7141 | // On wxMac (QD build only), the cell editor is a wxTextCntl and is rendered | |
7142 | // implicitly, causing this out-of order render. | |
7143 | #if !defined(__WXMAC__) || wxMAC_USE_CORE_GRAPHICS | |
0b190b0f VZ |
7144 | wxGridCellEditor *editor = attr->GetEditor(this, row, col); |
7145 | editor->PaintBackground(rect, attr); | |
7146 | editor->DecRef(); | |
962a48f6 | 7147 | #endif |
189d0213 VZ |
7148 | } |
7149 | else | |
7150 | { | |
a9339fe2 | 7151 | // but all the rest is drawn by the cell renderer and hence may be customized |
0b190b0f VZ |
7152 | wxGridCellRenderer *renderer = attr->GetRenderer(this, row, col); |
7153 | renderer->Draw(*this, *attr, dc, rect, row, col, IsInSelection(coords)); | |
7154 | renderer->DecRef(); | |
189d0213 | 7155 | } |
07296f0b | 7156 | |
283b7808 VZ |
7157 | attr->DecRef(); |
7158 | } | |
07296f0b | 7159 | |
283b7808 | 7160 | void wxGrid::DrawCellHighlight( wxDC& dc, const wxGridCellAttr *attr ) |
07296f0b RD |
7161 | { |
7162 | int row = m_currentCellCoords.GetRow(); | |
7163 | int col = m_currentCellCoords.GetCol(); | |
7164 | ||
7c1cb261 | 7165 | if ( GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) |
07296f0b RD |
7166 | return; |
7167 | ||
f6bcfd97 | 7168 | wxRect rect = CellToRect(row, col); |
07296f0b | 7169 | |
b3a7510d VZ |
7170 | // hmmm... what could we do here to show that the cell is disabled? |
7171 | // for now, I just draw a thinner border than for the other ones, but | |
7172 | // it doesn't look really good | |
b3a7510d | 7173 | |
d2520c85 RD |
7174 | int penWidth = attr->IsReadOnly() ? m_cellHighlightROPenWidth : m_cellHighlightPenWidth; |
7175 | ||
27f35b66 SN |
7176 | if (penWidth > 0) |
7177 | { | |
56b6cf26 DS |
7178 | // The center of the drawn line is where the position/width/height of |
7179 | // the rectangle is actually at (on wxMSW at least), so the | |
7180 | // size of the rectangle is reduced to compensate for the thickness of | |
7181 | // the line. If this is too strange on non-wxMSW platforms then | |
d2520c85 | 7182 | // please #ifdef this appropriately. |
4db6714b KH |
7183 | rect.x += penWidth / 2; |
7184 | rect.y += penWidth / 2; | |
7185 | rect.width -= penWidth - 1; | |
7186 | rect.height -= penWidth - 1; | |
d2520c85 | 7187 | |
d2520c85 | 7188 | // Now draw the rectangle |
73145b0e JS |
7189 | // use the cellHighlightColour if the cell is inside a selection, this |
7190 | // will ensure the cell is always visible. | |
4db6714b | 7191 | dc.SetPen(wxPen(IsInSelection(row,col) ? m_selectionForeground : m_cellHighlightColour, penWidth, wxSOLID)); |
d2520c85 RD |
7192 | dc.SetBrush(*wxTRANSPARENT_BRUSH); |
7193 | dc.DrawRectangle(rect); | |
7194 | } | |
07296f0b | 7195 | |
283b7808 | 7196 | #if 0 |
2f024384 | 7197 | // VZ: my experiments with 3D borders... |
283b7808 | 7198 | |
b3a7510d | 7199 | // how to properly set colours for arbitrary bg? |
283b7808 VZ |
7200 | wxCoord x1 = rect.x, |
7201 | y1 = rect.y, | |
4db6714b KH |
7202 | x2 = rect.x + rect.width - 1, |
7203 | y2 = rect.y + rect.height - 1; | |
283b7808 VZ |
7204 | |
7205 | dc.SetPen(*wxWHITE_PEN); | |
00cf1208 RR |
7206 | dc.DrawLine(x1, y1, x2, y1); |
7207 | dc.DrawLine(x1, y1, x1, y2); | |
283b7808 | 7208 | |
283b7808 | 7209 | dc.DrawLine(x1 + 1, y2 - 1, x2 - 1, y2 - 1); |
2f024384 | 7210 | dc.DrawLine(x2 - 1, y1 + 1, x2 - 1, y2); |
283b7808 VZ |
7211 | |
7212 | dc.SetPen(*wxBLACK_PEN); | |
7213 | dc.DrawLine(x1, y2, x2, y2); | |
2f024384 | 7214 | dc.DrawLine(x2, y1, x2, y2 + 1); |
a9339fe2 | 7215 | #endif |
2d66e025 | 7216 | } |
f85afd4e | 7217 | |
2d66e025 MB |
7218 | void wxGrid::DrawCellBorder( wxDC& dc, const wxGridCellCoords& coords ) |
7219 | { | |
2d66e025 MB |
7220 | int row = coords.GetRow(); |
7221 | int col = coords.GetCol(); | |
7c1cb261 VZ |
7222 | if ( GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) |
7223 | return; | |
7224 | ||
7225 | dc.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID) ); | |
60ff3b99 | 7226 | |
27f35b66 SN |
7227 | wxRect rect = CellToRect( row, col ); |
7228 | ||
2d66e025 | 7229 | // right hand border |
27f35b66 SN |
7230 | dc.DrawLine( rect.x + rect.width, rect.y, |
7231 | rect.x + rect.width, rect.y + rect.height + 1 ); | |
2d66e025 MB |
7232 | |
7233 | // bottom border | |
2f024384 | 7234 | dc.DrawLine( rect.x, rect.y + rect.height, |
27f35b66 | 7235 | rect.x + rect.width, rect.y + rect.height); |
f85afd4e MB |
7236 | } |
7237 | ||
2f024384 | 7238 | void wxGrid::DrawHighlight(wxDC& dc, const wxGridCellCoordsArray& cells) |
b3a7510d | 7239 | { |
2a7750d9 MB |
7240 | // This if block was previously in wxGrid::OnPaint but that doesn't |
7241 | // seem to get called under wxGTK - MB | |
7242 | // | |
2f024384 | 7243 | if ( m_currentCellCoords == wxGridNoCellCoords && |
2a7750d9 MB |
7244 | m_numRows && m_numCols ) |
7245 | { | |
7246 | m_currentCellCoords.Set(0, 0); | |
7247 | } | |
7248 | ||
f6bcfd97 | 7249 | if ( IsCellEditControlShown() ) |
99306db2 VZ |
7250 | { |
7251 | // don't show highlight when the edit control is shown | |
7252 | return; | |
7253 | } | |
7254 | ||
b3a7510d VZ |
7255 | // if the active cell was repainted, repaint its highlight too because it |
7256 | // might have been damaged by the grid lines | |
d10f4bf9 | 7257 | size_t count = cells.GetCount(); |
b3a7510d VZ |
7258 | for ( size_t n = 0; n < count; n++ ) |
7259 | { | |
d10f4bf9 | 7260 | if ( cells[n] == m_currentCellCoords ) |
b3a7510d VZ |
7261 | { |
7262 | wxGridCellAttr* attr = GetCellAttr(m_currentCellCoords); | |
7263 | DrawCellHighlight(dc, attr); | |
7264 | attr->DecRef(); | |
7265 | ||
7266 | break; | |
7267 | } | |
7268 | } | |
7269 | } | |
2d66e025 | 7270 | |
2d66e025 MB |
7271 | // TODO: remove this ??? |
7272 | // This is used to redraw all grid lines e.g. when the grid line colour | |
7273 | // has been changed | |
7274 | // | |
33ac7e6f | 7275 | void wxGrid::DrawAllGridLines( wxDC& dc, const wxRegion & WXUNUSED(reg) ) |
f85afd4e | 7276 | { |
27f35b66 SN |
7277 | #if !WXGRID_DRAW_LINES |
7278 | return; | |
7279 | #endif | |
7280 | ||
afd0f084 | 7281 | if ( !m_gridLinesEnabled || !m_numRows || !m_numCols ) |
4db6714b | 7282 | return; |
f85afd4e | 7283 | |
2d66e025 | 7284 | int top, bottom, left, right; |
796df70a | 7285 | |
f6bcfd97 | 7286 | #if 0 //#ifndef __WXGTK__ |
508011ce VZ |
7287 | if (reg.IsEmpty()) |
7288 | { | |
796df70a SN |
7289 | int cw, ch; |
7290 | m_gridWin->GetClientSize(&cw, &ch); | |
7291 | ||
7292 | // virtual coords of visible area | |
7293 | // | |
7294 | CalcUnscrolledPosition( 0, 0, &left, &top ); | |
7295 | CalcUnscrolledPosition( cw, ch, &right, &bottom ); | |
7296 | } | |
508011ce VZ |
7297 | else |
7298 | { | |
796df70a SN |
7299 | wxCoord x, y, w, h; |
7300 | reg.GetBox(x, y, w, h); | |
7301 | CalcUnscrolledPosition( x, y, &left, &top ); | |
7302 | CalcUnscrolledPosition( x + w, y + h, &right, &bottom ); | |
7303 | } | |
8e217128 RR |
7304 | #else |
7305 | int cw, ch; | |
7306 | m_gridWin->GetClientSize(&cw, &ch); | |
7307 | CalcUnscrolledPosition( 0, 0, &left, &top ); | |
7308 | CalcUnscrolledPosition( cw, ch, &right, &bottom ); | |
7309 | #endif | |
f85afd4e | 7310 | |
9496deb5 MB |
7311 | // avoid drawing grid lines past the last row and col |
7312 | // | |
7c1cb261 VZ |
7313 | right = wxMin( right, GetColRight(m_numCols - 1) ); |
7314 | bottom = wxMin( bottom, GetRowBottom(m_numRows - 1) ); | |
9496deb5 | 7315 | |
27f35b66 | 7316 | // no gridlines inside multicells, clip them out |
a9339fe2 DS |
7317 | int leftCol = internalXToCol(left); |
7318 | int topRow = internalYToRow(top); | |
7319 | int rightCol = internalXToCol(right); | |
a967f048 | 7320 | int bottomRow = internalYToRow(bottom); |
27f35b66 | 7321 | |
c03bf0c7 SC |
7322 | #ifndef __WXMAC__ |
7323 | // CS: I don't know why suddenly unscrolled coordinates are used for clipping | |
7324 | wxRegion clippedcells(0, 0, cw, ch); | |
27f35b66 | 7325 | |
a967f048 RG |
7326 | int i, j, cell_rows, cell_cols; |
7327 | wxRect rect; | |
27f35b66 | 7328 | |
a967f048 RG |
7329 | for (j=topRow; j<bottomRow; j++) |
7330 | { | |
7331 | for (i=leftCol; i<rightCol; i++) | |
27f35b66 | 7332 | { |
a967f048 RG |
7333 | GetCellSize( j, i, &cell_rows, &cell_cols ); |
7334 | if ((cell_rows > 1) || (cell_cols > 1)) | |
27f35b66 | 7335 | { |
a967f048 RG |
7336 | rect = CellToRect(j,i); |
7337 | CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); | |
7338 | clippedcells.Subtract(rect); | |
7339 | } | |
7340 | else if ((cell_rows < 0) || (cell_cols < 0)) | |
7341 | { | |
a9339fe2 | 7342 | rect = CellToRect(j + cell_rows, i + cell_cols); |
a967f048 RG |
7343 | CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); |
7344 | clippedcells.Subtract(rect); | |
27f35b66 SN |
7345 | } |
7346 | } | |
7347 | } | |
c03bf0c7 SC |
7348 | #else |
7349 | wxRegion clippedcells( left , top, right - left, bottom - top); | |
7350 | ||
7351 | int i, j, cell_rows, cell_cols; | |
7352 | wxRect rect; | |
7353 | ||
7354 | for (j=topRow; j<bottomRow; j++) | |
7355 | { | |
7356 | for (i=leftCol; i<rightCol; i++) | |
7357 | { | |
7358 | GetCellSize( j, i, &cell_rows, &cell_cols ); | |
7359 | if ((cell_rows > 1) || (cell_cols > 1)) | |
7360 | { | |
2f024384 | 7361 | rect = CellToRect(j, i); |
c03bf0c7 SC |
7362 | clippedcells.Subtract(rect); |
7363 | } | |
7364 | else if ((cell_rows < 0) || (cell_cols < 0)) | |
7365 | { | |
2f024384 | 7366 | rect = CellToRect(j + cell_rows, i + cell_cols); |
c03bf0c7 SC |
7367 | clippedcells.Subtract(rect); |
7368 | } | |
7369 | } | |
7370 | } | |
7371 | #endif | |
a9339fe2 | 7372 | |
27f35b66 SN |
7373 | dc.SetClippingRegion( clippedcells ); |
7374 | ||
2d66e025 | 7375 | dc.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID) ); |
f85afd4e | 7376 | |
2d66e025 | 7377 | // horizontal grid lines |
f85afd4e | 7378 | // |
a967f048 | 7379 | // already declared above - int i; |
33188aa4 | 7380 | for ( i = internalYToRow(top); i < m_numRows; i++ ) |
f85afd4e | 7381 | { |
6d55126d | 7382 | int bot = GetRowBottom(i) - 1; |
7c1cb261 | 7383 | |
6d55126d | 7384 | if ( bot > bottom ) |
2d66e025 MB |
7385 | { |
7386 | break; | |
7387 | } | |
7c1cb261 | 7388 | |
6d55126d | 7389 | if ( bot >= top ) |
2d66e025 | 7390 | { |
6d55126d | 7391 | dc.DrawLine( left, bot, right, bot ); |
2d66e025 | 7392 | } |
f85afd4e MB |
7393 | } |
7394 | ||
2d66e025 MB |
7395 | // vertical grid lines |
7396 | // | |
33188aa4 | 7397 | for ( i = internalXToCol(left); i < m_numCols; i++ ) |
f85afd4e | 7398 | { |
7c1cb261 VZ |
7399 | int colRight = GetColRight(i) - 1; |
7400 | if ( colRight > right ) | |
2d66e025 MB |
7401 | { |
7402 | break; | |
7403 | } | |
7c1cb261 VZ |
7404 | |
7405 | if ( colRight >= left ) | |
2d66e025 | 7406 | { |
7c1cb261 | 7407 | dc.DrawLine( colRight, top, colRight, bottom ); |
2d66e025 MB |
7408 | } |
7409 | } | |
a9339fe2 | 7410 | |
27f35b66 | 7411 | dc.DestroyClippingRegion(); |
2d66e025 | 7412 | } |
f85afd4e | 7413 | |
d10f4bf9 | 7414 | void wxGrid::DrawRowLabels( wxDC& dc ,const wxArrayInt& rows) |
2d66e025 | 7415 | { |
4db6714b KH |
7416 | if ( !m_numRows ) |
7417 | return; | |
60ff3b99 | 7418 | |
2d66e025 | 7419 | size_t i; |
d10f4bf9 | 7420 | size_t numLabels = rows.GetCount(); |
60ff3b99 | 7421 | |
2f024384 | 7422 | for ( i = 0; i < numLabels; i++ ) |
2d66e025 | 7423 | { |
d10f4bf9 | 7424 | DrawRowLabel( dc, rows[i] ); |
60ff3b99 | 7425 | } |
f85afd4e MB |
7426 | } |
7427 | ||
2d66e025 | 7428 | void wxGrid::DrawRowLabel( wxDC& dc, int row ) |
f85afd4e | 7429 | { |
659af826 | 7430 | if ( GetRowHeight(row) <= 0 || m_rowLabelWidth <= 0 ) |
7c1cb261 | 7431 | return; |
60ff3b99 | 7432 | |
4d1bc39c | 7433 | wxRect rect; |
2f024384 | 7434 | |
c2651b0a | 7435 | #ifdef __WXGTK20__ |
4d1bc39c RR |
7436 | rect.SetX( 1 ); |
7437 | rect.SetY( GetRowTop(row) + 1 ); | |
7438 | rect.SetWidth( m_rowLabelWidth - 2 ); | |
7439 | rect.SetHeight( GetRowHeight(row) - 2 ); | |
ec157c8f | 7440 | |
4d1bc39c | 7441 | CalcScrolledPosition( 0, rect.y, NULL, &rect.y ); |
ec157c8f | 7442 | |
4d1bc39c RR |
7443 | wxWindowDC *win_dc = (wxWindowDC*) &dc; |
7444 | ||
7445 | wxRendererNative::Get().DrawHeaderButton( win_dc->m_owner, dc, rect, 0 ); | |
7446 | #else | |
7c1cb261 VZ |
7447 | int rowTop = GetRowTop(row), |
7448 | rowBottom = GetRowBottom(row) - 1; | |
b99be8fb | 7449 | |
a9339fe2 DS |
7450 | dc.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW), 1, wxSOLID) ); |
7451 | dc.DrawLine( m_rowLabelWidth - 1, rowTop, m_rowLabelWidth - 1, rowBottom ); | |
73145b0e | 7452 | dc.DrawLine( 0, rowTop, 0, rowBottom ); |
73145b0e | 7453 | dc.DrawLine( 0, rowBottom, m_rowLabelWidth, rowBottom ); |
b99be8fb | 7454 | |
2d66e025 | 7455 | dc.SetPen( *wxWHITE_PEN ); |
73145b0e | 7456 | dc.DrawLine( 1, rowTop, 1, rowBottom ); |
a9339fe2 | 7457 | dc.DrawLine( 1, rowTop, m_rowLabelWidth - 1, rowTop ); |
4d1bc39c | 7458 | #endif |
2f024384 | 7459 | |
f85afd4e | 7460 | dc.SetBackgroundMode( wxTRANSPARENT ); |
f85afd4e MB |
7461 | dc.SetTextForeground( GetLabelTextColour() ); |
7462 | dc.SetFont( GetLabelFont() ); | |
8f177c8e | 7463 | |
f85afd4e | 7464 | int hAlign, vAlign; |
2d66e025 | 7465 | GetRowLabelAlignment( &hAlign, &vAlign ); |
60ff3b99 | 7466 | |
2d66e025 | 7467 | rect.SetX( 2 ); |
7c1cb261 | 7468 | rect.SetY( GetRowTop(row) + 2 ); |
2d66e025 | 7469 | rect.SetWidth( m_rowLabelWidth - 4 ); |
7c1cb261 | 7470 | rect.SetHeight( GetRowHeight(row) - 4 ); |
60ff3b99 | 7471 | DrawTextRectangle( dc, GetRowLabelValue( row ), rect, hAlign, vAlign ); |
f85afd4e MB |
7472 | } |
7473 | ||
d10f4bf9 | 7474 | void wxGrid::DrawColLabels( wxDC& dc,const wxArrayInt& cols ) |
f85afd4e | 7475 | { |
4db6714b KH |
7476 | if ( !m_numCols ) |
7477 | return; | |
60ff3b99 | 7478 | |
2d66e025 | 7479 | size_t i; |
d10f4bf9 | 7480 | size_t numLabels = cols.GetCount(); |
60ff3b99 | 7481 | |
56b6cf26 | 7482 | for ( i = 0; i < numLabels; i++ ) |
f85afd4e | 7483 | { |
d10f4bf9 | 7484 | DrawColLabel( dc, cols[i] ); |
60ff3b99 | 7485 | } |
f85afd4e MB |
7486 | } |
7487 | ||
2d66e025 | 7488 | void wxGrid::DrawColLabel( wxDC& dc, int col ) |
f85afd4e | 7489 | { |
659af826 | 7490 | if ( GetColWidth(col) <= 0 || m_colLabelHeight <= 0 ) |
7c1cb261 | 7491 | return; |
60ff3b99 | 7492 | |
4d1bc39c | 7493 | int colLeft = GetColLeft(col); |
ec157c8f | 7494 | |
4d1bc39c | 7495 | wxRect rect; |
2f024384 | 7496 | |
c2651b0a | 7497 | #ifdef __WXGTK20__ |
4d1bc39c RR |
7498 | rect.SetX( colLeft + 1 ); |
7499 | rect.SetY( 1 ); | |
7500 | rect.SetWidth( GetColWidth(col) - 2 ); | |
7501 | rect.SetHeight( m_colLabelHeight - 2 ); | |
ec157c8f | 7502 | |
4d1bc39c RR |
7503 | wxWindowDC *win_dc = (wxWindowDC*) &dc; |
7504 | ||
7505 | wxRendererNative::Get().DrawHeaderButton( win_dc->m_owner, dc, rect, 0 ); | |
7506 | #else | |
7507 | int colRight = GetColRight(col) - 1; | |
b99be8fb | 7508 | |
2f024384 | 7509 | dc.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW), 1, wxSOLID) ); |
ccdee36f | 7510 | dc.DrawLine( colRight, 0, colRight, m_colLabelHeight - 1 ); |
73145b0e | 7511 | dc.DrawLine( colLeft, 0, colRight, 0 ); |
ccdee36f DS |
7512 | dc.DrawLine( colLeft, m_colLabelHeight - 1, |
7513 | colRight + 1, m_colLabelHeight - 1 ); | |
b99be8fb | 7514 | |
f85afd4e | 7515 | dc.SetPen( *wxWHITE_PEN ); |
ccdee36f | 7516 | dc.DrawLine( colLeft, 1, colLeft, m_colLabelHeight - 1 ); |
73145b0e | 7517 | dc.DrawLine( colLeft, 1, colRight, 1 ); |
4d1bc39c | 7518 | #endif |
2f024384 | 7519 | |
b0d6ff2f MB |
7520 | dc.SetBackgroundMode( wxTRANSPARENT ); |
7521 | dc.SetTextForeground( GetLabelTextColour() ); | |
7522 | dc.SetFont( GetLabelFont() ); | |
8f177c8e | 7523 | |
d43851f7 | 7524 | int hAlign, vAlign, orient; |
2d66e025 | 7525 | GetColLabelAlignment( &hAlign, &vAlign ); |
d43851f7 | 7526 | orient = GetColLabelTextOrientation(); |
60ff3b99 | 7527 | |
7c1cb261 | 7528 | rect.SetX( colLeft + 2 ); |
2d66e025 | 7529 | rect.SetY( 2 ); |
7c1cb261 | 7530 | rect.SetWidth( GetColWidth(col) - 4 ); |
2d66e025 | 7531 | rect.SetHeight( m_colLabelHeight - 4 ); |
d43851f7 | 7532 | DrawTextRectangle( dc, GetColLabelValue( col ), rect, hAlign, vAlign, orient ); |
f85afd4e MB |
7533 | } |
7534 | ||
2d66e025 MB |
7535 | void wxGrid::DrawTextRectangle( wxDC& dc, |
7536 | const wxString& value, | |
7537 | const wxRect& rect, | |
7538 | int horizAlign, | |
d43851f7 JS |
7539 | int vertAlign, |
7540 | int textOrientation ) | |
f85afd4e | 7541 | { |
2d66e025 | 7542 | wxArrayString lines; |
ef5df12b | 7543 | |
2d66e025 | 7544 | StringToLines( value, lines ); |
ef5df12b | 7545 | |
2f024384 | 7546 | // Forward to new API. |
a9339fe2 | 7547 | DrawTextRectangle( dc, |
038a5591 JS |
7548 | lines, |
7549 | rect, | |
7550 | horizAlign, | |
7551 | vertAlign, | |
7552 | textOrientation ); | |
d10f4bf9 VZ |
7553 | } |
7554 | ||
7555 | void wxGrid::DrawTextRectangle( wxDC& dc, | |
038a5591 JS |
7556 | const wxArrayString& lines, |
7557 | const wxRect& rect, | |
7558 | int horizAlign, | |
7559 | int vertAlign, | |
7560 | int textOrientation ) | |
d10f4bf9 | 7561 | { |
8d7eaf91 MW |
7562 | long textWidth = 0, textHeight = 0; |
7563 | long lineWidth = 0, lineHeight = 0; | |
73145b0e | 7564 | int nLines; |
ef5df12b | 7565 | |
a373d23b | 7566 | dc.SetClippingRegion( rect ); |
ef5df12b | 7567 | |
73145b0e | 7568 | nLines = lines.GetCount(); |
4db6714b | 7569 | if ( nLines > 0 ) |
2d66e025 | 7570 | { |
038a5591 JS |
7571 | int l; |
7572 | float x = 0.0, y = 0.0; | |
ef5df12b | 7573 | |
4db6714b | 7574 | if ( textOrientation == wxHORIZONTAL ) |
a9339fe2 | 7575 | GetTextBoxSize( dc, lines, &textWidth, &textHeight ); |
038a5591 JS |
7576 | else |
7577 | GetTextBoxSize( dc, lines, &textHeight, &textWidth ); | |
ef5df12b | 7578 | |
962a48f6 | 7579 | switch ( vertAlign ) |
038a5591 | 7580 | { |
73145b0e | 7581 | case wxALIGN_BOTTOM: |
4db6714b | 7582 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 | 7583 | y = rect.y + (rect.height - textHeight - 1); |
d43851f7 | 7584 | else |
038a5591 JS |
7585 | x = rect.x + rect.width - textWidth; |
7586 | break; | |
ef5df12b | 7587 | |
73145b0e | 7588 | case wxALIGN_CENTRE: |
4db6714b | 7589 | if ( textOrientation == wxHORIZONTAL ) |
a9339fe2 | 7590 | y = rect.y + ((rect.height - textHeight) / 2); |
d43851f7 | 7591 | else |
a9339fe2 | 7592 | x = rect.x + ((rect.width - textWidth) / 2); |
038a5591 | 7593 | break; |
ef5df12b | 7594 | |
73145b0e JS |
7595 | case wxALIGN_TOP: |
7596 | default: | |
4db6714b | 7597 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 | 7598 | y = rect.y + 1; |
d43851f7 | 7599 | else |
038a5591 | 7600 | x = rect.x + 1; |
73145b0e | 7601 | break; |
f85afd4e | 7602 | } |
ef5df12b | 7603 | |
038a5591 | 7604 | // Align each line of a multi-line label |
4db6714b | 7605 | for ( l = 0; l < nLines; l++ ) |
038a5591 JS |
7606 | { |
7607 | dc.GetTextExtent(lines[l], &lineWidth, &lineHeight); | |
ef5df12b | 7608 | |
962a48f6 | 7609 | switch ( horizAlign ) |
038a5591 JS |
7610 | { |
7611 | case wxALIGN_RIGHT: | |
4db6714b | 7612 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 JS |
7613 | x = rect.x + (rect.width - lineWidth - 1); |
7614 | else | |
7615 | y = rect.y + lineWidth + 1; | |
7616 | break; | |
ef5df12b | 7617 | |
038a5591 | 7618 | case wxALIGN_CENTRE: |
4db6714b | 7619 | if ( textOrientation == wxHORIZONTAL ) |
2f024384 | 7620 | x = rect.x + ((rect.width - lineWidth) / 2); |
038a5591 | 7621 | else |
2f024384 | 7622 | y = rect.y + rect.height - ((rect.height - lineWidth) / 2); |
038a5591 | 7623 | break; |
ef5df12b | 7624 | |
038a5591 JS |
7625 | case wxALIGN_LEFT: |
7626 | default: | |
4db6714b | 7627 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 JS |
7628 | x = rect.x + 1; |
7629 | else | |
7630 | y = rect.y + rect.height - 1; | |
7631 | break; | |
7632 | } | |
ef5df12b | 7633 | |
4db6714b | 7634 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 JS |
7635 | { |
7636 | dc.DrawText( lines[l], (int)x, (int)y ); | |
7637 | y += lineHeight; | |
7638 | } | |
7639 | else | |
7640 | { | |
7641 | dc.DrawRotatedText( lines[l], (int)x, (int)y, 90.0 ); | |
7642 | x += lineHeight; | |
7643 | } | |
7644 | } | |
f85afd4e | 7645 | } |
4db6714b | 7646 | |
f85afd4e | 7647 | dc.DestroyClippingRegion(); |
f85afd4e MB |
7648 | } |
7649 | ||
2f024384 DS |
7650 | // Split multi-line text up into an array of strings. |
7651 | // Any existing contents of the string array are preserved. | |
f85afd4e MB |
7652 | // |
7653 | void wxGrid::StringToLines( const wxString& value, wxArrayString& lines ) | |
7654 | { | |
f85afd4e MB |
7655 | int startPos = 0; |
7656 | int pos; | |
6d004f67 | 7657 | wxString eol = wxTextFile::GetEOL( wxTextFileType_Unix ); |
2433bb2e | 7658 | wxString tVal = wxTextFile::Translate( value, wxTextFileType_Unix ); |
e2b42eeb | 7659 | |
faa94f3e | 7660 | while ( startPos < (int)tVal.length() ) |
f85afd4e | 7661 | { |
2433bb2e | 7662 | pos = tVal.Mid(startPos).Find( eol ); |
f85afd4e MB |
7663 | if ( pos < 0 ) |
7664 | { | |
7665 | break; | |
7666 | } | |
7667 | else if ( pos == 0 ) | |
7668 | { | |
7669 | lines.Add( wxEmptyString ); | |
7670 | } | |
7671 | else | |
7672 | { | |
2433bb2e | 7673 | lines.Add( value.Mid(startPos, pos) ); |
f85afd4e | 7674 | } |
a9339fe2 | 7675 | |
4db6714b | 7676 | startPos += pos + 1; |
f85afd4e | 7677 | } |
4db6714b | 7678 | |
faa94f3e | 7679 | if ( startPos < (int)value.length() ) |
f85afd4e MB |
7680 | { |
7681 | lines.Add( value.Mid( startPos ) ); | |
7682 | } | |
7683 | } | |
7684 | ||
fbfb8bcc | 7685 | void wxGrid::GetTextBoxSize( const wxDC& dc, |
d10f4bf9 | 7686 | const wxArrayString& lines, |
f85afd4e MB |
7687 | long *width, long *height ) |
7688 | { | |
7689 | long w = 0; | |
7690 | long h = 0; | |
8d7eaf91 | 7691 | long lineW = 0, lineH = 0; |
f85afd4e | 7692 | |
b540eb2b | 7693 | size_t i; |
56b6cf26 | 7694 | for ( i = 0; i < lines.GetCount(); i++ ) |
f85afd4e MB |
7695 | { |
7696 | dc.GetTextExtent( lines[i], &lineW, &lineH ); | |
7697 | w = wxMax( w, lineW ); | |
7698 | h += lineH; | |
7699 | } | |
7700 | ||
7701 | *width = w; | |
7702 | *height = h; | |
7703 | } | |
7704 | ||
f6bcfd97 BP |
7705 | // |
7706 | // ------ Batch processing. | |
7707 | // | |
7708 | void wxGrid::EndBatch() | |
7709 | { | |
7710 | if ( m_batchCount > 0 ) | |
7711 | { | |
7712 | m_batchCount--; | |
7713 | if ( !m_batchCount ) | |
7714 | { | |
7715 | CalcDimensions(); | |
7716 | m_rowLabelWin->Refresh(); | |
7717 | m_colLabelWin->Refresh(); | |
7718 | m_cornerLabelWin->Refresh(); | |
7719 | m_gridWin->Refresh(); | |
7720 | } | |
7721 | } | |
7722 | } | |
f85afd4e | 7723 | |
d8232393 MB |
7724 | // Use this, rather than wxWindow::Refresh(), to force an immediate |
7725 | // repainting of the grid. Has no effect if you are already inside a | |
7726 | // BeginBatch / EndBatch block. | |
7727 | // | |
7728 | void wxGrid::ForceRefresh() | |
7729 | { | |
7730 | BeginBatch(); | |
7731 | EndBatch(); | |
7732 | } | |
7733 | ||
bf646121 VZ |
7734 | bool wxGrid::Enable(bool enable) |
7735 | { | |
7736 | if ( !wxScrolledWindow::Enable(enable) ) | |
7737 | return false; | |
7738 | ||
7739 | // redraw in the new state | |
7740 | m_gridWin->Refresh(); | |
7741 | ||
7742 | return true; | |
7743 | } | |
d8232393 | 7744 | |
f85afd4e | 7745 | // |
2d66e025 | 7746 | // ------ Edit control functions |
f85afd4e MB |
7747 | // |
7748 | ||
2d66e025 | 7749 | void wxGrid::EnableEditing( bool edit ) |
f85afd4e | 7750 | { |
2d66e025 MB |
7751 | // TODO: improve this ? |
7752 | // | |
7753 | if ( edit != m_editable ) | |
f85afd4e | 7754 | { |
4db6714b KH |
7755 | if (!edit) |
7756 | EnableCellEditControl(edit); | |
2d66e025 | 7757 | m_editable = edit; |
f85afd4e | 7758 | } |
f85afd4e MB |
7759 | } |
7760 | ||
2d66e025 | 7761 | void wxGrid::EnableCellEditControl( bool enable ) |
f85afd4e | 7762 | { |
2c9a89e0 RD |
7763 | if (! m_editable) |
7764 | return; | |
7765 | ||
2c9a89e0 RD |
7766 | if ( enable != m_cellEditCtrlEnabled ) |
7767 | { | |
dcfe4c3d | 7768 | if ( enable ) |
f85afd4e | 7769 | { |
97a9929e VZ |
7770 | if (SendEvent( wxEVT_GRID_EDITOR_SHOWN) <0) |
7771 | return; | |
fe7b9ed6 | 7772 | |
97a9929e | 7773 | // this should be checked by the caller! |
a9339fe2 | 7774 | wxASSERT_MSG( CanEnableCellControl(), _T("can't enable editing for this cell!") ); |
b54ba671 VZ |
7775 | |
7776 | // do it before ShowCellEditControl() | |
dcfe4c3d | 7777 | m_cellEditCtrlEnabled = enable; |
b54ba671 | 7778 | |
2d66e025 | 7779 | ShowCellEditControl(); |
2d66e025 MB |
7780 | } |
7781 | else | |
7782 | { | |
97a9929e | 7783 | //FIXME:add veto support |
a9339fe2 | 7784 | SendEvent( wxEVT_GRID_EDITOR_HIDDEN ); |
fe7b9ed6 | 7785 | |
97a9929e | 7786 | HideCellEditControl(); |
2d66e025 | 7787 | SaveEditControlValue(); |
b54ba671 VZ |
7788 | |
7789 | // do it after HideCellEditControl() | |
dcfe4c3d | 7790 | m_cellEditCtrlEnabled = enable; |
f85afd4e | 7791 | } |
f85afd4e | 7792 | } |
f85afd4e | 7793 | } |
f85afd4e | 7794 | |
b54ba671 | 7795 | bool wxGrid::IsCurrentCellReadOnly() const |
283b7808 | 7796 | { |
b54ba671 VZ |
7797 | // const_cast |
7798 | wxGridCellAttr* attr = ((wxGrid *)this)->GetCellAttr(m_currentCellCoords); | |
7799 | bool readonly = attr->IsReadOnly(); | |
7800 | attr->DecRef(); | |
283b7808 | 7801 | |
b54ba671 VZ |
7802 | return readonly; |
7803 | } | |
283b7808 | 7804 | |
b54ba671 VZ |
7805 | bool wxGrid::CanEnableCellControl() const |
7806 | { | |
20c84410 SN |
7807 | return m_editable && (m_currentCellCoords != wxGridNoCellCoords) && |
7808 | !IsCurrentCellReadOnly(); | |
b54ba671 VZ |
7809 | } |
7810 | ||
7811 | bool wxGrid::IsCellEditControlEnabled() const | |
7812 | { | |
7813 | // the cell edit control might be disable for all cells or just for the | |
7814 | // current one if it's read only | |
ca65c044 | 7815 | return m_cellEditCtrlEnabled ? !IsCurrentCellReadOnly() : false; |
283b7808 VZ |
7816 | } |
7817 | ||
f6bcfd97 BP |
7818 | bool wxGrid::IsCellEditControlShown() const |
7819 | { | |
ca65c044 | 7820 | bool isShown = false; |
f6bcfd97 BP |
7821 | |
7822 | if ( m_cellEditCtrlEnabled ) | |
7823 | { | |
7824 | int row = m_currentCellCoords.GetRow(); | |
7825 | int col = m_currentCellCoords.GetCol(); | |
7826 | wxGridCellAttr* attr = GetCellAttr(row, col); | |
7827 | wxGridCellEditor* editor = attr->GetEditor((wxGrid*) this, row, col); | |
7828 | attr->DecRef(); | |
7829 | ||
7830 | if ( editor ) | |
7831 | { | |
7832 | if ( editor->IsCreated() ) | |
7833 | { | |
7834 | isShown = editor->GetControl()->IsShown(); | |
7835 | } | |
7836 | ||
7837 | editor->DecRef(); | |
7838 | } | |
7839 | } | |
7840 | ||
7841 | return isShown; | |
7842 | } | |
7843 | ||
2d66e025 | 7844 | void wxGrid::ShowCellEditControl() |
f85afd4e | 7845 | { |
2d66e025 | 7846 | if ( IsCellEditControlEnabled() ) |
f85afd4e | 7847 | { |
7db713ae | 7848 | if ( !IsVisible( m_currentCellCoords, false ) ) |
2d66e025 | 7849 | { |
ca65c044 | 7850 | m_cellEditCtrlEnabled = false; |
2d66e025 MB |
7851 | return; |
7852 | } | |
7853 | else | |
7854 | { | |
2c9a89e0 RD |
7855 | wxRect rect = CellToRect( m_currentCellCoords ); |
7856 | int row = m_currentCellCoords.GetRow(); | |
7857 | int col = m_currentCellCoords.GetCol(); | |
2d66e025 | 7858 | |
27f35b66 SN |
7859 | // if this is part of a multicell, find owner (topleft) |
7860 | int cell_rows, cell_cols; | |
7861 | GetCellSize( row, col, &cell_rows, &cell_cols ); | |
7862 | if ( cell_rows <= 0 || cell_cols <= 0 ) | |
7863 | { | |
7864 | row += cell_rows; | |
7865 | col += cell_cols; | |
7866 | m_currentCellCoords.SetRow( row ); | |
7867 | m_currentCellCoords.SetCol( col ); | |
7868 | } | |
7869 | ||
2d66e025 | 7870 | // convert to scrolled coords |
99306db2 | 7871 | CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); |
508011ce | 7872 | |
7db713ae | 7873 | int nXMove = 0; |
bee19958 | 7874 | if (rect.x < 0) |
7db713ae JS |
7875 | nXMove = rect.x; |
7876 | ||
a9339fe2 | 7877 | // performed in PaintBackground() |
99306db2 VZ |
7878 | #if 0 |
7879 | // erase the highlight and the cell contents because the editor | |
7880 | // might not cover the entire cell | |
7881 | wxClientDC dc( m_gridWin ); | |
7882 | PrepareDC( dc ); | |
7883 | dc.SetBrush(*wxLIGHT_GREY_BRUSH); //wxBrush(attr->GetBackgroundColour(), wxSOLID)); | |
7884 | dc.SetPen(*wxTRANSPARENT_PEN); | |
7885 | dc.DrawRectangle(rect); | |
a9339fe2 | 7886 | #endif |
d2fdd8d2 | 7887 | |
99306db2 | 7888 | // cell is shifted by one pixel |
68c5a31c | 7889 | // However, don't allow x or y to become negative |
70e8d961 | 7890 | // since the SetSize() method interprets that as |
68c5a31c SN |
7891 | // "don't change." |
7892 | if (rect.x > 0) | |
7893 | rect.x--; | |
7894 | if (rect.y > 0) | |
7895 | rect.y--; | |
f0102d2a | 7896 | |
508011ce | 7897 | wxGridCellAttr* attr = GetCellAttr(row, col); |
28a77bc4 | 7898 | wxGridCellEditor* editor = attr->GetEditor(this, row, col); |
3da93aae VZ |
7899 | if ( !editor->IsCreated() ) |
7900 | { | |
ca65c044 | 7901 | editor->Create(m_gridWin, wxID_ANY, |
2c9a89e0 | 7902 | new wxGridCellEditorEvtHandler(this, editor)); |
bf7945ce RD |
7903 | |
7904 | wxGridEditorCreatedEvent evt(GetId(), | |
7905 | wxEVT_GRID_EDITOR_CREATED, | |
7906 | this, | |
7907 | row, | |
7908 | col, | |
7909 | editor->GetControl()); | |
7910 | GetEventHandler()->ProcessEvent(evt); | |
2d66e025 MB |
7911 | } |
7912 | ||
27f35b66 | 7913 | // resize editor to overflow into righthand cells if allowed |
39b80349 | 7914 | int maxWidth = rect.width; |
27f35b66 SN |
7915 | wxString value = GetCellValue(row, col); |
7916 | if ( (value != wxEmptyString) && (attr->GetOverflow()) ) | |
7917 | { | |
39b80349 | 7918 | int y; |
2f024384 DS |
7919 | GetTextExtent(value, &maxWidth, &y, NULL, NULL, &attr->GetFont()); |
7920 | if (maxWidth < rect.width) | |
7921 | maxWidth = rect.width; | |
39b80349 | 7922 | } |
4db6714b | 7923 | |
39b80349 | 7924 | int client_right = m_gridWin->GetClientSize().GetWidth(); |
2f024384 | 7925 | if (rect.x + maxWidth > client_right) |
2b5f62a0 | 7926 | maxWidth = client_right - rect.x; |
39b80349 | 7927 | |
2b5f62a0 VZ |
7928 | if ((maxWidth > rect.width) && (col < m_numCols) && m_table) |
7929 | { | |
39b80349 | 7930 | GetCellSize( row, col, &cell_rows, &cell_cols ); |
2b5f62a0 | 7931 | // may have changed earlier |
2f024384 | 7932 | for (int i = col + cell_cols; i < m_numCols; i++) |
2b5f62a0 | 7933 | { |
39b80349 SN |
7934 | int c_rows, c_cols; |
7935 | GetCellSize( row, i, &c_rows, &c_cols ); | |
2f024384 | 7936 | |
2b5f62a0 | 7937 | // looks weird going over a multicell |
bee19958 | 7938 | if (m_table->IsEmptyCell( row, i ) && |
2b5f62a0 | 7939 | (rect.width < maxWidth) && (c_rows == 1)) |
2f024384 | 7940 | { |
bee19958 | 7941 | rect.width += GetColWidth( i ); |
2f024384 | 7942 | } |
2b5f62a0 VZ |
7943 | else |
7944 | break; | |
7945 | } | |
4db6714b | 7946 | |
39b80349 | 7947 | if (rect.GetRight() > client_right) |
bee19958 | 7948 | rect.SetRight( client_right - 1 ); |
27f35b66 | 7949 | } |
73145b0e | 7950 | |
bee19958 | 7951 | editor->SetCellAttr( attr ); |
2c9a89e0 | 7952 | editor->SetSize( rect ); |
2f024384 DS |
7953 | editor->GetControl()->Move( |
7954 | editor->GetControl()->GetPosition().x + nXMove, | |
7955 | editor->GetControl()->GetPosition().y ); | |
ca65c044 | 7956 | editor->Show( true, attr ); |
04418332 | 7957 | |
7db713ae | 7958 | int colXPos = 0; |
faa94f3e | 7959 | for (int i = 0; i < m_currentCellCoords.GetCol(); i++) |
7db713ae | 7960 | { |
bee19958 | 7961 | colXPos += GetColSize( i ); |
7db713ae | 7962 | } |
bee19958 DS |
7963 | |
7964 | int xUnit = 1, yUnit = 1; | |
7965 | GetScrollPixelsPerUnit( &xUnit, &yUnit ); | |
7db713ae | 7966 | if (m_currentCellCoords.GetCol() != 0) |
bee19958 | 7967 | Scroll( colXPos / xUnit - 1, GetScrollPos( wxVERTICAL ) ); |
7db713ae | 7968 | else |
bee19958 | 7969 | Scroll( colXPos / xUnit, GetScrollPos( wxVERTICAL ) ); |
7db713ae | 7970 | |
04418332 VZ |
7971 | // recalc dimensions in case we need to |
7972 | // expand the scrolled window to account for editor | |
73145b0e | 7973 | CalcDimensions(); |
99306db2 | 7974 | |
3da93aae | 7975 | editor->BeginEdit(row, col, this); |
1bd71df9 | 7976 | editor->SetCellAttr(NULL); |
0b190b0f VZ |
7977 | |
7978 | editor->DecRef(); | |
2c9a89e0 | 7979 | attr->DecRef(); |
2b5f62a0 | 7980 | } |
f85afd4e MB |
7981 | } |
7982 | } | |
7983 | ||
2d66e025 | 7984 | void wxGrid::HideCellEditControl() |
f85afd4e | 7985 | { |
2d66e025 | 7986 | if ( IsCellEditControlEnabled() ) |
f85afd4e | 7987 | { |
2c9a89e0 RD |
7988 | int row = m_currentCellCoords.GetRow(); |
7989 | int col = m_currentCellCoords.GetCol(); | |
7990 | ||
bee19958 | 7991 | wxGridCellAttr *attr = GetCellAttr(row, col); |
0b190b0f | 7992 | wxGridCellEditor *editor = attr->GetEditor(this, row, col); |
ca65c044 | 7993 | editor->Show( false ); |
0b190b0f | 7994 | editor->DecRef(); |
2c9a89e0 | 7995 | attr->DecRef(); |
2fb3e528 | 7996 | |
48962b9f | 7997 | m_gridWin->SetFocus(); |
2fb3e528 | 7998 | |
27f35b66 SN |
7999 | // refresh whole row to the right |
8000 | wxRect rect( CellToRect(row, col) ); | |
8001 | CalcScrolledPosition(rect.x, rect.y, &rect.x, &rect.y ); | |
8002 | rect.width = m_gridWin->GetClientSize().GetWidth() - rect.x; | |
2f024384 | 8003 | |
7d75e6c6 RD |
8004 | #ifdef __WXMAC__ |
8005 | // ensure that the pixels under the focus ring get refreshed as well | |
4db6714b | 8006 | rect.Inflate(10, 10); |
7d75e6c6 | 8007 | #endif |
2f024384 | 8008 | |
ca65c044 | 8009 | m_gridWin->Refresh( false, &rect ); |
f85afd4e | 8010 | } |
2d66e025 | 8011 | } |
8f177c8e | 8012 | |
2d66e025 MB |
8013 | void wxGrid::SaveEditControlValue() |
8014 | { | |
3da93aae VZ |
8015 | if ( IsCellEditControlEnabled() ) |
8016 | { | |
2c9a89e0 RD |
8017 | int row = m_currentCellCoords.GetRow(); |
8018 | int col = m_currentCellCoords.GetCol(); | |
8f177c8e | 8019 | |
4db6714b | 8020 | wxString oldval = GetCellValue(row, col); |
fe7b9ed6 | 8021 | |
3da93aae | 8022 | wxGridCellAttr* attr = GetCellAttr(row, col); |
28a77bc4 | 8023 | wxGridCellEditor* editor = attr->GetEditor(this, row, col); |
3324d5f5 | 8024 | bool changed = editor->EndEdit(row, col, this); |
2d66e025 | 8025 | |
0b190b0f | 8026 | editor->DecRef(); |
2c9a89e0 | 8027 | attr->DecRef(); |
2d66e025 | 8028 | |
3da93aae VZ |
8029 | if (changed) |
8030 | { | |
fe7b9ed6 | 8031 | if ( SendEvent( wxEVT_GRID_CELL_CHANGE, |
2d66e025 | 8032 | m_currentCellCoords.GetRow(), |
4db6714b KH |
8033 | m_currentCellCoords.GetCol() ) < 0 ) |
8034 | { | |
97a9929e | 8035 | // Event has been vetoed, set the data back. |
4db6714b | 8036 | SetCellValue(row, col, oldval); |
97a9929e | 8037 | } |
2d66e025 | 8038 | } |
f85afd4e MB |
8039 | } |
8040 | } | |
8041 | ||
2d66e025 | 8042 | // |
60ff3b99 VZ |
8043 | // ------ Grid location functions |
8044 | // Note that all of these functions work with the logical coordinates of | |
2d66e025 MB |
8045 | // grid cells and labels so you will need to convert from device |
8046 | // coordinates for mouse events etc. | |
8047 | // | |
8048 | ||
8049 | void wxGrid::XYToCell( int x, int y, wxGridCellCoords& coords ) | |
f85afd4e | 8050 | { |
58dd5b3b MB |
8051 | int row = YToRow(y); |
8052 | int col = XToCol(x); | |
8053 | ||
a9339fe2 | 8054 | if ( row == -1 || col == -1 ) |
58dd5b3b MB |
8055 | { |
8056 | coords = wxGridNoCellCoords; | |
8057 | } | |
8058 | else | |
8059 | { | |
8060 | coords.Set( row, col ); | |
8061 | } | |
2d66e025 | 8062 | } |
f85afd4e | 8063 | |
b1da8107 SN |
8064 | // Internal Helper function for computing row or column from some |
8065 | // (unscrolled) coordinate value, using either | |
70e8d961 | 8066 | // m_defaultRowHeight/m_defaultColWidth or binary search on array |
b1da8107 SN |
8067 | // of m_rowBottoms/m_ColRights to speed up the search! |
8068 | ||
8069 | static int CoordToRowOrCol(int coord, int defaultDist, int minDist, | |
64e15340 | 8070 | const wxArrayInt& BorderArray, int nMax, |
a967f048 | 8071 | bool clipToMinMax) |
2d66e025 | 8072 | { |
a967f048 RG |
8073 | if (coord < 0) |
8074 | return clipToMinMax && (nMax > 0) ? 0 : -1; | |
8075 | ||
b1da8107 SN |
8076 | if (!defaultDist) |
8077 | defaultDist = 1; | |
a967f048 | 8078 | |
1af546bf VZ |
8079 | size_t i_max = coord / defaultDist, |
8080 | i_min = 0; | |
d57ad377 | 8081 | |
b1da8107 SN |
8082 | if (BorderArray.IsEmpty()) |
8083 | { | |
4db6714b | 8084 | if ((int) i_max < nMax) |
64e15340 | 8085 | return i_max; |
a967f048 | 8086 | return clipToMinMax ? nMax - 1 : -1; |
b1da8107 | 8087 | } |
8f177c8e | 8088 | |
b1da8107 | 8089 | if ( i_max >= BorderArray.GetCount()) |
2f024384 | 8090 | { |
b1da8107 | 8091 | i_max = BorderArray.GetCount() - 1; |
2f024384 | 8092 | } |
70e8d961 | 8093 | else |
f85afd4e | 8094 | { |
b1da8107 SN |
8095 | if ( coord >= BorderArray[i_max]) |
8096 | { | |
8097 | i_min = i_max; | |
20c84410 SN |
8098 | if (minDist) |
8099 | i_max = coord / minDist; | |
8100 | else | |
8101 | i_max = BorderArray.GetCount() - 1; | |
b1da8107 | 8102 | } |
4db6714b | 8103 | |
b1da8107 SN |
8104 | if ( i_max >= BorderArray.GetCount()) |
8105 | i_max = BorderArray.GetCount() - 1; | |
f85afd4e | 8106 | } |
4db6714b | 8107 | |
33188aa4 | 8108 | if ( coord >= BorderArray[i_max]) |
a967f048 | 8109 | return clipToMinMax ? (int)i_max : -1; |
68c5a31c SN |
8110 | if ( coord < BorderArray[0] ) |
8111 | return 0; | |
2d66e025 | 8112 | |
68c5a31c | 8113 | while ( i_max - i_min > 0 ) |
b1da8107 SN |
8114 | { |
8115 | wxCHECK_MSG(BorderArray[i_min] <= coord && coord < BorderArray[i_max], | |
33188aa4 | 8116 | 0, _T("wxGrid: internal error in CoordToRowOrCol")); |
b1da8107 | 8117 | if (coord >= BorderArray[ i_max - 1]) |
b1da8107 | 8118 | return i_max; |
b1da8107 SN |
8119 | else |
8120 | i_max--; | |
8121 | int median = i_min + (i_max - i_min + 1) / 2; | |
8122 | if (coord < BorderArray[median]) | |
8123 | i_max = median; | |
8124 | else | |
8125 | i_min = median; | |
8126 | } | |
4db6714b | 8127 | |
b1da8107 | 8128 | return i_max; |
f85afd4e MB |
8129 | } |
8130 | ||
b1da8107 | 8131 | int wxGrid::YToRow( int y ) |
f85afd4e | 8132 | { |
b1da8107 | 8133 | return CoordToRowOrCol(y, m_defaultRowHeight, |
ca65c044 | 8134 | m_minAcceptableRowHeight, m_rowBottoms, m_numRows, false); |
b1da8107 | 8135 | } |
8f177c8e | 8136 | |
b1da8107 SN |
8137 | int wxGrid::XToCol( int x ) |
8138 | { | |
8139 | return CoordToRowOrCol(x, m_defaultColWidth, | |
ca65c044 | 8140 | m_minAcceptableColWidth, m_colRights, m_numCols, false); |
2d66e025 | 8141 | } |
8f177c8e | 8142 | |
2d66e025 MB |
8143 | // return the row number that that the y coord is near the edge of, or |
8144 | // -1 if not near an edge | |
8145 | // | |
8146 | int wxGrid::YToEdgeOfRow( int y ) | |
8147 | { | |
33188aa4 SN |
8148 | int i; |
8149 | i = internalYToRow(y); | |
8150 | ||
8151 | if ( GetRowHeight(i) > WXGRID_LABEL_EDGE_ZONE ) | |
2d66e025 | 8152 | { |
33188aa4 SN |
8153 | // We know that we are in row i, test whether we are |
8154 | // close enough to lower or upper border, respectively. | |
8155 | if ( abs(GetRowBottom(i) - y) < WXGRID_LABEL_EDGE_ZONE ) | |
8156 | return i; | |
4db6714b | 8157 | else if ( i > 0 && y - GetRowTop(i) < WXGRID_LABEL_EDGE_ZONE ) |
33188aa4 | 8158 | return i - 1; |
f85afd4e | 8159 | } |
2d66e025 MB |
8160 | |
8161 | return -1; | |
8162 | } | |
8163 | ||
2d66e025 MB |
8164 | // return the col number that that the x coord is near the edge of, or |
8165 | // -1 if not near an edge | |
8166 | // | |
8167 | int wxGrid::XToEdgeOfCol( int x ) | |
8168 | { | |
33188aa4 SN |
8169 | int i; |
8170 | i = internalXToCol(x); | |
8171 | ||
8172 | if ( GetColWidth(i) > WXGRID_LABEL_EDGE_ZONE ) | |
f85afd4e | 8173 | { |
a9339fe2 | 8174 | // We know that we are in column i; test whether we are |
33188aa4 SN |
8175 | // close enough to right or left border, respectively. |
8176 | if ( abs(GetColRight(i) - x) < WXGRID_LABEL_EDGE_ZONE ) | |
8177 | return i; | |
4db6714b | 8178 | else if ( i > 0 && x - GetColLeft(i) < WXGRID_LABEL_EDGE_ZONE ) |
33188aa4 | 8179 | return i - 1; |
f85afd4e | 8180 | } |
2d66e025 MB |
8181 | |
8182 | return -1; | |
f85afd4e MB |
8183 | } |
8184 | ||
2d66e025 | 8185 | wxRect wxGrid::CellToRect( int row, int col ) |
f85afd4e | 8186 | { |
2d66e025 | 8187 | wxRect rect( -1, -1, -1, -1 ); |
f85afd4e | 8188 | |
2f024384 DS |
8189 | if ( row >= 0 && row < m_numRows && |
8190 | col >= 0 && col < m_numCols ) | |
f85afd4e | 8191 | { |
27f35b66 SN |
8192 | int i, cell_rows, cell_cols; |
8193 | rect.width = rect.height = 0; | |
8194 | GetCellSize( row, col, &cell_rows, &cell_cols ); | |
8195 | // if negative then find multicell owner | |
2f024384 DS |
8196 | if (cell_rows < 0) |
8197 | row += cell_rows; | |
8198 | if (cell_cols < 0) | |
8199 | col += cell_cols; | |
27f35b66 SN |
8200 | GetCellSize( row, col, &cell_rows, &cell_cols ); |
8201 | ||
7c1cb261 VZ |
8202 | rect.x = GetColLeft(col); |
8203 | rect.y = GetRowTop(row); | |
2f024384 DS |
8204 | for (i=col; i < col + cell_cols; i++) |
8205 | rect.width += GetColWidth(i); | |
8206 | for (i=row; i < row + cell_rows; i++) | |
27f35b66 | 8207 | rect.height += GetRowHeight(i); |
f85afd4e MB |
8208 | } |
8209 | ||
f6bcfd97 | 8210 | // if grid lines are enabled, then the area of the cell is a bit smaller |
4db6714b KH |
8211 | if (m_gridLinesEnabled) |
8212 | { | |
f6bcfd97 BP |
8213 | rect.width -= 1; |
8214 | rect.height -= 1; | |
8215 | } | |
4db6714b | 8216 | |
2d66e025 MB |
8217 | return rect; |
8218 | } | |
8219 | ||
2d66e025 MB |
8220 | bool wxGrid::IsVisible( int row, int col, bool wholeCellVisible ) |
8221 | { | |
8222 | // get the cell rectangle in logical coords | |
8223 | // | |
8224 | wxRect r( CellToRect( row, col ) ); | |
60ff3b99 | 8225 | |
2d66e025 MB |
8226 | // convert to device coords |
8227 | // | |
8228 | int left, top, right, bottom; | |
8229 | CalcScrolledPosition( r.GetLeft(), r.GetTop(), &left, &top ); | |
8230 | CalcScrolledPosition( r.GetRight(), r.GetBottom(), &right, &bottom ); | |
60ff3b99 | 8231 | |
2d66e025 | 8232 | // check against the client area of the grid window |
2d66e025 MB |
8233 | int cw, ch; |
8234 | m_gridWin->GetClientSize( &cw, &ch ); | |
60ff3b99 | 8235 | |
2d66e025 | 8236 | if ( wholeCellVisible ) |
f85afd4e | 8237 | { |
2d66e025 | 8238 | // is the cell wholly visible ? |
2f024384 DS |
8239 | return ( left >= 0 && right <= cw && |
8240 | top >= 0 && bottom <= ch ); | |
2d66e025 MB |
8241 | } |
8242 | else | |
8243 | { | |
8244 | // is the cell partly visible ? | |
8245 | // | |
2f024384 DS |
8246 | return ( ((left >= 0 && left < cw) || (right > 0 && right <= cw)) && |
8247 | ((top >= 0 && top < ch) || (bottom > 0 && bottom <= ch)) ); | |
2d66e025 MB |
8248 | } |
8249 | } | |
8250 | ||
2d66e025 MB |
8251 | // make the specified cell location visible by doing a minimal amount |
8252 | // of scrolling | |
8253 | // | |
8254 | void wxGrid::MakeCellVisible( int row, int col ) | |
8255 | { | |
8256 | int i; | |
60ff3b99 | 8257 | int xpos = -1, ypos = -1; |
2d66e025 | 8258 | |
2f024384 DS |
8259 | if ( row >= 0 && row < m_numRows && |
8260 | col >= 0 && col < m_numCols ) | |
2d66e025 MB |
8261 | { |
8262 | // get the cell rectangle in logical coords | |
2d66e025 | 8263 | wxRect r( CellToRect( row, col ) ); |
60ff3b99 | 8264 | |
2d66e025 | 8265 | // convert to device coords |
2d66e025 MB |
8266 | int left, top, right, bottom; |
8267 | CalcScrolledPosition( r.GetLeft(), r.GetTop(), &left, &top ); | |
8268 | CalcScrolledPosition( r.GetRight(), r.GetBottom(), &right, &bottom ); | |
60ff3b99 | 8269 | |
2d66e025 MB |
8270 | int cw, ch; |
8271 | m_gridWin->GetClientSize( &cw, &ch ); | |
60ff3b99 | 8272 | |
2d66e025 | 8273 | if ( top < 0 ) |
3f296516 | 8274 | { |
2d66e025 | 8275 | ypos = r.GetTop(); |
3f296516 | 8276 | } |
2d66e025 MB |
8277 | else if ( bottom > ch ) |
8278 | { | |
8279 | int h = r.GetHeight(); | |
8280 | ypos = r.GetTop(); | |
56b6cf26 | 8281 | for ( i = row - 1; i >= 0; i-- ) |
2d66e025 | 8282 | { |
7c1cb261 VZ |
8283 | int rowHeight = GetRowHeight(i); |
8284 | if ( h + rowHeight > ch ) | |
8285 | break; | |
2d66e025 | 8286 | |
7c1cb261 VZ |
8287 | h += rowHeight; |
8288 | ypos -= rowHeight; | |
2d66e025 | 8289 | } |
f0102d2a VZ |
8290 | |
8291 | // we divide it later by GRID_SCROLL_LINE, make sure that we don't | |
56b6cf26 DS |
8292 | // have rounding errors (this is important, because if we do, |
8293 | // we might not scroll at all and some cells won't be redrawn) | |
275c4ae4 | 8294 | // |
56b6cf26 DS |
8295 | // Sometimes GRID_SCROLL_LINE / 2 is not enough, |
8296 | // so just add a full scroll unit... | |
675a9c0d | 8297 | ypos += m_scrollLineY; |
2d66e025 MB |
8298 | } |
8299 | ||
7db713ae | 8300 | // special handling for wide cells - show always left part of the cell! |
faa94f3e | 8301 | // Otherwise, e.g. when stepping from row to row, it would jump between |
7db713ae JS |
8302 | // left and right part of the cell on every step! |
8303 | // if ( left < 0 ) | |
ccdee36f | 8304 | if ( left < 0 || (right - left) >= cw ) |
2d66e025 MB |
8305 | { |
8306 | xpos = r.GetLeft(); | |
8307 | } | |
8308 | else if ( right > cw ) | |
8309 | { | |
73145b0e JS |
8310 | // position the view so that the cell is on the right |
8311 | int x0, y0; | |
8312 | CalcUnscrolledPosition(0, 0, &x0, &y0); | |
8313 | xpos = x0 + (right - cw); | |
f0102d2a VZ |
8314 | |
8315 | // see comment for ypos above | |
675a9c0d | 8316 | xpos += m_scrollLineX; |
2d66e025 MB |
8317 | } |
8318 | ||
ccdee36f | 8319 | if ( xpos != -1 || ypos != -1 ) |
2d66e025 | 8320 | { |
97a9929e | 8321 | if ( xpos != -1 ) |
675a9c0d | 8322 | xpos /= m_scrollLineX; |
97a9929e | 8323 | if ( ypos != -1 ) |
675a9c0d | 8324 | ypos /= m_scrollLineY; |
2d66e025 MB |
8325 | Scroll( xpos, ypos ); |
8326 | AdjustScrollbars(); | |
8327 | } | |
8328 | } | |
8329 | } | |
8330 | ||
2d66e025 MB |
8331 | // |
8332 | // ------ Grid cursor movement functions | |
8333 | // | |
8334 | ||
5c8fc7c1 | 8335 | bool wxGrid::MoveCursorUp( bool expandSelection ) |
2d66e025 | 8336 | { |
2f024384 | 8337 | if ( m_currentCellCoords != wxGridNoCellCoords && |
f6bcfd97 | 8338 | m_currentCellCoords.GetRow() >= 0 ) |
2d66e025 | 8339 | { |
bee19958 | 8340 | if ( expandSelection ) |
d95b0c2b SN |
8341 | { |
8342 | if ( m_selectingKeyboard == wxGridNoCellCoords ) | |
8343 | m_selectingKeyboard = m_currentCellCoords; | |
f6bcfd97 BP |
8344 | if ( m_selectingKeyboard.GetRow() > 0 ) |
8345 | { | |
8346 | m_selectingKeyboard.SetRow( m_selectingKeyboard.GetRow() - 1 ); | |
8347 | MakeCellVisible( m_selectingKeyboard.GetRow(), | |
8348 | m_selectingKeyboard.GetCol() ); | |
c9097836 | 8349 | HighlightBlock( m_currentCellCoords, m_selectingKeyboard ); |
f6bcfd97 | 8350 | } |
d95b0c2b | 8351 | } |
f6bcfd97 | 8352 | else if ( m_currentCellCoords.GetRow() > 0 ) |
aa5e1f75 | 8353 | { |
962a48f6 DS |
8354 | int row = m_currentCellCoords.GetRow() - 1; |
8355 | int col = m_currentCellCoords.GetCol(); | |
aa5e1f75 | 8356 | ClearSelection(); |
962a48f6 DS |
8357 | MakeCellVisible( row, col ); |
8358 | SetCurrentCell( row, col ); | |
aa5e1f75 | 8359 | } |
f6bcfd97 | 8360 | else |
ca65c044 | 8361 | return false; |
4db6714b | 8362 | |
ca65c044 | 8363 | return true; |
f85afd4e | 8364 | } |
2d66e025 | 8365 | |
ca65c044 | 8366 | return false; |
2d66e025 MB |
8367 | } |
8368 | ||
5c8fc7c1 | 8369 | bool wxGrid::MoveCursorDown( bool expandSelection ) |
2d66e025 | 8370 | { |
2f024384 | 8371 | if ( m_currentCellCoords != wxGridNoCellCoords && |
f6bcfd97 | 8372 | m_currentCellCoords.GetRow() < m_numRows ) |
f85afd4e | 8373 | { |
5c8fc7c1 | 8374 | if ( expandSelection ) |
d95b0c2b SN |
8375 | { |
8376 | if ( m_selectingKeyboard == wxGridNoCellCoords ) | |
8377 | m_selectingKeyboard = m_currentCellCoords; | |
ccdee36f | 8378 | if ( m_selectingKeyboard.GetRow() < m_numRows - 1 ) |
f6bcfd97 BP |
8379 | { |
8380 | m_selectingKeyboard.SetRow( m_selectingKeyboard.GetRow() + 1 ); | |
8381 | MakeCellVisible( m_selectingKeyboard.GetRow(), | |
8382 | m_selectingKeyboard.GetCol() ); | |
c9097836 | 8383 | HighlightBlock( m_currentCellCoords, m_selectingKeyboard ); |
f6bcfd97 | 8384 | } |
d95b0c2b | 8385 | } |
f6bcfd97 | 8386 | else if ( m_currentCellCoords.GetRow() < m_numRows - 1 ) |
aa5e1f75 | 8387 | { |
962a48f6 DS |
8388 | int row = m_currentCellCoords.GetRow() + 1; |
8389 | int col = m_currentCellCoords.GetCol(); | |
aa5e1f75 | 8390 | ClearSelection(); |
962a48f6 DS |
8391 | MakeCellVisible( row, col ); |
8392 | SetCurrentCell( row, col ); | |
aa5e1f75 | 8393 | } |
f6bcfd97 | 8394 | else |
ca65c044 | 8395 | return false; |
4db6714b | 8396 | |
ca65c044 | 8397 | return true; |
f85afd4e | 8398 | } |
2d66e025 | 8399 | |
ca65c044 | 8400 | return false; |
f85afd4e MB |
8401 | } |
8402 | ||
5c8fc7c1 | 8403 | bool wxGrid::MoveCursorLeft( bool expandSelection ) |
f85afd4e | 8404 | { |
2f024384 | 8405 | if ( m_currentCellCoords != wxGridNoCellCoords && |
f6bcfd97 | 8406 | m_currentCellCoords.GetCol() >= 0 ) |
2d66e025 | 8407 | { |
5c8fc7c1 | 8408 | if ( expandSelection ) |
d95b0c2b SN |
8409 | { |
8410 | if ( m_selectingKeyboard == wxGridNoCellCoords ) | |
8411 | m_selectingKeyboard = m_currentCellCoords; | |
f6bcfd97 BP |
8412 | if ( m_selectingKeyboard.GetCol() > 0 ) |
8413 | { | |
8414 | m_selectingKeyboard.SetCol( m_selectingKeyboard.GetCol() - 1 ); | |
8415 | MakeCellVisible( m_selectingKeyboard.GetRow(), | |
8416 | m_selectingKeyboard.GetCol() ); | |
c9097836 | 8417 | HighlightBlock( m_currentCellCoords, m_selectingKeyboard ); |
f6bcfd97 | 8418 | } |
d95b0c2b | 8419 | } |
f6bcfd97 | 8420 | else if ( m_currentCellCoords.GetCol() > 0 ) |
aa5e1f75 | 8421 | { |
962a48f6 DS |
8422 | int row = m_currentCellCoords.GetRow(); |
8423 | int col = m_currentCellCoords.GetCol() - 1; | |
aa5e1f75 | 8424 | ClearSelection(); |
962a48f6 DS |
8425 | MakeCellVisible( row, col ); |
8426 | SetCurrentCell( row, col ); | |
aa5e1f75 | 8427 | } |
f6bcfd97 | 8428 | else |
ca65c044 | 8429 | return false; |
4db6714b | 8430 | |
ca65c044 | 8431 | return true; |
2d66e025 MB |
8432 | } |
8433 | ||
ca65c044 | 8434 | return false; |
2d66e025 MB |
8435 | } |
8436 | ||
5c8fc7c1 | 8437 | bool wxGrid::MoveCursorRight( bool expandSelection ) |
2d66e025 | 8438 | { |
2f024384 | 8439 | if ( m_currentCellCoords != wxGridNoCellCoords && |
f6bcfd97 | 8440 | m_currentCellCoords.GetCol() < m_numCols ) |
f85afd4e | 8441 | { |
5c8fc7c1 | 8442 | if ( expandSelection ) |
d95b0c2b SN |
8443 | { |
8444 | if ( m_selectingKeyboard == wxGridNoCellCoords ) | |
8445 | m_selectingKeyboard = m_currentCellCoords; | |
f6bcfd97 BP |
8446 | if ( m_selectingKeyboard.GetCol() < m_numCols - 1 ) |
8447 | { | |
8448 | m_selectingKeyboard.SetCol( m_selectingKeyboard.GetCol() + 1 ); | |
8449 | MakeCellVisible( m_selectingKeyboard.GetRow(), | |
8450 | m_selectingKeyboard.GetCol() ); | |
c9097836 | 8451 | HighlightBlock( m_currentCellCoords, m_selectingKeyboard ); |
f6bcfd97 | 8452 | } |
d95b0c2b | 8453 | } |
f6bcfd97 | 8454 | else if ( m_currentCellCoords.GetCol() < m_numCols - 1 ) |
aa5e1f75 | 8455 | { |
962a48f6 DS |
8456 | int row = m_currentCellCoords.GetRow(); |
8457 | int col = m_currentCellCoords.GetCol() + 1; | |
aa5e1f75 | 8458 | ClearSelection(); |
962a48f6 DS |
8459 | MakeCellVisible( row, col ); |
8460 | SetCurrentCell( row, col ); | |
aa5e1f75 | 8461 | } |
f6bcfd97 | 8462 | else |
ca65c044 | 8463 | return false; |
4db6714b | 8464 | |
ca65c044 | 8465 | return true; |
f85afd4e | 8466 | } |
8f177c8e | 8467 | |
ca65c044 | 8468 | return false; |
2d66e025 MB |
8469 | } |
8470 | ||
2d66e025 MB |
8471 | bool wxGrid::MovePageUp() |
8472 | { | |
4db6714b KH |
8473 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
8474 | return false; | |
60ff3b99 | 8475 | |
2d66e025 MB |
8476 | int row = m_currentCellCoords.GetRow(); |
8477 | if ( row > 0 ) | |
f85afd4e | 8478 | { |
2d66e025 MB |
8479 | int cw, ch; |
8480 | m_gridWin->GetClientSize( &cw, &ch ); | |
60ff3b99 | 8481 | |
7c1cb261 | 8482 | int y = GetRowTop(row); |
a967f048 | 8483 | int newRow = internalYToRow( y - ch + 1 ); |
ef5df12b | 8484 | |
a967f048 | 8485 | if ( newRow == row ) |
2d66e025 | 8486 | { |
ca65c044 | 8487 | //row > 0 , so newrow can never be less than 0 here. |
2d66e025 MB |
8488 | newRow = row - 1; |
8489 | } | |
8f177c8e | 8490 | |
2d66e025 MB |
8491 | MakeCellVisible( newRow, m_currentCellCoords.GetCol() ); |
8492 | SetCurrentCell( newRow, m_currentCellCoords.GetCol() ); | |
60ff3b99 | 8493 | |
ca65c044 | 8494 | return true; |
f85afd4e | 8495 | } |
2d66e025 | 8496 | |
ca65c044 | 8497 | return false; |
2d66e025 MB |
8498 | } |
8499 | ||
8500 | bool wxGrid::MovePageDown() | |
8501 | { | |
4db6714b KH |
8502 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
8503 | return false; | |
60ff3b99 | 8504 | |
2d66e025 | 8505 | int row = m_currentCellCoords.GetRow(); |
ccdee36f | 8506 | if ( (row + 1) < m_numRows ) |
f85afd4e | 8507 | { |
2d66e025 MB |
8508 | int cw, ch; |
8509 | m_gridWin->GetClientSize( &cw, &ch ); | |
60ff3b99 | 8510 | |
7c1cb261 | 8511 | int y = GetRowTop(row); |
a967f048 RG |
8512 | int newRow = internalYToRow( y + ch ); |
8513 | if ( newRow == row ) | |
2d66e025 | 8514 | { |
ef5df12b | 8515 | // row < m_numRows , so newrow can't overflow here. |
ca65c044 | 8516 | newRow = row + 1; |
2d66e025 MB |
8517 | } |
8518 | ||
8519 | MakeCellVisible( newRow, m_currentCellCoords.GetCol() ); | |
8520 | SetCurrentCell( newRow, m_currentCellCoords.GetCol() ); | |
60ff3b99 | 8521 | |
ca65c044 | 8522 | return true; |
f85afd4e | 8523 | } |
2d66e025 | 8524 | |
ca65c044 | 8525 | return false; |
f85afd4e | 8526 | } |
8f177c8e | 8527 | |
5c8fc7c1 | 8528 | bool wxGrid::MoveCursorUpBlock( bool expandSelection ) |
2d66e025 MB |
8529 | { |
8530 | if ( m_table && | |
2f024384 | 8531 | m_currentCellCoords != wxGridNoCellCoords && |
2d66e025 MB |
8532 | m_currentCellCoords.GetRow() > 0 ) |
8533 | { | |
8534 | int row = m_currentCellCoords.GetRow(); | |
8535 | int col = m_currentCellCoords.GetCol(); | |
8536 | ||
8537 | if ( m_table->IsEmptyCell(row, col) ) | |
8538 | { | |
8539 | // starting in an empty cell: find the next block of | |
8540 | // non-empty cells | |
8541 | // | |
8542 | while ( row > 0 ) | |
8543 | { | |
2f024384 | 8544 | row--; |
4db6714b KH |
8545 | if ( !(m_table->IsEmptyCell(row, col)) ) |
8546 | break; | |
2d66e025 MB |
8547 | } |
8548 | } | |
2f024384 | 8549 | else if ( m_table->IsEmptyCell(row - 1, col) ) |
2d66e025 MB |
8550 | { |
8551 | // starting at the top of a block: find the next block | |
8552 | // | |
8553 | row--; | |
8554 | while ( row > 0 ) | |
8555 | { | |
2f024384 | 8556 | row--; |
4db6714b KH |
8557 | if ( !(m_table->IsEmptyCell(row, col)) ) |
8558 | break; | |
2d66e025 MB |
8559 | } |
8560 | } | |
8561 | else | |
8562 | { | |
8563 | // starting within a block: find the top of the block | |
8564 | // | |
8565 | while ( row > 0 ) | |
8566 | { | |
2f024384 | 8567 | row--; |
2d66e025 MB |
8568 | if ( m_table->IsEmptyCell(row, col) ) |
8569 | { | |
2f024384 | 8570 | row++; |
2d66e025 MB |
8571 | break; |
8572 | } | |
8573 | } | |
8574 | } | |
f85afd4e | 8575 | |
2d66e025 | 8576 | MakeCellVisible( row, col ); |
5c8fc7c1 | 8577 | if ( expandSelection ) |
d95b0c2b SN |
8578 | { |
8579 | m_selectingKeyboard = wxGridCellCoords( row, col ); | |
c9097836 | 8580 | HighlightBlock( m_currentCellCoords, m_selectingKeyboard ); |
d95b0c2b SN |
8581 | } |
8582 | else | |
aa5e1f75 SN |
8583 | { |
8584 | ClearSelection(); | |
8585 | SetCurrentCell( row, col ); | |
8586 | } | |
4db6714b | 8587 | |
ca65c044 | 8588 | return true; |
2d66e025 | 8589 | } |
f85afd4e | 8590 | |
ca65c044 | 8591 | return false; |
2d66e025 | 8592 | } |
f85afd4e | 8593 | |
5c8fc7c1 | 8594 | bool wxGrid::MoveCursorDownBlock( bool expandSelection ) |
f85afd4e | 8595 | { |
2d66e025 | 8596 | if ( m_table && |
2f024384 DS |
8597 | m_currentCellCoords != wxGridNoCellCoords && |
8598 | m_currentCellCoords.GetRow() < m_numRows - 1 ) | |
f85afd4e | 8599 | { |
2d66e025 MB |
8600 | int row = m_currentCellCoords.GetRow(); |
8601 | int col = m_currentCellCoords.GetCol(); | |
8602 | ||
8603 | if ( m_table->IsEmptyCell(row, col) ) | |
8604 | { | |
8605 | // starting in an empty cell: find the next block of | |
8606 | // non-empty cells | |
8607 | // | |
2f024384 | 8608 | while ( row < m_numRows - 1 ) |
2d66e025 | 8609 | { |
2f024384 | 8610 | row++; |
4db6714b KH |
8611 | if ( !(m_table->IsEmptyCell(row, col)) ) |
8612 | break; | |
2d66e025 MB |
8613 | } |
8614 | } | |
2f024384 | 8615 | else if ( m_table->IsEmptyCell(row + 1, col) ) |
2d66e025 MB |
8616 | { |
8617 | // starting at the bottom of a block: find the next block | |
8618 | // | |
8619 | row++; | |
2f024384 | 8620 | while ( row < m_numRows - 1 ) |
2d66e025 | 8621 | { |
2f024384 | 8622 | row++; |
4db6714b KH |
8623 | if ( !(m_table->IsEmptyCell(row, col)) ) |
8624 | break; | |
2d66e025 MB |
8625 | } |
8626 | } | |
8627 | else | |
8628 | { | |
8629 | // starting within a block: find the bottom of the block | |
8630 | // | |
2f024384 | 8631 | while ( row < m_numRows - 1 ) |
2d66e025 | 8632 | { |
2f024384 | 8633 | row++; |
2d66e025 MB |
8634 | if ( m_table->IsEmptyCell(row, col) ) |
8635 | { | |
2f024384 | 8636 | row--; |
2d66e025 MB |
8637 | break; |
8638 | } | |
8639 | } | |
8640 | } | |
8641 | ||
8642 | MakeCellVisible( row, col ); | |
5c8fc7c1 | 8643 | if ( expandSelection ) |
d95b0c2b SN |
8644 | { |
8645 | m_selectingKeyboard = wxGridCellCoords( row, col ); | |
c9097836 | 8646 | HighlightBlock( m_currentCellCoords, m_selectingKeyboard ); |
d95b0c2b SN |
8647 | } |
8648 | else | |
aa5e1f75 SN |
8649 | { |
8650 | ClearSelection(); | |
8651 | SetCurrentCell( row, col ); | |
8652 | } | |
2d66e025 | 8653 | |
ca65c044 | 8654 | return true; |
f85afd4e | 8655 | } |
f85afd4e | 8656 | |
ca65c044 | 8657 | return false; |
2d66e025 | 8658 | } |
f85afd4e | 8659 | |
5c8fc7c1 | 8660 | bool wxGrid::MoveCursorLeftBlock( bool expandSelection ) |
f85afd4e | 8661 | { |
2d66e025 | 8662 | if ( m_table && |
2f024384 | 8663 | m_currentCellCoords != wxGridNoCellCoords && |
2d66e025 | 8664 | m_currentCellCoords.GetCol() > 0 ) |
f85afd4e | 8665 | { |
2d66e025 MB |
8666 | int row = m_currentCellCoords.GetRow(); |
8667 | int col = m_currentCellCoords.GetCol(); | |
8668 | ||
8669 | if ( m_table->IsEmptyCell(row, col) ) | |
8670 | { | |
8671 | // starting in an empty cell: find the next block of | |
8672 | // non-empty cells | |
8673 | // | |
8674 | while ( col > 0 ) | |
8675 | { | |
2f024384 | 8676 | col--; |
4db6714b KH |
8677 | if ( !(m_table->IsEmptyCell(row, col)) ) |
8678 | break; | |
2d66e025 MB |
8679 | } |
8680 | } | |
2f024384 | 8681 | else if ( m_table->IsEmptyCell(row, col - 1) ) |
2d66e025 MB |
8682 | { |
8683 | // starting at the left of a block: find the next block | |
8684 | // | |
8685 | col--; | |
8686 | while ( col > 0 ) | |
8687 | { | |
2f024384 | 8688 | col--; |
4db6714b KH |
8689 | if ( !(m_table->IsEmptyCell(row, col)) ) |
8690 | break; | |
2d66e025 MB |
8691 | } |
8692 | } | |
8693 | else | |
8694 | { | |
8695 | // starting within a block: find the left of the block | |
8696 | // | |
8697 | while ( col > 0 ) | |
8698 | { | |
2f024384 | 8699 | col--; |
2d66e025 MB |
8700 | if ( m_table->IsEmptyCell(row, col) ) |
8701 | { | |
2f024384 | 8702 | col++; |
2d66e025 MB |
8703 | break; |
8704 | } | |
8705 | } | |
8706 | } | |
f85afd4e | 8707 | |
2d66e025 | 8708 | MakeCellVisible( row, col ); |
5c8fc7c1 | 8709 | if ( expandSelection ) |
d95b0c2b SN |
8710 | { |
8711 | m_selectingKeyboard = wxGridCellCoords( row, col ); | |
c9097836 | 8712 | HighlightBlock( m_currentCellCoords, m_selectingKeyboard ); |
d95b0c2b SN |
8713 | } |
8714 | else | |
aa5e1f75 SN |
8715 | { |
8716 | ClearSelection(); | |
8717 | SetCurrentCell( row, col ); | |
8718 | } | |
8f177c8e | 8719 | |
ca65c044 | 8720 | return true; |
f85afd4e | 8721 | } |
2d66e025 | 8722 | |
ca65c044 | 8723 | return false; |
f85afd4e MB |
8724 | } |
8725 | ||
5c8fc7c1 | 8726 | bool wxGrid::MoveCursorRightBlock( bool expandSelection ) |
f85afd4e | 8727 | { |
2d66e025 | 8728 | if ( m_table && |
2f024384 DS |
8729 | m_currentCellCoords != wxGridNoCellCoords && |
8730 | m_currentCellCoords.GetCol() < m_numCols - 1 ) | |
f85afd4e | 8731 | { |
2d66e025 MB |
8732 | int row = m_currentCellCoords.GetRow(); |
8733 | int col = m_currentCellCoords.GetCol(); | |
8f177c8e | 8734 | |
2d66e025 MB |
8735 | if ( m_table->IsEmptyCell(row, col) ) |
8736 | { | |
8737 | // starting in an empty cell: find the next block of | |
8738 | // non-empty cells | |
8739 | // | |
2f024384 | 8740 | while ( col < m_numCols - 1 ) |
2d66e025 | 8741 | { |
2f024384 | 8742 | col++; |
4db6714b KH |
8743 | if ( !(m_table->IsEmptyCell(row, col)) ) |
8744 | break; | |
2d66e025 MB |
8745 | } |
8746 | } | |
2f024384 | 8747 | else if ( m_table->IsEmptyCell(row, col + 1) ) |
2d66e025 MB |
8748 | { |
8749 | // starting at the right of a block: find the next block | |
8750 | // | |
8751 | col++; | |
2f024384 | 8752 | while ( col < m_numCols - 1 ) |
2d66e025 | 8753 | { |
2f024384 | 8754 | col++; |
4db6714b KH |
8755 | if ( !(m_table->IsEmptyCell(row, col)) ) |
8756 | break; | |
2d66e025 MB |
8757 | } |
8758 | } | |
8759 | else | |
8760 | { | |
8761 | // starting within a block: find the right of the block | |
8762 | // | |
2f024384 | 8763 | while ( col < m_numCols - 1 ) |
2d66e025 | 8764 | { |
2f024384 | 8765 | col++; |
2d66e025 MB |
8766 | if ( m_table->IsEmptyCell(row, col) ) |
8767 | { | |
2f024384 | 8768 | col--; |
2d66e025 MB |
8769 | break; |
8770 | } | |
8771 | } | |
8772 | } | |
8f177c8e | 8773 | |
2d66e025 | 8774 | MakeCellVisible( row, col ); |
5c8fc7c1 | 8775 | if ( expandSelection ) |
d95b0c2b SN |
8776 | { |
8777 | m_selectingKeyboard = wxGridCellCoords( row, col ); | |
c9097836 | 8778 | HighlightBlock( m_currentCellCoords, m_selectingKeyboard ); |
d95b0c2b SN |
8779 | } |
8780 | else | |
aa5e1f75 SN |
8781 | { |
8782 | ClearSelection(); | |
8783 | SetCurrentCell( row, col ); | |
8784 | } | |
f85afd4e | 8785 | |
ca65c044 | 8786 | return true; |
f85afd4e | 8787 | } |
2d66e025 | 8788 | |
ca65c044 | 8789 | return false; |
f85afd4e MB |
8790 | } |
8791 | ||
f85afd4e | 8792 | // |
2d66e025 | 8793 | // ------ Label values and formatting |
f85afd4e MB |
8794 | // |
8795 | ||
8796 | void wxGrid::GetRowLabelAlignment( int *horiz, int *vert ) | |
8797 | { | |
2f024384 DS |
8798 | if ( horiz ) |
8799 | *horiz = m_rowLabelHorizAlign; | |
8800 | if ( vert ) | |
8801 | *vert = m_rowLabelVertAlign; | |
f85afd4e MB |
8802 | } |
8803 | ||
8804 | void wxGrid::GetColLabelAlignment( int *horiz, int *vert ) | |
8805 | { | |
2f024384 DS |
8806 | if ( horiz ) |
8807 | *horiz = m_colLabelHorizAlign; | |
8808 | if ( vert ) | |
8809 | *vert = m_colLabelVertAlign; | |
f85afd4e MB |
8810 | } |
8811 | ||
d43851f7 JS |
8812 | int wxGrid::GetColLabelTextOrientation() |
8813 | { | |
8814 | return m_colLabelTextOrientation; | |
8815 | } | |
8816 | ||
f85afd4e MB |
8817 | wxString wxGrid::GetRowLabelValue( int row ) |
8818 | { | |
8819 | if ( m_table ) | |
8820 | { | |
8821 | return m_table->GetRowLabelValue( row ); | |
8822 | } | |
8823 | else | |
8824 | { | |
8825 | wxString s; | |
8826 | s << row; | |
8827 | return s; | |
8828 | } | |
8829 | } | |
8830 | ||
8831 | wxString wxGrid::GetColLabelValue( int col ) | |
8832 | { | |
8833 | if ( m_table ) | |
8834 | { | |
8835 | return m_table->GetColLabelValue( col ); | |
8836 | } | |
8837 | else | |
8838 | { | |
8839 | wxString s; | |
8840 | s << col; | |
8841 | return s; | |
8842 | } | |
8843 | } | |
8844 | ||
8845 | void wxGrid::SetRowLabelSize( int width ) | |
8846 | { | |
2e8cd977 MB |
8847 | width = wxMax( width, 0 ); |
8848 | if ( width != m_rowLabelWidth ) | |
8849 | { | |
2e8cd977 MB |
8850 | if ( width == 0 ) |
8851 | { | |
ca65c044 WS |
8852 | m_rowLabelWin->Show( false ); |
8853 | m_cornerLabelWin->Show( false ); | |
2e8cd977 | 8854 | } |
7807d81c | 8855 | else if ( m_rowLabelWidth == 0 ) |
2e8cd977 | 8856 | { |
ca65c044 | 8857 | m_rowLabelWin->Show( true ); |
2f024384 DS |
8858 | if ( m_colLabelHeight > 0 ) |
8859 | m_cornerLabelWin->Show( true ); | |
2e8cd977 | 8860 | } |
b99be8fb | 8861 | |
2e8cd977 | 8862 | m_rowLabelWidth = width; |
7807d81c | 8863 | CalcWindowSizes(); |
ca65c044 | 8864 | wxScrolledWindow::Refresh( true ); |
2e8cd977 | 8865 | } |
f85afd4e MB |
8866 | } |
8867 | ||
8868 | void wxGrid::SetColLabelSize( int height ) | |
8869 | { | |
7807d81c | 8870 | height = wxMax( height, 0 ); |
2e8cd977 MB |
8871 | if ( height != m_colLabelHeight ) |
8872 | { | |
2e8cd977 MB |
8873 | if ( height == 0 ) |
8874 | { | |
ca65c044 WS |
8875 | m_colLabelWin->Show( false ); |
8876 | m_cornerLabelWin->Show( false ); | |
2e8cd977 | 8877 | } |
7807d81c | 8878 | else if ( m_colLabelHeight == 0 ) |
2e8cd977 | 8879 | { |
ca65c044 | 8880 | m_colLabelWin->Show( true ); |
a9339fe2 DS |
8881 | if ( m_rowLabelWidth > 0 ) |
8882 | m_cornerLabelWin->Show( true ); | |
2e8cd977 | 8883 | } |
7807d81c | 8884 | |
2e8cd977 | 8885 | m_colLabelHeight = height; |
7807d81c | 8886 | CalcWindowSizes(); |
ca65c044 | 8887 | wxScrolledWindow::Refresh( true ); |
2e8cd977 | 8888 | } |
f85afd4e MB |
8889 | } |
8890 | ||
8891 | void wxGrid::SetLabelBackgroundColour( const wxColour& colour ) | |
8892 | { | |
2d66e025 MB |
8893 | if ( m_labelBackgroundColour != colour ) |
8894 | { | |
8895 | m_labelBackgroundColour = colour; | |
8896 | m_rowLabelWin->SetBackgroundColour( colour ); | |
8897 | m_colLabelWin->SetBackgroundColour( colour ); | |
8898 | m_cornerLabelWin->SetBackgroundColour( colour ); | |
8899 | ||
8900 | if ( !GetBatchCount() ) | |
8901 | { | |
8902 | m_rowLabelWin->Refresh(); | |
8903 | m_colLabelWin->Refresh(); | |
8904 | m_cornerLabelWin->Refresh(); | |
8905 | } | |
8906 | } | |
f85afd4e MB |
8907 | } |
8908 | ||
8909 | void wxGrid::SetLabelTextColour( const wxColour& colour ) | |
8910 | { | |
2d66e025 MB |
8911 | if ( m_labelTextColour != colour ) |
8912 | { | |
8913 | m_labelTextColour = colour; | |
8914 | if ( !GetBatchCount() ) | |
8915 | { | |
8916 | m_rowLabelWin->Refresh(); | |
8917 | m_colLabelWin->Refresh(); | |
8918 | } | |
8919 | } | |
f85afd4e MB |
8920 | } |
8921 | ||
8922 | void wxGrid::SetLabelFont( const wxFont& font ) | |
8923 | { | |
8924 | m_labelFont = font; | |
2d66e025 MB |
8925 | if ( !GetBatchCount() ) |
8926 | { | |
8927 | m_rowLabelWin->Refresh(); | |
8928 | m_colLabelWin->Refresh(); | |
8929 | } | |
f85afd4e MB |
8930 | } |
8931 | ||
8932 | void wxGrid::SetRowLabelAlignment( int horiz, int vert ) | |
8933 | { | |
4c7277db MB |
8934 | // allow old (incorrect) defs to be used |
8935 | switch ( horiz ) | |
8936 | { | |
8937 | case wxLEFT: horiz = wxALIGN_LEFT; break; | |
8938 | case wxRIGHT: horiz = wxALIGN_RIGHT; break; | |
8939 | case wxCENTRE: horiz = wxALIGN_CENTRE; break; | |
8940 | } | |
84912ef8 | 8941 | |
4c7277db MB |
8942 | switch ( vert ) |
8943 | { | |
8944 | case wxTOP: vert = wxALIGN_TOP; break; | |
8945 | case wxBOTTOM: vert = wxALIGN_BOTTOM; break; | |
8946 | case wxCENTRE: vert = wxALIGN_CENTRE; break; | |
8947 | } | |
84912ef8 | 8948 | |
4c7277db | 8949 | if ( horiz == wxALIGN_LEFT || horiz == wxALIGN_CENTRE || horiz == wxALIGN_RIGHT ) |
f85afd4e MB |
8950 | { |
8951 | m_rowLabelHorizAlign = horiz; | |
8952 | } | |
8f177c8e | 8953 | |
4c7277db | 8954 | if ( vert == wxALIGN_TOP || vert == wxALIGN_CENTRE || vert == wxALIGN_BOTTOM ) |
f85afd4e MB |
8955 | { |
8956 | m_rowLabelVertAlign = vert; | |
8957 | } | |
8958 | ||
2d66e025 MB |
8959 | if ( !GetBatchCount() ) |
8960 | { | |
8961 | m_rowLabelWin->Refresh(); | |
60ff3b99 | 8962 | } |
f85afd4e MB |
8963 | } |
8964 | ||
8965 | void wxGrid::SetColLabelAlignment( int horiz, int vert ) | |
8966 | { | |
4c7277db MB |
8967 | // allow old (incorrect) defs to be used |
8968 | switch ( horiz ) | |
8969 | { | |
8970 | case wxLEFT: horiz = wxALIGN_LEFT; break; | |
8971 | case wxRIGHT: horiz = wxALIGN_RIGHT; break; | |
8972 | case wxCENTRE: horiz = wxALIGN_CENTRE; break; | |
8973 | } | |
84912ef8 | 8974 | |
4c7277db MB |
8975 | switch ( vert ) |
8976 | { | |
8977 | case wxTOP: vert = wxALIGN_TOP; break; | |
8978 | case wxBOTTOM: vert = wxALIGN_BOTTOM; break; | |
8979 | case wxCENTRE: vert = wxALIGN_CENTRE; break; | |
8980 | } | |
84912ef8 | 8981 | |
4c7277db | 8982 | if ( horiz == wxALIGN_LEFT || horiz == wxALIGN_CENTRE || horiz == wxALIGN_RIGHT ) |
f85afd4e MB |
8983 | { |
8984 | m_colLabelHorizAlign = horiz; | |
8985 | } | |
8f177c8e | 8986 | |
4c7277db | 8987 | if ( vert == wxALIGN_TOP || vert == wxALIGN_CENTRE || vert == wxALIGN_BOTTOM ) |
f85afd4e MB |
8988 | { |
8989 | m_colLabelVertAlign = vert; | |
8990 | } | |
8991 | ||
2d66e025 MB |
8992 | if ( !GetBatchCount() ) |
8993 | { | |
2d66e025 | 8994 | m_colLabelWin->Refresh(); |
60ff3b99 | 8995 | } |
f85afd4e MB |
8996 | } |
8997 | ||
ca65c044 WS |
8998 | // Note: under MSW, the default column label font must be changed because it |
8999 | // does not support vertical printing | |
d43851f7 JS |
9000 | // |
9001 | // Example: wxFont font(9, wxSWISS, wxNORMAL, wxBOLD); | |
ca65c044 WS |
9002 | // pGrid->SetLabelFont(font); |
9003 | // pGrid->SetColLabelTextOrientation(wxVERTICAL); | |
d43851f7 JS |
9004 | // |
9005 | void wxGrid::SetColLabelTextOrientation( int textOrientation ) | |
9006 | { | |
4db6714b | 9007 | if ( textOrientation == wxHORIZONTAL || textOrientation == wxVERTICAL ) |
d43851f7 | 9008 | m_colLabelTextOrientation = textOrientation; |
d43851f7 JS |
9009 | |
9010 | if ( !GetBatchCount() ) | |
d43851f7 | 9011 | m_colLabelWin->Refresh(); |
d43851f7 JS |
9012 | } |
9013 | ||
f85afd4e MB |
9014 | void wxGrid::SetRowLabelValue( int row, const wxString& s ) |
9015 | { | |
9016 | if ( m_table ) | |
9017 | { | |
9018 | m_table->SetRowLabelValue( row, s ); | |
2d66e025 MB |
9019 | if ( !GetBatchCount() ) |
9020 | { | |
ccdee36f | 9021 | wxRect rect = CellToRect( row, 0 ); |
70c7a608 SN |
9022 | if ( rect.height > 0 ) |
9023 | { | |
cb309039 | 9024 | CalcScrolledPosition(0, rect.y, &rect.x, &rect.y); |
b1944ebc | 9025 | rect.x = 0; |
70c7a608 | 9026 | rect.width = m_rowLabelWidth; |
ca65c044 | 9027 | m_rowLabelWin->Refresh( true, &rect ); |
70c7a608 | 9028 | } |
2d66e025 | 9029 | } |
f85afd4e MB |
9030 | } |
9031 | } | |
9032 | ||
9033 | void wxGrid::SetColLabelValue( int col, const wxString& s ) | |
9034 | { | |
9035 | if ( m_table ) | |
9036 | { | |
9037 | m_table->SetColLabelValue( col, s ); | |
2d66e025 MB |
9038 | if ( !GetBatchCount() ) |
9039 | { | |
70c7a608 SN |
9040 | wxRect rect = CellToRect( 0, col ); |
9041 | if ( rect.width > 0 ) | |
9042 | { | |
cb309039 | 9043 | CalcScrolledPosition(rect.x, 0, &rect.x, &rect.y); |
b1944ebc | 9044 | rect.y = 0; |
70c7a608 | 9045 | rect.height = m_colLabelHeight; |
ca65c044 | 9046 | m_colLabelWin->Refresh( true, &rect ); |
70c7a608 | 9047 | } |
2d66e025 | 9048 | } |
f85afd4e MB |
9049 | } |
9050 | } | |
9051 | ||
9052 | void wxGrid::SetGridLineColour( const wxColour& colour ) | |
9053 | { | |
2d66e025 MB |
9054 | if ( m_gridLineColour != colour ) |
9055 | { | |
9056 | m_gridLineColour = colour; | |
60ff3b99 | 9057 | |
2d66e025 MB |
9058 | wxClientDC dc( m_gridWin ); |
9059 | PrepareDC( dc ); | |
c6a51dcd | 9060 | DrawAllGridLines( dc, wxRegion() ); |
2d66e025 | 9061 | } |
f85afd4e MB |
9062 | } |
9063 | ||
f6bcfd97 BP |
9064 | void wxGrid::SetCellHighlightColour( const wxColour& colour ) |
9065 | { | |
9066 | if ( m_cellHighlightColour != colour ) | |
9067 | { | |
9068 | m_cellHighlightColour = colour; | |
9069 | ||
9070 | wxClientDC dc( m_gridWin ); | |
9071 | PrepareDC( dc ); | |
9072 | wxGridCellAttr* attr = GetCellAttr(m_currentCellCoords); | |
9073 | DrawCellHighlight(dc, attr); | |
9074 | attr->DecRef(); | |
9075 | } | |
9076 | } | |
9077 | ||
d2520c85 RD |
9078 | void wxGrid::SetCellHighlightPenWidth(int width) |
9079 | { | |
4db6714b KH |
9080 | if (m_cellHighlightPenWidth != width) |
9081 | { | |
d2520c85 RD |
9082 | m_cellHighlightPenWidth = width; |
9083 | ||
9084 | // Just redrawing the cell highlight is not enough since that won't | |
9085 | // make any visible change if the the thickness is getting smaller. | |
9086 | int row = m_currentCellCoords.GetRow(); | |
9087 | int col = m_currentCellCoords.GetCol(); | |
9088 | if ( GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) | |
9089 | return; | |
2f024384 | 9090 | |
d2520c85 | 9091 | wxRect rect = CellToRect(row, col); |
ca65c044 | 9092 | m_gridWin->Refresh(true, &rect); |
d2520c85 RD |
9093 | } |
9094 | } | |
9095 | ||
9096 | void wxGrid::SetCellHighlightROPenWidth(int width) | |
9097 | { | |
4db6714b KH |
9098 | if (m_cellHighlightROPenWidth != width) |
9099 | { | |
d2520c85 RD |
9100 | m_cellHighlightROPenWidth = width; |
9101 | ||
9102 | // Just redrawing the cell highlight is not enough since that won't | |
9103 | // make any visible change if the the thickness is getting smaller. | |
9104 | int row = m_currentCellCoords.GetRow(); | |
9105 | int col = m_currentCellCoords.GetCol(); | |
9106 | if ( GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) | |
9107 | return; | |
ccdee36f | 9108 | |
d2520c85 | 9109 | wxRect rect = CellToRect(row, col); |
ca65c044 | 9110 | m_gridWin->Refresh(true, &rect); |
d2520c85 RD |
9111 | } |
9112 | } | |
9113 | ||
f85afd4e MB |
9114 | void wxGrid::EnableGridLines( bool enable ) |
9115 | { | |
9116 | if ( enable != m_gridLinesEnabled ) | |
9117 | { | |
9118 | m_gridLinesEnabled = enable; | |
2d66e025 MB |
9119 | |
9120 | if ( !GetBatchCount() ) | |
9121 | { | |
9122 | if ( enable ) | |
9123 | { | |
9124 | wxClientDC dc( m_gridWin ); | |
9125 | PrepareDC( dc ); | |
c6a51dcd | 9126 | DrawAllGridLines( dc, wxRegion() ); |
2d66e025 MB |
9127 | } |
9128 | else | |
9129 | { | |
9130 | m_gridWin->Refresh(); | |
9131 | } | |
9132 | } | |
f85afd4e MB |
9133 | } |
9134 | } | |
9135 | ||
f85afd4e MB |
9136 | int wxGrid::GetDefaultRowSize() |
9137 | { | |
9138 | return m_defaultRowHeight; | |
9139 | } | |
9140 | ||
9141 | int wxGrid::GetRowSize( int row ) | |
9142 | { | |
b99be8fb VZ |
9143 | wxCHECK_MSG( row >= 0 && row < m_numRows, 0, _T("invalid row index") ); |
9144 | ||
7c1cb261 | 9145 | return GetRowHeight(row); |
f85afd4e MB |
9146 | } |
9147 | ||
9148 | int wxGrid::GetDefaultColSize() | |
9149 | { | |
9150 | return m_defaultColWidth; | |
9151 | } | |
9152 | ||
9153 | int wxGrid::GetColSize( int col ) | |
9154 | { | |
b99be8fb VZ |
9155 | wxCHECK_MSG( col >= 0 && col < m_numCols, 0, _T("invalid column index") ); |
9156 | ||
7c1cb261 | 9157 | return GetColWidth(col); |
f85afd4e MB |
9158 | } |
9159 | ||
2e9a6788 VZ |
9160 | // ============================================================================ |
9161 | // access to the grid attributes: each of them has a default value in the grid | |
9162 | // itself and may be overidden on a per-cell basis | |
9163 | // ============================================================================ | |
9164 | ||
9165 | // ---------------------------------------------------------------------------- | |
9166 | // setting default attributes | |
9167 | // ---------------------------------------------------------------------------- | |
9168 | ||
9169 | void wxGrid::SetDefaultCellBackgroundColour( const wxColour& col ) | |
9170 | { | |
2796cce3 | 9171 | m_defaultCellAttr->SetBackgroundColour(col); |
c916e13b RR |
9172 | #ifdef __WXGTK__ |
9173 | m_gridWin->SetBackgroundColour(col); | |
9174 | #endif | |
2e9a6788 VZ |
9175 | } |
9176 | ||
9177 | void wxGrid::SetDefaultCellTextColour( const wxColour& col ) | |
9178 | { | |
2796cce3 | 9179 | m_defaultCellAttr->SetTextColour(col); |
2e9a6788 VZ |
9180 | } |
9181 | ||
9182 | void wxGrid::SetDefaultCellAlignment( int horiz, int vert ) | |
9183 | { | |
2796cce3 | 9184 | m_defaultCellAttr->SetAlignment(horiz, vert); |
2e9a6788 VZ |
9185 | } |
9186 | ||
27f35b66 SN |
9187 | void wxGrid::SetDefaultCellOverflow( bool allow ) |
9188 | { | |
9189 | m_defaultCellAttr->SetOverflow(allow); | |
9190 | } | |
9191 | ||
2e9a6788 VZ |
9192 | void wxGrid::SetDefaultCellFont( const wxFont& font ) |
9193 | { | |
2796cce3 RD |
9194 | m_defaultCellAttr->SetFont(font); |
9195 | } | |
9196 | ||
ca63e8e9 RD |
9197 | // For editors and renderers the type registry takes precedence over the |
9198 | // default attr, so we need to register the new editor/renderer for the string | |
9199 | // data type in order to make setting a default editor/renderer appear to | |
9200 | // work correctly. | |
9201 | ||
0ba143c9 RD |
9202 | void wxGrid::SetDefaultRenderer(wxGridCellRenderer *renderer) |
9203 | { | |
ca63e8e9 RD |
9204 | RegisterDataType(wxGRID_VALUE_STRING, |
9205 | renderer, | |
9206 | GetDefaultEditorForType(wxGRID_VALUE_STRING)); | |
0ba143c9 | 9207 | } |
2e9a6788 | 9208 | |
0ba143c9 RD |
9209 | void wxGrid::SetDefaultEditor(wxGridCellEditor *editor) |
9210 | { | |
ca63e8e9 RD |
9211 | RegisterDataType(wxGRID_VALUE_STRING, |
9212 | GetDefaultRendererForType(wxGRID_VALUE_STRING), | |
42841dfc | 9213 | editor); |
0ba143c9 | 9214 | } |
9b4aede2 | 9215 | |
2e9a6788 VZ |
9216 | // ---------------------------------------------------------------------------- |
9217 | // access to the default attrbiutes | |
9218 | // ---------------------------------------------------------------------------- | |
9219 | ||
f85afd4e MB |
9220 | wxColour wxGrid::GetDefaultCellBackgroundColour() |
9221 | { | |
2796cce3 | 9222 | return m_defaultCellAttr->GetBackgroundColour(); |
f85afd4e MB |
9223 | } |
9224 | ||
2e9a6788 VZ |
9225 | wxColour wxGrid::GetDefaultCellTextColour() |
9226 | { | |
2796cce3 | 9227 | return m_defaultCellAttr->GetTextColour(); |
2e9a6788 VZ |
9228 | } |
9229 | ||
9230 | wxFont wxGrid::GetDefaultCellFont() | |
9231 | { | |
2796cce3 | 9232 | return m_defaultCellAttr->GetFont(); |
2e9a6788 VZ |
9233 | } |
9234 | ||
9235 | void wxGrid::GetDefaultCellAlignment( int *horiz, int *vert ) | |
9236 | { | |
2796cce3 | 9237 | m_defaultCellAttr->GetAlignment(horiz, vert); |
2e9a6788 VZ |
9238 | } |
9239 | ||
27f35b66 SN |
9240 | bool wxGrid::GetDefaultCellOverflow() |
9241 | { | |
9242 | return m_defaultCellAttr->GetOverflow(); | |
9243 | } | |
9244 | ||
0ba143c9 RD |
9245 | wxGridCellRenderer *wxGrid::GetDefaultRenderer() const |
9246 | { | |
0b190b0f | 9247 | return m_defaultCellAttr->GetRenderer(NULL, 0, 0); |
0ba143c9 | 9248 | } |
ab79958a | 9249 | |
0ba143c9 RD |
9250 | wxGridCellEditor *wxGrid::GetDefaultEditor() const |
9251 | { | |
4db6714b | 9252 | return m_defaultCellAttr->GetEditor(NULL, 0, 0); |
0ba143c9 | 9253 | } |
9b4aede2 | 9254 | |
2e9a6788 VZ |
9255 | // ---------------------------------------------------------------------------- |
9256 | // access to cell attributes | |
9257 | // ---------------------------------------------------------------------------- | |
9258 | ||
b99be8fb | 9259 | wxColour wxGrid::GetCellBackgroundColour(int row, int col) |
f85afd4e | 9260 | { |
0a976765 | 9261 | wxGridCellAttr *attr = GetCellAttr(row, col); |
2796cce3 | 9262 | wxColour colour = attr->GetBackgroundColour(); |
39bcce60 | 9263 | attr->DecRef(); |
2f024384 | 9264 | |
b99be8fb | 9265 | return colour; |
f85afd4e MB |
9266 | } |
9267 | ||
b99be8fb | 9268 | wxColour wxGrid::GetCellTextColour( int row, int col ) |
f85afd4e | 9269 | { |
0a976765 | 9270 | wxGridCellAttr *attr = GetCellAttr(row, col); |
2796cce3 | 9271 | wxColour colour = attr->GetTextColour(); |
39bcce60 | 9272 | attr->DecRef(); |
2f024384 | 9273 | |
b99be8fb | 9274 | return colour; |
f85afd4e MB |
9275 | } |
9276 | ||
b99be8fb | 9277 | wxFont wxGrid::GetCellFont( int row, int col ) |
f85afd4e | 9278 | { |
0a976765 | 9279 | wxGridCellAttr *attr = GetCellAttr(row, col); |
2796cce3 | 9280 | wxFont font = attr->GetFont(); |
39bcce60 | 9281 | attr->DecRef(); |
2f024384 | 9282 | |
b99be8fb | 9283 | return font; |
f85afd4e MB |
9284 | } |
9285 | ||
b99be8fb | 9286 | void wxGrid::GetCellAlignment( int row, int col, int *horiz, int *vert ) |
f85afd4e | 9287 | { |
0a976765 | 9288 | wxGridCellAttr *attr = GetCellAttr(row, col); |
2796cce3 | 9289 | attr->GetAlignment(horiz, vert); |
39bcce60 | 9290 | attr->DecRef(); |
2e9a6788 VZ |
9291 | } |
9292 | ||
27f35b66 SN |
9293 | bool wxGrid::GetCellOverflow( int row, int col ) |
9294 | { | |
9295 | wxGridCellAttr *attr = GetCellAttr(row, col); | |
9296 | bool allow = attr->GetOverflow(); | |
9297 | attr->DecRef(); | |
4db6714b | 9298 | |
27f35b66 SN |
9299 | return allow; |
9300 | } | |
9301 | ||
9302 | void wxGrid::GetCellSize( int row, int col, int *num_rows, int *num_cols ) | |
9303 | { | |
9304 | wxGridCellAttr *attr = GetCellAttr(row, col); | |
9305 | attr->GetSize( num_rows, num_cols ); | |
9306 | attr->DecRef(); | |
9307 | } | |
9308 | ||
2796cce3 RD |
9309 | wxGridCellRenderer* wxGrid::GetCellRenderer(int row, int col) |
9310 | { | |
9311 | wxGridCellAttr* attr = GetCellAttr(row, col); | |
28a77bc4 | 9312 | wxGridCellRenderer* renderer = attr->GetRenderer(this, row, col); |
2796cce3 | 9313 | attr->DecRef(); |
0b190b0f | 9314 | |
2796cce3 RD |
9315 | return renderer; |
9316 | } | |
9317 | ||
9b4aede2 RD |
9318 | wxGridCellEditor* wxGrid::GetCellEditor(int row, int col) |
9319 | { | |
9320 | wxGridCellAttr* attr = GetCellAttr(row, col); | |
28a77bc4 | 9321 | wxGridCellEditor* editor = attr->GetEditor(this, row, col); |
9b4aede2 | 9322 | attr->DecRef(); |
0b190b0f | 9323 | |
9b4aede2 RD |
9324 | return editor; |
9325 | } | |
9326 | ||
283b7808 VZ |
9327 | bool wxGrid::IsReadOnly(int row, int col) const |
9328 | { | |
9329 | wxGridCellAttr* attr = GetCellAttr(row, col); | |
9330 | bool isReadOnly = attr->IsReadOnly(); | |
9331 | attr->DecRef(); | |
4db6714b | 9332 | |
283b7808 VZ |
9333 | return isReadOnly; |
9334 | } | |
9335 | ||
2e9a6788 | 9336 | // ---------------------------------------------------------------------------- |
758cbedf | 9337 | // attribute support: cache, automatic provider creation, ... |
2e9a6788 VZ |
9338 | // ---------------------------------------------------------------------------- |
9339 | ||
9340 | bool wxGrid::CanHaveAttributes() | |
9341 | { | |
9342 | if ( !m_table ) | |
9343 | { | |
ca65c044 | 9344 | return false; |
2e9a6788 VZ |
9345 | } |
9346 | ||
f2d76237 | 9347 | return m_table->CanHaveAttributes(); |
2e9a6788 VZ |
9348 | } |
9349 | ||
0a976765 VZ |
9350 | void wxGrid::ClearAttrCache() |
9351 | { | |
9352 | if ( m_attrCache.row != -1 ) | |
9353 | { | |
39bcce60 | 9354 | wxSafeDecRef(m_attrCache.attr); |
19d7140e | 9355 | m_attrCache.attr = NULL; |
0a976765 VZ |
9356 | m_attrCache.row = -1; |
9357 | } | |
9358 | } | |
9359 | ||
9360 | void wxGrid::CacheAttr(int row, int col, wxGridCellAttr *attr) const | |
9361 | { | |
2b5f62a0 VZ |
9362 | if ( attr != NULL ) |
9363 | { | |
9364 | wxGrid *self = (wxGrid *)this; // const_cast | |
0a976765 | 9365 | |
2b5f62a0 VZ |
9366 | self->ClearAttrCache(); |
9367 | self->m_attrCache.row = row; | |
9368 | self->m_attrCache.col = col; | |
9369 | self->m_attrCache.attr = attr; | |
9370 | wxSafeIncRef(attr); | |
9371 | } | |
0a976765 VZ |
9372 | } |
9373 | ||
9374 | bool wxGrid::LookupAttr(int row, int col, wxGridCellAttr **attr) const | |
9375 | { | |
9376 | if ( row == m_attrCache.row && col == m_attrCache.col ) | |
9377 | { | |
9378 | *attr = m_attrCache.attr; | |
39bcce60 | 9379 | wxSafeIncRef(m_attrCache.attr); |
0a976765 VZ |
9380 | |
9381 | #ifdef DEBUG_ATTR_CACHE | |
9382 | gs_nAttrCacheHits++; | |
9383 | #endif | |
9384 | ||
ca65c044 | 9385 | return true; |
0a976765 VZ |
9386 | } |
9387 | else | |
9388 | { | |
9389 | #ifdef DEBUG_ATTR_CACHE | |
9390 | gs_nAttrCacheMisses++; | |
9391 | #endif | |
4db6714b | 9392 | |
ca65c044 | 9393 | return false; |
0a976765 VZ |
9394 | } |
9395 | } | |
9396 | ||
2e9a6788 VZ |
9397 | wxGridCellAttr *wxGrid::GetCellAttr(int row, int col) const |
9398 | { | |
a373d23b SN |
9399 | wxGridCellAttr *attr = NULL; |
9400 | // Additional test to avoid looking at the cache e.g. for | |
9401 | // wxNoCellCoords, as this will confuse memory management. | |
9402 | if ( row >= 0 ) | |
9403 | { | |
3ed884a0 SN |
9404 | if ( !LookupAttr(row, col, &attr) ) |
9405 | { | |
9406 | attr = m_table ? m_table->GetAttr(row, col , wxGridCellAttr::Any) | |
9407 | : (wxGridCellAttr *)NULL; | |
9408 | CacheAttr(row, col, attr); | |
9409 | } | |
0a976765 | 9410 | } |
4db6714b | 9411 | |
508011ce VZ |
9412 | if (attr) |
9413 | { | |
2796cce3 | 9414 | attr->SetDefAttr(m_defaultCellAttr); |
508011ce VZ |
9415 | } |
9416 | else | |
9417 | { | |
2796cce3 RD |
9418 | attr = m_defaultCellAttr; |
9419 | attr->IncRef(); | |
9420 | } | |
2e9a6788 | 9421 | |
0a976765 VZ |
9422 | return attr; |
9423 | } | |
9424 | ||
9425 | wxGridCellAttr *wxGrid::GetOrCreateCellAttr(int row, int col) const | |
9426 | { | |
19d7140e | 9427 | wxGridCellAttr *attr = (wxGridCellAttr *)NULL; |
71e60f70 | 9428 | bool canHave = ((wxGrid*)this)->CanHaveAttributes(); |
0a976765 | 9429 | |
71e60f70 RD |
9430 | wxCHECK_MSG( canHave, attr, _T("Cell attributes not allowed")); |
9431 | wxCHECK_MSG( m_table, attr, _T("must have a table") ); | |
1df4050d VZ |
9432 | |
9433 | attr = m_table->GetAttr(row, col, wxGridCellAttr::Cell); | |
9434 | if ( !attr ) | |
9435 | { | |
9436 | attr = new wxGridCellAttr(m_defaultCellAttr); | |
9437 | ||
9438 | // artificially inc the ref count to match DecRef() in caller | |
9439 | attr->IncRef(); | |
9440 | m_table->SetAttr(attr, row, col); | |
9441 | } | |
0a976765 | 9442 | |
2e9a6788 VZ |
9443 | return attr; |
9444 | } | |
9445 | ||
0b190b0f VZ |
9446 | // ---------------------------------------------------------------------------- |
9447 | // setting column attributes (wrappers around SetColAttr) | |
9448 | // ---------------------------------------------------------------------------- | |
9449 | ||
9450 | void wxGrid::SetColFormatBool(int col) | |
9451 | { | |
9452 | SetColFormatCustom(col, wxGRID_VALUE_BOOL); | |
9453 | } | |
9454 | ||
9455 | void wxGrid::SetColFormatNumber(int col) | |
9456 | { | |
9457 | SetColFormatCustom(col, wxGRID_VALUE_NUMBER); | |
9458 | } | |
9459 | ||
9460 | void wxGrid::SetColFormatFloat(int col, int width, int precision) | |
9461 | { | |
9462 | wxString typeName = wxGRID_VALUE_FLOAT; | |
9463 | if ( (width != -1) || (precision != -1) ) | |
9464 | { | |
9465 | typeName << _T(':') << width << _T(',') << precision; | |
9466 | } | |
9467 | ||
9468 | SetColFormatCustom(col, typeName); | |
9469 | } | |
9470 | ||
9471 | void wxGrid::SetColFormatCustom(int col, const wxString& typeName) | |
9472 | { | |
999836aa | 9473 | wxGridCellAttr *attr = m_table->GetAttr(-1, col, wxGridCellAttr::Col ); |
4db6714b | 9474 | if (!attr) |
19d7140e | 9475 | attr = new wxGridCellAttr; |
0b190b0f VZ |
9476 | wxGridCellRenderer *renderer = GetDefaultRendererForType(typeName); |
9477 | attr->SetRenderer(renderer); | |
9478 | ||
9479 | SetColAttr(col, attr); | |
19d7140e | 9480 | |
0b190b0f VZ |
9481 | } |
9482 | ||
758cbedf VZ |
9483 | // ---------------------------------------------------------------------------- |
9484 | // setting cell attributes: this is forwarded to the table | |
9485 | // ---------------------------------------------------------------------------- | |
9486 | ||
27f35b66 SN |
9487 | void wxGrid::SetAttr(int row, int col, wxGridCellAttr *attr) |
9488 | { | |
9489 | if ( CanHaveAttributes() ) | |
9490 | { | |
9491 | m_table->SetAttr(attr, row, col); | |
9492 | ClearAttrCache(); | |
9493 | } | |
9494 | else | |
9495 | { | |
9496 | wxSafeDecRef(attr); | |
9497 | } | |
9498 | } | |
9499 | ||
758cbedf VZ |
9500 | void wxGrid::SetRowAttr(int row, wxGridCellAttr *attr) |
9501 | { | |
9502 | if ( CanHaveAttributes() ) | |
9503 | { | |
9504 | m_table->SetRowAttr(attr, row); | |
19d7140e | 9505 | ClearAttrCache(); |
758cbedf VZ |
9506 | } |
9507 | else | |
9508 | { | |
39bcce60 | 9509 | wxSafeDecRef(attr); |
758cbedf VZ |
9510 | } |
9511 | } | |
9512 | ||
9513 | void wxGrid::SetColAttr(int col, wxGridCellAttr *attr) | |
9514 | { | |
9515 | if ( CanHaveAttributes() ) | |
9516 | { | |
9517 | m_table->SetColAttr(attr, col); | |
19d7140e | 9518 | ClearAttrCache(); |
758cbedf VZ |
9519 | } |
9520 | else | |
9521 | { | |
39bcce60 | 9522 | wxSafeDecRef(attr); |
758cbedf VZ |
9523 | } |
9524 | } | |
9525 | ||
2e9a6788 VZ |
9526 | void wxGrid::SetCellBackgroundColour( int row, int col, const wxColour& colour ) |
9527 | { | |
9528 | if ( CanHaveAttributes() ) | |
9529 | { | |
0a976765 | 9530 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
2e9a6788 VZ |
9531 | attr->SetBackgroundColour(colour); |
9532 | attr->DecRef(); | |
9533 | } | |
9534 | } | |
9535 | ||
9536 | void wxGrid::SetCellTextColour( int row, int col, const wxColour& colour ) | |
9537 | { | |
9538 | if ( CanHaveAttributes() ) | |
9539 | { | |
0a976765 | 9540 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
2e9a6788 VZ |
9541 | attr->SetTextColour(colour); |
9542 | attr->DecRef(); | |
9543 | } | |
9544 | } | |
9545 | ||
9546 | void wxGrid::SetCellFont( int row, int col, const wxFont& font ) | |
9547 | { | |
9548 | if ( CanHaveAttributes() ) | |
9549 | { | |
0a976765 | 9550 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
2e9a6788 VZ |
9551 | attr->SetFont(font); |
9552 | attr->DecRef(); | |
9553 | } | |
9554 | } | |
9555 | ||
9556 | void wxGrid::SetCellAlignment( int row, int col, int horiz, int vert ) | |
9557 | { | |
9558 | if ( CanHaveAttributes() ) | |
9559 | { | |
0a976765 | 9560 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
2e9a6788 VZ |
9561 | attr->SetAlignment(horiz, vert); |
9562 | attr->DecRef(); | |
ab79958a VZ |
9563 | } |
9564 | } | |
9565 | ||
27f35b66 SN |
9566 | void wxGrid::SetCellOverflow( int row, int col, bool allow ) |
9567 | { | |
9568 | if ( CanHaveAttributes() ) | |
9569 | { | |
9570 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); | |
9571 | attr->SetOverflow(allow); | |
9572 | attr->DecRef(); | |
9573 | } | |
9574 | } | |
9575 | ||
9576 | void wxGrid::SetCellSize( int row, int col, int num_rows, int num_cols ) | |
9577 | { | |
9578 | if ( CanHaveAttributes() ) | |
9579 | { | |
9580 | int cell_rows, cell_cols; | |
9581 | ||
9582 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); | |
9583 | attr->GetSize(&cell_rows, &cell_cols); | |
9584 | attr->SetSize(num_rows, num_cols); | |
9585 | attr->DecRef(); | |
9586 | ||
9587 | // Cannot set the size of a cell to 0 or negative values | |
9588 | // While it is perfectly legal to do that, this function cannot | |
9589 | // handle all the possibilies, do it by hand by getting the CellAttr. | |
9590 | // You can only set the size of a cell to 1,1 or greater with this fn | |
9591 | wxASSERT_MSG( !((cell_rows < 1) || (cell_cols < 1)), | |
9592 | wxT("wxGrid::SetCellSize setting cell size that is already part of another cell")); | |
9593 | wxASSERT_MSG( !((num_rows < 1) || (num_cols < 1)), | |
9594 | wxT("wxGrid::SetCellSize setting cell size to < 1")); | |
9595 | ||
9596 | // if this was already a multicell then "turn off" the other cells first | |
9597 | if ((cell_rows > 1) || (cell_rows > 1)) | |
9598 | { | |
9599 | int i, j; | |
2f024384 | 9600 | for (j=row; j < row + cell_rows; j++) |
27f35b66 | 9601 | { |
2f024384 | 9602 | for (i=col; i < col + cell_cols; i++) |
27f35b66 SN |
9603 | { |
9604 | if ((i != col) || (j != row)) | |
9605 | { | |
9606 | wxGridCellAttr *attr_stub = GetOrCreateCellAttr(j, i); | |
9607 | attr_stub->SetSize( 1, 1 ); | |
9608 | attr_stub->DecRef(); | |
9609 | } | |
9610 | } | |
9611 | } | |
9612 | } | |
9613 | ||
9614 | // mark the cells that will be covered by this cell to | |
9615 | // negative or zero values to point back at this cell | |
9616 | if (((num_rows > 1) || (num_cols > 1)) && (num_rows >= 1) && (num_cols >= 1)) | |
9617 | { | |
9618 | int i, j; | |
2f024384 | 9619 | for (j=row; j < row + num_rows; j++) |
27f35b66 | 9620 | { |
2f024384 | 9621 | for (i=col; i < col + num_cols; i++) |
27f35b66 SN |
9622 | { |
9623 | if ((i != col) || (j != row)) | |
9624 | { | |
9625 | wxGridCellAttr *attr_stub = GetOrCreateCellAttr(j, i); | |
2f024384 | 9626 | attr_stub->SetSize( row - j, col - i ); |
27f35b66 SN |
9627 | attr_stub->DecRef(); |
9628 | } | |
9629 | } | |
9630 | } | |
9631 | } | |
9632 | } | |
9633 | } | |
9634 | ||
ab79958a VZ |
9635 | void wxGrid::SetCellRenderer(int row, int col, wxGridCellRenderer *renderer) |
9636 | { | |
9637 | if ( CanHaveAttributes() ) | |
9638 | { | |
0a976765 | 9639 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
ab79958a VZ |
9640 | attr->SetRenderer(renderer); |
9641 | attr->DecRef(); | |
9b4aede2 RD |
9642 | } |
9643 | } | |
9644 | ||
9645 | void wxGrid::SetCellEditor(int row, int col, wxGridCellEditor* editor) | |
9646 | { | |
9647 | if ( CanHaveAttributes() ) | |
9648 | { | |
9649 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); | |
9650 | attr->SetEditor(editor); | |
9651 | attr->DecRef(); | |
283b7808 VZ |
9652 | } |
9653 | } | |
9654 | ||
9655 | void wxGrid::SetReadOnly(int row, int col, bool isReadOnly) | |
9656 | { | |
9657 | if ( CanHaveAttributes() ) | |
9658 | { | |
9659 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); | |
9660 | attr->SetReadOnly(isReadOnly); | |
9661 | attr->DecRef(); | |
2e9a6788 | 9662 | } |
f85afd4e MB |
9663 | } |
9664 | ||
f2d76237 RD |
9665 | // ---------------------------------------------------------------------------- |
9666 | // Data type registration | |
9667 | // ---------------------------------------------------------------------------- | |
9668 | ||
9669 | void wxGrid::RegisterDataType(const wxString& typeName, | |
9670 | wxGridCellRenderer* renderer, | |
9671 | wxGridCellEditor* editor) | |
9672 | { | |
9673 | m_typeRegistry->RegisterDataType(typeName, renderer, editor); | |
9674 | } | |
9675 | ||
9676 | ||
a9339fe2 | 9677 | wxGridCellEditor * wxGrid::GetDefaultEditorForCell(int row, int col) const |
f2d76237 RD |
9678 | { |
9679 | wxString typeName = m_table->GetTypeName(row, col); | |
9680 | return GetDefaultEditorForType(typeName); | |
9681 | } | |
9682 | ||
a9339fe2 | 9683 | wxGridCellRenderer * wxGrid::GetDefaultRendererForCell(int row, int col) const |
f2d76237 RD |
9684 | { |
9685 | wxString typeName = m_table->GetTypeName(row, col); | |
9686 | return GetDefaultRendererForType(typeName); | |
9687 | } | |
9688 | ||
a9339fe2 | 9689 | wxGridCellEditor * wxGrid::GetDefaultEditorForType(const wxString& typeName) const |
f2d76237 | 9690 | { |
c4608a8a | 9691 | int index = m_typeRegistry->FindOrCloneDataType(typeName); |
0b190b0f VZ |
9692 | if ( index == wxNOT_FOUND ) |
9693 | { | |
f87ab3cc | 9694 | wxString errStr; |
4db6714b KH |
9695 | |
9696 | errStr.Printf(wxT("Unknown data type name [%s]"), typeName.c_str()); | |
9697 | wxFAIL_MSG(errStr.c_str()); | |
0b190b0f | 9698 | |
f2d76237 RD |
9699 | return NULL; |
9700 | } | |
0b190b0f | 9701 | |
f2d76237 RD |
9702 | return m_typeRegistry->GetEditor(index); |
9703 | } | |
9704 | ||
a9339fe2 | 9705 | wxGridCellRenderer * wxGrid::GetDefaultRendererForType(const wxString& typeName) const |
f2d76237 | 9706 | { |
c4608a8a | 9707 | int index = m_typeRegistry->FindOrCloneDataType(typeName); |
0b190b0f VZ |
9708 | if ( index == wxNOT_FOUND ) |
9709 | { | |
2f024384 | 9710 | wxString errStr; |
4db6714b KH |
9711 | |
9712 | errStr.Printf(wxT("Unknown data type name [%s]"), typeName.c_str()); | |
9713 | wxFAIL_MSG(errStr.c_str()); | |
0b190b0f | 9714 | |
c4608a8a | 9715 | return NULL; |
e72b4213 | 9716 | } |
0b190b0f | 9717 | |
c4608a8a | 9718 | return m_typeRegistry->GetRenderer(index); |
f2d76237 RD |
9719 | } |
9720 | ||
2e9a6788 VZ |
9721 | // ---------------------------------------------------------------------------- |
9722 | // row/col size | |
9723 | // ---------------------------------------------------------------------------- | |
9724 | ||
6e8524b1 MB |
9725 | void wxGrid::EnableDragRowSize( bool enable ) |
9726 | { | |
9727 | m_canDragRowSize = enable; | |
9728 | } | |
9729 | ||
6e8524b1 MB |
9730 | void wxGrid::EnableDragColSize( bool enable ) |
9731 | { | |
9732 | m_canDragColSize = enable; | |
9733 | } | |
9734 | ||
4cfa5de6 RD |
9735 | void wxGrid::EnableDragGridSize( bool enable ) |
9736 | { | |
9737 | m_canDragGridSize = enable; | |
9738 | } | |
9739 | ||
79dbea21 RD |
9740 | void wxGrid::EnableDragCell( bool enable ) |
9741 | { | |
9742 | m_canDragCell = enable; | |
9743 | } | |
6e8524b1 | 9744 | |
f85afd4e MB |
9745 | void wxGrid::SetDefaultRowSize( int height, bool resizeExistingRows ) |
9746 | { | |
b8d24d4e | 9747 | m_defaultRowHeight = wxMax( height, m_minAcceptableRowHeight ); |
f85afd4e MB |
9748 | |
9749 | if ( resizeExistingRows ) | |
9750 | { | |
b1da8107 SN |
9751 | // since we are resizing all rows to the default row size, |
9752 | // we can simply clear the row heights and row bottoms | |
9753 | // arrays (which also allows us to take advantage of | |
9754 | // some speed optimisations) | |
9755 | m_rowHeights.Empty(); | |
9756 | m_rowBottoms.Empty(); | |
edb89f7e VZ |
9757 | if ( !GetBatchCount() ) |
9758 | CalcDimensions(); | |
f85afd4e MB |
9759 | } |
9760 | } | |
9761 | ||
9762 | void wxGrid::SetRowSize( int row, int height ) | |
9763 | { | |
b99be8fb | 9764 | wxCHECK_RET( row >= 0 && row < m_numRows, _T("invalid row index") ); |
60ff3b99 | 9765 | |
b4bfd0fa | 9766 | // See comment in SetColSize |
4db6714b KH |
9767 | if ( height < GetRowMinimalAcceptableHeight()) |
9768 | return; | |
b8d24d4e | 9769 | |
7c1cb261 VZ |
9770 | if ( m_rowHeights.IsEmpty() ) |
9771 | { | |
9772 | // need to really create the array | |
9773 | InitRowHeights(); | |
9774 | } | |
60ff3b99 | 9775 | |
b99be8fb VZ |
9776 | int h = wxMax( 0, height ); |
9777 | int diff = h - m_rowHeights[row]; | |
60ff3b99 | 9778 | |
b99be8fb | 9779 | m_rowHeights[row] = h; |
7c1cb261 | 9780 | int i; |
56b6cf26 | 9781 | for ( i = row; i < m_numRows; i++ ) |
f85afd4e | 9782 | { |
b99be8fb | 9783 | m_rowBottoms[i] += diff; |
f85afd4e | 9784 | } |
2f024384 | 9785 | |
faec5a43 SN |
9786 | if ( !GetBatchCount() ) |
9787 | CalcDimensions(); | |
f85afd4e MB |
9788 | } |
9789 | ||
9790 | void wxGrid::SetDefaultColSize( int width, bool resizeExistingCols ) | |
9791 | { | |
b8d24d4e | 9792 | m_defaultColWidth = wxMax( width, m_minAcceptableColWidth ); |
f85afd4e MB |
9793 | |
9794 | if ( resizeExistingCols ) | |
9795 | { | |
b1da8107 SN |
9796 | // since we are resizing all columns to the default column size, |
9797 | // we can simply clear the col widths and col rights | |
9798 | // arrays (which also allows us to take advantage of | |
9799 | // some speed optimisations) | |
9800 | m_colWidths.Empty(); | |
9801 | m_colRights.Empty(); | |
edb89f7e VZ |
9802 | if ( !GetBatchCount() ) |
9803 | CalcDimensions(); | |
f85afd4e MB |
9804 | } |
9805 | } | |
9806 | ||
9807 | void wxGrid::SetColSize( int col, int width ) | |
9808 | { | |
b99be8fb | 9809 | wxCHECK_RET( col >= 0 && col < m_numCols, _T("invalid column index") ); |
60ff3b99 | 9810 | |
43947979 | 9811 | // should we check that it's bigger than GetColMinimalWidth(col) here? |
b4bfd0fa RG |
9812 | // (VZ) |
9813 | // No, because it is reasonable to assume the library user know's | |
3e13956a | 9814 | // what he is doing. However whe should test against the weaker |
ccdee36f | 9815 | // constraint of minimalAcceptableWidth, as this breaks rendering |
3e13956a | 9816 | // |
b4bfd0fa | 9817 | // This test then fixes sf.net bug #645734 |
3e13956a | 9818 | |
962a48f6 | 9819 | if ( width < GetColMinimalAcceptableWidth() ) |
4db6714b | 9820 | return; |
3e13956a | 9821 | |
7c1cb261 VZ |
9822 | if ( m_colWidths.IsEmpty() ) |
9823 | { | |
9824 | // need to really create the array | |
9825 | InitColWidths(); | |
9826 | } | |
f85afd4e | 9827 | |
56b6cf26 | 9828 | // if < 0 then calculate new width from label |
4db6714b | 9829 | if ( width < 0 ) |
73145b0e | 9830 | { |
56b6cf26 DS |
9831 | long w, h; |
9832 | wxArrayString lines; | |
9833 | wxClientDC dc(m_colLabelWin); | |
9834 | dc.SetFont(GetLabelFont()); | |
9835 | StringToLines(GetColLabelValue(col), lines); | |
9836 | GetTextBoxSize(dc, lines, &w, &h); | |
9837 | width = w + 6; | |
73145b0e | 9838 | } |
962a48f6 | 9839 | |
b99be8fb VZ |
9840 | int w = wxMax( 0, width ); |
9841 | int diff = w - m_colWidths[col]; | |
9842 | m_colWidths[col] = w; | |
60ff3b99 | 9843 | |
7c1cb261 | 9844 | int i; |
56b6cf26 | 9845 | for ( i = col; i < m_numCols; i++ ) |
f85afd4e | 9846 | { |
b99be8fb | 9847 | m_colRights[i] += diff; |
f85afd4e | 9848 | } |
962a48f6 | 9849 | |
faec5a43 SN |
9850 | if ( !GetBatchCount() ) |
9851 | CalcDimensions(); | |
f85afd4e MB |
9852 | } |
9853 | ||
43947979 VZ |
9854 | void wxGrid::SetColMinimalWidth( int col, int width ) |
9855 | { | |
4db6714b KH |
9856 | if (width > GetColMinimalAcceptableWidth()) |
9857 | { | |
c6fbe2f0 | 9858 | wxLongToLongHashMap::key_type key = (wxLongToLongHashMap::key_type)col; |
8253f2e0 | 9859 | m_colMinWidths[key] = width; |
b8d24d4e | 9860 | } |
af547d51 VZ |
9861 | } |
9862 | ||
9863 | void wxGrid::SetRowMinimalHeight( int row, int width ) | |
9864 | { | |
4db6714b KH |
9865 | if (width > GetRowMinimalAcceptableHeight()) |
9866 | { | |
c6fbe2f0 | 9867 | wxLongToLongHashMap::key_type key = (wxLongToLongHashMap::key_type)row; |
8253f2e0 | 9868 | m_rowMinHeights[key] = width; |
b8d24d4e | 9869 | } |
43947979 VZ |
9870 | } |
9871 | ||
9872 | int wxGrid::GetColMinimalWidth(int col) const | |
9873 | { | |
c6fbe2f0 | 9874 | wxLongToLongHashMap::key_type key = (wxLongToLongHashMap::key_type)col; |
8253f2e0 | 9875 | wxLongToLongHashMap::const_iterator it = m_colMinWidths.find(key); |
962a48f6 | 9876 | |
ba8c1601 | 9877 | return it != m_colMinWidths.end() ? (int)it->second : m_minAcceptableColWidth; |
af547d51 VZ |
9878 | } |
9879 | ||
9880 | int wxGrid::GetRowMinimalHeight(int row) const | |
9881 | { | |
c6fbe2f0 | 9882 | wxLongToLongHashMap::key_type key = (wxLongToLongHashMap::key_type)row; |
8253f2e0 | 9883 | wxLongToLongHashMap::const_iterator it = m_rowMinHeights.find(key); |
962a48f6 | 9884 | |
ba8c1601 | 9885 | return it != m_rowMinHeights.end() ? (int)it->second : m_minAcceptableRowHeight; |
b8d24d4e RG |
9886 | } |
9887 | ||
9888 | void wxGrid::SetColMinimalAcceptableWidth( int width ) | |
9889 | { | |
20c84410 | 9890 | // We do allow a width of 0 since this gives us |
962a48f6 DS |
9891 | // an easy way to temporarily hiding columns. |
9892 | if ( width >= 0 ) | |
9893 | m_minAcceptableColWidth = width; | |
b8d24d4e RG |
9894 | } |
9895 | ||
9896 | void wxGrid::SetRowMinimalAcceptableHeight( int height ) | |
9897 | { | |
20c84410 | 9898 | // We do allow a height of 0 since this gives us |
962a48f6 DS |
9899 | // an easy way to temporarily hiding rows. |
9900 | if ( height >= 0 ) | |
9901 | m_minAcceptableRowHeight = height; | |
17a1ebd1 | 9902 | } |
b8d24d4e RG |
9903 | |
9904 | int wxGrid::GetColMinimalAcceptableWidth() const | |
9905 | { | |
9906 | return m_minAcceptableColWidth; | |
9907 | } | |
9908 | ||
9909 | int wxGrid::GetRowMinimalAcceptableHeight() const | |
9910 | { | |
9911 | return m_minAcceptableRowHeight; | |
43947979 VZ |
9912 | } |
9913 | ||
57c086ef VZ |
9914 | // ---------------------------------------------------------------------------- |
9915 | // auto sizing | |
9916 | // ---------------------------------------------------------------------------- | |
9917 | ||
af547d51 | 9918 | void wxGrid::AutoSizeColOrRow( int colOrRow, bool setAsMin, bool column ) |
65e4e78e VZ |
9919 | { |
9920 | wxClientDC dc(m_gridWin); | |
9921 | ||
962a48f6 | 9922 | // cancel editing of cell |
13f6e9e8 RG |
9923 | HideCellEditControl(); |
9924 | SaveEditControlValue(); | |
9925 | ||
962a48f6 | 9926 | // init both of them to avoid compiler warnings, even if we only need one |
a95e38c0 VZ |
9927 | int row = -1, |
9928 | col = -1; | |
af547d51 VZ |
9929 | if ( column ) |
9930 | col = colOrRow; | |
9931 | else | |
9932 | row = colOrRow; | |
9933 | ||
9934 | wxCoord extent, extentMax = 0; | |
9935 | int max = column ? m_numRows : m_numCols; | |
39bcce60 | 9936 | for ( int rowOrCol = 0; rowOrCol < max; rowOrCol++ ) |
65e4e78e | 9937 | { |
af547d51 VZ |
9938 | if ( column ) |
9939 | row = rowOrCol; | |
9940 | else | |
9941 | col = rowOrCol; | |
9942 | ||
2f024384 DS |
9943 | wxGridCellAttr *attr = GetCellAttr(row, col); |
9944 | wxGridCellRenderer *renderer = attr->GetRenderer(this, row, col); | |
65e4e78e VZ |
9945 | if ( renderer ) |
9946 | { | |
af547d51 VZ |
9947 | wxSize size = renderer->GetBestSize(*this, *attr, dc, row, col); |
9948 | extent = column ? size.x : size.y; | |
9949 | if ( extent > extentMax ) | |
af547d51 | 9950 | extentMax = extent; |
0b190b0f VZ |
9951 | |
9952 | renderer->DecRef(); | |
65e4e78e VZ |
9953 | } |
9954 | ||
9955 | attr->DecRef(); | |
9956 | } | |
9957 | ||
af547d51 VZ |
9958 | // now also compare with the column label extent |
9959 | wxCoord w, h; | |
65e4e78e | 9960 | dc.SetFont( GetLabelFont() ); |
294d195c MB |
9961 | |
9962 | if ( column ) | |
d43851f7 | 9963 | { |
294d195c | 9964 | dc.GetTextExtent( GetColLabelValue(col), &w, &h ); |
4db6714b | 9965 | if ( GetColLabelTextOrientation() == wxVERTICAL ) |
d43851f7 JS |
9966 | w = h; |
9967 | } | |
294d195c | 9968 | else |
ee495e4c | 9969 | dc.GetTextExtent( GetRowLabelValue(row), &w, &h ); |
294d195c | 9970 | |
af547d51 VZ |
9971 | extent = column ? w : h; |
9972 | if ( extent > extentMax ) | |
af547d51 | 9973 | extentMax = extent; |
65e4e78e | 9974 | |
af547d51 | 9975 | if ( !extentMax ) |
65e4e78e | 9976 | { |
af547d51 | 9977 | // empty column - give default extent (notice that if extentMax is less |
2f024384 | 9978 | // than default extent but != 0, it's OK) |
af547d51 | 9979 | extentMax = column ? m_defaultColWidth : m_defaultRowHeight; |
65e4e78e VZ |
9980 | } |
9981 | else | |
9982 | { | |
a95e38c0 | 9983 | if ( column ) |
a95e38c0 VZ |
9984 | // leave some space around text |
9985 | extentMax += 10; | |
f6bcfd97 | 9986 | else |
f6bcfd97 | 9987 | extentMax += 6; |
65e4e78e VZ |
9988 | } |
9989 | ||
edb89f7e VZ |
9990 | if ( column ) |
9991 | { | |
962a48f6 | 9992 | SetColSize( col, extentMax ); |
faec5a43 SN |
9993 | if ( !GetBatchCount() ) |
9994 | { | |
edb89f7e VZ |
9995 | int cw, ch, dummy; |
9996 | m_gridWin->GetClientSize( &cw, &ch ); | |
9997 | wxRect rect ( CellToRect( 0, col ) ); | |
9998 | rect.y = 0; | |
9999 | CalcScrolledPosition(rect.x, 0, &rect.x, &dummy); | |
10000 | rect.width = cw - rect.x; | |
10001 | rect.height = m_colLabelHeight; | |
ca65c044 | 10002 | m_colLabelWin->Refresh( true, &rect ); |
edb89f7e VZ |
10003 | } |
10004 | } | |
10005 | else | |
10006 | { | |
39bcce60 | 10007 | SetRowSize(row, extentMax); |
faec5a43 SN |
10008 | if ( !GetBatchCount() ) |
10009 | { | |
edb89f7e VZ |
10010 | int cw, ch, dummy; |
10011 | m_gridWin->GetClientSize( &cw, &ch ); | |
ccdee36f | 10012 | wxRect rect( CellToRect( row, 0 ) ); |
edb89f7e VZ |
10013 | rect.x = 0; |
10014 | CalcScrolledPosition(0, rect.y, &dummy, &rect.y); | |
10015 | rect.width = m_rowLabelWidth; | |
faec5a43 | 10016 | rect.height = ch - rect.y; |
ca65c044 | 10017 | m_rowLabelWin->Refresh( true, &rect ); |
edb89f7e | 10018 | } |
faec5a43 | 10019 | } |
2f024384 | 10020 | |
65e4e78e VZ |
10021 | if ( setAsMin ) |
10022 | { | |
af547d51 VZ |
10023 | if ( column ) |
10024 | SetColMinimalWidth(col, extentMax); | |
10025 | else | |
39bcce60 | 10026 | SetRowMinimalHeight(row, extentMax); |
65e4e78e VZ |
10027 | } |
10028 | } | |
10029 | ||
266e8367 | 10030 | int wxGrid::SetOrCalcColumnSizes(bool calcOnly, bool setAsMin) |
65e4e78e | 10031 | { |
57c086ef VZ |
10032 | int width = m_rowLabelWidth; |
10033 | ||
faec5a43 SN |
10034 | if ( !calcOnly ) |
10035 | BeginBatch(); | |
97a9929e | 10036 | |
65e4e78e VZ |
10037 | for ( int col = 0; col < m_numCols; col++ ) |
10038 | { | |
266e8367 | 10039 | if ( !calcOnly ) |
266e8367 | 10040 | AutoSizeColumn(col, setAsMin); |
57c086ef VZ |
10041 | |
10042 | width += GetColWidth(col); | |
65e4e78e | 10043 | } |
97a9929e | 10044 | |
faec5a43 SN |
10045 | if ( !calcOnly ) |
10046 | EndBatch(); | |
97a9929e | 10047 | |
266e8367 | 10048 | return width; |
65e4e78e VZ |
10049 | } |
10050 | ||
266e8367 | 10051 | int wxGrid::SetOrCalcRowSizes(bool calcOnly, bool setAsMin) |
57c086ef VZ |
10052 | { |
10053 | int height = m_colLabelHeight; | |
10054 | ||
faec5a43 SN |
10055 | if ( !calcOnly ) |
10056 | BeginBatch(); | |
97a9929e | 10057 | |
57c086ef VZ |
10058 | for ( int row = 0; row < m_numRows; row++ ) |
10059 | { | |
af547d51 | 10060 | if ( !calcOnly ) |
af547d51 | 10061 | AutoSizeRow(row, setAsMin); |
57c086ef VZ |
10062 | |
10063 | height += GetRowHeight(row); | |
10064 | } | |
97a9929e | 10065 | |
faec5a43 SN |
10066 | if ( !calcOnly ) |
10067 | EndBatch(); | |
97a9929e | 10068 | |
266e8367 | 10069 | return height; |
57c086ef VZ |
10070 | } |
10071 | ||
10072 | void wxGrid::AutoSize() | |
10073 | { | |
97a9929e VZ |
10074 | BeginBatch(); |
10075 | ||
ca65c044 | 10076 | wxSize size(SetOrCalcColumnSizes(false), SetOrCalcRowSizes(false)); |
97a9929e VZ |
10077 | |
10078 | // round up the size to a multiple of scroll step - this ensures that we | |
10079 | // won't get the scrollbars if we're sized exactly to this width | |
2b5f62a0 VZ |
10080 | // CalcDimension adds m_extraWidth + 1 etc. to calculate the necessary |
10081 | // scrollbar steps | |
2f024384 DS |
10082 | wxSize sizeFit( |
10083 | GetScrollX(size.x + m_extraWidth + 1) * m_scrollLineX, | |
a9339fe2 | 10084 | GetScrollY(size.y + m_extraHeight + 1) * m_scrollLineY ); |
97a9929e | 10085 | |
2b5f62a0 | 10086 | // distribute the extra space between the columns/rows to avoid having |
97a9929e | 10087 | // extra white space |
2b5f62a0 VZ |
10088 | |
10089 | // Remove the extra m_extraWidth + 1 added above | |
10090 | wxCoord diff = sizeFit.x - size.x + (m_extraWidth + 1); | |
10091 | if ( diff && m_numCols ) | |
97a9929e VZ |
10092 | { |
10093 | // try to resize the columns uniformly | |
10094 | wxCoord diffPerCol = diff / m_numCols; | |
10095 | if ( diffPerCol ) | |
10096 | { | |
10097 | for ( int col = 0; col < m_numCols; col++ ) | |
10098 | { | |
10099 | SetColSize(col, GetColWidth(col) + diffPerCol); | |
10100 | } | |
10101 | } | |
10102 | ||
10103 | // add remaining amount to the last columns | |
10104 | diff -= diffPerCol * m_numCols; | |
10105 | if ( diff ) | |
10106 | { | |
10107 | for ( int col = m_numCols - 1; col >= m_numCols - diff; col-- ) | |
10108 | { | |
10109 | SetColSize(col, GetColWidth(col) + 1); | |
10110 | } | |
10111 | } | |
10112 | } | |
10113 | ||
10114 | // same for rows | |
2b5f62a0 VZ |
10115 | diff = sizeFit.y - size.y - (m_extraHeight + 1); |
10116 | if ( diff && m_numRows ) | |
97a9929e VZ |
10117 | { |
10118 | // try to resize the columns uniformly | |
10119 | wxCoord diffPerRow = diff / m_numRows; | |
10120 | if ( diffPerRow ) | |
10121 | { | |
10122 | for ( int row = 0; row < m_numRows; row++ ) | |
10123 | { | |
10124 | SetRowSize(row, GetRowHeight(row) + diffPerRow); | |
10125 | } | |
10126 | } | |
10127 | ||
10128 | // add remaining amount to the last rows | |
10129 | diff -= diffPerRow * m_numRows; | |
10130 | if ( diff ) | |
10131 | { | |
10132 | for ( int row = m_numRows - 1; row >= m_numRows - diff; row-- ) | |
10133 | { | |
10134 | SetRowSize(row, GetRowHeight(row) + 1); | |
10135 | } | |
10136 | } | |
10137 | } | |
10138 | ||
10139 | EndBatch(); | |
10140 | ||
10141 | SetClientSize(sizeFit); | |
266e8367 VZ |
10142 | } |
10143 | ||
d43851f7 JS |
10144 | void wxGrid::AutoSizeRowLabelSize( int row ) |
10145 | { | |
10146 | wxArrayString lines; | |
10147 | long w, h; | |
10148 | ||
10149 | // Hide the edit control, so it | |
4db6714b KH |
10150 | // won't interfere with drag-shrinking. |
10151 | if ( IsCellEditControlShown() ) | |
d43851f7 JS |
10152 | { |
10153 | HideCellEditControl(); | |
10154 | SaveEditControlValue(); | |
10155 | } | |
10156 | ||
10157 | // autosize row height depending on label text | |
10158 | StringToLines( GetRowLabelValue( row ), lines ); | |
10159 | wxClientDC dc( m_rowLabelWin ); | |
ccdee36f | 10160 | GetTextBoxSize( dc, lines, &w, &h ); |
4db6714b | 10161 | if ( h < m_defaultRowHeight ) |
d43851f7 JS |
10162 | h = m_defaultRowHeight; |
10163 | SetRowSize(row, h); | |
10164 | ForceRefresh(); | |
10165 | } | |
10166 | ||
10167 | void wxGrid::AutoSizeColLabelSize( int col ) | |
10168 | { | |
10169 | wxArrayString lines; | |
10170 | long w, h; | |
10171 | ||
10172 | // Hide the edit control, so it | |
10173 | // won't interfer with drag-shrinking. | |
4db6714b | 10174 | if ( IsCellEditControlShown() ) |
d43851f7 JS |
10175 | { |
10176 | HideCellEditControl(); | |
10177 | SaveEditControlValue(); | |
10178 | } | |
10179 | ||
10180 | // autosize column width depending on label text | |
10181 | StringToLines( GetColLabelValue( col ), lines ); | |
10182 | wxClientDC dc( m_colLabelWin ); | |
4db6714b | 10183 | if ( GetColLabelTextOrientation() == wxHORIZONTAL ) |
2f024384 | 10184 | GetTextBoxSize( dc, lines, &w, &h ); |
d43851f7 | 10185 | else |
2f024384 | 10186 | GetTextBoxSize( dc, lines, &h, &w ); |
4db6714b | 10187 | if ( w < m_defaultColWidth ) |
d43851f7 JS |
10188 | w = m_defaultColWidth; |
10189 | SetColSize(col, w); | |
10190 | ForceRefresh(); | |
10191 | } | |
10192 | ||
266e8367 VZ |
10193 | wxSize wxGrid::DoGetBestSize() const |
10194 | { | |
10195 | // don't set sizes, only calculate them | |
10196 | wxGrid *self = (wxGrid *)this; // const_cast | |
10197 | ||
84035150 | 10198 | int width, height; |
ca65c044 WS |
10199 | width = self->SetOrCalcColumnSizes(true); |
10200 | height = self->SetOrCalcRowSizes(true); | |
84035150 | 10201 | |
4db6714b KH |
10202 | if (!width) |
10203 | width = 100; | |
10204 | if (!height) | |
10205 | height = 80; | |
42841dfc | 10206 | |
4db6714b KH |
10207 | // Round up to a multiple the scroll rate |
10208 | // NOTE: this still doesn't get rid of the scrollbars; | |
10209 | // is there any magic incantation for that? | |
6d308072 RD |
10210 | int xpu, ypu; |
10211 | GetScrollPixelsPerUnit(&xpu, &ypu); | |
b39a5dc4 RD |
10212 | if (xpu) |
10213 | width += 1 + xpu - (width % xpu); | |
10214 | if (ypu) | |
10215 | height += 1 + ypu - (height % ypu); | |
42841dfc | 10216 | |
6d308072 | 10217 | // limit to 1/4 of the screen size |
84035150 | 10218 | int maxwidth, maxheight; |
4db6714b | 10219 | wxDisplaySize( &maxwidth, &maxheight ); |
6d308072 | 10220 | maxwidth /= 2; |
42841dfc | 10221 | maxheight /= 2; |
4db6714b KH |
10222 | if ( width > maxwidth ) |
10223 | width = maxwidth; | |
10224 | if ( height > maxheight ) | |
10225 | height = maxheight; | |
42841dfc | 10226 | |
6d308072 | 10227 | wxSize best(width, height); |
962a48f6 | 10228 | |
6d308072 RD |
10229 | // NOTE: This size should be cached, but first we need to add calls to |
10230 | // InvalidateBestSize everywhere that could change the results of this | |
10231 | // calculation. | |
10232 | // CacheBestSize(size); | |
962a48f6 | 10233 | |
6d308072 | 10234 | return best; |
266e8367 VZ |
10235 | } |
10236 | ||
10237 | void wxGrid::Fit() | |
10238 | { | |
10239 | AutoSize(); | |
57c086ef VZ |
10240 | } |
10241 | ||
6fc0f38f SN |
10242 | wxPen& wxGrid::GetDividerPen() const |
10243 | { | |
10244 | return wxNullPen; | |
10245 | } | |
10246 | ||
57c086ef VZ |
10247 | // ---------------------------------------------------------------------------- |
10248 | // cell value accessor functions | |
10249 | // ---------------------------------------------------------------------------- | |
f85afd4e MB |
10250 | |
10251 | void wxGrid::SetCellValue( int row, int col, const wxString& s ) | |
10252 | { | |
10253 | if ( m_table ) | |
10254 | { | |
f6bcfd97 | 10255 | m_table->SetValue( row, col, s ); |
2d66e025 MB |
10256 | if ( !GetBatchCount() ) |
10257 | { | |
27f35b66 SN |
10258 | int dummy; |
10259 | wxRect rect( CellToRect( row, col ) ); | |
10260 | rect.x = 0; | |
10261 | rect.width = m_gridWin->GetClientSize().GetWidth(); | |
10262 | CalcScrolledPosition(0, rect.y, &dummy, &rect.y); | |
ca65c044 | 10263 | m_gridWin->Refresh( false, &rect ); |
2d66e025 | 10264 | } |
60ff3b99 | 10265 | |
f85afd4e | 10266 | if ( m_currentCellCoords.GetRow() == row && |
4cfa5de6 | 10267 | m_currentCellCoords.GetCol() == col && |
f6bcfd97 BP |
10268 | IsCellEditControlShown()) |
10269 | // Note: If we are using IsCellEditControlEnabled, | |
10270 | // this interacts badly with calling SetCellValue from | |
10271 | // an EVT_GRID_CELL_CHANGE handler. | |
f85afd4e | 10272 | { |
4cfa5de6 RD |
10273 | HideCellEditControl(); |
10274 | ShowCellEditControl(); // will reread data from table | |
f85afd4e | 10275 | } |
f85afd4e MB |
10276 | } |
10277 | } | |
10278 | ||
962a48f6 | 10279 | // ---------------------------------------------------------------------------- |
2f024384 | 10280 | // block, row and column selection |
962a48f6 | 10281 | // ---------------------------------------------------------------------------- |
f85afd4e MB |
10282 | |
10283 | void wxGrid::SelectRow( int row, bool addToSelected ) | |
10284 | { | |
b5808881 | 10285 | if ( IsSelection() && !addToSelected ) |
e32352cf | 10286 | ClearSelection(); |
70c7a608 | 10287 | |
3f3dc2ef | 10288 | if ( m_selection ) |
ca65c044 | 10289 | m_selection->SelectRow( row, false, addToSelected ); |
f85afd4e MB |
10290 | } |
10291 | ||
f85afd4e MB |
10292 | void wxGrid::SelectCol( int col, bool addToSelected ) |
10293 | { | |
b5808881 | 10294 | if ( IsSelection() && !addToSelected ) |
e32352cf | 10295 | ClearSelection(); |
f85afd4e | 10296 | |
3f3dc2ef | 10297 | if ( m_selection ) |
ca65c044 | 10298 | m_selection->SelectCol( col, false, addToSelected ); |
f85afd4e MB |
10299 | } |
10300 | ||
84912ef8 | 10301 | void wxGrid::SelectBlock( int topRow, int leftCol, int bottomRow, int rightCol, |
c9097836 | 10302 | bool addToSelected ) |
f85afd4e | 10303 | { |
c9097836 MB |
10304 | if ( IsSelection() && !addToSelected ) |
10305 | ClearSelection(); | |
f85afd4e | 10306 | |
3f3dc2ef VZ |
10307 | if ( m_selection ) |
10308 | m_selection->SelectBlock( topRow, leftCol, bottomRow, rightCol, | |
ca65c044 | 10309 | false, addToSelected ); |
f85afd4e MB |
10310 | } |
10311 | ||
10312 | void wxGrid::SelectAll() | |
10313 | { | |
f74d0b57 | 10314 | if ( m_numRows > 0 && m_numCols > 0 ) |
3f3dc2ef VZ |
10315 | { |
10316 | if ( m_selection ) | |
ccdee36f | 10317 | m_selection->SelectBlock( 0, 0, m_numRows - 1, m_numCols - 1 ); |
3f3dc2ef | 10318 | } |
b5808881 | 10319 | } |
f85afd4e | 10320 | |
962a48f6 DS |
10321 | // ---------------------------------------------------------------------------- |
10322 | // cell, row and col deselection | |
10323 | // ---------------------------------------------------------------------------- | |
f7b4b343 VZ |
10324 | |
10325 | void wxGrid::DeselectRow( int row ) | |
10326 | { | |
3f3dc2ef VZ |
10327 | if ( !m_selection ) |
10328 | return; | |
10329 | ||
f7b4b343 VZ |
10330 | if ( m_selection->GetSelectionMode() == wxGrid::wxGridSelectRows ) |
10331 | { | |
10332 | if ( m_selection->IsInSelection(row, 0 ) ) | |
2f024384 | 10333 | m_selection->ToggleCellSelection(row, 0); |
ffdd3c98 | 10334 | } |
f7b4b343 VZ |
10335 | else |
10336 | { | |
10337 | int nCols = GetNumberCols(); | |
2f024384 | 10338 | for ( int i = 0; i < nCols; i++ ) |
f7b4b343 VZ |
10339 | { |
10340 | if ( m_selection->IsInSelection(row, i ) ) | |
2f024384 | 10341 | m_selection->ToggleCellSelection(row, i); |
f7b4b343 VZ |
10342 | } |
10343 | } | |
10344 | } | |
10345 | ||
10346 | void wxGrid::DeselectCol( int col ) | |
10347 | { | |
3f3dc2ef VZ |
10348 | if ( !m_selection ) |
10349 | return; | |
10350 | ||
f7b4b343 VZ |
10351 | if ( m_selection->GetSelectionMode() == wxGrid::wxGridSelectColumns ) |
10352 | { | |
10353 | if ( m_selection->IsInSelection(0, col ) ) | |
2f024384 | 10354 | m_selection->ToggleCellSelection(0, col); |
f7b4b343 VZ |
10355 | } |
10356 | else | |
10357 | { | |
10358 | int nRows = GetNumberRows(); | |
2f024384 | 10359 | for ( int i = 0; i < nRows; i++ ) |
f7b4b343 VZ |
10360 | { |
10361 | if ( m_selection->IsInSelection(i, col ) ) | |
10362 | m_selection->ToggleCellSelection(i, col); | |
10363 | } | |
10364 | } | |
10365 | } | |
10366 | ||
10367 | void wxGrid::DeselectCell( int row, int col ) | |
10368 | { | |
3f3dc2ef | 10369 | if ( m_selection && m_selection->IsInSelection(row, col) ) |
f7b4b343 VZ |
10370 | m_selection->ToggleCellSelection(row, col); |
10371 | } | |
10372 | ||
b5808881 SN |
10373 | bool wxGrid::IsSelection() |
10374 | { | |
3f3dc2ef | 10375 | return ( m_selection && (m_selection->IsSelection() || |
b5808881 | 10376 | ( m_selectingTopLeft != wxGridNoCellCoords && |
3f3dc2ef | 10377 | m_selectingBottomRight != wxGridNoCellCoords) ) ); |
f85afd4e MB |
10378 | } |
10379 | ||
84035150 | 10380 | bool wxGrid::IsInSelection( int row, int col ) const |
b5808881 | 10381 | { |
3f3dc2ef | 10382 | return ( m_selection && (m_selection->IsInSelection( row, col ) || |
b5808881 SN |
10383 | ( row >= m_selectingTopLeft.GetRow() && |
10384 | col >= m_selectingTopLeft.GetCol() && | |
10385 | row <= m_selectingBottomRight.GetRow() && | |
3f3dc2ef | 10386 | col <= m_selectingBottomRight.GetCol() )) ); |
b5808881 | 10387 | } |
f85afd4e | 10388 | |
aa5b8857 SN |
10389 | wxGridCellCoordsArray wxGrid::GetSelectedCells() const |
10390 | { | |
4db6714b KH |
10391 | if (!m_selection) |
10392 | { | |
10393 | wxGridCellCoordsArray a; | |
10394 | return a; | |
10395 | } | |
10396 | ||
aa5b8857 SN |
10397 | return m_selection->m_cellSelection; |
10398 | } | |
4db6714b | 10399 | |
aa5b8857 SN |
10400 | wxGridCellCoordsArray wxGrid::GetSelectionBlockTopLeft() const |
10401 | { | |
4db6714b KH |
10402 | if (!m_selection) |
10403 | { | |
10404 | wxGridCellCoordsArray a; | |
10405 | return a; | |
10406 | } | |
10407 | ||
aa5b8857 SN |
10408 | return m_selection->m_blockSelectionTopLeft; |
10409 | } | |
4db6714b | 10410 | |
aa5b8857 SN |
10411 | wxGridCellCoordsArray wxGrid::GetSelectionBlockBottomRight() const |
10412 | { | |
4db6714b KH |
10413 | if (!m_selection) |
10414 | { | |
10415 | wxGridCellCoordsArray a; | |
10416 | return a; | |
10417 | } | |
10418 | ||
a8de8190 | 10419 | return m_selection->m_blockSelectionBottomRight; |
aa5b8857 | 10420 | } |
4db6714b | 10421 | |
aa5b8857 SN |
10422 | wxArrayInt wxGrid::GetSelectedRows() const |
10423 | { | |
4db6714b KH |
10424 | if (!m_selection) |
10425 | { | |
10426 | wxArrayInt a; | |
10427 | return a; | |
10428 | } | |
10429 | ||
aa5b8857 SN |
10430 | return m_selection->m_rowSelection; |
10431 | } | |
4db6714b | 10432 | |
aa5b8857 SN |
10433 | wxArrayInt wxGrid::GetSelectedCols() const |
10434 | { | |
4db6714b KH |
10435 | if (!m_selection) |
10436 | { | |
10437 | wxArrayInt a; | |
10438 | return a; | |
10439 | } | |
10440 | ||
aa5b8857 SN |
10441 | return m_selection->m_colSelection; |
10442 | } | |
10443 | ||
f85afd4e MB |
10444 | void wxGrid::ClearSelection() |
10445 | { | |
b5808881 SN |
10446 | m_selectingTopLeft = wxGridNoCellCoords; |
10447 | m_selectingBottomRight = wxGridNoCellCoords; | |
3f3dc2ef VZ |
10448 | if ( m_selection ) |
10449 | m_selection->ClearSelection(); | |
8f177c8e | 10450 | } |
f85afd4e | 10451 | |
da6af900 | 10452 | // This function returns the rectangle that encloses the given block |
2d66e025 MB |
10453 | // in device coords clipped to the client size of the grid window. |
10454 | // | |
58dd5b3b MB |
10455 | wxRect wxGrid::BlockToDeviceRect( const wxGridCellCoords &topLeft, |
10456 | const wxGridCellCoords &bottomRight ) | |
f85afd4e | 10457 | { |
58dd5b3b | 10458 | wxRect rect( wxGridNoCellRect ); |
f85afd4e MB |
10459 | wxRect cellRect; |
10460 | ||
58dd5b3b MB |
10461 | cellRect = CellToRect( topLeft ); |
10462 | if ( cellRect != wxGridNoCellRect ) | |
f85afd4e | 10463 | { |
58dd5b3b MB |
10464 | rect = cellRect; |
10465 | } | |
10466 | else | |
10467 | { | |
962a48f6 | 10468 | rect = wxRect(0, 0, 0, 0); |
58dd5b3b | 10469 | } |
60ff3b99 | 10470 | |
58dd5b3b MB |
10471 | cellRect = CellToRect( bottomRight ); |
10472 | if ( cellRect != wxGridNoCellRect ) | |
10473 | { | |
10474 | rect += cellRect; | |
2d66e025 MB |
10475 | } |
10476 | else | |
10477 | { | |
10478 | return wxGridNoCellRect; | |
f85afd4e MB |
10479 | } |
10480 | ||
27f35b66 SN |
10481 | int i, j; |
10482 | int left = rect.GetLeft(); | |
10483 | int top = rect.GetTop(); | |
10484 | int right = rect.GetRight(); | |
10485 | int bottom = rect.GetBottom(); | |
10486 | ||
10487 | int leftCol = topLeft.GetCol(); | |
10488 | int topRow = topLeft.GetRow(); | |
10489 | int rightCol = bottomRight.GetCol(); | |
10490 | int bottomRow = bottomRight.GetRow(); | |
10491 | ||
3ed884a0 SN |
10492 | if (left > right) |
10493 | { | |
10494 | i = left; | |
10495 | left = right; | |
10496 | right = i; | |
10497 | i = leftCol; | |
4db6714b | 10498 | leftCol = rightCol; |
3ed884a0 SN |
10499 | rightCol = i; |
10500 | } | |
10501 | ||
10502 | if (top > bottom) | |
10503 | { | |
10504 | i = top; | |
10505 | top = bottom; | |
10506 | bottom = i; | |
10507 | i = topRow; | |
10508 | topRow = bottomRow; | |
10509 | bottomRow = i; | |
10510 | } | |
10511 | ||
27f35b66 SN |
10512 | for ( j = topRow; j <= bottomRow; j++ ) |
10513 | { | |
10514 | for ( i = leftCol; i <= rightCol; i++ ) | |
10515 | { | |
4db6714b | 10516 | if ((j == topRow) || (j == bottomRow) || (i == leftCol) || (i == rightCol)) |
27f35b66 SN |
10517 | { |
10518 | cellRect = CellToRect( j, i ); | |
10519 | ||
10520 | if (cellRect.x < left) | |
10521 | left = cellRect.x; | |
10522 | if (cellRect.y < top) | |
10523 | top = cellRect.y; | |
10524 | if (cellRect.x + cellRect.width > right) | |
10525 | right = cellRect.x + cellRect.width; | |
10526 | if (cellRect.y + cellRect.height > bottom) | |
10527 | bottom = cellRect.y + cellRect.height; | |
10528 | } | |
4db6714b KH |
10529 | else |
10530 | { | |
10531 | i = rightCol; // jump over inner cells. | |
10532 | } | |
27f35b66 SN |
10533 | } |
10534 | } | |
10535 | ||
58dd5b3b MB |
10536 | // convert to scrolled coords |
10537 | // | |
27f35b66 SN |
10538 | CalcScrolledPosition( left, top, &left, &top ); |
10539 | CalcScrolledPosition( right, bottom, &right, &bottom ); | |
58dd5b3b MB |
10540 | |
10541 | int cw, ch; | |
10542 | m_gridWin->GetClientSize( &cw, &ch ); | |
10543 | ||
f6bcfd97 | 10544 | if (right < 0 || bottom < 0 || left > cw || top > ch) |
c47addef | 10545 | return wxRect(0,0,0,0); |
f6bcfd97 | 10546 | |
58dd5b3b MB |
10547 | rect.SetLeft( wxMax(0, left) ); |
10548 | rect.SetTop( wxMax(0, top) ); | |
10549 | rect.SetRight( wxMin(cw, right) ); | |
10550 | rect.SetBottom( wxMin(ch, bottom) ); | |
10551 | ||
f85afd4e MB |
10552 | return rect; |
10553 | } | |
10554 | ||
962a48f6 DS |
10555 | // ---------------------------------------------------------------------------- |
10556 | // grid event classes | |
10557 | // ---------------------------------------------------------------------------- | |
f85afd4e | 10558 | |
bf7945ce | 10559 | IMPLEMENT_DYNAMIC_CLASS( wxGridEvent, wxNotifyEvent ) |
f85afd4e MB |
10560 | |
10561 | wxGridEvent::wxGridEvent( int id, wxEventType type, wxObject* obj, | |
5c8fc7c1 | 10562 | int row, int col, int x, int y, bool sel, |
f85afd4e MB |
10563 | bool control, bool shift, bool alt, bool meta ) |
10564 | : wxNotifyEvent( type, id ) | |
10565 | { | |
10566 | m_row = row; | |
10567 | m_col = col; | |
10568 | m_x = x; | |
10569 | m_y = y; | |
5c8fc7c1 | 10570 | m_selecting = sel; |
f85afd4e MB |
10571 | m_control = control; |
10572 | m_shift = shift; | |
10573 | m_alt = alt; | |
10574 | m_meta = meta; | |
8f177c8e | 10575 | |
f85afd4e MB |
10576 | SetEventObject(obj); |
10577 | } | |
10578 | ||
10579 | ||
bf7945ce | 10580 | IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent, wxNotifyEvent ) |
f85afd4e MB |
10581 | |
10582 | wxGridSizeEvent::wxGridSizeEvent( int id, wxEventType type, wxObject* obj, | |
10583 | int rowOrCol, int x, int y, | |
10584 | bool control, bool shift, bool alt, bool meta ) | |
10585 | : wxNotifyEvent( type, id ) | |
10586 | { | |
10587 | m_rowOrCol = rowOrCol; | |
10588 | m_x = x; | |
10589 | m_y = y; | |
10590 | m_control = control; | |
10591 | m_shift = shift; | |
10592 | m_alt = alt; | |
10593 | m_meta = meta; | |
8f177c8e | 10594 | |
f85afd4e MB |
10595 | SetEventObject(obj); |
10596 | } | |
10597 | ||
10598 | ||
bf7945ce | 10599 | IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent, wxNotifyEvent ) |
f85afd4e MB |
10600 | |
10601 | wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id, wxEventType type, wxObject* obj, | |
8f177c8e VZ |
10602 | const wxGridCellCoords& topLeft, |
10603 | const wxGridCellCoords& bottomRight, | |
5c8fc7c1 SN |
10604 | bool sel, bool control, |
10605 | bool shift, bool alt, bool meta ) | |
8f177c8e | 10606 | : wxNotifyEvent( type, id ) |
f85afd4e | 10607 | { |
2f024384 | 10608 | m_topLeft = topLeft; |
f85afd4e | 10609 | m_bottomRight = bottomRight; |
2f024384 DS |
10610 | m_selecting = sel; |
10611 | m_control = control; | |
10612 | m_shift = shift; | |
10613 | m_alt = alt; | |
10614 | m_meta = meta; | |
f85afd4e MB |
10615 | |
10616 | SetEventObject(obj); | |
10617 | } | |
10618 | ||
10619 | ||
bf7945ce RD |
10620 | IMPLEMENT_DYNAMIC_CLASS(wxGridEditorCreatedEvent, wxCommandEvent) |
10621 | ||
10622 | wxGridEditorCreatedEvent::wxGridEditorCreatedEvent(int id, wxEventType type, | |
10623 | wxObject* obj, int row, | |
10624 | int col, wxControl* ctrl) | |
10625 | : wxCommandEvent(type, id) | |
10626 | { | |
10627 | SetEventObject(obj); | |
10628 | m_row = row; | |
10629 | m_col = col; | |
10630 | m_ctrl = ctrl; | |
10631 | } | |
10632 | ||
27b92ca4 | 10633 | #endif // wxUSE_GRID |