]>
Commit | Line | Data |
---|---|---|
2796cce3 | 1 | /////////////////////////////////////////////////////////////////////////// |
faa94f3e | 2 | // Name: src/generic/grid.cpp |
f85afd4e MB |
3 | // Purpose: wxGrid and related classes |
4 | // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn) | |
d4175745 | 5 | // Modified by: Robin Dunn, Vadim Zeitlin, Santiago Palacios |
f85afd4e MB |
6 | // Created: 1/08/1999 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Michael Bedward (mbedward@ozemail.com.au) | |
65571936 | 9 | // Licence: wxWindows licence |
f85afd4e MB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bec70262 VZ |
12 | /* |
13 | TODO: | |
14 | ||
15 | - Replace use of wxINVERT with wxOverlay | |
16 | - Make Begin/EndBatch() the same as the generic Freeze/Thaw() | |
10a4531d VZ |
17 | - Review the column reordering code, it's a mess. |
18 | - Implement row reordering after dealing with the columns. | |
bec70262 VZ |
19 | */ |
20 | ||
95427194 | 21 | // For compilers that support precompilation, includes "wx/wx.h". |
4d85bcd1 JS |
22 | #include "wx/wxprec.h" |
23 | ||
f85afd4e MB |
24 | #ifdef __BORLANDC__ |
25 | #pragma hdrstop | |
26 | #endif | |
27 | ||
27b92ca4 VZ |
28 | #if wxUSE_GRID |
29 | ||
4c44eb66 PC |
30 | #include "wx/grid.h" |
31 | ||
f85afd4e MB |
32 | #ifndef WX_PRECOMP |
33 | #include "wx/utils.h" | |
34 | #include "wx/dcclient.h" | |
35 | #include "wx/settings.h" | |
36 | #include "wx/log.h" | |
508011ce VZ |
37 | #include "wx/textctrl.h" |
38 | #include "wx/checkbox.h" | |
4ee5fc9c | 39 | #include "wx/combobox.h" |
816be743 | 40 | #include "wx/valtext.h" |
60d876f3 | 41 | #include "wx/intl.h" |
c77a6796 | 42 | #include "wx/math.h" |
2a673eb1 | 43 | #include "wx/listbox.h" |
f85afd4e MB |
44 | #endif |
45 | ||
cb5df486 | 46 | #include "wx/textfile.h" |
816be743 | 47 | #include "wx/spinctrl.h" |
c4608a8a | 48 | #include "wx/tokenzr.h" |
4d1bc39c | 49 | #include "wx/renderer.h" |
6d004f67 | 50 | |
b5808881 | 51 | #include "wx/generic/gridsel.h" |
07296f0b | 52 | |
23318a53 | 53 | const char wxGridNameStr[] = "grid"; |
4c44eb66 | 54 | |
0b7e6e7d SN |
55 | #if defined(__WXMOTIF__) |
56 | #define WXUNUSED_MOTIF(identifier) WXUNUSED(identifier) | |
c78b3acd | 57 | #else |
0b7e6e7d | 58 | #define WXUNUSED_MOTIF(identifier) identifier |
c78b3acd SN |
59 | #endif |
60 | ||
61 | #if defined(__WXGTK__) | |
62 | #define WXUNUSED_GTK(identifier) WXUNUSED(identifier) | |
63 | #else | |
64 | #define WXUNUSED_GTK(identifier) identifier | |
65 | #endif | |
66 | ||
3f8e5072 JS |
67 | // Required for wxIs... functions |
68 | #include <ctype.h> | |
69 | ||
b99be8fb | 70 | // ---------------------------------------------------------------------------- |
758cbedf | 71 | // array classes |
b99be8fb VZ |
72 | // ---------------------------------------------------------------------------- |
73 | ||
d5d29b8a | 74 | WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridCellAttr *, wxArrayAttrs, |
160ba750 | 75 | class WXDLLIMPEXP_ADV); |
758cbedf | 76 | |
b99be8fb VZ |
77 | struct wxGridCellWithAttr |
78 | { | |
2e9a6788 VZ |
79 | wxGridCellWithAttr(int row, int col, wxGridCellAttr *attr_) |
80 | : coords(row, col), attr(attr_) | |
b99be8fb | 81 | { |
6f292345 VZ |
82 | wxASSERT( attr ); |
83 | } | |
84 | ||
85 | wxGridCellWithAttr(const wxGridCellWithAttr& other) | |
86 | : coords(other.coords), | |
87 | attr(other.attr) | |
88 | { | |
89 | attr->IncRef(); | |
90 | } | |
91 | ||
92 | wxGridCellWithAttr& operator=(const wxGridCellWithAttr& other) | |
93 | { | |
94 | coords = other.coords; | |
d1b021ff SN |
95 | if (attr != other.attr) |
96 | { | |
97 | attr->DecRef(); | |
98 | attr = other.attr; | |
99 | attr->IncRef(); | |
100 | } | |
6f292345 | 101 | return *this; |
b99be8fb VZ |
102 | } |
103 | ||
96ca74cd SN |
104 | void ChangeAttr(wxGridCellAttr* new_attr) |
105 | { | |
106 | if (attr != new_attr) | |
107 | { | |
ace8d849 | 108 | // "Delete" (i.e. DecRef) the old attribute. |
96ca74cd SN |
109 | attr->DecRef(); |
110 | attr = new_attr; | |
111 | // Take ownership of the new attribute, i.e. no IncRef. | |
112 | } | |
113 | } | |
114 | ||
2e9a6788 VZ |
115 | ~wxGridCellWithAttr() |
116 | { | |
117 | attr->DecRef(); | |
118 | } | |
119 | ||
b99be8fb | 120 | wxGridCellCoords coords; |
2e9a6788 | 121 | wxGridCellAttr *attr; |
b99be8fb VZ |
122 | }; |
123 | ||
160ba750 VS |
124 | WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellWithAttr, wxGridCellWithAttrArray, |
125 | class WXDLLIMPEXP_ADV); | |
b99be8fb VZ |
126 | |
127 | #include "wx/arrimpl.cpp" | |
128 | ||
129 | WX_DEFINE_OBJARRAY(wxGridCellCoordsArray) | |
130 | WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray) | |
131 | ||
0f442030 RR |
132 | // ---------------------------------------------------------------------------- |
133 | // events | |
134 | // ---------------------------------------------------------------------------- | |
135 | ||
2e4df4bf VZ |
136 | DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_CLICK) |
137 | DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_CLICK) | |
138 | DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_DCLICK) | |
139 | DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_DCLICK) | |
79dbea21 | 140 | DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_BEGIN_DRAG) |
2e4df4bf VZ |
141 | DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_CLICK) |
142 | DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_CLICK) | |
143 | DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_DCLICK) | |
144 | DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_DCLICK) | |
145 | DEFINE_EVENT_TYPE(wxEVT_GRID_ROW_SIZE) | |
146 | DEFINE_EVENT_TYPE(wxEVT_GRID_COL_SIZE) | |
d4175745 | 147 | DEFINE_EVENT_TYPE(wxEVT_GRID_COL_MOVE) |
2e4df4bf VZ |
148 | DEFINE_EVENT_TYPE(wxEVT_GRID_RANGE_SELECT) |
149 | DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_CHANGE) | |
150 | DEFINE_EVENT_TYPE(wxEVT_GRID_SELECT_CELL) | |
151 | DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_SHOWN) | |
152 | DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_HIDDEN) | |
bf7945ce | 153 | DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_CREATED) |
0f442030 | 154 | |
b99be8fb VZ |
155 | // ---------------------------------------------------------------------------- |
156 | // private classes | |
157 | // ---------------------------------------------------------------------------- | |
158 | ||
86033c4b VZ |
159 | // common base class for various grid subwindows |
160 | class WXDLLIMPEXP_ADV wxGridSubwindow : public wxWindow | |
b99be8fb VZ |
161 | { |
162 | public: | |
86033c4b VZ |
163 | wxGridSubwindow() { m_owner = NULL; } |
164 | wxGridSubwindow(wxGrid *owner, | |
165 | wxWindowID id, | |
166 | const wxPoint& pos, | |
167 | const wxSize& size, | |
168 | int additionalStyle = 0, | |
169 | const wxString& name = wxPanelNameStr) | |
170 | : wxWindow(owner, id, pos, size, | |
760be3f7 | 171 | wxBORDER_NONE | additionalStyle, |
86033c4b VZ |
172 | name) |
173 | { | |
174 | m_owner = owner; | |
175 | } | |
176 | ||
760be3f7 VS |
177 | virtual bool AcceptsFocus() const { return false; } |
178 | ||
86033c4b VZ |
179 | wxGrid *GetOwner() { return m_owner; } |
180 | ||
181 | protected: | |
182 | void OnMouseCaptureLost(wxMouseCaptureLostEvent& event); | |
183 | ||
184 | wxGrid *m_owner; | |
185 | ||
186 | DECLARE_EVENT_TABLE() | |
187 | DECLARE_NO_COPY_CLASS(wxGridSubwindow) | |
188 | }; | |
189 | ||
190 | class WXDLLIMPEXP_ADV wxGridRowLabelWindow : public wxGridSubwindow | |
191 | { | |
192 | public: | |
193 | wxGridRowLabelWindow() { } | |
b99be8fb VZ |
194 | wxGridRowLabelWindow( wxGrid *parent, wxWindowID id, |
195 | const wxPoint &pos, const wxSize &size ); | |
196 | ||
197 | private: | |
b99be8fb VZ |
198 | void OnPaint( wxPaintEvent& event ); |
199 | void OnMouseEvent( wxMouseEvent& event ); | |
b51c3f27 | 200 | void OnMouseWheel( wxMouseEvent& event ); |
b99be8fb VZ |
201 | |
202 | DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow) | |
203 | DECLARE_EVENT_TABLE() | |
22f3361e | 204 | DECLARE_NO_COPY_CLASS(wxGridRowLabelWindow) |
b99be8fb VZ |
205 | }; |
206 | ||
207 | ||
86033c4b | 208 | class WXDLLIMPEXP_ADV wxGridColLabelWindow : public wxGridSubwindow |
b99be8fb VZ |
209 | { |
210 | public: | |
86033c4b | 211 | wxGridColLabelWindow() { } |
b99be8fb VZ |
212 | wxGridColLabelWindow( wxGrid *parent, wxWindowID id, |
213 | const wxPoint &pos, const wxSize &size ); | |
214 | ||
215 | private: | |
a9339fe2 | 216 | void OnPaint( wxPaintEvent& event ); |
b99be8fb | 217 | void OnMouseEvent( wxMouseEvent& event ); |
b51c3f27 | 218 | void OnMouseWheel( wxMouseEvent& event ); |
b99be8fb VZ |
219 | |
220 | DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow) | |
221 | DECLARE_EVENT_TABLE() | |
22f3361e | 222 | DECLARE_NO_COPY_CLASS(wxGridColLabelWindow) |
b99be8fb VZ |
223 | }; |
224 | ||
225 | ||
86033c4b | 226 | class WXDLLIMPEXP_ADV wxGridCornerLabelWindow : public wxGridSubwindow |
b99be8fb VZ |
227 | { |
228 | public: | |
86033c4b | 229 | wxGridCornerLabelWindow() { } |
b99be8fb VZ |
230 | wxGridCornerLabelWindow( wxGrid *parent, wxWindowID id, |
231 | const wxPoint &pos, const wxSize &size ); | |
232 | ||
233 | private: | |
b99be8fb | 234 | void OnMouseEvent( wxMouseEvent& event ); |
b51c3f27 | 235 | void OnMouseWheel( wxMouseEvent& event ); |
b99be8fb VZ |
236 | void OnPaint( wxPaintEvent& event ); |
237 | ||
238 | DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow) | |
239 | DECLARE_EVENT_TABLE() | |
22f3361e | 240 | DECLARE_NO_COPY_CLASS(wxGridCornerLabelWindow) |
b99be8fb VZ |
241 | }; |
242 | ||
86033c4b | 243 | class WXDLLIMPEXP_ADV wxGridWindow : public wxGridSubwindow |
b99be8fb VZ |
244 | { |
245 | public: | |
246 | wxGridWindow() | |
247 | { | |
c2f5b920 DS |
248 | m_rowLabelWin = NULL; |
249 | m_colLabelWin = NULL; | |
b99be8fb VZ |
250 | } |
251 | ||
252 | wxGridWindow( wxGrid *parent, | |
253 | wxGridRowLabelWindow *rowLblWin, | |
254 | wxGridColLabelWindow *colLblWin, | |
255 | wxWindowID id, const wxPoint &pos, const wxSize &size ); | |
b99be8fb VZ |
256 | |
257 | void ScrollWindow( int dx, int dy, const wxRect *rect ); | |
258 | ||
760be3f7 VS |
259 | virtual bool AcceptsFocus() const { return true; } |
260 | ||
b99be8fb | 261 | private: |
b99be8fb VZ |
262 | wxGridRowLabelWindow *m_rowLabelWin; |
263 | wxGridColLabelWindow *m_colLabelWin; | |
264 | ||
265 | void OnPaint( wxPaintEvent &event ); | |
b51c3f27 | 266 | void OnMouseWheel( wxMouseEvent& event ); |
b99be8fb VZ |
267 | void OnMouseEvent( wxMouseEvent& event ); |
268 | void OnKeyDown( wxKeyEvent& ); | |
f6bcfd97 | 269 | void OnKeyUp( wxKeyEvent& ); |
63e2147c | 270 | void OnChar( wxKeyEvent& ); |
2796cce3 | 271 | void OnEraseBackground( wxEraseEvent& ); |
80acaf25 | 272 | void OnFocus( wxFocusEvent& ); |
b99be8fb VZ |
273 | |
274 | DECLARE_DYNAMIC_CLASS(wxGridWindow) | |
275 | DECLARE_EVENT_TABLE() | |
22f3361e | 276 | DECLARE_NO_COPY_CLASS(wxGridWindow) |
b99be8fb VZ |
277 | }; |
278 | ||
2796cce3 | 279 | |
2796cce3 RD |
280 | class wxGridCellEditorEvtHandler : public wxEvtHandler |
281 | { | |
282 | public: | |
2796cce3 | 283 | wxGridCellEditorEvtHandler(wxGrid* grid, wxGridCellEditor* editor) |
140954fd | 284 | : m_grid(grid), |
08dd04d0 JS |
285 | m_editor(editor), |
286 | m_inSetFocus(false) | |
140954fd VZ |
287 | { |
288 | } | |
2796cce3 | 289 | |
140954fd | 290 | void OnKillFocus(wxFocusEvent& event); |
2796cce3 | 291 | void OnKeyDown(wxKeyEvent& event); |
fb0de762 | 292 | void OnChar(wxKeyEvent& event); |
2796cce3 | 293 | |
08dd04d0 JS |
294 | void SetInSetFocus(bool inSetFocus) { m_inSetFocus = inSetFocus; } |
295 | ||
2796cce3 | 296 | private: |
2f024384 DS |
297 | wxGrid *m_grid; |
298 | wxGridCellEditor *m_editor; | |
140954fd | 299 | |
08dd04d0 JS |
300 | // Work around the fact that a focus kill event can be sent to |
301 | // a combobox within a set focus event. | |
302 | bool m_inSetFocus; | |
7448de8d | 303 | |
2796cce3 | 304 | DECLARE_EVENT_TABLE() |
140954fd | 305 | DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler) |
22f3361e | 306 | DECLARE_NO_COPY_CLASS(wxGridCellEditorEvtHandler) |
2796cce3 RD |
307 | }; |
308 | ||
309 | ||
140954fd VZ |
310 | IMPLEMENT_ABSTRACT_CLASS(wxGridCellEditorEvtHandler, wxEvtHandler) |
311 | ||
2796cce3 | 312 | BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler, wxEvtHandler ) |
140954fd | 313 | EVT_KILL_FOCUS( wxGridCellEditorEvtHandler::OnKillFocus ) |
2796cce3 | 314 | EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown ) |
fb0de762 | 315 | EVT_CHAR( wxGridCellEditorEvtHandler::OnChar ) |
2796cce3 RD |
316 | END_EVENT_TABLE() |
317 | ||
318 | ||
758cbedf | 319 | // ---------------------------------------------------------------------------- |
b99be8fb | 320 | // the internal data representation used by wxGridCellAttrProvider |
758cbedf VZ |
321 | // ---------------------------------------------------------------------------- |
322 | ||
323 | // this class stores attributes set for cells | |
12f190b0 | 324 | class WXDLLIMPEXP_ADV wxGridCellAttrData |
b99be8fb VZ |
325 | { |
326 | public: | |
2e9a6788 | 327 | void SetAttr(wxGridCellAttr *attr, int row, int col); |
b99be8fb | 328 | wxGridCellAttr *GetAttr(int row, int col) const; |
4d60017a SN |
329 | void UpdateAttrRows( size_t pos, int numRows ); |
330 | void UpdateAttrCols( size_t pos, int numCols ); | |
b99be8fb VZ |
331 | |
332 | private: | |
333 | // searches for the attr for given cell, returns wxNOT_FOUND if not found | |
334 | int FindIndex(int row, int col) const; | |
335 | ||
336 | wxGridCellWithAttrArray m_attrs; | |
337 | }; | |
338 | ||
758cbedf | 339 | // this class stores attributes set for rows or columns |
12f190b0 | 340 | class WXDLLIMPEXP_ADV wxGridRowOrColAttrData |
758cbedf VZ |
341 | { |
342 | public: | |
ee6694a7 | 343 | // empty ctor to suppress warnings |
2f024384 | 344 | wxGridRowOrColAttrData() {} |
758cbedf VZ |
345 | ~wxGridRowOrColAttrData(); |
346 | ||
347 | void SetAttr(wxGridCellAttr *attr, int rowOrCol); | |
348 | wxGridCellAttr *GetAttr(int rowOrCol) const; | |
4d60017a | 349 | void UpdateAttrRowsOrCols( size_t pos, int numRowsOrCols ); |
758cbedf VZ |
350 | |
351 | private: | |
352 | wxArrayInt m_rowsOrCols; | |
353 | wxArrayAttrs m_attrs; | |
354 | }; | |
355 | ||
356 | // NB: this is just a wrapper around 3 objects: one which stores cell | |
357 | // attributes, and 2 others for row/col ones | |
12f190b0 | 358 | class WXDLLIMPEXP_ADV wxGridCellAttrProviderData |
758cbedf VZ |
359 | { |
360 | public: | |
361 | wxGridCellAttrData m_cellAttrs; | |
362 | wxGridRowOrColAttrData m_rowAttrs, | |
363 | m_colAttrs; | |
364 | }; | |
365 | ||
f2d76237 RD |
366 | |
367 | // ---------------------------------------------------------------------------- | |
368 | // data structures used for the data type registry | |
369 | // ---------------------------------------------------------------------------- | |
370 | ||
b94ae1ea VZ |
371 | struct wxGridDataTypeInfo |
372 | { | |
f2d76237 RD |
373 | wxGridDataTypeInfo(const wxString& typeName, |
374 | wxGridCellRenderer* renderer, | |
375 | wxGridCellEditor* editor) | |
376 | : m_typeName(typeName), m_renderer(renderer), m_editor(editor) | |
2f024384 | 377 | {} |
f2d76237 | 378 | |
39bcce60 VZ |
379 | ~wxGridDataTypeInfo() |
380 | { | |
381 | wxSafeDecRef(m_renderer); | |
382 | wxSafeDecRef(m_editor); | |
383 | } | |
f2d76237 RD |
384 | |
385 | wxString m_typeName; | |
386 | wxGridCellRenderer* m_renderer; | |
387 | wxGridCellEditor* m_editor; | |
22f3361e VZ |
388 | |
389 | DECLARE_NO_COPY_CLASS(wxGridDataTypeInfo) | |
f2d76237 RD |
390 | }; |
391 | ||
392 | ||
d5d29b8a | 393 | WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridDataTypeInfo*, wxGridDataTypeInfoArray, |
160ba750 | 394 | class WXDLLIMPEXP_ADV); |
f2d76237 RD |
395 | |
396 | ||
12f190b0 | 397 | class WXDLLIMPEXP_ADV wxGridTypeRegistry |
b94ae1ea | 398 | { |
f2d76237 | 399 | public: |
bec70262 | 400 | wxGridTypeRegistry() {} |
f2d76237 | 401 | ~wxGridTypeRegistry(); |
b94ae1ea | 402 | |
f2d76237 RD |
403 | void RegisterDataType(const wxString& typeName, |
404 | wxGridCellRenderer* renderer, | |
405 | wxGridCellEditor* editor); | |
c4608a8a VZ |
406 | |
407 | // find one of already registered data types | |
408 | int FindRegisteredDataType(const wxString& typeName); | |
409 | ||
410 | // try to FindRegisteredDataType(), if this fails and typeName is one of | |
411 | // standard typenames, register it and return its index | |
f2d76237 | 412 | int FindDataType(const wxString& typeName); |
c4608a8a VZ |
413 | |
414 | // try to FindDataType(), if it fails see if it is not one of already | |
415 | // registered data types with some params in which case clone the | |
416 | // registered data type and set params for it | |
417 | int FindOrCloneDataType(const wxString& typeName); | |
418 | ||
f2d76237 RD |
419 | wxGridCellRenderer* GetRenderer(int index); |
420 | wxGridCellEditor* GetEditor(int index); | |
421 | ||
422 | private: | |
423 | wxGridDataTypeInfoArray m_typeinfo; | |
424 | }; | |
425 | ||
bec70262 VZ |
426 | // ---------------------------------------------------------------------------- |
427 | // operations classes abstracting the difference between operating on rows and | |
428 | // columns | |
429 | // ---------------------------------------------------------------------------- | |
430 | ||
431 | // This class allows to write a function only once because by using its methods | |
432 | // it will apply to both columns and rows. | |
433 | // | |
434 | // This is an abstract interface definition, the two concrete implementations | |
435 | // below should be used when working with rows and columns respectively. | |
436 | class wxGridOperations | |
437 | { | |
438 | public: | |
439 | // Returns the operations in the other direction, i.e. wxGridRowOperations | |
440 | // if this object is a wxGridColumnOperations and vice versa. | |
441 | virtual wxGridOperations& Dual() const = 0; | |
442 | ||
443 | // Return the number of rows or columns. | |
444 | virtual int GetNumberOfLines(const wxGrid *grid) const = 0; | |
445 | ||
446 | // Return the selection mode which allows selecting rows or columns. | |
447 | virtual wxGrid::wxGridSelectionModes GetSelectionMode() const = 0; | |
448 | ||
449 | // Make a wxGridCellCoords from the given components: thisDir is row or | |
450 | // column and otherDir is column or row | |
451 | virtual wxGridCellCoords MakeCoords(int thisDir, int otherDir) const = 0; | |
452 | ||
453 | // Calculate the scrolled position of the given abscissa or ordinate. | |
454 | virtual int CalcScrolledPosition(wxGrid *grid, int pos) const = 0; | |
455 | ||
456 | // Selects the horizontal or vertical component from the given object. | |
10a4531d | 457 | virtual int Select(const wxGridCellCoords& coords) const = 0; |
bec70262 VZ |
458 | virtual int Select(const wxPoint& pt) const = 0; |
459 | virtual int Select(const wxSize& sz) const = 0; | |
460 | virtual int Select(const wxRect& r) const = 0; | |
461 | virtual int& Select(wxRect& r) const = 0; | |
462 | ||
463 | // Returns width or height of the rectangle | |
464 | virtual int& SelectSize(wxRect& r) const = 0; | |
465 | ||
466 | // Make a wxSize such that Select() applied to it returns first component | |
467 | virtual wxSize MakeSize(int first, int second) const = 0; | |
468 | ||
10a4531d VZ |
469 | // Sets the row or column component of the given cell coordinates |
470 | virtual void Set(wxGridCellCoords& coords, int line) const = 0; | |
471 | ||
bec70262 VZ |
472 | |
473 | // Draws a line parallel to the row or column, i.e. horizontal or vertical: | |
8a3e536c | 474 | // pos is the horizontal or vertical position of the line and start and end |
bec70262 VZ |
475 | // are the coordinates of the line extremities in the other direction |
476 | virtual void | |
477 | DrawParallelLine(wxDC& dc, int start, int end, int pos) const = 0; | |
478 | ||
8a3e536c VZ |
479 | // Draw a horizontal or vertical line across the given rectangle |
480 | // (this is implemented in terms of above and uses Select() to extract | |
481 | // start and end from the given rectangle) | |
482 | void DrawParallelLineInRect(wxDC& dc, const wxRect& rect, int pos) const | |
483 | { | |
484 | const int posStart = Select(rect.GetPosition()); | |
485 | DrawParallelLine(dc, posStart, posStart + Select(rect.GetSize()), pos); | |
486 | } | |
487 | ||
bec70262 VZ |
488 | |
489 | // Return the row or column at the given pixel coordinate. | |
10a4531d VZ |
490 | virtual int |
491 | PosToLine(const wxGrid *grid, int pos, bool clip = false) const = 0; | |
bec70262 VZ |
492 | |
493 | // Get the top/left position, in pixels, of the given row or column | |
494 | virtual int GetLineStartPos(const wxGrid *grid, int line) const = 0; | |
495 | ||
10a4531d VZ |
496 | // Get the bottom/right position, in pixels, of the given row or column |
497 | virtual int GetLineEndPos(const wxGrid *grid, int line) const = 0; | |
498 | ||
499 | // Get the height/width of the given row/column | |
500 | virtual int GetLineSize(const wxGrid *grid, int line) const = 0; | |
501 | ||
bec70262 VZ |
502 | // Get wxGrid::m_rowBottoms/m_colRights array |
503 | virtual const wxArrayInt& GetLineEnds(const wxGrid *grid) const = 0; | |
504 | ||
505 | // Get default height row height or column width | |
506 | virtual int GetDefaultLineSize(const wxGrid *grid) const = 0; | |
507 | ||
508 | // Return the minimal acceptable row height or column width | |
509 | virtual int GetMinimalAcceptableLineSize(const wxGrid *grid) const = 0; | |
510 | ||
511 | // Return the minimal row height or column width | |
512 | virtual int GetMinimalLineSize(const wxGrid *grid, int line) const = 0; | |
513 | ||
514 | // Set the row height or column width | |
515 | virtual void SetLineSize(wxGrid *grid, int line, int size) const = 0; | |
516 | ||
10a4531d VZ |
517 | // True if rows/columns can be resized by user |
518 | virtual bool CanResizeLines(const wxGrid *grid) const = 0; | |
519 | ||
bec70262 VZ |
520 | |
521 | // Return the index of the line at the given position | |
522 | // | |
523 | // NB: currently this is always identity for the rows as reordering is only | |
524 | // implemented for the lines | |
525 | virtual int GetLineAt(const wxGrid *grid, int line) const = 0; | |
526 | ||
527 | ||
528 | // Get the row or column label window | |
529 | virtual wxWindow *GetHeaderWindow(wxGrid *grid) const = 0; | |
530 | ||
531 | // Get the width or height of the row or column label window | |
532 | virtual int GetHeaderWindowSize(wxGrid *grid) const = 0; | |
10a4531d VZ |
533 | |
534 | ||
535 | // This class is never used polymorphically but give it a virtual dtor | |
536 | // anyhow to suppress g++ complaints about it | |
537 | virtual ~wxGridOperations() { } | |
bec70262 VZ |
538 | }; |
539 | ||
540 | class wxGridRowOperations : public wxGridOperations | |
541 | { | |
542 | public: | |
543 | virtual wxGridOperations& Dual() const; | |
544 | ||
545 | virtual int GetNumberOfLines(const wxGrid *grid) const | |
546 | { return grid->GetNumberRows(); } | |
547 | ||
548 | virtual wxGrid::wxGridSelectionModes GetSelectionMode() const | |
549 | { return wxGrid::wxGridSelectRows; } | |
550 | ||
551 | virtual wxGridCellCoords MakeCoords(int thisDir, int otherDir) const | |
552 | { return wxGridCellCoords(thisDir, otherDir); } | |
553 | ||
554 | virtual int CalcScrolledPosition(wxGrid *grid, int pos) const | |
555 | { return grid->CalcScrolledPosition(wxPoint(pos, 0)).x; } | |
556 | ||
10a4531d | 557 | virtual int Select(const wxGridCellCoords& c) const { return c.GetRow(); } |
bec70262 VZ |
558 | virtual int Select(const wxPoint& pt) const { return pt.x; } |
559 | virtual int Select(const wxSize& sz) const { return sz.x; } | |
560 | virtual int Select(const wxRect& r) const { return r.x; } | |
561 | virtual int& Select(wxRect& r) const { return r.x; } | |
562 | virtual int& SelectSize(wxRect& r) const { return r.width; } | |
563 | virtual wxSize MakeSize(int first, int second) const | |
564 | { return wxSize(first, second); } | |
10a4531d VZ |
565 | virtual void Set(wxGridCellCoords& coords, int line) const |
566 | { coords.SetRow(line); } | |
bec70262 VZ |
567 | |
568 | virtual void DrawParallelLine(wxDC& dc, int start, int end, int pos) const | |
569 | { dc.DrawLine(start, pos, end, pos); } | |
570 | ||
10a4531d | 571 | virtual int PosToLine(const wxGrid *grid, int pos, bool clip = false) const |
bec70262 VZ |
572 | { return grid->YToRow(pos, clip); } |
573 | virtual int GetLineStartPos(const wxGrid *grid, int line) const | |
574 | { return grid->GetRowTop(line); } | |
10a4531d VZ |
575 | virtual int GetLineEndPos(const wxGrid *grid, int line) const |
576 | { return grid->GetRowBottom(line); } | |
577 | virtual int GetLineSize(const wxGrid *grid, int line) const | |
578 | { return grid->GetRowHeight(line); } | |
bec70262 VZ |
579 | virtual const wxArrayInt& GetLineEnds(const wxGrid *grid) const |
580 | { return grid->m_rowBottoms; } | |
581 | virtual int GetDefaultLineSize(const wxGrid *grid) const | |
582 | { return grid->GetDefaultRowSize(); } | |
583 | virtual int GetMinimalAcceptableLineSize(const wxGrid *grid) const | |
584 | { return grid->GetRowMinimalAcceptableHeight(); } | |
585 | virtual int GetMinimalLineSize(const wxGrid *grid, int line) const | |
586 | { return grid->GetRowMinimalHeight(line); } | |
587 | virtual void SetLineSize(wxGrid *grid, int line, int size) const | |
588 | { grid->SetRowSize(line, size); } | |
10a4531d VZ |
589 | virtual bool CanResizeLines(const wxGrid *grid) const |
590 | { return grid->CanDragRowSize(); } | |
bec70262 VZ |
591 | |
592 | virtual int GetLineAt(const wxGrid * WXUNUSED(grid), int line) const | |
593 | { return line; } // TODO: implement row reordering | |
594 | ||
595 | virtual wxWindow *GetHeaderWindow(wxGrid *grid) const | |
596 | { return grid->GetGridRowLabelWindow(); } | |
597 | virtual int GetHeaderWindowSize(wxGrid *grid) const | |
598 | { return grid->GetRowLabelSize(); } | |
599 | }; | |
600 | ||
601 | class wxGridColumnOperations : public wxGridOperations | |
602 | { | |
603 | public: | |
604 | virtual wxGridOperations& Dual() const; | |
605 | ||
606 | virtual int GetNumberOfLines(const wxGrid *grid) const | |
607 | { return grid->GetNumberCols(); } | |
608 | ||
609 | virtual wxGrid::wxGridSelectionModes GetSelectionMode() const | |
610 | { return wxGrid::wxGridSelectColumns; } | |
611 | ||
612 | virtual wxGridCellCoords MakeCoords(int thisDir, int otherDir) const | |
613 | { return wxGridCellCoords(otherDir, thisDir); } | |
614 | ||
615 | virtual int CalcScrolledPosition(wxGrid *grid, int pos) const | |
616 | { return grid->CalcScrolledPosition(wxPoint(0, pos)).y; } | |
617 | ||
10a4531d | 618 | virtual int Select(const wxGridCellCoords& c) const { return c.GetCol(); } |
bec70262 VZ |
619 | virtual int Select(const wxPoint& pt) const { return pt.y; } |
620 | virtual int Select(const wxSize& sz) const { return sz.y; } | |
621 | virtual int Select(const wxRect& r) const { return r.y; } | |
622 | virtual int& Select(wxRect& r) const { return r.y; } | |
623 | virtual int& SelectSize(wxRect& r) const { return r.height; } | |
624 | virtual wxSize MakeSize(int first, int second) const | |
625 | { return wxSize(second, first); } | |
10a4531d VZ |
626 | virtual void Set(wxGridCellCoords& coords, int line) const |
627 | { coords.SetCol(line); } | |
bec70262 VZ |
628 | |
629 | virtual void DrawParallelLine(wxDC& dc, int start, int end, int pos) const | |
630 | { dc.DrawLine(pos, start, pos, end); } | |
631 | ||
10a4531d | 632 | virtual int PosToLine(const wxGrid *grid, int pos, bool clip = false) const |
bec70262 VZ |
633 | { return grid->XToCol(pos, clip); } |
634 | virtual int GetLineStartPos(const wxGrid *grid, int line) const | |
635 | { return grid->GetColLeft(line); } | |
10a4531d VZ |
636 | virtual int GetLineEndPos(const wxGrid *grid, int line) const |
637 | { return grid->GetColRight(line); } | |
638 | virtual int GetLineSize(const wxGrid *grid, int line) const | |
639 | { return grid->GetColWidth(line); } | |
bec70262 VZ |
640 | virtual const wxArrayInt& GetLineEnds(const wxGrid *grid) const |
641 | { return grid->m_colRights; } | |
642 | virtual int GetDefaultLineSize(const wxGrid *grid) const | |
643 | { return grid->GetDefaultColSize(); } | |
644 | virtual int GetMinimalAcceptableLineSize(const wxGrid *grid) const | |
645 | { return grid->GetColMinimalAcceptableWidth(); } | |
646 | virtual int GetMinimalLineSize(const wxGrid *grid, int line) const | |
647 | { return grid->GetColMinimalWidth(line); } | |
648 | virtual void SetLineSize(wxGrid *grid, int line, int size) const | |
649 | { grid->SetColSize(line, size); } | |
10a4531d VZ |
650 | virtual bool CanResizeLines(const wxGrid *grid) const |
651 | { return grid->CanDragColSize(); } | |
bec70262 VZ |
652 | |
653 | virtual int GetLineAt(const wxGrid *grid, int line) const | |
654 | { return grid->GetColAt(line); } | |
655 | ||
656 | virtual wxWindow *GetHeaderWindow(wxGrid *grid) const | |
657 | { return grid->GetGridColLabelWindow(); } | |
658 | virtual int GetHeaderWindowSize(wxGrid *grid) const | |
659 | { return grid->GetColLabelSize(); } | |
660 | }; | |
661 | ||
662 | wxGridOperations& wxGridRowOperations::Dual() const | |
663 | { | |
664 | static wxGridColumnOperations s_colOper; | |
665 | ||
666 | return s_colOper; | |
667 | } | |
668 | ||
669 | wxGridOperations& wxGridColumnOperations::Dual() const | |
670 | { | |
671 | static wxGridRowOperations s_rowOper; | |
672 | ||
673 | return s_rowOper; | |
674 | } | |
675 | ||
10a4531d VZ |
676 | // This class abstracts the difference between operations going forward |
677 | // (down/right) and backward (up/left) and allows to use the same code for | |
678 | // functions which differ only in the direction of grid traversal | |
679 | // | |
680 | // Like wxGridOperations it's an ABC with two concrete subclasses below. Unlike | |
681 | // it, this is a normal object and not just a function dispatch table and has a | |
682 | // non-default ctor. | |
683 | // | |
684 | // Note: the explanation of this discrepancy is the existence of (very useful) | |
685 | // Dual() method in wxGridOperations which forces us to make wxGridOperations a | |
686 | // function dispatcher only. | |
687 | class wxGridDirectionOperations | |
688 | { | |
689 | public: | |
690 | // The oper parameter to ctor selects whether we work with rows or columns | |
691 | wxGridDirectionOperations(wxGrid *grid, const wxGridOperations& oper) | |
692 | : m_grid(grid), | |
693 | m_oper(oper) | |
694 | { | |
695 | } | |
696 | ||
697 | // Check if the component of this point in our direction is at the | |
698 | // boundary, i.e. is the first/last row/column | |
699 | virtual bool IsAtBoundary(const wxGridCellCoords& coords) const = 0; | |
700 | ||
701 | // Increment the component of this point in our direction | |
702 | virtual void Advance(wxGridCellCoords& coords) const = 0; | |
703 | ||
704 | // Find the line at the given distance, in pixels, away from this one | |
705 | // (this uses clipping, i.e. anything after the last line is counted as the | |
706 | // last one and anything before the first one as 0) | |
707 | virtual int MoveByPixelDistance(int line, int distance) const = 0; | |
708 | ||
709 | // This class is never used polymorphically but give it a virtual dtor | |
710 | // anyhow to suppress g++ complaints about it | |
711 | virtual ~wxGridDirectionOperations() { } | |
712 | ||
713 | protected: | |
714 | wxGrid * const m_grid; | |
715 | const wxGridOperations& m_oper; | |
716 | }; | |
717 | ||
718 | class wxGridBackwardOperations : public wxGridDirectionOperations | |
719 | { | |
720 | public: | |
721 | wxGridBackwardOperations(wxGrid *grid, const wxGridOperations& oper) | |
722 | : wxGridDirectionOperations(grid, oper) | |
723 | { | |
724 | } | |
725 | ||
726 | virtual bool IsAtBoundary(const wxGridCellCoords& coords) const | |
727 | { | |
728 | wxASSERT_MSG( m_oper.Select(coords) >= 0, "invalid row/column" ); | |
729 | ||
730 | return m_oper.Select(coords) == 0; | |
731 | } | |
732 | ||
733 | virtual void Advance(wxGridCellCoords& coords) const | |
734 | { | |
735 | wxASSERT( !IsAtBoundary(coords) ); | |
736 | ||
737 | m_oper.Set(coords, m_oper.Select(coords) - 1); | |
738 | } | |
739 | ||
740 | virtual int MoveByPixelDistance(int line, int distance) const | |
741 | { | |
742 | int pos = m_oper.GetLineStartPos(m_grid, line); | |
743 | return m_oper.PosToLine(m_grid, pos - distance + 1, true); | |
744 | } | |
745 | }; | |
746 | ||
747 | class wxGridForwardOperations : public wxGridDirectionOperations | |
748 | { | |
749 | public: | |
750 | wxGridForwardOperations(wxGrid *grid, const wxGridOperations& oper) | |
751 | : wxGridDirectionOperations(grid, oper), | |
752 | m_numLines(oper.GetNumberOfLines(grid)) | |
753 | { | |
754 | } | |
755 | ||
756 | virtual bool IsAtBoundary(const wxGridCellCoords& coords) const | |
757 | { | |
758 | wxASSERT_MSG( m_oper.Select(coords) < m_numLines, "invalid row/column" ); | |
759 | ||
760 | return m_oper.Select(coords) == m_numLines - 1; | |
761 | } | |
762 | ||
763 | virtual void Advance(wxGridCellCoords& coords) const | |
764 | { | |
765 | wxASSERT( !IsAtBoundary(coords) ); | |
766 | ||
767 | m_oper.Set(coords, m_oper.Select(coords) + 1); | |
768 | } | |
769 | ||
770 | virtual int MoveByPixelDistance(int line, int distance) const | |
771 | { | |
772 | int pos = m_oper.GetLineStartPos(m_grid, line); | |
773 | return m_oper.PosToLine(m_grid, pos + distance, true); | |
774 | } | |
775 | ||
776 | private: | |
777 | const int m_numLines; | |
778 | }; | |
bec70262 | 779 | |
0a976765 VZ |
780 | // ---------------------------------------------------------------------------- |
781 | // globals | |
782 | // ---------------------------------------------------------------------------- | |
783 | ||
784 | //#define DEBUG_ATTR_CACHE | |
785 | #ifdef DEBUG_ATTR_CACHE | |
786 | static size_t gs_nAttrCacheHits = 0; | |
787 | static size_t gs_nAttrCacheMisses = 0; | |
2f024384 | 788 | #endif |
f85afd4e | 789 | |
43947979 VZ |
790 | // ---------------------------------------------------------------------------- |
791 | // constants | |
792 | // ---------------------------------------------------------------------------- | |
793 | ||
f85afd4e | 794 | wxGridCellCoords wxGridNoCellCoords( -1, -1 ); |
2f024384 | 795 | wxRect wxGridNoCellRect( -1, -1, -1, -1 ); |
f85afd4e | 796 | |
8a3e536c VZ |
797 | namespace |
798 | { | |
799 | ||
f0102d2a | 800 | // scroll line size |
8a3e536c VZ |
801 | const size_t GRID_SCROLL_LINE_X = 15; |
802 | const size_t GRID_SCROLL_LINE_Y = GRID_SCROLL_LINE_X; | |
f85afd4e | 803 | |
43947979 VZ |
804 | // the size of hash tables used a bit everywhere (the max number of elements |
805 | // in these hash tables is the number of rows/columns) | |
8a3e536c VZ |
806 | const int GRID_HASH_SIZE = 100; |
807 | ||
808 | // the minimal distance in pixels the mouse needs to move to start a drag | |
809 | // operation | |
810 | const int DRAG_SENSITIVITY = 3; | |
811 | ||
812 | } // anonymous namespace | |
43947979 | 813 | |
1372f8cc VZ |
814 | // ---------------------------------------------------------------------------- |
815 | // private helpers | |
816 | // ---------------------------------------------------------------------------- | |
817 | ||
818 | namespace | |
819 | { | |
820 | ||
821 | // ensure that first is less or equal to second, swapping the values if | |
822 | // necessary | |
823 | void EnsureFirstLessThanSecond(int& first, int& second) | |
824 | { | |
825 | if ( first > second ) | |
826 | wxSwap(first, second); | |
827 | } | |
828 | ||
829 | } // anonymous namespace | |
830 | ||
ab79958a VZ |
831 | // ============================================================================ |
832 | // implementation | |
833 | // ============================================================================ | |
834 | ||
2796cce3 RD |
835 | // ---------------------------------------------------------------------------- |
836 | // wxGridCellEditor | |
837 | // ---------------------------------------------------------------------------- | |
838 | ||
839 | wxGridCellEditor::wxGridCellEditor() | |
840 | { | |
841 | m_control = NULL; | |
1bd71df9 | 842 | m_attr = NULL; |
2796cce3 RD |
843 | } |
844 | ||
2796cce3 RD |
845 | wxGridCellEditor::~wxGridCellEditor() |
846 | { | |
847 | Destroy(); | |
848 | } | |
849 | ||
508011ce VZ |
850 | void wxGridCellEditor::Create(wxWindow* WXUNUSED(parent), |
851 | wxWindowID WXUNUSED(id), | |
852 | wxEvtHandler* evtHandler) | |
853 | { | |
189d0213 | 854 | if ( evtHandler ) |
508011ce VZ |
855 | m_control->PushEventHandler(evtHandler); |
856 | } | |
2796cce3 | 857 | |
189d0213 VZ |
858 | void wxGridCellEditor::PaintBackground(const wxRect& rectCell, |
859 | wxGridCellAttr *attr) | |
860 | { | |
861 | // erase the background because we might not fill the cell | |
862 | wxClientDC dc(m_control->GetParent()); | |
b819b854 JS |
863 | wxGridWindow* gridWindow = wxDynamicCast(m_control->GetParent(), wxGridWindow); |
864 | if (gridWindow) | |
865 | gridWindow->GetOwner()->PrepareDC(dc); | |
ef5df12b | 866 | |
189d0213 | 867 | dc.SetPen(*wxTRANSPARENT_PEN); |
ff72f628 | 868 | dc.SetBrush(wxBrush(attr->GetBackgroundColour())); |
189d0213 VZ |
869 | dc.DrawRectangle(rectCell); |
870 | ||
871 | // redraw the control we just painted over | |
872 | m_control->Refresh(); | |
873 | } | |
874 | ||
2796cce3 RD |
875 | void wxGridCellEditor::Destroy() |
876 | { | |
508011ce VZ |
877 | if (m_control) |
878 | { | |
a9339fe2 | 879 | m_control->PopEventHandler( true /* delete it*/ ); |
b94ae1ea | 880 | |
2796cce3 RD |
881 | m_control->Destroy(); |
882 | m_control = NULL; | |
883 | } | |
884 | } | |
885 | ||
3da93aae | 886 | void wxGridCellEditor::Show(bool show, wxGridCellAttr *attr) |
2796cce3 | 887 | { |
2f024384 DS |
888 | wxASSERT_MSG(m_control, wxT("The wxGridCellEditor must be created first!")); |
889 | ||
2796cce3 | 890 | m_control->Show(show); |
3da93aae VZ |
891 | |
892 | if ( show ) | |
893 | { | |
894 | // set the colours/fonts if we have any | |
895 | if ( attr ) | |
896 | { | |
f2d76237 RD |
897 | m_colFgOld = m_control->GetForegroundColour(); |
898 | m_control->SetForegroundColour(attr->GetTextColour()); | |
3da93aae | 899 | |
f2d76237 RD |
900 | m_colBgOld = m_control->GetBackgroundColour(); |
901 | m_control->SetBackgroundColour(attr->GetBackgroundColour()); | |
3da93aae | 902 | |
0e871ad0 | 903 | // Workaround for GTK+1 font setting problem on some platforms |
ea2d542c | 904 | #if !defined(__WXGTK__) || defined(__WXGTK20__) |
f2d76237 RD |
905 | m_fontOld = m_control->GetFont(); |
906 | m_control->SetFont(attr->GetFont()); | |
ea2d542c | 907 | #endif |
a9339fe2 | 908 | |
3da93aae VZ |
909 | // can't do anything more in the base class version, the other |
910 | // attributes may only be used by the derived classes | |
911 | } | |
912 | } | |
913 | else | |
914 | { | |
915 | // restore the standard colours fonts | |
916 | if ( m_colFgOld.Ok() ) | |
917 | { | |
918 | m_control->SetForegroundColour(m_colFgOld); | |
919 | m_colFgOld = wxNullColour; | |
920 | } | |
921 | ||
922 | if ( m_colBgOld.Ok() ) | |
923 | { | |
924 | m_control->SetBackgroundColour(m_colBgOld); | |
925 | m_colBgOld = wxNullColour; | |
926 | } | |
2f024384 | 927 | |
0e871ad0 | 928 | // Workaround for GTK+1 font setting problem on some platforms |
ea2d542c | 929 | #if !defined(__WXGTK__) || defined(__WXGTK20__) |
3da93aae VZ |
930 | if ( m_fontOld.Ok() ) |
931 | { | |
932 | m_control->SetFont(m_fontOld); | |
933 | m_fontOld = wxNullFont; | |
934 | } | |
ea2d542c | 935 | #endif |
3da93aae | 936 | } |
2796cce3 RD |
937 | } |
938 | ||
939 | void wxGridCellEditor::SetSize(const wxRect& rect) | |
940 | { | |
2f024384 DS |
941 | wxASSERT_MSG(m_control, wxT("The wxGridCellEditor must be created first!")); |
942 | ||
28a77bc4 | 943 | m_control->SetSize(rect, wxSIZE_ALLOW_MINUS_ONE); |
2796cce3 RD |
944 | } |
945 | ||
946 | void wxGridCellEditor::HandleReturn(wxKeyEvent& event) | |
947 | { | |
948 | event.Skip(); | |
949 | } | |
950 | ||
f6bcfd97 BP |
951 | bool wxGridCellEditor::IsAcceptedKey(wxKeyEvent& event) |
952 | { | |
63e2147c RD |
953 | bool ctrl = event.ControlDown(); |
954 | bool alt = event.AltDown(); | |
2f024384 | 955 | |
63e2147c RD |
956 | #ifdef __WXMAC__ |
957 | // On the Mac the Alt key is more like shift and is used for entry of | |
958 | // valid characters, so check for Ctrl and Meta instead. | |
959 | alt = event.MetaDown(); | |
960 | #endif | |
961 | ||
962 | // Assume it's not a valid char if ctrl or alt is down, but if both are | |
963 | // down then it may be because of an AltGr key combination, so let them | |
964 | // through in that case. | |
965 | if ((ctrl || alt) && !(ctrl && alt)) | |
966 | return false; | |
902725ee | 967 | |
2f024384 | 968 | #if wxUSE_UNICODE |
63e2147c RD |
969 | // if the unicode key code is not really a unicode character (it may |
970 | // be a function key or etc., the platforms appear to always give us a | |
2f024384 | 971 | // small value in this case) then fallback to the ASCII key code but |
63e2147c | 972 | // don't do anything for function keys or etc. |
e822d1bd VZ |
973 | if ( event.GetUnicodeKey() > 127 && event.GetKeyCode() > 127 ) |
974 | return false; | |
2f024384 | 975 | #else |
e822d1bd VZ |
976 | if ( event.GetKeyCode() > 255 ) |
977 | return false; | |
2f024384 DS |
978 | #endif |
979 | ||
e822d1bd | 980 | return true; |
f6bcfd97 | 981 | } |
2796cce3 | 982 | |
2c9a89e0 RD |
983 | void wxGridCellEditor::StartingKey(wxKeyEvent& event) |
984 | { | |
e195a54c VZ |
985 | event.Skip(); |
986 | } | |
2c9a89e0 | 987 | |
e195a54c VZ |
988 | void wxGridCellEditor::StartingClick() |
989 | { | |
b54ba671 | 990 | } |
2c9a89e0 | 991 | |
3a8c693a VZ |
992 | #if wxUSE_TEXTCTRL |
993 | ||
b54ba671 VZ |
994 | // ---------------------------------------------------------------------------- |
995 | // wxGridCellTextEditor | |
996 | // ---------------------------------------------------------------------------- | |
2c9a89e0 | 997 | |
2796cce3 RD |
998 | wxGridCellTextEditor::wxGridCellTextEditor() |
999 | { | |
c4608a8a | 1000 | m_maxChars = 0; |
2796cce3 RD |
1001 | } |
1002 | ||
1003 | void wxGridCellTextEditor::Create(wxWindow* parent, | |
1004 | wxWindowID id, | |
2796cce3 RD |
1005 | wxEvtHandler* evtHandler) |
1006 | { | |
1d5fda5d VZ |
1007 | DoCreate(parent, id, evtHandler); |
1008 | } | |
1009 | ||
1010 | void wxGridCellTextEditor::DoCreate(wxWindow* parent, | |
1011 | wxWindowID id, | |
1012 | wxEvtHandler* evtHandler, | |
1013 | long style) | |
1014 | { | |
053ac76f | 1015 | style |= wxTE_PROCESS_ENTER | wxTE_PROCESS_TAB | wxNO_BORDER; |
1d5fda5d VZ |
1016 | |
1017 | m_control = new wxTextCtrl(parent, id, wxEmptyString, | |
1018 | wxDefaultPosition, wxDefaultSize, | |
1019 | style); | |
2796cce3 | 1020 | |
46a5010a | 1021 | // set max length allowed in the textctrl, if the parameter was set |
1d5fda5d | 1022 | if ( m_maxChars != 0 ) |
46a5010a | 1023 | { |
1d5fda5d | 1024 | Text()->SetMaxLength(m_maxChars); |
46a5010a | 1025 | } |
c4608a8a | 1026 | |
508011ce | 1027 | wxGridCellEditor::Create(parent, id, evtHandler); |
2796cce3 RD |
1028 | } |
1029 | ||
189d0213 VZ |
1030 | void wxGridCellTextEditor::PaintBackground(const wxRect& WXUNUSED(rectCell), |
1031 | wxGridCellAttr * WXUNUSED(attr)) | |
1032 | { | |
a9339fe2 DS |
1033 | // as we fill the entire client area, |
1034 | // don't do anything here to minimize flicker | |
189d0213 | 1035 | } |
2796cce3 | 1036 | |
99306db2 VZ |
1037 | void wxGridCellTextEditor::SetSize(const wxRect& rectOrig) |
1038 | { | |
1039 | wxRect rect(rectOrig); | |
1040 | ||
2f024384 | 1041 | // Make the edit control large enough to allow for internal margins |
99306db2 | 1042 | // |
2f024384 | 1043 | // TODO: remove this if the text ctrl sizing is improved esp. for unix |
99306db2 VZ |
1044 | // |
1045 | #if defined(__WXGTK__) | |
b0e282b3 RR |
1046 | if (rect.x != 0) |
1047 | { | |
1048 | rect.x += 1; | |
1049 | rect.y += 1; | |
1050 | rect.width -= 1; | |
1051 | rect.height -= 1; | |
1052 | } | |
d4175745 VZ |
1053 | #elif defined(__WXMSW__) |
1054 | if ( rect.x == 0 ) | |
1055 | rect.x += 2; | |
1056 | else | |
1057 | rect.x += 3; | |
84912ef8 | 1058 | |
d4175745 VZ |
1059 | if ( rect.y == 0 ) |
1060 | rect.y += 2; | |
1061 | else | |
1062 | rect.y += 3; | |
1063 | ||
1064 | rect.width -= 2; | |
1065 | rect.height -= 2; | |
a0948e27 | 1066 | #else |
d4175745 | 1067 | int extra_x = ( rect.x > 2 ) ? 2 : 1; |
2f024384 | 1068 | int extra_y = ( rect.y > 2 ) ? 2 : 1; |
a0948e27 | 1069 | |
d4175745 VZ |
1070 | #if defined(__WXMOTIF__) |
1071 | extra_x *= 2; | |
1072 | extra_y *= 2; | |
1073 | #endif | |
2f024384 | 1074 | |
cb105ad4 SN |
1075 | rect.SetLeft( wxMax(0, rect.x - extra_x) ); |
1076 | rect.SetTop( wxMax(0, rect.y - extra_y) ); | |
2f024384 DS |
1077 | rect.SetRight( rect.GetRight() + 2 * extra_x ); |
1078 | rect.SetBottom( rect.GetBottom() + 2 * extra_y ); | |
d4175745 | 1079 | #endif |
99306db2 VZ |
1080 | |
1081 | wxGridCellEditor::SetSize(rect); | |
1082 | } | |
1083 | ||
3da93aae | 1084 | void wxGridCellTextEditor::BeginEdit(int row, int col, wxGrid* grid) |
2796cce3 | 1085 | { |
2f024384 | 1086 | wxASSERT_MSG(m_control, wxT("The wxGridCellEditor must be created first!")); |
2796cce3 RD |
1087 | |
1088 | m_startValue = grid->GetTable()->GetValue(row, col); | |
816be743 VZ |
1089 | |
1090 | DoBeginEdit(m_startValue); | |
1091 | } | |
1092 | ||
1093 | void wxGridCellTextEditor::DoBeginEdit(const wxString& startValue) | |
1094 | { | |
1095 | Text()->SetValue(startValue); | |
b54ba671 | 1096 | Text()->SetInsertionPointEnd(); |
2f024384 | 1097 | Text()->SetSelection(-1, -1); |
b54ba671 | 1098 | Text()->SetFocus(); |
2796cce3 RD |
1099 | } |
1100 | ||
ccdee36f | 1101 | bool wxGridCellTextEditor::EndEdit(int row, int col, wxGrid* grid) |
2796cce3 | 1102 | { |
2f024384 | 1103 | wxASSERT_MSG(m_control, wxT("The wxGridCellEditor must be created first!")); |
2796cce3 | 1104 | |
ca65c044 | 1105 | bool changed = false; |
b54ba671 | 1106 | wxString value = Text()->GetValue(); |
2796cce3 | 1107 | if (value != m_startValue) |
ca65c044 | 1108 | changed = true; |
2796cce3 RD |
1109 | |
1110 | if (changed) | |
1111 | grid->GetTable()->SetValue(row, col, value); | |
2c9a89e0 | 1112 | |
3da93aae | 1113 | m_startValue = wxEmptyString; |
a9339fe2 | 1114 | |
7b519e5e JS |
1115 | // No point in setting the text of the hidden control |
1116 | //Text()->SetValue(m_startValue); | |
2796cce3 RD |
1117 | |
1118 | return changed; | |
1119 | } | |
1120 | ||
2796cce3 RD |
1121 | void wxGridCellTextEditor::Reset() |
1122 | { | |
2f024384 | 1123 | wxASSERT_MSG(m_control, wxT("The wxGridCellEditor must be created first!")); |
2796cce3 | 1124 | |
816be743 VZ |
1125 | DoReset(m_startValue); |
1126 | } | |
1127 | ||
1128 | void wxGridCellTextEditor::DoReset(const wxString& startValue) | |
1129 | { | |
1130 | Text()->SetValue(startValue); | |
b54ba671 | 1131 | Text()->SetInsertionPointEnd(); |
2796cce3 RD |
1132 | } |
1133 | ||
f6bcfd97 BP |
1134 | bool wxGridCellTextEditor::IsAcceptedKey(wxKeyEvent& event) |
1135 | { | |
63e2147c | 1136 | return wxGridCellEditor::IsAcceptedKey(event); |
f6bcfd97 BP |
1137 | } |
1138 | ||
2c9a89e0 RD |
1139 | void wxGridCellTextEditor::StartingKey(wxKeyEvent& event) |
1140 | { | |
63e2147c RD |
1141 | // Since this is now happening in the EVT_CHAR event EmulateKeyPress is no |
1142 | // longer an appropriate way to get the character into the text control. | |
1143 | // Do it ourselves instead. We know that if we get this far that we have | |
1144 | // a valid character, so not a whole lot of testing needs to be done. | |
1145 | ||
1146 | wxTextCtrl* tc = Text(); | |
1147 | wxChar ch; | |
1148 | long pos; | |
902725ee | 1149 | |
63e2147c RD |
1150 | #if wxUSE_UNICODE |
1151 | ch = event.GetUnicodeKey(); | |
1152 | if (ch <= 127) | |
6f0d2cee | 1153 | ch = (wxChar)event.GetKeyCode(); |
63e2147c | 1154 | #else |
6f0d2cee | 1155 | ch = (wxChar)event.GetKeyCode(); |
63e2147c | 1156 | #endif |
2f024384 | 1157 | |
63e2147c | 1158 | switch (ch) |
f6bcfd97 | 1159 | { |
63e2147c RD |
1160 | case WXK_DELETE: |
1161 | // delete the character at the cursor | |
1162 | pos = tc->GetInsertionPoint(); | |
1163 | if (pos < tc->GetLastPosition()) | |
2f024384 | 1164 | tc->Remove(pos, pos + 1); |
63e2147c RD |
1165 | break; |
1166 | ||
1167 | case WXK_BACK: | |
1168 | // delete the character before the cursor | |
1169 | pos = tc->GetInsertionPoint(); | |
1170 | if (pos > 0) | |
2f024384 | 1171 | tc->Remove(pos - 1, pos); |
63e2147c RD |
1172 | break; |
1173 | ||
1174 | default: | |
1175 | tc->WriteText(ch); | |
1176 | break; | |
f6bcfd97 | 1177 | } |
b54ba671 | 1178 | } |
2c9a89e0 | 1179 | |
c78b3acd | 1180 | void wxGridCellTextEditor::HandleReturn( wxKeyEvent& |
0b7e6e7d | 1181 | WXUNUSED_GTK(WXUNUSED_MOTIF(event)) ) |
2796cce3 RD |
1182 | { |
1183 | #if defined(__WXMOTIF__) || defined(__WXGTK__) | |
1184 | // wxMotif needs a little extra help... | |
6fc0f38f | 1185 | size_t pos = (size_t)( Text()->GetInsertionPoint() ); |
b54ba671 | 1186 | wxString s( Text()->GetValue() ); |
8dd8f875 | 1187 | s = s.Left(pos) + wxT("\n") + s.Mid(pos); |
b54ba671 VZ |
1188 | Text()->SetValue(s); |
1189 | Text()->SetInsertionPoint( pos ); | |
2796cce3 RD |
1190 | #else |
1191 | // the other ports can handle a Return key press | |
1192 | // | |
1193 | event.Skip(); | |
1194 | #endif | |
1195 | } | |
1196 | ||
c4608a8a VZ |
1197 | void wxGridCellTextEditor::SetParameters(const wxString& params) |
1198 | { | |
1199 | if ( !params ) | |
1200 | { | |
1201 | // reset to default | |
1202 | m_maxChars = 0; | |
1203 | } | |
1204 | else | |
1205 | { | |
1206 | long tmp; | |
c2f5b920 | 1207 | if ( params.ToLong(&tmp) ) |
c4608a8a | 1208 | { |
c2f5b920 | 1209 | m_maxChars = (size_t)tmp; |
c4608a8a VZ |
1210 | } |
1211 | else | |
1212 | { | |
c2f5b920 | 1213 | wxLogDebug( _T("Invalid wxGridCellTextEditor parameter string '%s' ignored"), params.c_str() ); |
c4608a8a VZ |
1214 | } |
1215 | } | |
1216 | } | |
1217 | ||
73145b0e JS |
1218 | // return the value in the text control |
1219 | wxString wxGridCellTextEditor::GetValue() const | |
1220 | { | |
2f024384 | 1221 | return Text()->GetValue(); |
73145b0e JS |
1222 | } |
1223 | ||
816be743 VZ |
1224 | // ---------------------------------------------------------------------------- |
1225 | // wxGridCellNumberEditor | |
1226 | // ---------------------------------------------------------------------------- | |
1227 | ||
1228 | wxGridCellNumberEditor::wxGridCellNumberEditor(int min, int max) | |
1229 | { | |
1230 | m_min = min; | |
1231 | m_max = max; | |
1232 | } | |
1233 | ||
1234 | void wxGridCellNumberEditor::Create(wxWindow* parent, | |
1235 | wxWindowID id, | |
1236 | wxEvtHandler* evtHandler) | |
1237 | { | |
0e871ad0 | 1238 | #if wxUSE_SPINCTRL |
816be743 VZ |
1239 | if ( HasRange() ) |
1240 | { | |
1241 | // create a spin ctrl | |
ca65c044 | 1242 | m_control = new wxSpinCtrl(parent, wxID_ANY, wxEmptyString, |
816be743 VZ |
1243 | wxDefaultPosition, wxDefaultSize, |
1244 | wxSP_ARROW_KEYS, | |
1245 | m_min, m_max); | |
1246 | ||
1247 | wxGridCellEditor::Create(parent, id, evtHandler); | |
1248 | } | |
1249 | else | |
0e871ad0 | 1250 | #endif |
816be743 VZ |
1251 | { |
1252 | // just a text control | |
1253 | wxGridCellTextEditor::Create(parent, id, evtHandler); | |
1254 | ||
1255 | #if wxUSE_VALIDATORS | |
85bc0351 | 1256 | Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC)); |
c2f5b920 | 1257 | #endif |
816be743 VZ |
1258 | } |
1259 | } | |
1260 | ||
1261 | void wxGridCellNumberEditor::BeginEdit(int row, int col, wxGrid* grid) | |
1262 | { | |
1263 | // first get the value | |
1264 | wxGridTableBase *table = grid->GetTable(); | |
1265 | if ( table->CanGetValueAs(row, col, wxGRID_VALUE_NUMBER) ) | |
1266 | { | |
1267 | m_valueOld = table->GetValueAsLong(row, col); | |
1268 | } | |
1269 | else | |
1270 | { | |
8a60ff0a | 1271 | m_valueOld = 0; |
a5777624 | 1272 | wxString sValue = table->GetValue(row, col); |
0e871ad0 | 1273 | if (! sValue.ToLong(&m_valueOld) && ! sValue.empty()) |
a5777624 RD |
1274 | { |
1275 | wxFAIL_MSG( _T("this cell doesn't have numeric value") ); | |
1276 | return; | |
1277 | } | |
816be743 VZ |
1278 | } |
1279 | ||
0e871ad0 | 1280 | #if wxUSE_SPINCTRL |
816be743 VZ |
1281 | if ( HasRange() ) |
1282 | { | |
4a64bee4 | 1283 | Spin()->SetValue((int)m_valueOld); |
f6bcfd97 | 1284 | Spin()->SetFocus(); |
816be743 VZ |
1285 | } |
1286 | else | |
0e871ad0 | 1287 | #endif |
816be743 VZ |
1288 | { |
1289 | DoBeginEdit(GetString()); | |
1290 | } | |
1291 | } | |
1292 | ||
3324d5f5 | 1293 | bool wxGridCellNumberEditor::EndEdit(int row, int col, |
816be743 VZ |
1294 | wxGrid* grid) |
1295 | { | |
8a60ff0a RD |
1296 | long value = 0; |
1297 | wxString text; | |
816be743 | 1298 | |
0e871ad0 | 1299 | #if wxUSE_SPINCTRL |
816be743 VZ |
1300 | if ( HasRange() ) |
1301 | { | |
1302 | value = Spin()->GetValue(); | |
8a360869 VZ |
1303 | if ( value == m_valueOld ) |
1304 | return false; | |
1305 | ||
1306 | text.Printf(wxT("%ld"), value); | |
816be743 | 1307 | } |
8a360869 VZ |
1308 | else // using unconstrained input |
1309 | #endif // wxUSE_SPINCTRL | |
816be743 | 1310 | { |
8a360869 | 1311 | const wxString textOld(grid->GetCellValue(row, col)); |
8a60ff0a | 1312 | text = Text()->GetValue(); |
8a360869 VZ |
1313 | if ( text.empty() ) |
1314 | { | |
1315 | if ( textOld.empty() ) | |
1316 | return false; | |
1317 | } | |
1318 | else // non-empty text now (maybe 0) | |
1319 | { | |
1320 | if ( !text.ToLong(&value) ) | |
1321 | return false; | |
816be743 | 1322 | |
8a360869 VZ |
1323 | // if value == m_valueOld == 0 but old text was "" and new one is |
1324 | // "0" something still did change | |
1325 | if ( value == m_valueOld && (value || !textOld.empty()) ) | |
1326 | return false; | |
1327 | } | |
816be743 VZ |
1328 | } |
1329 | ||
8a360869 VZ |
1330 | wxGridTableBase * const table = grid->GetTable(); |
1331 | if ( table->CanSetValueAs(row, col, wxGRID_VALUE_NUMBER) ) | |
1332 | table->SetValueAsLong(row, col, value); | |
1333 | else | |
1334 | table->SetValue(row, col, text); | |
1335 | ||
1336 | return true; | |
816be743 VZ |
1337 | } |
1338 | ||
1339 | void wxGridCellNumberEditor::Reset() | |
1340 | { | |
0e871ad0 | 1341 | #if wxUSE_SPINCTRL |
816be743 VZ |
1342 | if ( HasRange() ) |
1343 | { | |
4a64bee4 | 1344 | Spin()->SetValue((int)m_valueOld); |
816be743 VZ |
1345 | } |
1346 | else | |
0e871ad0 | 1347 | #endif |
816be743 VZ |
1348 | { |
1349 | DoReset(GetString()); | |
1350 | } | |
1351 | } | |
1352 | ||
f6bcfd97 BP |
1353 | bool wxGridCellNumberEditor::IsAcceptedKey(wxKeyEvent& event) |
1354 | { | |
1355 | if ( wxGridCellEditor::IsAcceptedKey(event) ) | |
1356 | { | |
1357 | int keycode = event.GetKeyCode(); | |
63e2147c RD |
1358 | if ( (keycode < 128) && |
1359 | (wxIsdigit(keycode) || keycode == '+' || keycode == '-')) | |
f6bcfd97 | 1360 | { |
63e2147c | 1361 | return true; |
f6bcfd97 BP |
1362 | } |
1363 | } | |
1364 | ||
ca65c044 | 1365 | return false; |
f6bcfd97 BP |
1366 | } |
1367 | ||
816be743 VZ |
1368 | void wxGridCellNumberEditor::StartingKey(wxKeyEvent& event) |
1369 | { | |
eb5e42b6 | 1370 | int keycode = event.GetKeyCode(); |
816be743 VZ |
1371 | if ( !HasRange() ) |
1372 | { | |
63e2147c | 1373 | if ( wxIsdigit(keycode) || keycode == '+' || keycode == '-') |
816be743 VZ |
1374 | { |
1375 | wxGridCellTextEditor::StartingKey(event); | |
1376 | ||
1377 | // skip Skip() below | |
1378 | return; | |
1379 | } | |
1380 | } | |
eb5e42b6 RD |
1381 | #if wxUSE_SPINCTRL |
1382 | else | |
1383 | { | |
1384 | if ( wxIsdigit(keycode) ) | |
1385 | { | |
1386 | wxSpinCtrl* spin = (wxSpinCtrl*)m_control; | |
1387 | spin->SetValue(keycode - '0'); | |
1388 | spin->SetSelection(1,1); | |
1389 | return; | |
1390 | } | |
1391 | } | |
1392 | #endif | |
2f024384 | 1393 | |
816be743 VZ |
1394 | event.Skip(); |
1395 | } | |
9c4ba614 | 1396 | |
c4608a8a VZ |
1397 | void wxGridCellNumberEditor::SetParameters(const wxString& params) |
1398 | { | |
1399 | if ( !params ) | |
1400 | { | |
1401 | // reset to default | |
1402 | m_min = | |
1403 | m_max = -1; | |
1404 | } | |
1405 | else | |
1406 | { | |
1407 | long tmp; | |
1408 | if ( params.BeforeFirst(_T(',')).ToLong(&tmp) ) | |
1409 | { | |
1410 | m_min = (int)tmp; | |
1411 | ||
1412 | if ( params.AfterFirst(_T(',')).ToLong(&tmp) ) | |
1413 | { | |
1414 | m_max = (int)tmp; | |
1415 | ||
1416 | // skip the error message below | |
1417 | return; | |
1418 | } | |
1419 | } | |
1420 | ||
f6bcfd97 | 1421 | wxLogDebug(_T("Invalid wxGridCellNumberEditor parameter string '%s' ignored"), params.c_str()); |
c4608a8a VZ |
1422 | } |
1423 | } | |
1424 | ||
73145b0e JS |
1425 | // return the value in the spin control if it is there (the text control otherwise) |
1426 | wxString wxGridCellNumberEditor::GetValue() const | |
1427 | { | |
0e871ad0 WS |
1428 | wxString s; |
1429 | ||
1430 | #if wxUSE_SPINCTRL | |
4db6714b | 1431 | if ( HasRange() ) |
0e871ad0 WS |
1432 | { |
1433 | long value = Spin()->GetValue(); | |
1434 | s.Printf(wxT("%ld"), value); | |
1435 | } | |
1436 | else | |
1437 | #endif | |
1438 | { | |
1439 | s = Text()->GetValue(); | |
1440 | } | |
1441 | ||
1442 | return s; | |
73145b0e JS |
1443 | } |
1444 | ||
816be743 VZ |
1445 | // ---------------------------------------------------------------------------- |
1446 | // wxGridCellFloatEditor | |
1447 | // ---------------------------------------------------------------------------- | |
1448 | ||
f6bcfd97 BP |
1449 | wxGridCellFloatEditor::wxGridCellFloatEditor(int width, int precision) |
1450 | { | |
1451 | m_width = width; | |
1452 | m_precision = precision; | |
1453 | } | |
1454 | ||
816be743 VZ |
1455 | void wxGridCellFloatEditor::Create(wxWindow* parent, |
1456 | wxWindowID id, | |
1457 | wxEvtHandler* evtHandler) | |
1458 | { | |
1459 | wxGridCellTextEditor::Create(parent, id, evtHandler); | |
1460 | ||
1461 | #if wxUSE_VALIDATORS | |
85bc0351 | 1462 | Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC)); |
c2f5b920 | 1463 | #endif |
816be743 VZ |
1464 | } |
1465 | ||
1466 | void wxGridCellFloatEditor::BeginEdit(int row, int col, wxGrid* grid) | |
1467 | { | |
1468 | // first get the value | |
d035e423 | 1469 | wxGridTableBase * const table = grid->GetTable(); |
816be743 VZ |
1470 | if ( table->CanGetValueAs(row, col, wxGRID_VALUE_FLOAT) ) |
1471 | { | |
1472 | m_valueOld = table->GetValueAsDouble(row, col); | |
1473 | } | |
1474 | else | |
1475 | { | |
8a60ff0a | 1476 | m_valueOld = 0.0; |
d035e423 VZ |
1477 | |
1478 | const wxString value = table->GetValue(row, col); | |
1479 | if ( !value.empty() ) | |
a5777624 | 1480 | { |
d035e423 VZ |
1481 | if ( !value.ToDouble(&m_valueOld) ) |
1482 | { | |
1483 | wxFAIL_MSG( _T("this cell doesn't have float value") ); | |
1484 | return; | |
1485 | } | |
a5777624 | 1486 | } |
816be743 VZ |
1487 | } |
1488 | ||
1489 | DoBeginEdit(GetString()); | |
1490 | } | |
1491 | ||
d035e423 | 1492 | bool wxGridCellFloatEditor::EndEdit(int row, int col, wxGrid* grid) |
816be743 | 1493 | { |
d035e423 VZ |
1494 | const wxString text(Text()->GetValue()), |
1495 | textOld(grid->GetCellValue(row, col)); | |
8a60ff0a | 1496 | |
d035e423 VZ |
1497 | double value; |
1498 | if ( !text.empty() ) | |
816be743 | 1499 | { |
d035e423 VZ |
1500 | if ( !text.ToDouble(&value) ) |
1501 | return false; | |
1502 | } | |
1503 | else // new value is empty string | |
1504 | { | |
1505 | if ( textOld.empty() ) | |
1506 | return false; // nothing changed | |
816be743 | 1507 | |
d035e423 | 1508 | value = 0.; |
816be743 | 1509 | } |
2f024384 | 1510 | |
d035e423 VZ |
1511 | // the test for empty strings ensures that we don't skip the value setting |
1512 | // when "" is replaced by "0" or vice versa as "" numeric value is also 0. | |
1513 | if ( wxIsSameDouble(value, m_valueOld) && !text.empty() && !textOld.empty() ) | |
1514 | return false; // nothing changed | |
1515 | ||
1516 | wxGridTableBase * const table = grid->GetTable(); | |
1517 | ||
1518 | if ( table->CanSetValueAs(row, col, wxGRID_VALUE_FLOAT) ) | |
1519 | table->SetValueAsDouble(row, col, value); | |
1520 | else | |
1521 | table->SetValue(row, col, text); | |
1522 | ||
1523 | return true; | |
816be743 VZ |
1524 | } |
1525 | ||
1526 | void wxGridCellFloatEditor::Reset() | |
1527 | { | |
1528 | DoReset(GetString()); | |
1529 | } | |
1530 | ||
1531 | void wxGridCellFloatEditor::StartingKey(wxKeyEvent& event) | |
1532 | { | |
12a3f227 | 1533 | int keycode = event.GetKeyCode(); |
3fe73755 SN |
1534 | char tmpbuf[2]; |
1535 | tmpbuf[0] = (char) keycode; | |
1536 | tmpbuf[1] = '\0'; | |
42841dfc | 1537 | wxString strbuf(tmpbuf, *wxConvCurrent); |
2f024384 | 1538 | |
902725ee | 1539 | #if wxUSE_INTL |
42841dfc | 1540 | bool is_decimal_point = ( strbuf == |
63e2147c | 1541 | wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT, wxLOCALE_CAT_NUMBER) ); |
5335e9c4 MW |
1542 | #else |
1543 | bool is_decimal_point = ( strbuf == _T(".") ); | |
1544 | #endif | |
2f024384 | 1545 | |
63e2147c RD |
1546 | if ( wxIsdigit(keycode) || keycode == '+' || keycode == '-' |
1547 | || is_decimal_point ) | |
816be743 VZ |
1548 | { |
1549 | wxGridCellTextEditor::StartingKey(event); | |
1550 | ||
1551 | // skip Skip() below | |
1552 | return; | |
1553 | } | |
1554 | ||
1555 | event.Skip(); | |
1556 | } | |
1557 | ||
f6bcfd97 BP |
1558 | void wxGridCellFloatEditor::SetParameters(const wxString& params) |
1559 | { | |
1560 | if ( !params ) | |
1561 | { | |
1562 | // reset to default | |
1563 | m_width = | |
1564 | m_precision = -1; | |
1565 | } | |
1566 | else | |
1567 | { | |
1568 | long tmp; | |
1569 | if ( params.BeforeFirst(_T(',')).ToLong(&tmp) ) | |
1570 | { | |
1571 | m_width = (int)tmp; | |
1572 | ||
1573 | if ( params.AfterFirst(_T(',')).ToLong(&tmp) ) | |
1574 | { | |
1575 | m_precision = (int)tmp; | |
1576 | ||
1577 | // skip the error message below | |
1578 | return; | |
1579 | } | |
1580 | } | |
1581 | ||
1582 | wxLogDebug(_T("Invalid wxGridCellFloatEditor parameter string '%s' ignored"), params.c_str()); | |
1583 | } | |
1584 | } | |
1585 | ||
1586 | wxString wxGridCellFloatEditor::GetString() const | |
1587 | { | |
1588 | wxString fmt; | |
fe4cb4f5 | 1589 | if ( m_precision == -1 && m_width != -1) |
f6bcfd97 BP |
1590 | { |
1591 | // default precision | |
ec53826c | 1592 | fmt.Printf(_T("%%%d.f"), m_width); |
f6bcfd97 | 1593 | } |
fe4cb4f5 JS |
1594 | else if ( m_precision != -1 && m_width == -1) |
1595 | { | |
1596 | // default width | |
1597 | fmt.Printf(_T("%%.%df"), m_precision); | |
1598 | } | |
1599 | else if ( m_precision != -1 && m_width != -1 ) | |
f6bcfd97 | 1600 | { |
ec53826c | 1601 | fmt.Printf(_T("%%%d.%df"), m_width, m_precision); |
f6bcfd97 | 1602 | } |
fe4cb4f5 JS |
1603 | else |
1604 | { | |
1605 | // default width/precision | |
1606 | fmt = _T("%f"); | |
1607 | } | |
f6bcfd97 BP |
1608 | |
1609 | return wxString::Format(fmt, m_valueOld); | |
1610 | } | |
1611 | ||
1612 | bool wxGridCellFloatEditor::IsAcceptedKey(wxKeyEvent& event) | |
1613 | { | |
1614 | if ( wxGridCellEditor::IsAcceptedKey(event) ) | |
1615 | { | |
7b34da9b VZ |
1616 | const int keycode = event.GetKeyCode(); |
1617 | if ( isascii(keycode) ) | |
1618 | { | |
1619 | char tmpbuf[2]; | |
1620 | tmpbuf[0] = (char) keycode; | |
1621 | tmpbuf[1] = '\0'; | |
1622 | wxString strbuf(tmpbuf, *wxConvCurrent); | |
2f024384 | 1623 | |
902725ee | 1624 | #if wxUSE_INTL |
7b34da9b VZ |
1625 | const wxString decimalPoint = |
1626 | wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT, wxLOCALE_CAT_NUMBER); | |
5335e9c4 | 1627 | #else |
7b34da9b | 1628 | const wxString decimalPoint(_T('.')); |
5335e9c4 | 1629 | #endif |
2f024384 | 1630 | |
7b34da9b VZ |
1631 | // accept digits, 'e' as in '1e+6', also '-', '+', and '.' |
1632 | if ( wxIsdigit(keycode) || | |
1633 | tolower(keycode) == 'e' || | |
1634 | keycode == decimalPoint || | |
1635 | keycode == '+' || | |
1636 | keycode == '-' ) | |
1637 | { | |
1638 | return true; | |
1639 | } | |
2f024384 | 1640 | } |
f6bcfd97 BP |
1641 | } |
1642 | ||
ca65c044 | 1643 | return false; |
f6bcfd97 BP |
1644 | } |
1645 | ||
3a8c693a VZ |
1646 | #endif // wxUSE_TEXTCTRL |
1647 | ||
1648 | #if wxUSE_CHECKBOX | |
1649 | ||
508011ce VZ |
1650 | // ---------------------------------------------------------------------------- |
1651 | // wxGridCellBoolEditor | |
1652 | // ---------------------------------------------------------------------------- | |
1653 | ||
9c71a138 | 1654 | // the default values for GetValue() |
dab61ed7 | 1655 | wxString wxGridCellBoolEditor::ms_stringValues[2] = { _T(""), _T("1") }; |
9c71a138 | 1656 | |
508011ce VZ |
1657 | void wxGridCellBoolEditor::Create(wxWindow* parent, |
1658 | wxWindowID id, | |
1659 | wxEvtHandler* evtHandler) | |
1660 | { | |
1661 | m_control = new wxCheckBox(parent, id, wxEmptyString, | |
1662 | wxDefaultPosition, wxDefaultSize, | |
1663 | wxNO_BORDER); | |
1664 | ||
1665 | wxGridCellEditor::Create(parent, id, evtHandler); | |
1666 | } | |
1667 | ||
1668 | void wxGridCellBoolEditor::SetSize(const wxRect& r) | |
1669 | { | |
ca65c044 | 1670 | bool resize = false; |
b94ae1ea VZ |
1671 | wxSize size = m_control->GetSize(); |
1672 | wxCoord minSize = wxMin(r.width, r.height); | |
1673 | ||
1674 | // check if the checkbox is not too big/small for this cell | |
1675 | wxSize sizeBest = m_control->GetBestSize(); | |
1676 | if ( !(size == sizeBest) ) | |
1677 | { | |
1678 | // reset to default size if it had been made smaller | |
1679 | size = sizeBest; | |
1680 | ||
ca65c044 | 1681 | resize = true; |
b94ae1ea VZ |
1682 | } |
1683 | ||
1684 | if ( size.x >= minSize || size.y >= minSize ) | |
1685 | { | |
1686 | // leave 1 pixel margin | |
1687 | size.x = size.y = minSize - 2; | |
1688 | ||
ca65c044 | 1689 | resize = true; |
b94ae1ea VZ |
1690 | } |
1691 | ||
1692 | if ( resize ) | |
1693 | { | |
1694 | m_control->SetSize(size); | |
1695 | } | |
1696 | ||
508011ce | 1697 | // position it in the centre of the rectangle (TODO: support alignment?) |
508011ce | 1698 | |
b94ae1ea | 1699 | #if defined(__WXGTK__) || defined (__WXMOTIF__) |
508011ce VZ |
1700 | // the checkbox without label still has some space to the right in wxGTK, |
1701 | // so shift it to the right | |
b94ae1ea VZ |
1702 | size.x -= 8; |
1703 | #elif defined(__WXMSW__) | |
a95e38c0 VZ |
1704 | // here too, but in other way |
1705 | size.x += 1; | |
b94ae1ea VZ |
1706 | size.y -= 2; |
1707 | #endif | |
508011ce | 1708 | |
1bd71df9 JS |
1709 | int hAlign = wxALIGN_CENTRE; |
1710 | int vAlign = wxALIGN_CENTRE; | |
1711 | if (GetCellAttr()) | |
1712 | GetCellAttr()->GetAlignment(& hAlign, & vAlign); | |
52d6f640 | 1713 | |
1bd71df9 JS |
1714 | int x = 0, y = 0; |
1715 | if (hAlign == wxALIGN_LEFT) | |
1716 | { | |
1717 | x = r.x + 2; | |
2f024384 | 1718 | |
1bd71df9 JS |
1719 | #ifdef __WXMSW__ |
1720 | x += 2; | |
52d6f640 | 1721 | #endif |
2f024384 DS |
1722 | |
1723 | y = r.y + r.height / 2 - size.y / 2; | |
1bd71df9 JS |
1724 | } |
1725 | else if (hAlign == wxALIGN_RIGHT) | |
1726 | { | |
1727 | x = r.x + r.width - size.x - 2; | |
2f024384 | 1728 | y = r.y + r.height / 2 - size.y / 2; |
1bd71df9 JS |
1729 | } |
1730 | else if (hAlign == wxALIGN_CENTRE) | |
1731 | { | |
2f024384 DS |
1732 | x = r.x + r.width / 2 - size.x / 2; |
1733 | y = r.y + r.height / 2 - size.y / 2; | |
1bd71df9 | 1734 | } |
52d6f640 | 1735 | |
1bd71df9 | 1736 | m_control->Move(x, y); |
508011ce VZ |
1737 | } |
1738 | ||
1739 | void wxGridCellBoolEditor::Show(bool show, wxGridCellAttr *attr) | |
1740 | { | |
99306db2 VZ |
1741 | m_control->Show(show); |
1742 | ||
189d0213 | 1743 | if ( show ) |
508011ce | 1744 | { |
189d0213 VZ |
1745 | wxColour colBg = attr ? attr->GetBackgroundColour() : *wxLIGHT_GREY; |
1746 | CBox()->SetBackgroundColour(colBg); | |
508011ce | 1747 | } |
508011ce VZ |
1748 | } |
1749 | ||
1750 | void wxGridCellBoolEditor::BeginEdit(int row, int col, wxGrid* grid) | |
1751 | { | |
1752 | wxASSERT_MSG(m_control, | |
c2f5b920 | 1753 | wxT("The wxGridCellEditor must be created first!")); |
508011ce | 1754 | |
28a77bc4 | 1755 | if (grid->GetTable()->CanGetValueAs(row, col, wxGRID_VALUE_BOOL)) |
2f024384 | 1756 | { |
f2d76237 | 1757 | m_startValue = grid->GetTable()->GetValueAsBool(row, col); |
2f024384 | 1758 | } |
f2d76237 | 1759 | else |
695a3263 MB |
1760 | { |
1761 | wxString cellval( grid->GetTable()->GetValue(row, col) ); | |
8497bbf5 VZ |
1762 | |
1763 | if ( cellval == ms_stringValues[false] ) | |
1764 | m_startValue = false; | |
1765 | else if ( cellval == ms_stringValues[true] ) | |
1766 | m_startValue = true; | |
1767 | else | |
1768 | { | |
1769 | // do not try to be smart here and convert it to true or false | |
1770 | // because we'll still overwrite it with something different and | |
1771 | // this risks to be very surprising for the user code, let them | |
1772 | // know about it | |
1773 | wxFAIL_MSG( _T("invalid value for a cell with bool editor!") ); | |
1774 | } | |
695a3263 | 1775 | } |
2f024384 | 1776 | |
508011ce VZ |
1777 | CBox()->SetValue(m_startValue); |
1778 | CBox()->SetFocus(); | |
1779 | } | |
1780 | ||
1781 | bool wxGridCellBoolEditor::EndEdit(int row, int col, | |
508011ce VZ |
1782 | wxGrid* grid) |
1783 | { | |
1784 | wxASSERT_MSG(m_control, | |
c2f5b920 | 1785 | wxT("The wxGridCellEditor must be created first!")); |
508011ce | 1786 | |
ca65c044 | 1787 | bool changed = false; |
508011ce VZ |
1788 | bool value = CBox()->GetValue(); |
1789 | if ( value != m_startValue ) | |
ca65c044 | 1790 | changed = true; |
508011ce VZ |
1791 | |
1792 | if ( changed ) | |
1793 | { | |
9c71a138 VZ |
1794 | wxGridTableBase * const table = grid->GetTable(); |
1795 | if ( table->CanGetValueAs(row, col, wxGRID_VALUE_BOOL) ) | |
1796 | table->SetValueAsBool(row, col, value); | |
f2d76237 | 1797 | else |
9c71a138 | 1798 | table->SetValue(row, col, GetValue()); |
508011ce VZ |
1799 | } |
1800 | ||
1801 | return changed; | |
1802 | } | |
1803 | ||
1804 | void wxGridCellBoolEditor::Reset() | |
1805 | { | |
1806 | wxASSERT_MSG(m_control, | |
c2f5b920 | 1807 | wxT("The wxGridCellEditor must be created first!")); |
508011ce VZ |
1808 | |
1809 | CBox()->SetValue(m_startValue); | |
1810 | } | |
1811 | ||
e195a54c | 1812 | void wxGridCellBoolEditor::StartingClick() |
508011ce | 1813 | { |
e195a54c | 1814 | CBox()->SetValue(!CBox()->GetValue()); |
508011ce VZ |
1815 | } |
1816 | ||
f6bcfd97 BP |
1817 | bool wxGridCellBoolEditor::IsAcceptedKey(wxKeyEvent& event) |
1818 | { | |
1819 | if ( wxGridCellEditor::IsAcceptedKey(event) ) | |
1820 | { | |
1821 | int keycode = event.GetKeyCode(); | |
1822 | switch ( keycode ) | |
1823 | { | |
f6bcfd97 BP |
1824 | case WXK_SPACE: |
1825 | case '+': | |
1826 | case '-': | |
ca65c044 | 1827 | return true; |
f6bcfd97 BP |
1828 | } |
1829 | } | |
1830 | ||
ca65c044 | 1831 | return false; |
f6bcfd97 | 1832 | } |
04418332 | 1833 | |
63e2147c RD |
1834 | void wxGridCellBoolEditor::StartingKey(wxKeyEvent& event) |
1835 | { | |
1836 | int keycode = event.GetKeyCode(); | |
1837 | switch ( keycode ) | |
1838 | { | |
1839 | case WXK_SPACE: | |
1840 | CBox()->SetValue(!CBox()->GetValue()); | |
1841 | break; | |
902725ee | 1842 | |
63e2147c RD |
1843 | case '+': |
1844 | CBox()->SetValue(true); | |
1845 | break; | |
902725ee | 1846 | |
63e2147c RD |
1847 | case '-': |
1848 | CBox()->SetValue(false); | |
1849 | break; | |
1850 | } | |
1851 | } | |
1852 | ||
73145b0e JS |
1853 | wxString wxGridCellBoolEditor::GetValue() const |
1854 | { | |
9c71a138 VZ |
1855 | return ms_stringValues[CBox()->GetValue()]; |
1856 | } | |
1857 | ||
1858 | /* static */ void | |
1859 | wxGridCellBoolEditor::UseStringValues(const wxString& valueTrue, | |
1860 | const wxString& valueFalse) | |
1861 | { | |
1862 | ms_stringValues[false] = valueFalse; | |
1863 | ms_stringValues[true] = valueTrue; | |
1864 | } | |
1865 | ||
1866 | /* static */ bool | |
1867 | wxGridCellBoolEditor::IsTrueValue(const wxString& value) | |
1868 | { | |
1869 | return value == ms_stringValues[true]; | |
73145b0e | 1870 | } |
f6bcfd97 | 1871 | |
3a8c693a VZ |
1872 | #endif // wxUSE_CHECKBOX |
1873 | ||
1874 | #if wxUSE_COMBOBOX | |
1875 | ||
4ee5fc9c VZ |
1876 | // ---------------------------------------------------------------------------- |
1877 | // wxGridCellChoiceEditor | |
1878 | // ---------------------------------------------------------------------------- | |
1879 | ||
7db33cc3 MB |
1880 | wxGridCellChoiceEditor::wxGridCellChoiceEditor(const wxArrayString& choices, |
1881 | bool allowOthers) | |
1882 | : m_choices(choices), | |
1883 | m_allowOthers(allowOthers) { } | |
1884 | ||
4ee5fc9c | 1885 | wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count, |
f6bcfd97 | 1886 | const wxString choices[], |
4ee5fc9c VZ |
1887 | bool allowOthers) |
1888 | : m_allowOthers(allowOthers) | |
1889 | { | |
c4608a8a | 1890 | if ( count ) |
4ee5fc9c | 1891 | { |
c4608a8a VZ |
1892 | m_choices.Alloc(count); |
1893 | for ( size_t n = 0; n < count; n++ ) | |
1894 | { | |
1895 | m_choices.Add(choices[n]); | |
1896 | } | |
4ee5fc9c VZ |
1897 | } |
1898 | } | |
1899 | ||
c4608a8a VZ |
1900 | wxGridCellEditor *wxGridCellChoiceEditor::Clone() const |
1901 | { | |
1902 | wxGridCellChoiceEditor *editor = new wxGridCellChoiceEditor; | |
1903 | editor->m_allowOthers = m_allowOthers; | |
1904 | editor->m_choices = m_choices; | |
1905 | ||
1906 | return editor; | |
1907 | } | |
1908 | ||
4ee5fc9c VZ |
1909 | void wxGridCellChoiceEditor::Create(wxWindow* parent, |
1910 | wxWindowID id, | |
1911 | wxEvtHandler* evtHandler) | |
1912 | { | |
7999b830 VZ |
1913 | int style = wxTE_PROCESS_ENTER | |
1914 | wxTE_PROCESS_TAB | | |
1915 | wxBORDER_NONE; | |
1916 | ||
1917 | if ( !m_allowOthers ) | |
2f26ad28 | 1918 | style |= wxCB_READONLY; |
4ee5fc9c VZ |
1919 | m_control = new wxComboBox(parent, id, wxEmptyString, |
1920 | wxDefaultPosition, wxDefaultSize, | |
7999b830 VZ |
1921 | m_choices, |
1922 | style); | |
4ee5fc9c | 1923 | |
4ee5fc9c VZ |
1924 | wxGridCellEditor::Create(parent, id, evtHandler); |
1925 | } | |
1926 | ||
a5777624 RD |
1927 | void wxGridCellChoiceEditor::PaintBackground(const wxRect& rectCell, |
1928 | wxGridCellAttr * attr) | |
4ee5fc9c VZ |
1929 | { |
1930 | // as we fill the entire client area, don't do anything here to minimize | |
1931 | // flicker | |
a5777624 RD |
1932 | |
1933 | // TODO: It doesn't actually fill the client area since the height of a | |
c2f5b920 DS |
1934 | // combo always defaults to the standard. Until someone has time to |
1935 | // figure out the right rectangle to paint, just do it the normal way. | |
a5777624 | 1936 | wxGridCellEditor::PaintBackground(rectCell, attr); |
4ee5fc9c VZ |
1937 | } |
1938 | ||
1939 | void wxGridCellChoiceEditor::BeginEdit(int row, int col, wxGrid* grid) | |
1940 | { | |
1941 | wxASSERT_MSG(m_control, | |
c2f5b920 | 1942 | wxT("The wxGridCellEditor must be created first!")); |
4ee5fc9c | 1943 | |
08dd04d0 JS |
1944 | wxGridCellEditorEvtHandler* evtHandler = NULL; |
1945 | if (m_control) | |
1946 | evtHandler = wxDynamicCast(m_control->GetEventHandler(), wxGridCellEditorEvtHandler); | |
1947 | ||
1948 | // Don't immediately end if we get a kill focus event within BeginEdit | |
1949 | if (evtHandler) | |
1950 | evtHandler->SetInSetFocus(true); | |
1951 | ||
4ee5fc9c VZ |
1952 | m_startValue = grid->GetTable()->GetValue(row, col); |
1953 | ||
b6484591 | 1954 | Reset(); // this updates combo box to correspond to m_startValue |
2f024384 | 1955 | |
4ee5fc9c | 1956 | Combo()->SetFocus(); |
08dd04d0 JS |
1957 | |
1958 | if (evtHandler) | |
46cbb21e JS |
1959 | { |
1960 | // When dropping down the menu, a kill focus event | |
1961 | // happens after this point, so we can't reset the flag yet. | |
1962 | #if !defined(__WXGTK20__) | |
08dd04d0 | 1963 | evtHandler->SetInSetFocus(false); |
46cbb21e JS |
1964 | #endif |
1965 | } | |
4ee5fc9c VZ |
1966 | } |
1967 | ||
28a77bc4 | 1968 | bool wxGridCellChoiceEditor::EndEdit(int row, int col, |
4ee5fc9c VZ |
1969 | wxGrid* grid) |
1970 | { | |
1971 | wxString value = Combo()->GetValue(); | |
faffacec VZ |
1972 | if ( value == m_startValue ) |
1973 | return false; | |
4ee5fc9c | 1974 | |
faffacec | 1975 | grid->GetTable()->SetValue(row, col, value); |
4ee5fc9c | 1976 | |
faffacec | 1977 | return true; |
4ee5fc9c VZ |
1978 | } |
1979 | ||
1980 | void wxGridCellChoiceEditor::Reset() | |
1981 | { | |
b6484591 VZ |
1982 | if (m_allowOthers) |
1983 | { | |
1984 | Combo()->SetValue(m_startValue); | |
1985 | Combo()->SetInsertionPointEnd(); | |
1986 | } | |
1987 | else // the combobox is read-only | |
1988 | { | |
1989 | // find the right position, or default to the first if not found | |
1990 | int pos = Combo()->FindString(m_startValue); | |
1991 | if (pos == wxNOT_FOUND) | |
1992 | pos = 0; | |
1993 | Combo()->SetSelection(pos); | |
1994 | } | |
4ee5fc9c VZ |
1995 | } |
1996 | ||
c4608a8a VZ |
1997 | void wxGridCellChoiceEditor::SetParameters(const wxString& params) |
1998 | { | |
1999 | if ( !params ) | |
2000 | { | |
2001 | // what can we do? | |
2002 | return; | |
2003 | } | |
2004 | ||
2005 | m_choices.Empty(); | |
2006 | ||
2007 | wxStringTokenizer tk(params, _T(',')); | |
2008 | while ( tk.HasMoreTokens() ) | |
2009 | { | |
2010 | m_choices.Add(tk.GetNextToken()); | |
2011 | } | |
2012 | } | |
2013 | ||
73145b0e JS |
2014 | // return the value in the text control |
2015 | wxString wxGridCellChoiceEditor::GetValue() const | |
2016 | { | |
2017 | return Combo()->GetValue(); | |
2018 | } | |
04418332 | 2019 | |
3a8c693a VZ |
2020 | #endif // wxUSE_COMBOBOX |
2021 | ||
508011ce VZ |
2022 | // ---------------------------------------------------------------------------- |
2023 | // wxGridCellEditorEvtHandler | |
2024 | // ---------------------------------------------------------------------------- | |
2796cce3 | 2025 | |
140954fd VZ |
2026 | void wxGridCellEditorEvtHandler::OnKillFocus(wxFocusEvent& event) |
2027 | { | |
08dd04d0 JS |
2028 | // Don't disable the cell if we're just starting to edit it |
2029 | if (m_inSetFocus) | |
2030 | return; | |
2031 | ||
140954fd VZ |
2032 | // accept changes |
2033 | m_grid->DisableCellEditControl(); | |
2034 | ||
2035 | event.Skip(); | |
2036 | } | |
2037 | ||
2796cce3 RD |
2038 | void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent& event) |
2039 | { | |
12a3f227 | 2040 | switch ( event.GetKeyCode() ) |
2796cce3 RD |
2041 | { |
2042 | case WXK_ESCAPE: | |
2043 | m_editor->Reset(); | |
b54ba671 | 2044 | m_grid->DisableCellEditControl(); |
2796cce3 RD |
2045 | break; |
2046 | ||
2c9a89e0 | 2047 | case WXK_TAB: |
b51c3f27 | 2048 | m_grid->GetEventHandler()->ProcessEvent( event ); |
9b4aede2 RD |
2049 | break; |
2050 | ||
2796cce3 | 2051 | case WXK_RETURN: |
faec5a43 SN |
2052 | case WXK_NUMPAD_ENTER: |
2053 | if (!m_grid->GetEventHandler()->ProcessEvent(event)) | |
2796cce3 RD |
2054 | m_editor->HandleReturn(event); |
2055 | break; | |
2056 | ||
2796cce3 RD |
2057 | default: |
2058 | event.Skip(); | |
2f024384 | 2059 | break; |
2796cce3 RD |
2060 | } |
2061 | } | |
2062 | ||
fb0de762 RD |
2063 | void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent& event) |
2064 | { | |
7db713ae JS |
2065 | int row = m_grid->GetGridCursorRow(); |
2066 | int col = m_grid->GetGridCursorCol(); | |
2067 | wxRect rect = m_grid->CellToRect( row, col ); | |
2068 | int cw, ch; | |
2069 | m_grid->GetGridWindow()->GetClientSize( &cw, &ch ); | |
2f024384 | 2070 | |
7db713ae JS |
2071 | // if cell width is smaller than grid client area, cell is wholly visible |
2072 | bool wholeCellVisible = (rect.GetWidth() < cw); | |
2073 | ||
12a3f227 | 2074 | switch ( event.GetKeyCode() ) |
fb0de762 RD |
2075 | { |
2076 | case WXK_ESCAPE: | |
2077 | case WXK_TAB: | |
2078 | case WXK_RETURN: | |
a4f7bf58 | 2079 | case WXK_NUMPAD_ENTER: |
fb0de762 RD |
2080 | break; |
2081 | ||
7db713ae JS |
2082 | case WXK_HOME: |
2083 | { | |
2f024384 | 2084 | if ( wholeCellVisible ) |
7db713ae JS |
2085 | { |
2086 | // no special processing needed... | |
2087 | event.Skip(); | |
2088 | break; | |
2089 | } | |
2090 | ||
2091 | // do special processing for partly visible cell... | |
2092 | ||
2093 | // get the widths of all cells previous to this one | |
2094 | int colXPos = 0; | |
faa94f3e | 2095 | for ( int i = 0; i < col; i++ ) |
7db713ae JS |
2096 | { |
2097 | colXPos += m_grid->GetColSize(i); | |
2098 | } | |
2099 | ||
2100 | int xUnit = 1, yUnit = 1; | |
2101 | m_grid->GetScrollPixelsPerUnit(&xUnit, &yUnit); | |
2102 | if (col != 0) | |
2103 | { | |
2f024384 | 2104 | m_grid->Scroll(colXPos / xUnit - 1, m_grid->GetScrollPos(wxVERTICAL)); |
7db713ae JS |
2105 | } |
2106 | else | |
2107 | { | |
2f024384 | 2108 | m_grid->Scroll(colXPos / xUnit, m_grid->GetScrollPos(wxVERTICAL)); |
7db713ae JS |
2109 | } |
2110 | event.Skip(); | |
2111 | break; | |
2112 | } | |
c2f5b920 | 2113 | |
7db713ae JS |
2114 | case WXK_END: |
2115 | { | |
2f024384 | 2116 | if ( wholeCellVisible ) |
7db713ae JS |
2117 | { |
2118 | // no special processing needed... | |
2119 | event.Skip(); | |
2120 | break; | |
2121 | } | |
2122 | ||
2123 | // do special processing for partly visible cell... | |
2124 | ||
2125 | int textWidth = 0; | |
2126 | wxString value = m_grid->GetCellValue(row, col); | |
2127 | if ( wxEmptyString != value ) | |
2128 | { | |
2129 | // get width of cell CONTENTS (text) | |
2130 | int y; | |
2131 | wxFont font = m_grid->GetCellFont(row, col); | |
2132 | m_grid->GetTextExtent(value, &textWidth, &y, NULL, NULL, &font); | |
2f024384 | 2133 | |
7db713ae JS |
2134 | // try to RIGHT align the text by scrolling |
2135 | int client_right = m_grid->GetGridWindow()->GetClientSize().GetWidth(); | |
2f024384 | 2136 | |
7db713ae JS |
2137 | // (m_grid->GetScrollLineX()*2) is a factor for not scrolling to far, |
2138 | // otherwise the last part of the cell content might be hidden below the scroll bar | |
2139 | // FIXME: maybe there is a more suitable correction? | |
2f024384 | 2140 | textWidth -= (client_right - (m_grid->GetScrollLineX() * 2)); |
7db713ae JS |
2141 | if ( textWidth < 0 ) |
2142 | { | |
2143 | textWidth = 0; | |
2144 | } | |
2145 | } | |
2146 | ||
2147 | // get the widths of all cells previous to this one | |
2148 | int colXPos = 0; | |
faa94f3e | 2149 | for ( int i = 0; i < col; i++ ) |
7db713ae JS |
2150 | { |
2151 | colXPos += m_grid->GetColSize(i); | |
2152 | } | |
2f024384 | 2153 | |
7db713ae JS |
2154 | // and add the (modified) text width of the cell contents |
2155 | // as we'd like to see the last part of the cell contents | |
2156 | colXPos += textWidth; | |
2157 | ||
2158 | int xUnit = 1, yUnit = 1; | |
2159 | m_grid->GetScrollPixelsPerUnit(&xUnit, &yUnit); | |
ccdee36f | 2160 | m_grid->Scroll(colXPos / xUnit - 1, m_grid->GetScrollPos(wxVERTICAL)); |
7db713ae JS |
2161 | event.Skip(); |
2162 | break; | |
2163 | } | |
2164 | ||
fb0de762 RD |
2165 | default: |
2166 | event.Skip(); | |
c2f5b920 | 2167 | break; |
fb0de762 RD |
2168 | } |
2169 | } | |
2170 | ||
c4608a8a VZ |
2171 | // ---------------------------------------------------------------------------- |
2172 | // wxGridCellWorker is an (almost) empty common base class for | |
2173 | // wxGridCellRenderer and wxGridCellEditor managing ref counting | |
2174 | // ---------------------------------------------------------------------------- | |
2175 | ||
2176 | void wxGridCellWorker::SetParameters(const wxString& WXUNUSED(params)) | |
2177 | { | |
2178 | // nothing to do | |
2179 | } | |
2180 | ||
2181 | wxGridCellWorker::~wxGridCellWorker() | |
2182 | { | |
2183 | } | |
2184 | ||
508011ce VZ |
2185 | // ============================================================================ |
2186 | // renderer classes | |
2187 | // ============================================================================ | |
2188 | ||
ab79958a VZ |
2189 | // ---------------------------------------------------------------------------- |
2190 | // wxGridCellRenderer | |
2191 | // ---------------------------------------------------------------------------- | |
2192 | ||
2193 | void wxGridCellRenderer::Draw(wxGrid& grid, | |
2796cce3 | 2194 | wxGridCellAttr& attr, |
ab79958a VZ |
2195 | wxDC& dc, |
2196 | const wxRect& rect, | |
c78b3acd | 2197 | int WXUNUSED(row), int WXUNUSED(col), |
ab79958a VZ |
2198 | bool isSelected) |
2199 | { | |
04ee05f9 | 2200 | dc.SetBackgroundMode( wxBRUSHSTYLE_SOLID ); |
ab79958a | 2201 | |
ff72f628 | 2202 | wxColour clr; |
4db6714b | 2203 | if ( grid.IsEnabled() ) |
ab79958a | 2204 | { |
ec157c8f WS |
2205 | if ( isSelected ) |
2206 | { | |
760be3f7 VS |
2207 | if ( grid.HasFocus() ) |
2208 | clr = grid.GetSelectionBackground(); | |
2209 | else | |
2210 | clr = wxSystemSettings::GetColour(wxSYS_COLOUR_BTNSHADOW); | |
ec157c8f WS |
2211 | } |
2212 | else | |
2213 | { | |
ff72f628 | 2214 | clr = attr.GetBackgroundColour(); |
ec157c8f | 2215 | } |
52d6f640 | 2216 | } |
ff72f628 | 2217 | else // grey out fields if the grid is disabled |
ab79958a | 2218 | { |
ff72f628 | 2219 | clr = wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE); |
ab79958a VZ |
2220 | } |
2221 | ||
ff72f628 | 2222 | dc.SetBrush(clr); |
ab79958a | 2223 | dc.SetPen( *wxTRANSPARENT_PEN ); |
ab79958a VZ |
2224 | dc.DrawRectangle(rect); |
2225 | } | |
2226 | ||
508011ce VZ |
2227 | // ---------------------------------------------------------------------------- |
2228 | // wxGridCellStringRenderer | |
2229 | // ---------------------------------------------------------------------------- | |
2230 | ||
fbfb8bcc VZ |
2231 | void wxGridCellStringRenderer::SetTextColoursAndFont(const wxGrid& grid, |
2232 | const wxGridCellAttr& attr, | |
816be743 VZ |
2233 | wxDC& dc, |
2234 | bool isSelected) | |
ab79958a | 2235 | { |
04ee05f9 | 2236 | dc.SetBackgroundMode( wxBRUSHSTYLE_TRANSPARENT ); |
ab79958a | 2237 | |
283b7808 VZ |
2238 | // TODO some special colours for attr.IsReadOnly() case? |
2239 | ||
04418332 | 2240 | // different coloured text when the grid is disabled |
4db6714b | 2241 | if ( grid.IsEnabled() ) |
ab79958a | 2242 | { |
c2f5b920 DS |
2243 | if ( isSelected ) |
2244 | { | |
760be3f7 VS |
2245 | wxColour clr; |
2246 | if ( grid.HasFocus() ) | |
2247 | clr = grid.GetSelectionBackground(); | |
2248 | else | |
2249 | clr = wxSystemSettings::GetColour(wxSYS_COLOUR_BTNSHADOW); | |
2250 | dc.SetTextBackground( clr ); | |
c2f5b920 DS |
2251 | dc.SetTextForeground( grid.GetSelectionForeground() ); |
2252 | } | |
2253 | else | |
2254 | { | |
2255 | dc.SetTextBackground( attr.GetBackgroundColour() ); | |
2256 | dc.SetTextForeground( attr.GetTextColour() ); | |
2257 | } | |
ab79958a VZ |
2258 | } |
2259 | else | |
2260 | { | |
c2f5b920 DS |
2261 | dc.SetTextBackground(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE)); |
2262 | dc.SetTextForeground(wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT)); | |
ab79958a | 2263 | } |
816be743 | 2264 | |
2796cce3 | 2265 | dc.SetFont( attr.GetFont() ); |
816be743 VZ |
2266 | } |
2267 | ||
fbfb8bcc | 2268 | wxSize wxGridCellStringRenderer::DoGetBestSize(const wxGridCellAttr& attr, |
65e4e78e VZ |
2269 | wxDC& dc, |
2270 | const wxString& text) | |
2271 | { | |
f6bcfd97 | 2272 | wxCoord x = 0, y = 0, max_x = 0; |
65e4e78e | 2273 | dc.SetFont(attr.GetFont()); |
f6bcfd97 BP |
2274 | wxStringTokenizer tk(text, _T('\n')); |
2275 | while ( tk.HasMoreTokens() ) | |
2276 | { | |
2277 | dc.GetTextExtent(tk.GetNextToken(), &x, &y); | |
2278 | max_x = wxMax(max_x, x); | |
2279 | } | |
2280 | ||
2281 | y *= 1 + text.Freq(wxT('\n')); // multiply by the number of lines. | |
65e4e78e | 2282 | |
f6bcfd97 | 2283 | return wxSize(max_x, y); |
65e4e78e VZ |
2284 | } |
2285 | ||
2286 | wxSize wxGridCellStringRenderer::GetBestSize(wxGrid& grid, | |
2287 | wxGridCellAttr& attr, | |
2288 | wxDC& dc, | |
2289 | int row, int col) | |
2290 | { | |
2291 | return DoGetBestSize(attr, dc, grid.GetCellValue(row, col)); | |
2292 | } | |
2293 | ||
816be743 VZ |
2294 | void wxGridCellStringRenderer::Draw(wxGrid& grid, |
2295 | wxGridCellAttr& attr, | |
2296 | wxDC& dc, | |
2297 | const wxRect& rectCell, | |
2298 | int row, int col, | |
2299 | bool isSelected) | |
2300 | { | |
27f35b66 | 2301 | wxRect rect = rectCell; |
dc1f566f SN |
2302 | rect.Inflate(-1); |
2303 | ||
2304 | // erase only this cells background, overflow cells should have been erased | |
2305 | wxGridCellRenderer::Draw(grid, attr, dc, rectCell, row, col, isSelected); | |
2306 | ||
2307 | int hAlign, vAlign; | |
2308 | attr.GetAlignment(&hAlign, &vAlign); | |
27f35b66 | 2309 | |
39b80349 SN |
2310 | int overflowCols = 0; |
2311 | ||
27f35b66 SN |
2312 | if (attr.GetOverflow()) |
2313 | { | |
2314 | int cols = grid.GetNumberCols(); | |
2315 | int best_width = GetBestSize(grid,attr,dc,row,col).GetWidth(); | |
2316 | int cell_rows, cell_cols; | |
2f024384 | 2317 | attr.GetSize( &cell_rows, &cell_cols ); // shouldn't get here if <= 0 |
27f35b66 SN |
2318 | if ((best_width > rectCell.width) && (col < cols) && grid.GetTable()) |
2319 | { | |
2320 | int i, c_cols, c_rows; | |
2321 | for (i = col+cell_cols; i < cols; i++) | |
2322 | { | |
ca65c044 | 2323 | bool is_empty = true; |
2f024384 | 2324 | for (int j=row; j < row + cell_rows; j++) |
27f35b66 | 2325 | { |
39b80349 | 2326 | // check w/ anchor cell for multicell block |
ef4d6ce8 | 2327 | grid.GetCellSize(j, i, &c_rows, &c_cols); |
2f024384 DS |
2328 | if (c_rows > 0) |
2329 | c_rows = 0; | |
2330 | if (!grid.GetTable()->IsEmptyCell(j + c_rows, i)) | |
39b80349 | 2331 | { |
ca65c044 | 2332 | is_empty = false; |
ef4d6ce8 | 2333 | break; |
39b80349 | 2334 | } |
27f35b66 | 2335 | } |
2f024384 | 2336 | |
39b80349 | 2337 | if (is_empty) |
c2f5b920 | 2338 | { |
39b80349 | 2339 | rect.width += grid.GetColSize(i); |
c2f5b920 | 2340 | } |
dc1f566f SN |
2341 | else |
2342 | { | |
2343 | i--; | |
2344 | break; | |
2345 | } | |
2f024384 | 2346 | |
4db6714b KH |
2347 | if (rect.width >= best_width) |
2348 | break; | |
2b5f62a0 | 2349 | } |
2f024384 | 2350 | |
39b80349 | 2351 | overflowCols = i - col - cell_cols + 1; |
4db6714b KH |
2352 | if (overflowCols >= cols) |
2353 | overflowCols = cols - 1; | |
39b80349 | 2354 | } |
27f35b66 | 2355 | |
dc1f566f SN |
2356 | if (overflowCols > 0) // redraw overflow cells w/ proper hilight |
2357 | { | |
39b80349 | 2358 | hAlign = wxALIGN_LEFT; // if oveflowed then it's left aligned |
2b5f62a0 | 2359 | wxRect clip = rect; |
39b80349 | 2360 | clip.x += rectCell.width; |
dc1f566f | 2361 | // draw each overflow cell individually |
c2f5b920 | 2362 | int col_end = col + cell_cols + overflowCols; |
dc1f566f | 2363 | if (col_end >= grid.GetNumberCols()) |
2b5f62a0 | 2364 | col_end = grid.GetNumberCols() - 1; |
c2f5b920 | 2365 | for (int i = col + cell_cols; i <= col_end; i++) |
dc1f566f | 2366 | { |
dc1f566f SN |
2367 | clip.width = grid.GetColSize(i) - 1; |
2368 | dc.DestroyClippingRegion(); | |
2369 | dc.SetClippingRegion(clip); | |
39b80349 SN |
2370 | |
2371 | SetTextColoursAndFont(grid, attr, dc, | |
2b5f62a0 | 2372 | grid.IsInSelection(row,i)); |
39b80349 | 2373 | |
dc1f566f | 2374 | grid.DrawTextRectangle(dc, grid.GetCellValue(row, col), |
2b5f62a0 | 2375 | rect, hAlign, vAlign); |
39b80349 | 2376 | clip.x += grid.GetColSize(i) - 1; |
dc1f566f | 2377 | } |
ab79958a | 2378 | |
39b80349 | 2379 | rect = rectCell; |
2b5f62a0 | 2380 | rect.Inflate(-1); |
dc1f566f | 2381 | rect.width++; |
39b80349 | 2382 | dc.DestroyClippingRegion(); |
dc1f566f | 2383 | } |
39b80349 | 2384 | } |
ab79958a | 2385 | |
dc1f566f SN |
2386 | // now we only have to draw the text |
2387 | SetTextColoursAndFont(grid, attr, dc, isSelected); | |
39b80349 | 2388 | |
ab79958a VZ |
2389 | grid.DrawTextRectangle(dc, grid.GetCellValue(row, col), |
2390 | rect, hAlign, vAlign); | |
2391 | } | |
2392 | ||
65e4e78e VZ |
2393 | // ---------------------------------------------------------------------------- |
2394 | // wxGridCellNumberRenderer | |
2395 | // ---------------------------------------------------------------------------- | |
2396 | ||
fbfb8bcc | 2397 | wxString wxGridCellNumberRenderer::GetString(const wxGrid& grid, int row, int col) |
65e4e78e VZ |
2398 | { |
2399 | wxGridTableBase *table = grid.GetTable(); | |
2400 | wxString text; | |
2401 | if ( table->CanGetValueAs(row, col, wxGRID_VALUE_NUMBER) ) | |
2402 | { | |
2403 | text.Printf(_T("%ld"), table->GetValueAsLong(row, col)); | |
2404 | } | |
9c4ba614 VZ |
2405 | else |
2406 | { | |
2407 | text = table->GetValue(row, col); | |
2408 | } | |
65e4e78e VZ |
2409 | |
2410 | return text; | |
2411 | } | |
2412 | ||
816be743 VZ |
2413 | void wxGridCellNumberRenderer::Draw(wxGrid& grid, |
2414 | wxGridCellAttr& attr, | |
2415 | wxDC& dc, | |
2416 | const wxRect& rectCell, | |
2417 | int row, int col, | |
2418 | bool isSelected) | |
2419 | { | |
2420 | wxGridCellRenderer::Draw(grid, attr, dc, rectCell, row, col, isSelected); | |
2421 | ||
2422 | SetTextColoursAndFont(grid, attr, dc, isSelected); | |
2423 | ||
2424 | // draw the text right aligned by default | |
2425 | int hAlign, vAlign; | |
2426 | attr.GetAlignment(&hAlign, &vAlign); | |
4c7277db | 2427 | hAlign = wxALIGN_RIGHT; |
816be743 VZ |
2428 | |
2429 | wxRect rect = rectCell; | |
2430 | rect.Inflate(-1); | |
2431 | ||
65e4e78e VZ |
2432 | grid.DrawTextRectangle(dc, GetString(grid, row, col), rect, hAlign, vAlign); |
2433 | } | |
816be743 | 2434 | |
65e4e78e VZ |
2435 | wxSize wxGridCellNumberRenderer::GetBestSize(wxGrid& grid, |
2436 | wxGridCellAttr& attr, | |
2437 | wxDC& dc, | |
2438 | int row, int col) | |
2439 | { | |
2440 | return DoGetBestSize(attr, dc, GetString(grid, row, col)); | |
816be743 VZ |
2441 | } |
2442 | ||
2443 | // ---------------------------------------------------------------------------- | |
2444 | // wxGridCellFloatRenderer | |
2445 | // ---------------------------------------------------------------------------- | |
2446 | ||
2447 | wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width, int precision) | |
2448 | { | |
2449 | SetWidth(width); | |
2450 | SetPrecision(precision); | |
2451 | } | |
2452 | ||
e72b4213 VZ |
2453 | wxGridCellRenderer *wxGridCellFloatRenderer::Clone() const |
2454 | { | |
2455 | wxGridCellFloatRenderer *renderer = new wxGridCellFloatRenderer; | |
2456 | renderer->m_width = m_width; | |
2457 | renderer->m_precision = m_precision; | |
2458 | renderer->m_format = m_format; | |
2459 | ||
2460 | return renderer; | |
2461 | } | |
2462 | ||
fbfb8bcc | 2463 | wxString wxGridCellFloatRenderer::GetString(const wxGrid& grid, int row, int col) |
65e4e78e VZ |
2464 | { |
2465 | wxGridTableBase *table = grid.GetTable(); | |
0b190b0f VZ |
2466 | |
2467 | bool hasDouble; | |
2468 | double val; | |
65e4e78e VZ |
2469 | wxString text; |
2470 | if ( table->CanGetValueAs(row, col, wxGRID_VALUE_FLOAT) ) | |
2471 | { | |
0b190b0f | 2472 | val = table->GetValueAsDouble(row, col); |
ca65c044 | 2473 | hasDouble = true; |
65e4e78e | 2474 | } |
9c4ba614 VZ |
2475 | else |
2476 | { | |
2477 | text = table->GetValue(row, col); | |
0b190b0f | 2478 | hasDouble = text.ToDouble(&val); |
9c4ba614 | 2479 | } |
65e4e78e | 2480 | |
0b190b0f VZ |
2481 | if ( hasDouble ) |
2482 | { | |
2483 | if ( !m_format ) | |
2484 | { | |
2485 | if ( m_width == -1 ) | |
2486 | { | |
19d7140e VZ |
2487 | if ( m_precision == -1 ) |
2488 | { | |
2b5f62a0 VZ |
2489 | // default width/precision |
2490 | m_format = _T("%f"); | |
2491 | } | |
19d7140e VZ |
2492 | else |
2493 | { | |
2494 | m_format.Printf(_T("%%.%df"), m_precision); | |
2495 | } | |
0b190b0f VZ |
2496 | } |
2497 | else if ( m_precision == -1 ) | |
2498 | { | |
2499 | // default precision | |
2500 | m_format.Printf(_T("%%%d.f"), m_width); | |
2501 | } | |
2502 | else | |
2503 | { | |
2504 | m_format.Printf(_T("%%%d.%df"), m_width, m_precision); | |
2505 | } | |
2506 | } | |
2507 | ||
2508 | text.Printf(m_format, val); | |
19d7140e | 2509 | |
0b190b0f VZ |
2510 | } |
2511 | //else: text already contains the string | |
2512 | ||
65e4e78e VZ |
2513 | return text; |
2514 | } | |
2515 | ||
816be743 VZ |
2516 | void wxGridCellFloatRenderer::Draw(wxGrid& grid, |
2517 | wxGridCellAttr& attr, | |
2518 | wxDC& dc, | |
2519 | const wxRect& rectCell, | |
2520 | int row, int col, | |
2521 | bool isSelected) | |
2522 | { | |
2523 | wxGridCellRenderer::Draw(grid, attr, dc, rectCell, row, col, isSelected); | |
2524 | ||
2525 | SetTextColoursAndFont(grid, attr, dc, isSelected); | |
2526 | ||
2527 | // draw the text right aligned by default | |
2528 | int hAlign, vAlign; | |
2529 | attr.GetAlignment(&hAlign, &vAlign); | |
4c7277db | 2530 | hAlign = wxALIGN_RIGHT; |
816be743 VZ |
2531 | |
2532 | wxRect rect = rectCell; | |
2533 | rect.Inflate(-1); | |
2534 | ||
65e4e78e VZ |
2535 | grid.DrawTextRectangle(dc, GetString(grid, row, col), rect, hAlign, vAlign); |
2536 | } | |
816be743 | 2537 | |
65e4e78e VZ |
2538 | wxSize wxGridCellFloatRenderer::GetBestSize(wxGrid& grid, |
2539 | wxGridCellAttr& attr, | |
2540 | wxDC& dc, | |
2541 | int row, int col) | |
2542 | { | |
2543 | return DoGetBestSize(attr, dc, GetString(grid, row, col)); | |
816be743 VZ |
2544 | } |
2545 | ||
0b190b0f VZ |
2546 | void wxGridCellFloatRenderer::SetParameters(const wxString& params) |
2547 | { | |
0b190b0f VZ |
2548 | if ( !params ) |
2549 | { | |
2550 | // reset to defaults | |
2551 | SetWidth(-1); | |
2552 | SetPrecision(-1); | |
2553 | } | |
2554 | else | |
2555 | { | |
2556 | wxString tmp = params.BeforeFirst(_T(',')); | |
ec157c8f | 2557 | if ( !tmp.empty() ) |
0b190b0f VZ |
2558 | { |
2559 | long width; | |
19d7140e | 2560 | if ( tmp.ToLong(&width) ) |
0b190b0f | 2561 | { |
19d7140e | 2562 | SetWidth((int)width); |
0b190b0f VZ |
2563 | } |
2564 | else | |
2565 | { | |
19d7140e VZ |
2566 | wxLogDebug(_T("Invalid wxGridCellFloatRenderer width parameter string '%s ignored"), params.c_str()); |
2567 | } | |
19d7140e | 2568 | } |
2f024384 | 2569 | |
7448de8d WS |
2570 | tmp = params.AfterFirst(_T(',')); |
2571 | if ( !tmp.empty() ) | |
2572 | { | |
2573 | long precision; | |
19d7140e | 2574 | if ( tmp.ToLong(&precision) ) |
7448de8d | 2575 | { |
19d7140e | 2576 | SetPrecision((int)precision); |
7448de8d WS |
2577 | } |
2578 | else | |
2579 | { | |
19d7140e | 2580 | wxLogDebug(_T("Invalid wxGridCellFloatRenderer precision parameter string '%s ignored"), params.c_str()); |
7448de8d | 2581 | } |
0b190b0f VZ |
2582 | } |
2583 | } | |
2584 | } | |
2585 | ||
508011ce VZ |
2586 | // ---------------------------------------------------------------------------- |
2587 | // wxGridCellBoolRenderer | |
2588 | // ---------------------------------------------------------------------------- | |
2589 | ||
65e4e78e | 2590 | wxSize wxGridCellBoolRenderer::ms_sizeCheckMark; |
508011ce | 2591 | |
b94ae1ea VZ |
2592 | // FIXME these checkbox size calculations are really ugly... |
2593 | ||
65e4e78e | 2594 | // between checkmark and box |
a95e38c0 | 2595 | static const wxCoord wxGRID_CHECKMARK_MARGIN = 2; |
508011ce | 2596 | |
65e4e78e VZ |
2597 | wxSize wxGridCellBoolRenderer::GetBestSize(wxGrid& grid, |
2598 | wxGridCellAttr& WXUNUSED(attr), | |
2599 | wxDC& WXUNUSED(dc), | |
2600 | int WXUNUSED(row), | |
2601 | int WXUNUSED(col)) | |
2602 | { | |
2603 | // compute it only once (no locks for MT safeness in GUI thread...) | |
2604 | if ( !ms_sizeCheckMark.x ) | |
297da4ba | 2605 | { |
65e4e78e | 2606 | // get checkbox size |
ca65c044 | 2607 | wxCheckBox *checkbox = new wxCheckBox(&grid, wxID_ANY, wxEmptyString); |
297da4ba | 2608 | wxSize size = checkbox->GetBestSize(); |
2f024384 | 2609 | wxCoord checkSize = size.y + 2 * wxGRID_CHECKMARK_MARGIN; |
297da4ba | 2610 | |
2f26ad28 | 2611 | #if defined(__WXMOTIF__) |
65e4e78e | 2612 | checkSize -= size.y / 2; |
297da4ba VZ |
2613 | #endif |
2614 | ||
2615 | delete checkbox; | |
65e4e78e VZ |
2616 | |
2617 | ms_sizeCheckMark.x = ms_sizeCheckMark.y = checkSize; | |
297da4ba VZ |
2618 | } |
2619 | ||
65e4e78e VZ |
2620 | return ms_sizeCheckMark; |
2621 | } | |
2622 | ||
2623 | void wxGridCellBoolRenderer::Draw(wxGrid& grid, | |
2624 | wxGridCellAttr& attr, | |
2625 | wxDC& dc, | |
2626 | const wxRect& rect, | |
2627 | int row, int col, | |
2628 | bool isSelected) | |
2629 | { | |
2630 | wxGridCellRenderer::Draw(grid, attr, dc, rect, row, col, isSelected); | |
2631 | ||
297da4ba | 2632 | // draw a check mark in the centre (ignoring alignment - TODO) |
65e4e78e | 2633 | wxSize size = GetBestSize(grid, attr, dc, row, col); |
b94ae1ea VZ |
2634 | |
2635 | // don't draw outside the cell | |
2636 | wxCoord minSize = wxMin(rect.width, rect.height); | |
2637 | if ( size.x >= minSize || size.y >= minSize ) | |
2638 | { | |
2639 | // and even leave (at least) 1 pixel margin | |
2f26ad28 | 2640 | size.x = size.y = minSize; |
b94ae1ea VZ |
2641 | } |
2642 | ||
2643 | // draw a border around checkmark | |
1bd71df9 | 2644 | int vAlign, hAlign; |
c2f5b920 | 2645 | attr.GetAlignment(&hAlign, &vAlign); |
52d6f640 | 2646 | |
a95e38c0 | 2647 | wxRect rectBorder; |
1bd71df9 JS |
2648 | if (hAlign == wxALIGN_CENTRE) |
2649 | { | |
2f024384 DS |
2650 | rectBorder.x = rect.x + rect.width / 2 - size.x / 2; |
2651 | rectBorder.y = rect.y + rect.height / 2 - size.y / 2; | |
1bd71df9 JS |
2652 | rectBorder.width = size.x; |
2653 | rectBorder.height = size.y; | |
2654 | } | |
2655 | else if (hAlign == wxALIGN_LEFT) | |
2656 | { | |
2657 | rectBorder.x = rect.x + 2; | |
2f024384 | 2658 | rectBorder.y = rect.y + rect.height / 2 - size.y / 2; |
1bd71df9 | 2659 | rectBorder.width = size.x; |
52d6f640 | 2660 | rectBorder.height = size.y; |
1bd71df9 JS |
2661 | } |
2662 | else if (hAlign == wxALIGN_RIGHT) | |
2663 | { | |
2664 | rectBorder.x = rect.x + rect.width - size.x - 2; | |
2f024384 | 2665 | rectBorder.y = rect.y + rect.height / 2 - size.y / 2; |
1bd71df9 | 2666 | rectBorder.width = size.x; |
52d6f640 | 2667 | rectBorder.height = size.y; |
1bd71df9 | 2668 | } |
b94ae1ea | 2669 | |
f2d76237 | 2670 | bool value; |
b94ae1ea | 2671 | if ( grid.GetTable()->CanGetValueAs(row, col, wxGRID_VALUE_BOOL) ) |
c2f5b920 | 2672 | { |
f2d76237 | 2673 | value = grid.GetTable()->GetValueAsBool(row, col); |
c2f5b920 | 2674 | } |
f2d76237 | 2675 | else |
695a3263 MB |
2676 | { |
2677 | wxString cellval( grid.GetTable()->GetValue(row, col) ); | |
9c71a138 | 2678 | value = wxGridCellBoolEditor::IsTrueValue(cellval); |
695a3263 | 2679 | } |
f2d76237 | 2680 | |
2f26ad28 RR |
2681 | int flags = 0; |
2682 | if (value) | |
76c66f19 VZ |
2683 | flags |= wxCONTROL_CHECKED; |
2684 | ||
2f26ad28 | 2685 | wxRendererNative::Get().DrawCheckBox( &grid, dc, rectBorder, flags ); |
508011ce VZ |
2686 | } |
2687 | ||
2796cce3 RD |
2688 | // ---------------------------------------------------------------------------- |
2689 | // wxGridCellAttr | |
2690 | // ---------------------------------------------------------------------------- | |
2691 | ||
1df4050d VZ |
2692 | void wxGridCellAttr::Init(wxGridCellAttr *attrDefault) |
2693 | { | |
2694 | m_nRef = 1; | |
2695 | ||
2696 | m_isReadOnly = Unset; | |
2697 | ||
2698 | m_renderer = NULL; | |
2699 | m_editor = NULL; | |
2700 | ||
2701 | m_attrkind = wxGridCellAttr::Cell; | |
2702 | ||
27f35b66 | 2703 | m_sizeRows = m_sizeCols = 1; |
b63fce94 | 2704 | m_overflow = UnsetOverflow; |
27f35b66 | 2705 | |
1df4050d VZ |
2706 | SetDefAttr(attrDefault); |
2707 | } | |
2708 | ||
39bcce60 | 2709 | wxGridCellAttr *wxGridCellAttr::Clone() const |
a68c1246 | 2710 | { |
1df4050d VZ |
2711 | wxGridCellAttr *attr = new wxGridCellAttr(m_defGridAttr); |
2712 | ||
a68c1246 VZ |
2713 | if ( HasTextColour() ) |
2714 | attr->SetTextColour(GetTextColour()); | |
2715 | if ( HasBackgroundColour() ) | |
2716 | attr->SetBackgroundColour(GetBackgroundColour()); | |
2717 | if ( HasFont() ) | |
2718 | attr->SetFont(GetFont()); | |
2719 | if ( HasAlignment() ) | |
2720 | attr->SetAlignment(m_hAlign, m_vAlign); | |
2721 | ||
27f35b66 SN |
2722 | attr->SetSize( m_sizeRows, m_sizeCols ); |
2723 | ||
a68c1246 VZ |
2724 | if ( m_renderer ) |
2725 | { | |
2726 | attr->SetRenderer(m_renderer); | |
39bcce60 | 2727 | m_renderer->IncRef(); |
a68c1246 VZ |
2728 | } |
2729 | if ( m_editor ) | |
2730 | { | |
2731 | attr->SetEditor(m_editor); | |
39bcce60 | 2732 | m_editor->IncRef(); |
a68c1246 VZ |
2733 | } |
2734 | ||
2735 | if ( IsReadOnly() ) | |
2736 | attr->SetReadOnly(); | |
2737 | ||
dfd7c082 | 2738 | attr->SetOverflow( m_overflow == Overflow ); |
19d7140e VZ |
2739 | attr->SetKind( m_attrkind ); |
2740 | ||
a68c1246 VZ |
2741 | return attr; |
2742 | } | |
2743 | ||
19d7140e VZ |
2744 | void wxGridCellAttr::MergeWith(wxGridCellAttr *mergefrom) |
2745 | { | |
2746 | if ( !HasTextColour() && mergefrom->HasTextColour() ) | |
2747 | SetTextColour(mergefrom->GetTextColour()); | |
2748 | if ( !HasBackgroundColour() && mergefrom->HasBackgroundColour() ) | |
2749 | SetBackgroundColour(mergefrom->GetBackgroundColour()); | |
2750 | if ( !HasFont() && mergefrom->HasFont() ) | |
2751 | SetFont(mergefrom->GetFont()); | |
4db6714b KH |
2752 | if ( !HasAlignment() && mergefrom->HasAlignment() ) |
2753 | { | |
19d7140e VZ |
2754 | int hAlign, vAlign; |
2755 | mergefrom->GetAlignment( &hAlign, &vAlign); | |
2756 | SetAlignment(hAlign, vAlign); | |
2757 | } | |
3100c3db RD |
2758 | if ( !HasSize() && mergefrom->HasSize() ) |
2759 | mergefrom->GetSize( &m_sizeRows, &m_sizeCols ); | |
27f35b66 | 2760 | |
19d7140e VZ |
2761 | // Directly access member functions as GetRender/Editor don't just return |
2762 | // m_renderer/m_editor | |
2763 | // | |
2764 | // Maybe add support for merge of Render and Editor? | |
2765 | if (!HasRenderer() && mergefrom->HasRenderer() ) | |
bf7945ce | 2766 | { |
19d7140e VZ |
2767 | m_renderer = mergefrom->m_renderer; |
2768 | m_renderer->IncRef(); | |
2769 | } | |
2770 | if ( !HasEditor() && mergefrom->HasEditor() ) | |
2771 | { | |
2772 | m_editor = mergefrom->m_editor; | |
2773 | m_editor->IncRef(); | |
2774 | } | |
2f024384 | 2775 | if ( !HasReadWriteMode() && mergefrom->HasReadWriteMode() ) |
19d7140e VZ |
2776 | SetReadOnly(mergefrom->IsReadOnly()); |
2777 | ||
2f024384 | 2778 | if (!HasOverflowMode() && mergefrom->HasOverflowMode() ) |
ff699386 | 2779 | SetOverflow(mergefrom->GetOverflow()); |
ef5df12b | 2780 | |
19d7140e VZ |
2781 | SetDefAttr(mergefrom->m_defGridAttr); |
2782 | } | |
2783 | ||
27f35b66 SN |
2784 | void wxGridCellAttr::SetSize(int num_rows, int num_cols) |
2785 | { | |
2786 | // The size of a cell is normally 1,1 | |
2787 | ||
2788 | // If this cell is larger (2,2) then this is the top left cell | |
2789 | // the other cells that will be covered (lower right cells) must be | |
2790 | // set to negative or zero values such that | |
2791 | // row + num_rows of the covered cell points to the larger cell (this cell) | |
2792 | // same goes for the col + num_cols. | |
2793 | ||
2794 | // Size of 0,0 is NOT valid, neither is <=0 and any positive value | |
2795 | ||
2f024384 DS |
2796 | wxASSERT_MSG( (!((num_rows > 0) && (num_cols <= 0)) || |
2797 | !((num_rows <= 0) && (num_cols > 0)) || | |
2798 | !((num_rows == 0) && (num_cols == 0))), | |
27f35b66 SN |
2799 | wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values")); |
2800 | ||
2801 | m_sizeRows = num_rows; | |
2802 | m_sizeCols = num_cols; | |
2803 | } | |
2804 | ||
2796cce3 RD |
2805 | const wxColour& wxGridCellAttr::GetTextColour() const |
2806 | { | |
2807 | if (HasTextColour()) | |
508011ce | 2808 | { |
2796cce3 | 2809 | return m_colText; |
508011ce | 2810 | } |
0926b2fc | 2811 | else if (m_defGridAttr && m_defGridAttr != this) |
508011ce | 2812 | { |
2796cce3 | 2813 | return m_defGridAttr->GetTextColour(); |
508011ce VZ |
2814 | } |
2815 | else | |
2816 | { | |
2796cce3 RD |
2817 | wxFAIL_MSG(wxT("Missing default cell attribute")); |
2818 | return wxNullColour; | |
2819 | } | |
2820 | } | |
2821 | ||
2796cce3 RD |
2822 | const wxColour& wxGridCellAttr::GetBackgroundColour() const |
2823 | { | |
2824 | if (HasBackgroundColour()) | |
2f024384 | 2825 | { |
2796cce3 | 2826 | return m_colBack; |
2f024384 | 2827 | } |
0926b2fc | 2828 | else if (m_defGridAttr && m_defGridAttr != this) |
2f024384 | 2829 | { |
2796cce3 | 2830 | return m_defGridAttr->GetBackgroundColour(); |
2f024384 | 2831 | } |
508011ce VZ |
2832 | else |
2833 | { | |
2796cce3 RD |
2834 | wxFAIL_MSG(wxT("Missing default cell attribute")); |
2835 | return wxNullColour; | |
2836 | } | |
2837 | } | |
2838 | ||
2796cce3 RD |
2839 | const wxFont& wxGridCellAttr::GetFont() const |
2840 | { | |
2841 | if (HasFont()) | |
2f024384 | 2842 | { |
2796cce3 | 2843 | return m_font; |
2f024384 | 2844 | } |
0926b2fc | 2845 | else if (m_defGridAttr && m_defGridAttr != this) |
2f024384 | 2846 | { |
2796cce3 | 2847 | return m_defGridAttr->GetFont(); |
2f024384 | 2848 | } |
508011ce VZ |
2849 | else |
2850 | { | |
2796cce3 RD |
2851 | wxFAIL_MSG(wxT("Missing default cell attribute")); |
2852 | return wxNullFont; | |
2853 | } | |
2854 | } | |
2855 | ||
2796cce3 RD |
2856 | void wxGridCellAttr::GetAlignment(int *hAlign, int *vAlign) const |
2857 | { | |
508011ce VZ |
2858 | if (HasAlignment()) |
2859 | { | |
4db6714b KH |
2860 | if ( hAlign ) |
2861 | *hAlign = m_hAlign; | |
2862 | if ( vAlign ) | |
2863 | *vAlign = m_vAlign; | |
2796cce3 | 2864 | } |
0926b2fc | 2865 | else if (m_defGridAttr && m_defGridAttr != this) |
c2f5b920 | 2866 | { |
2796cce3 | 2867 | m_defGridAttr->GetAlignment(hAlign, vAlign); |
c2f5b920 | 2868 | } |
508011ce VZ |
2869 | else |
2870 | { | |
2796cce3 RD |
2871 | wxFAIL_MSG(wxT("Missing default cell attribute")); |
2872 | } | |
2873 | } | |
2874 | ||
27f35b66 SN |
2875 | void wxGridCellAttr::GetSize( int *num_rows, int *num_cols ) const |
2876 | { | |
4db6714b KH |
2877 | if ( num_rows ) |
2878 | *num_rows = m_sizeRows; | |
2879 | if ( num_cols ) | |
2880 | *num_cols = m_sizeCols; | |
27f35b66 | 2881 | } |
2796cce3 | 2882 | |
f2d76237 | 2883 | // GetRenderer and GetEditor use a slightly different decision path about |
28a77bc4 RD |
2884 | // which attribute to use. If a non-default attr object has one then it is |
2885 | // used, otherwise the default editor or renderer is fetched from the grid and | |
2886 | // used. It should be the default for the data type of the cell. If it is | |
2887 | // NULL (because the table has a type that the grid does not have in its | |
c2f5b920 | 2888 | // registry), then the grid's default editor or renderer is used. |
28a77bc4 | 2889 | |
ef316e23 | 2890 | wxGridCellRenderer* wxGridCellAttr::GetRenderer(const wxGrid* grid, int row, int col) const |
28a77bc4 | 2891 | { |
c2f5b920 | 2892 | wxGridCellRenderer *renderer = NULL; |
28a77bc4 | 2893 | |
3cf883a2 | 2894 | if ( m_renderer && this != m_defGridAttr ) |
0b190b0f | 2895 | { |
3cf883a2 VZ |
2896 | // use the cells renderer if it has one |
2897 | renderer = m_renderer; | |
2898 | renderer->IncRef(); | |
0b190b0f | 2899 | } |
2f024384 | 2900 | else // no non-default cell renderer |
0b190b0f | 2901 | { |
3cf883a2 VZ |
2902 | // get default renderer for the data type |
2903 | if ( grid ) | |
2904 | { | |
2905 | // GetDefaultRendererForCell() will do IncRef() for us | |
2906 | renderer = grid->GetDefaultRendererForCell(row, col); | |
2907 | } | |
0b190b0f | 2908 | |
c2f5b920 | 2909 | if ( renderer == NULL ) |
3cf883a2 | 2910 | { |
c2f5b920 | 2911 | if ( (m_defGridAttr != NULL) && (m_defGridAttr != this) ) |
3cf883a2 VZ |
2912 | { |
2913 | // if we still don't have one then use the grid default | |
2914 | // (no need for IncRef() here neither) | |
2915 | renderer = m_defGridAttr->GetRenderer(NULL, 0, 0); | |
2916 | } | |
2917 | else // default grid attr | |
2918 | { | |
2919 | // use m_renderer which we had decided not to use initially | |
2920 | renderer = m_renderer; | |
2921 | if ( renderer ) | |
2922 | renderer->IncRef(); | |
2923 | } | |
2924 | } | |
0b190b0f | 2925 | } |
28a77bc4 | 2926 | |
3cf883a2 VZ |
2927 | // we're supposed to always find something |
2928 | wxASSERT_MSG(renderer, wxT("Missing default cell renderer")); | |
28a77bc4 RD |
2929 | |
2930 | return renderer; | |
2796cce3 RD |
2931 | } |
2932 | ||
3cf883a2 | 2933 | // same as above, except for s/renderer/editor/g |
ef316e23 | 2934 | wxGridCellEditor* wxGridCellAttr::GetEditor(const wxGrid* grid, int row, int col) const |
07296f0b | 2935 | { |
c2f5b920 | 2936 | wxGridCellEditor *editor = NULL; |
0b190b0f | 2937 | |
3cf883a2 | 2938 | if ( m_editor && this != m_defGridAttr ) |
0b190b0f | 2939 | { |
3cf883a2 VZ |
2940 | // use the cells editor if it has one |
2941 | editor = m_editor; | |
2942 | editor->IncRef(); | |
0b190b0f | 2943 | } |
3cf883a2 | 2944 | else // no non default cell editor |
0b190b0f | 2945 | { |
3cf883a2 VZ |
2946 | // get default editor for the data type |
2947 | if ( grid ) | |
2948 | { | |
2949 | // GetDefaultEditorForCell() will do IncRef() for us | |
2950 | editor = grid->GetDefaultEditorForCell(row, col); | |
2951 | } | |
3cf883a2 | 2952 | |
c2f5b920 | 2953 | if ( editor == NULL ) |
3cf883a2 | 2954 | { |
c2f5b920 | 2955 | if ( (m_defGridAttr != NULL) && (m_defGridAttr != this) ) |
3cf883a2 VZ |
2956 | { |
2957 | // if we still don't have one then use the grid default | |
2958 | // (no need for IncRef() here neither) | |
2959 | editor = m_defGridAttr->GetEditor(NULL, 0, 0); | |
2960 | } | |
2961 | else // default grid attr | |
2962 | { | |
2963 | // use m_editor which we had decided not to use initially | |
2964 | editor = m_editor; | |
2965 | if ( editor ) | |
2966 | editor->IncRef(); | |
2967 | } | |
2968 | } | |
0b190b0f | 2969 | } |
28a77bc4 | 2970 | |
3cf883a2 VZ |
2971 | // we're supposed to always find something |
2972 | wxASSERT_MSG(editor, wxT("Missing default cell editor")); | |
2973 | ||
28a77bc4 | 2974 | return editor; |
07296f0b RD |
2975 | } |
2976 | ||
b99be8fb | 2977 | // ---------------------------------------------------------------------------- |
758cbedf | 2978 | // wxGridCellAttrData |
b99be8fb VZ |
2979 | // ---------------------------------------------------------------------------- |
2980 | ||
758cbedf | 2981 | void wxGridCellAttrData::SetAttr(wxGridCellAttr *attr, int row, int col) |
b99be8fb | 2982 | { |
96ca74cd SN |
2983 | // Note: contrary to wxGridRowOrColAttrData::SetAttr, we must not |
2984 | // touch attribute's reference counting explicitly, since this | |
2985 | // is managed by class wxGridCellWithAttr | |
b99be8fb VZ |
2986 | int n = FindIndex(row, col); |
2987 | if ( n == wxNOT_FOUND ) | |
2988 | { | |
a70517e9 VZ |
2989 | if ( attr ) |
2990 | { | |
2991 | // add the attribute | |
2992 | m_attrs.Add(new wxGridCellWithAttr(row, col, attr)); | |
2993 | } | |
2994 | //else: nothing to do | |
b99be8fb | 2995 | } |
6f292345 | 2996 | else // we already have an attribute for this cell |
b99be8fb VZ |
2997 | { |
2998 | if ( attr ) | |
2999 | { | |
3000 | // change the attribute | |
96ca74cd | 3001 | m_attrs[(size_t)n].ChangeAttr(attr); |
b99be8fb VZ |
3002 | } |
3003 | else | |
3004 | { | |
3005 | // remove this attribute | |
3006 | m_attrs.RemoveAt((size_t)n); | |
3007 | } | |
3008 | } | |
b99be8fb VZ |
3009 | } |
3010 | ||
758cbedf | 3011 | wxGridCellAttr *wxGridCellAttrData::GetAttr(int row, int col) const |
b99be8fb | 3012 | { |
10a4531d | 3013 | wxGridCellAttr *attr = NULL; |
b99be8fb VZ |
3014 | |
3015 | int n = FindIndex(row, col); | |
3016 | if ( n != wxNOT_FOUND ) | |
3017 | { | |
2e9a6788 VZ |
3018 | attr = m_attrs[(size_t)n].attr; |
3019 | attr->IncRef(); | |
b99be8fb VZ |
3020 | } |
3021 | ||
3022 | return attr; | |
3023 | } | |
3024 | ||
4d60017a SN |
3025 | void wxGridCellAttrData::UpdateAttrRows( size_t pos, int numRows ) |
3026 | { | |
3027 | size_t count = m_attrs.GetCount(); | |
3028 | for ( size_t n = 0; n < count; n++ ) | |
3029 | { | |
3030 | wxGridCellCoords& coords = m_attrs[n].coords; | |
d1c0b4f9 VZ |
3031 | wxCoord row = coords.GetRow(); |
3032 | if ((size_t)row >= pos) | |
3033 | { | |
3034 | if (numRows > 0) | |
3035 | { | |
3036 | // If rows inserted, include row counter where necessary | |
3037 | coords.SetRow(row + numRows); | |
3038 | } | |
3039 | else if (numRows < 0) | |
3040 | { | |
3041 | // If rows deleted ... | |
3042 | if ((size_t)row >= pos - numRows) | |
3043 | { | |
3044 | // ...either decrement row counter (if row still exists)... | |
3045 | coords.SetRow(row + numRows); | |
3046 | } | |
3047 | else | |
3048 | { | |
3049 | // ...or remove the attribute | |
01dd42b6 | 3050 | m_attrs.RemoveAt(n); |
4db6714b KH |
3051 | n--; |
3052 | count--; | |
d1c0b4f9 VZ |
3053 | } |
3054 | } | |
4d60017a SN |
3055 | } |
3056 | } | |
3057 | } | |
3058 | ||
3059 | void wxGridCellAttrData::UpdateAttrCols( size_t pos, int numCols ) | |
3060 | { | |
3061 | size_t count = m_attrs.GetCount(); | |
3062 | for ( size_t n = 0; n < count; n++ ) | |
3063 | { | |
3064 | wxGridCellCoords& coords = m_attrs[n].coords; | |
d1c0b4f9 VZ |
3065 | wxCoord col = coords.GetCol(); |
3066 | if ( (size_t)col >= pos ) | |
3067 | { | |
3068 | if ( numCols > 0 ) | |
3069 | { | |
3070 | // If rows inserted, include row counter where necessary | |
3071 | coords.SetCol(col + numCols); | |
3072 | } | |
3073 | else if (numCols < 0) | |
3074 | { | |
3075 | // If rows deleted ... | |
3076 | if ((size_t)col >= pos - numCols) | |
3077 | { | |
3078 | // ...either decrement row counter (if row still exists)... | |
3079 | coords.SetCol(col + numCols); | |
3080 | } | |
3081 | else | |
3082 | { | |
3083 | // ...or remove the attribute | |
01dd42b6 | 3084 | m_attrs.RemoveAt(n); |
2f024384 DS |
3085 | n--; |
3086 | count--; | |
d1c0b4f9 VZ |
3087 | } |
3088 | } | |
4d60017a SN |
3089 | } |
3090 | } | |
3091 | } | |
3092 | ||
758cbedf | 3093 | int wxGridCellAttrData::FindIndex(int row, int col) const |
b99be8fb VZ |
3094 | { |
3095 | size_t count = m_attrs.GetCount(); | |
3096 | for ( size_t n = 0; n < count; n++ ) | |
3097 | { | |
3098 | const wxGridCellCoords& coords = m_attrs[n].coords; | |
3099 | if ( (coords.GetRow() == row) && (coords.GetCol() == col) ) | |
3100 | { | |
3101 | return n; | |
3102 | } | |
3103 | } | |
3104 | ||
3105 | return wxNOT_FOUND; | |
3106 | } | |
3107 | ||
758cbedf VZ |
3108 | // ---------------------------------------------------------------------------- |
3109 | // wxGridRowOrColAttrData | |
3110 | // ---------------------------------------------------------------------------- | |
3111 | ||
3112 | wxGridRowOrColAttrData::~wxGridRowOrColAttrData() | |
3113 | { | |
b4a980f4 | 3114 | size_t count = m_attrs.GetCount(); |
758cbedf VZ |
3115 | for ( size_t n = 0; n < count; n++ ) |
3116 | { | |
3117 | m_attrs[n]->DecRef(); | |
3118 | } | |
3119 | } | |
3120 | ||
3121 | wxGridCellAttr *wxGridRowOrColAttrData::GetAttr(int rowOrCol) const | |
3122 | { | |
10a4531d | 3123 | wxGridCellAttr *attr = NULL; |
758cbedf VZ |
3124 | |
3125 | int n = m_rowsOrCols.Index(rowOrCol); | |
3126 | if ( n != wxNOT_FOUND ) | |
3127 | { | |
3128 | attr = m_attrs[(size_t)n]; | |
3129 | attr->IncRef(); | |
3130 | } | |
3131 | ||
3132 | return attr; | |
3133 | } | |
3134 | ||
3135 | void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr *attr, int rowOrCol) | |
3136 | { | |
a95e38c0 VZ |
3137 | int i = m_rowsOrCols.Index(rowOrCol); |
3138 | if ( i == wxNOT_FOUND ) | |
758cbedf | 3139 | { |
62d249cb VZ |
3140 | if ( attr ) |
3141 | { | |
96ca74cd SN |
3142 | // add the attribute - no need to do anything to reference count |
3143 | // since we take ownership of the attribute. | |
62d249cb VZ |
3144 | m_rowsOrCols.Add(rowOrCol); |
3145 | m_attrs.Add(attr); | |
3146 | } | |
3147 | // nothing to remove | |
758cbedf VZ |
3148 | } |
3149 | else | |
3150 | { | |
a95e38c0 | 3151 | size_t n = (size_t)i; |
d1b021ff SN |
3152 | if ( m_attrs[n] == attr ) |
3153 | // nothing to do | |
54181a33 | 3154 | return; |
758cbedf VZ |
3155 | if ( attr ) |
3156 | { | |
96ca74cd SN |
3157 | // change the attribute, handling reference count manually, |
3158 | // taking ownership of the new attribute. | |
a95e38c0 VZ |
3159 | m_attrs[n]->DecRef(); |
3160 | m_attrs[n] = attr; | |
758cbedf VZ |
3161 | } |
3162 | else | |
3163 | { | |
96ca74cd | 3164 | // remove this attribute, handling reference count manually |
a95e38c0 VZ |
3165 | m_attrs[n]->DecRef(); |
3166 | m_rowsOrCols.RemoveAt(n); | |
3167 | m_attrs.RemoveAt(n); | |
758cbedf VZ |
3168 | } |
3169 | } | |
3170 | } | |
3171 | ||
4d60017a SN |
3172 | void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos, int numRowsOrCols ) |
3173 | { | |
3174 | size_t count = m_attrs.GetCount(); | |
3175 | for ( size_t n = 0; n < count; n++ ) | |
3176 | { | |
3177 | int & rowOrCol = m_rowsOrCols[n]; | |
d1c0b4f9 VZ |
3178 | if ( (size_t)rowOrCol >= pos ) |
3179 | { | |
3180 | if ( numRowsOrCols > 0 ) | |
3181 | { | |
3182 | // If rows inserted, include row counter where necessary | |
3183 | rowOrCol += numRowsOrCols; | |
3184 | } | |
3185 | else if ( numRowsOrCols < 0) | |
3186 | { | |
3187 | // If rows deleted, either decrement row counter (if row still exists) | |
3188 | if ((size_t)rowOrCol >= pos - numRowsOrCols) | |
3189 | rowOrCol += numRowsOrCols; | |
3190 | else | |
3191 | { | |
01dd42b6 VZ |
3192 | m_rowsOrCols.RemoveAt(n); |
3193 | m_attrs[n]->DecRef(); | |
3194 | m_attrs.RemoveAt(n); | |
4db6714b KH |
3195 | n--; |
3196 | count--; | |
d1c0b4f9 VZ |
3197 | } |
3198 | } | |
4d60017a SN |
3199 | } |
3200 | } | |
3201 | } | |
3202 | ||
b99be8fb VZ |
3203 | // ---------------------------------------------------------------------------- |
3204 | // wxGridCellAttrProvider | |
3205 | // ---------------------------------------------------------------------------- | |
3206 | ||
3207 | wxGridCellAttrProvider::wxGridCellAttrProvider() | |
3208 | { | |
10a4531d | 3209 | m_data = NULL; |
b99be8fb VZ |
3210 | } |
3211 | ||
3212 | wxGridCellAttrProvider::~wxGridCellAttrProvider() | |
3213 | { | |
3214 | delete m_data; | |
3215 | } | |
3216 | ||
3217 | void wxGridCellAttrProvider::InitData() | |
3218 | { | |
3219 | m_data = new wxGridCellAttrProviderData; | |
3220 | } | |
3221 | ||
19d7140e VZ |
3222 | wxGridCellAttr *wxGridCellAttrProvider::GetAttr(int row, int col, |
3223 | wxGridCellAttr::wxAttrKind kind ) const | |
b99be8fb | 3224 | { |
10a4531d | 3225 | wxGridCellAttr *attr = NULL; |
758cbedf VZ |
3226 | if ( m_data ) |
3227 | { | |
962a48f6 | 3228 | switch (kind) |
758cbedf | 3229 | { |
19d7140e | 3230 | case (wxGridCellAttr::Any): |
962a48f6 DS |
3231 | // Get cached merge attributes. |
3232 | // Currently not used as no cache implemented as not mutable | |
19d7140e | 3233 | // attr = m_data->m_mergeAttr.GetAttr(row, col); |
4db6714b | 3234 | if (!attr) |
19d7140e | 3235 | { |
962a48f6 DS |
3236 | // Basically implement old version. |
3237 | // Also check merge cache, so we don't have to re-merge every time.. | |
999836aa VZ |
3238 | wxGridCellAttr *attrcell = m_data->m_cellAttrs.GetAttr(row, col); |
3239 | wxGridCellAttr *attrrow = m_data->m_rowAttrs.GetAttr(row); | |
3240 | wxGridCellAttr *attrcol = m_data->m_colAttrs.GetAttr(col); | |
19d7140e | 3241 | |
4db6714b KH |
3242 | if ((attrcell != attrrow) && (attrrow != attrcol) && (attrcell != attrcol)) |
3243 | { | |
2d0c2e79 | 3244 | // Two or more are non NULL |
19d7140e VZ |
3245 | attr = new wxGridCellAttr; |
3246 | attr->SetKind(wxGridCellAttr::Merged); | |
3247 | ||
962a48f6 | 3248 | // Order is important.. |
4db6714b KH |
3249 | if (attrcell) |
3250 | { | |
19d7140e VZ |
3251 | attr->MergeWith(attrcell); |
3252 | attrcell->DecRef(); | |
3253 | } | |
4db6714b KH |
3254 | if (attrcol) |
3255 | { | |
19d7140e VZ |
3256 | attr->MergeWith(attrcol); |
3257 | attrcol->DecRef(); | |
3258 | } | |
4db6714b KH |
3259 | if (attrrow) |
3260 | { | |
19d7140e VZ |
3261 | attr->MergeWith(attrrow); |
3262 | attrrow->DecRef(); | |
3263 | } | |
962a48f6 DS |
3264 | |
3265 | // store merge attr if cache implemented | |
19d7140e VZ |
3266 | //attr->IncRef(); |
3267 | //m_data->m_mergeAttr.SetAttr(attr, row, col); | |
3268 | } | |
3269 | else | |
2d0c2e79 | 3270 | { |
19d7140e | 3271 | // one or none is non null return it or null. |
4db6714b KH |
3272 | if (attrrow) |
3273 | attr = attrrow; | |
3274 | if (attrcol) | |
2d0c2e79 | 3275 | { |
962a48f6 | 3276 | if (attr) |
2d0c2e79 RD |
3277 | attr->DecRef(); |
3278 | attr = attrcol; | |
3279 | } | |
4db6714b | 3280 | if (attrcell) |
2d0c2e79 | 3281 | { |
4db6714b | 3282 | if (attr) |
2d0c2e79 RD |
3283 | attr->DecRef(); |
3284 | attr = attrcell; | |
3285 | } | |
19d7140e VZ |
3286 | } |
3287 | } | |
2f024384 | 3288 | break; |
4db6714b | 3289 | |
19d7140e VZ |
3290 | case (wxGridCellAttr::Cell): |
3291 | attr = m_data->m_cellAttrs.GetAttr(row, col); | |
2f024384 | 3292 | break; |
4db6714b | 3293 | |
19d7140e | 3294 | case (wxGridCellAttr::Col): |
2d0c2e79 | 3295 | attr = m_data->m_colAttrs.GetAttr(col); |
2f024384 | 3296 | break; |
4db6714b | 3297 | |
19d7140e | 3298 | case (wxGridCellAttr::Row): |
2d0c2e79 | 3299 | attr = m_data->m_rowAttrs.GetAttr(row); |
2f024384 | 3300 | break; |
4db6714b | 3301 | |
19d7140e VZ |
3302 | default: |
3303 | // unused as yet... | |
3304 | // (wxGridCellAttr::Default): | |
3305 | // (wxGridCellAttr::Merged): | |
2f024384 | 3306 | break; |
758cbedf VZ |
3307 | } |
3308 | } | |
2f024384 | 3309 | |
758cbedf | 3310 | return attr; |
b99be8fb VZ |
3311 | } |
3312 | ||
2e9a6788 | 3313 | void wxGridCellAttrProvider::SetAttr(wxGridCellAttr *attr, |
b99be8fb VZ |
3314 | int row, int col) |
3315 | { | |
3316 | if ( !m_data ) | |
3317 | InitData(); | |
3318 | ||
758cbedf VZ |
3319 | m_data->m_cellAttrs.SetAttr(attr, row, col); |
3320 | } | |
3321 | ||
3322 | void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr *attr, int row) | |
3323 | { | |
3324 | if ( !m_data ) | |
3325 | InitData(); | |
3326 | ||
3327 | m_data->m_rowAttrs.SetAttr(attr, row); | |
3328 | } | |
3329 | ||
3330 | void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr *attr, int col) | |
3331 | { | |
3332 | if ( !m_data ) | |
3333 | InitData(); | |
3334 | ||
3335 | m_data->m_colAttrs.SetAttr(attr, col); | |
b99be8fb VZ |
3336 | } |
3337 | ||
4d60017a SN |
3338 | void wxGridCellAttrProvider::UpdateAttrRows( size_t pos, int numRows ) |
3339 | { | |
3340 | if ( m_data ) | |
3341 | { | |
3342 | m_data->m_cellAttrs.UpdateAttrRows( pos, numRows ); | |
3343 | ||
d1c0b4f9 | 3344 | m_data->m_rowAttrs.UpdateAttrRowsOrCols( pos, numRows ); |
4d60017a SN |
3345 | } |
3346 | } | |
3347 | ||
3348 | void wxGridCellAttrProvider::UpdateAttrCols( size_t pos, int numCols ) | |
3349 | { | |
3350 | if ( m_data ) | |
3351 | { | |
3352 | m_data->m_cellAttrs.UpdateAttrCols( pos, numCols ); | |
3353 | ||
d1c0b4f9 | 3354 | m_data->m_colAttrs.UpdateAttrRowsOrCols( pos, numCols ); |
4d60017a SN |
3355 | } |
3356 | } | |
3357 | ||
f2d76237 RD |
3358 | // ---------------------------------------------------------------------------- |
3359 | // wxGridTypeRegistry | |
3360 | // ---------------------------------------------------------------------------- | |
3361 | ||
3362 | wxGridTypeRegistry::~wxGridTypeRegistry() | |
3363 | { | |
b4a980f4 | 3364 | size_t count = m_typeinfo.GetCount(); |
b94ae1ea | 3365 | for ( size_t i = 0; i < count; i++ ) |
f2d76237 RD |
3366 | delete m_typeinfo[i]; |
3367 | } | |
3368 | ||
f2d76237 RD |
3369 | void wxGridTypeRegistry::RegisterDataType(const wxString& typeName, |
3370 | wxGridCellRenderer* renderer, | |
3371 | wxGridCellEditor* editor) | |
3372 | { | |
f2d76237 RD |
3373 | wxGridDataTypeInfo* info = new wxGridDataTypeInfo(typeName, renderer, editor); |
3374 | ||
3375 | // is it already registered? | |
c4608a8a | 3376 | int loc = FindRegisteredDataType(typeName); |
39bcce60 VZ |
3377 | if ( loc != wxNOT_FOUND ) |
3378 | { | |
f2d76237 RD |
3379 | delete m_typeinfo[loc]; |
3380 | m_typeinfo[loc] = info; | |
3381 | } | |
39bcce60 VZ |
3382 | else |
3383 | { | |
f2d76237 RD |
3384 | m_typeinfo.Add(info); |
3385 | } | |
3386 | } | |
3387 | ||
c4608a8a VZ |
3388 | int wxGridTypeRegistry::FindRegisteredDataType(const wxString& typeName) |
3389 | { | |
3390 | size_t count = m_typeinfo.GetCount(); | |
3391 | for ( size_t i = 0; i < count; i++ ) | |
3392 | { | |
3393 | if ( typeName == m_typeinfo[i]->m_typeName ) | |
3394 | { | |
3395 | return i; | |
3396 | } | |
3397 | } | |
3398 | ||
3399 | return wxNOT_FOUND; | |
3400 | } | |
3401 | ||
f2d76237 RD |
3402 | int wxGridTypeRegistry::FindDataType(const wxString& typeName) |
3403 | { | |
c4608a8a VZ |
3404 | int index = FindRegisteredDataType(typeName); |
3405 | if ( index == wxNOT_FOUND ) | |
3406 | { | |
3407 | // check whether this is one of the standard ones, in which case | |
3408 | // register it "on the fly" | |
3a8c693a | 3409 | #if wxUSE_TEXTCTRL |
c4608a8a VZ |
3410 | if ( typeName == wxGRID_VALUE_STRING ) |
3411 | { | |
3412 | RegisterDataType(wxGRID_VALUE_STRING, | |
3413 | new wxGridCellStringRenderer, | |
3414 | new wxGridCellTextEditor); | |
4db6714b KH |
3415 | } |
3416 | else | |
3a8c693a VZ |
3417 | #endif // wxUSE_TEXTCTRL |
3418 | #if wxUSE_CHECKBOX | |
3419 | if ( typeName == wxGRID_VALUE_BOOL ) | |
c4608a8a VZ |
3420 | { |
3421 | RegisterDataType(wxGRID_VALUE_BOOL, | |
3422 | new wxGridCellBoolRenderer, | |
3423 | new wxGridCellBoolEditor); | |
4db6714b KH |
3424 | } |
3425 | else | |
3a8c693a VZ |
3426 | #endif // wxUSE_CHECKBOX |
3427 | #if wxUSE_TEXTCTRL | |
3428 | if ( typeName == wxGRID_VALUE_NUMBER ) | |
c4608a8a VZ |
3429 | { |
3430 | RegisterDataType(wxGRID_VALUE_NUMBER, | |
3431 | new wxGridCellNumberRenderer, | |
3432 | new wxGridCellNumberEditor); | |
3433 | } | |
3434 | else if ( typeName == wxGRID_VALUE_FLOAT ) | |
3435 | { | |
3436 | RegisterDataType(wxGRID_VALUE_FLOAT, | |
3437 | new wxGridCellFloatRenderer, | |
3438 | new wxGridCellFloatEditor); | |
4db6714b KH |
3439 | } |
3440 | else | |
3a8c693a VZ |
3441 | #endif // wxUSE_TEXTCTRL |
3442 | #if wxUSE_COMBOBOX | |
3443 | if ( typeName == wxGRID_VALUE_CHOICE ) | |
c4608a8a VZ |
3444 | { |
3445 | RegisterDataType(wxGRID_VALUE_CHOICE, | |
3446 | new wxGridCellStringRenderer, | |
3447 | new wxGridCellChoiceEditor); | |
4db6714b KH |
3448 | } |
3449 | else | |
3a8c693a | 3450 | #endif // wxUSE_COMBOBOX |
c4608a8a VZ |
3451 | { |
3452 | return wxNOT_FOUND; | |
3453 | } | |
f2d76237 | 3454 | |
c4608a8a VZ |
3455 | // we get here only if just added the entry for this type, so return |
3456 | // the last index | |
3457 | index = m_typeinfo.GetCount() - 1; | |
3458 | } | |
3459 | ||
3460 | return index; | |
3461 | } | |
3462 | ||
3463 | int wxGridTypeRegistry::FindOrCloneDataType(const wxString& typeName) | |
3464 | { | |
3465 | int index = FindDataType(typeName); | |
3466 | if ( index == wxNOT_FOUND ) | |
3467 | { | |
3468 | // the first part of the typename is the "real" type, anything after ':' | |
3469 | // are the parameters for the renderer | |
3470 | index = FindDataType(typeName.BeforeFirst(_T(':'))); | |
3471 | if ( index == wxNOT_FOUND ) | |
3472 | { | |
3473 | return wxNOT_FOUND; | |
f2d76237 | 3474 | } |
c4608a8a VZ |
3475 | |
3476 | wxGridCellRenderer *renderer = GetRenderer(index); | |
3477 | wxGridCellRenderer *rendererOld = renderer; | |
3478 | renderer = renderer->Clone(); | |
3479 | rendererOld->DecRef(); | |
3480 | ||
3481 | wxGridCellEditor *editor = GetEditor(index); | |
3482 | wxGridCellEditor *editorOld = editor; | |
3483 | editor = editor->Clone(); | |
3484 | editorOld->DecRef(); | |
3485 | ||
3486 | // do it even if there are no parameters to reset them to defaults | |
3487 | wxString params = typeName.AfterFirst(_T(':')); | |
3488 | renderer->SetParameters(params); | |
3489 | editor->SetParameters(params); | |
3490 | ||
3491 | // register the new typename | |
c4608a8a VZ |
3492 | RegisterDataType(typeName, renderer, editor); |
3493 | ||
3494 | // we just registered it, it's the last one | |
3495 | index = m_typeinfo.GetCount() - 1; | |
f2d76237 RD |
3496 | } |
3497 | ||
c4608a8a | 3498 | return index; |
f2d76237 RD |
3499 | } |
3500 | ||
3501 | wxGridCellRenderer* wxGridTypeRegistry::GetRenderer(int index) | |
3502 | { | |
3503 | wxGridCellRenderer* renderer = m_typeinfo[index]->m_renderer; | |
faec5a43 SN |
3504 | if (renderer) |
3505 | renderer->IncRef(); | |
2f024384 | 3506 | |
f2d76237 RD |
3507 | return renderer; |
3508 | } | |
3509 | ||
0b190b0f | 3510 | wxGridCellEditor* wxGridTypeRegistry::GetEditor(int index) |
f2d76237 RD |
3511 | { |
3512 | wxGridCellEditor* editor = m_typeinfo[index]->m_editor; | |
faec5a43 SN |
3513 | if (editor) |
3514 | editor->IncRef(); | |
2f024384 | 3515 | |
f2d76237 RD |
3516 | return editor; |
3517 | } | |
3518 | ||
758cbedf VZ |
3519 | // ---------------------------------------------------------------------------- |
3520 | // wxGridTableBase | |
3521 | // ---------------------------------------------------------------------------- | |
3522 | ||
f85afd4e MB |
3523 | IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase, wxObject ) |
3524 | ||
f85afd4e | 3525 | wxGridTableBase::wxGridTableBase() |
f85afd4e | 3526 | { |
10a4531d VZ |
3527 | m_view = NULL; |
3528 | m_attrProvider = NULL; | |
f85afd4e MB |
3529 | } |
3530 | ||
3531 | wxGridTableBase::~wxGridTableBase() | |
3532 | { | |
b99be8fb VZ |
3533 | delete m_attrProvider; |
3534 | } | |
3535 | ||
3536 | void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider *attrProvider) | |
3537 | { | |
3538 | delete m_attrProvider; | |
3539 | m_attrProvider = attrProvider; | |
f85afd4e MB |
3540 | } |
3541 | ||
f2d76237 RD |
3542 | bool wxGridTableBase::CanHaveAttributes() |
3543 | { | |
3544 | if ( ! GetAttrProvider() ) | |
3545 | { | |
3546 | // use the default attr provider by default | |
3547 | SetAttrProvider(new wxGridCellAttrProvider); | |
3548 | } | |
2f024384 | 3549 | |
ca65c044 | 3550 | return true; |
f2d76237 RD |
3551 | } |
3552 | ||
19d7140e | 3553 | wxGridCellAttr *wxGridTableBase::GetAttr(int row, int col, wxGridCellAttr::wxAttrKind kind) |
b99be8fb VZ |
3554 | { |
3555 | if ( m_attrProvider ) | |
19d7140e | 3556 | return m_attrProvider->GetAttr(row, col, kind); |
b99be8fb | 3557 | else |
10a4531d | 3558 | return NULL; |
b99be8fb VZ |
3559 | } |
3560 | ||
758cbedf | 3561 | void wxGridTableBase::SetAttr(wxGridCellAttr* attr, int row, int col) |
b99be8fb VZ |
3562 | { |
3563 | if ( m_attrProvider ) | |
3564 | { | |
6f292345 VZ |
3565 | if ( attr ) |
3566 | attr->SetKind(wxGridCellAttr::Cell); | |
b99be8fb VZ |
3567 | m_attrProvider->SetAttr(attr, row, col); |
3568 | } | |
3569 | else | |
3570 | { | |
3571 | // as we take ownership of the pointer and don't store it, we must | |
3572 | // free it now | |
39bcce60 | 3573 | wxSafeDecRef(attr); |
b99be8fb VZ |
3574 | } |
3575 | } | |
3576 | ||
758cbedf VZ |
3577 | void wxGridTableBase::SetRowAttr(wxGridCellAttr *attr, int row) |
3578 | { | |
3579 | if ( m_attrProvider ) | |
3580 | { | |
19d7140e | 3581 | attr->SetKind(wxGridCellAttr::Row); |
758cbedf VZ |
3582 | m_attrProvider->SetRowAttr(attr, row); |
3583 | } | |
3584 | else | |
3585 | { | |
3586 | // as we take ownership of the pointer and don't store it, we must | |
3587 | // free it now | |
39bcce60 | 3588 | wxSafeDecRef(attr); |
758cbedf VZ |
3589 | } |
3590 | } | |
3591 | ||
3592 | void wxGridTableBase::SetColAttr(wxGridCellAttr *attr, int col) | |
3593 | { | |
3594 | if ( m_attrProvider ) | |
3595 | { | |
19d7140e | 3596 | attr->SetKind(wxGridCellAttr::Col); |
758cbedf VZ |
3597 | m_attrProvider->SetColAttr(attr, col); |
3598 | } | |
3599 | else | |
3600 | { | |
3601 | // as we take ownership of the pointer and don't store it, we must | |
3602 | // free it now | |
39bcce60 | 3603 | wxSafeDecRef(attr); |
758cbedf VZ |
3604 | } |
3605 | } | |
3606 | ||
aa5e1f75 SN |
3607 | bool wxGridTableBase::InsertRows( size_t WXUNUSED(pos), |
3608 | size_t WXUNUSED(numRows) ) | |
f85afd4e | 3609 | { |
f6bcfd97 | 3610 | wxFAIL_MSG( wxT("Called grid table class function InsertRows\nbut your derived table class does not override this function") ); |
8f177c8e | 3611 | |
ca65c044 | 3612 | return false; |
f85afd4e MB |
3613 | } |
3614 | ||
aa5e1f75 | 3615 | bool wxGridTableBase::AppendRows( size_t WXUNUSED(numRows) ) |
f85afd4e | 3616 | { |
f6bcfd97 | 3617 | wxFAIL_MSG( wxT("Called grid table class function AppendRows\nbut your derived table class does not override this function")); |
8f177c8e | 3618 | |
ca65c044 | 3619 | return false; |
f85afd4e MB |
3620 | } |
3621 | ||
aa5e1f75 SN |
3622 | bool wxGridTableBase::DeleteRows( size_t WXUNUSED(pos), |
3623 | size_t WXUNUSED(numRows) ) | |
f85afd4e | 3624 | { |
f6bcfd97 | 3625 | wxFAIL_MSG( wxT("Called grid table class function DeleteRows\nbut your derived table class does not override this function")); |
8f177c8e | 3626 | |
ca65c044 | 3627 | return false; |
f85afd4e MB |
3628 | } |
3629 | ||
aa5e1f75 SN |
3630 | bool wxGridTableBase::InsertCols( size_t WXUNUSED(pos), |
3631 | size_t WXUNUSED(numCols) ) | |
f85afd4e | 3632 | { |
f6bcfd97 | 3633 | wxFAIL_MSG( wxT("Called grid table class function InsertCols\nbut your derived table class does not override this function")); |
8f177c8e | 3634 | |
ca65c044 | 3635 | return false; |
f85afd4e MB |
3636 | } |
3637 | ||
aa5e1f75 | 3638 | bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols) ) |
f85afd4e | 3639 | { |
f6bcfd97 | 3640 | wxFAIL_MSG(wxT("Called grid table class function AppendCols\nbut your derived table class does not override this function")); |
8f177c8e | 3641 | |
ca65c044 | 3642 | return false; |
f85afd4e MB |
3643 | } |
3644 | ||
aa5e1f75 SN |
3645 | bool wxGridTableBase::DeleteCols( size_t WXUNUSED(pos), |
3646 | size_t WXUNUSED(numCols) ) | |
f85afd4e | 3647 | { |
f6bcfd97 | 3648 | wxFAIL_MSG( wxT("Called grid table class function DeleteCols\nbut your derived table class does not override this function")); |
8f177c8e | 3649 | |
ca65c044 | 3650 | return false; |
f85afd4e MB |
3651 | } |
3652 | ||
f85afd4e MB |
3653 | wxString wxGridTableBase::GetRowLabelValue( int row ) |
3654 | { | |
3655 | wxString s; | |
93763ad5 | 3656 | |
2f024384 DS |
3657 | // RD: Starting the rows at zero confuses users, |
3658 | // no matter how much it makes sense to us geeks. | |
3659 | s << row + 1; | |
3660 | ||
f85afd4e MB |
3661 | return s; |
3662 | } | |
3663 | ||
3664 | wxString wxGridTableBase::GetColLabelValue( int col ) | |
3665 | { | |
3666 | // default col labels are: | |
3667 | // cols 0 to 25 : A-Z | |
3668 | // cols 26 to 675 : AA-ZZ | |
3669 | // etc. | |
3670 | ||
3671 | wxString s; | |
3672 | unsigned int i, n; | |
3673 | for ( n = 1; ; n++ ) | |
3674 | { | |
2f024384 DS |
3675 | s += (wxChar) (_T('A') + (wxChar)(col % 26)); |
3676 | col = col / 26 - 1; | |
4db6714b KH |
3677 | if ( col < 0 ) |
3678 | break; | |
f85afd4e MB |
3679 | } |
3680 | ||
3681 | // reverse the string... | |
3682 | wxString s2; | |
3d59537f | 3683 | for ( i = 0; i < n; i++ ) |
f85afd4e | 3684 | { |
2f024384 | 3685 | s2 += s[n - i - 1]; |
f85afd4e MB |
3686 | } |
3687 | ||
3688 | return s2; | |
3689 | } | |
3690 | ||
f2d76237 RD |
3691 | wxString wxGridTableBase::GetTypeName( int WXUNUSED(row), int WXUNUSED(col) ) |
3692 | { | |
816be743 | 3693 | return wxGRID_VALUE_STRING; |
f2d76237 RD |
3694 | } |
3695 | ||
3696 | bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row), int WXUNUSED(col), | |
3697 | const wxString& typeName ) | |
3698 | { | |
816be743 | 3699 | return typeName == wxGRID_VALUE_STRING; |
f2d76237 RD |
3700 | } |
3701 | ||
3702 | bool wxGridTableBase::CanSetValueAs( int row, int col, const wxString& typeName ) | |
3703 | { | |
3704 | return CanGetValueAs(row, col, typeName); | |
3705 | } | |
3706 | ||
3707 | long wxGridTableBase::GetValueAsLong( int WXUNUSED(row), int WXUNUSED(col) ) | |
3708 | { | |
3709 | return 0; | |
3710 | } | |
3711 | ||
3712 | double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row), int WXUNUSED(col) ) | |
3713 | { | |
3714 | return 0.0; | |
3715 | } | |
3716 | ||
3717 | bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row), int WXUNUSED(col) ) | |
3718 | { | |
ca65c044 | 3719 | return false; |
f2d76237 RD |
3720 | } |
3721 | ||
3722 | void wxGridTableBase::SetValueAsLong( int WXUNUSED(row), int WXUNUSED(col), | |
3723 | long WXUNUSED(value) ) | |
3724 | { | |
3725 | } | |
3726 | ||
3727 | void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row), int WXUNUSED(col), | |
3728 | double WXUNUSED(value) ) | |
3729 | { | |
3730 | } | |
3731 | ||
3732 | void wxGridTableBase::SetValueAsBool( int WXUNUSED(row), int WXUNUSED(col), | |
3733 | bool WXUNUSED(value) ) | |
3734 | { | |
3735 | } | |
3736 | ||
f2d76237 RD |
3737 | void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row), int WXUNUSED(col), |
3738 | const wxString& WXUNUSED(typeName) ) | |
3739 | { | |
3740 | return NULL; | |
3741 | } | |
3742 | ||
3743 | void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row), int WXUNUSED(col), | |
3744 | const wxString& WXUNUSED(typeName), | |
3745 | void* WXUNUSED(value) ) | |
3746 | { | |
3747 | } | |
3748 | ||
f85afd4e MB |
3749 | ////////////////////////////////////////////////////////////////////// |
3750 | // | |
3751 | // Message class for the grid table to send requests and notifications | |
3752 | // to the grid view | |
3753 | // | |
3754 | ||
3755 | wxGridTableMessage::wxGridTableMessage() | |
3756 | { | |
10a4531d | 3757 | m_table = NULL; |
f85afd4e MB |
3758 | m_id = -1; |
3759 | m_comInt1 = -1; | |
3760 | m_comInt2 = -1; | |
3761 | } | |
3762 | ||
3763 | wxGridTableMessage::wxGridTableMessage( wxGridTableBase *table, int id, | |
3764 | int commandInt1, int commandInt2 ) | |
3765 | { | |
3766 | m_table = table; | |
3767 | m_id = id; | |
3768 | m_comInt1 = commandInt1; | |
3769 | m_comInt2 = commandInt2; | |
3770 | } | |
3771 | ||
f85afd4e MB |
3772 | ////////////////////////////////////////////////////////////////////// |
3773 | // | |
3774 | // A basic grid table for string data. An object of this class will | |
3775 | // created by wxGrid if you don't specify an alternative table class. | |
3776 | // | |
3777 | ||
223d09f6 | 3778 | WX_DEFINE_OBJARRAY(wxGridStringArray) |
f85afd4e MB |
3779 | |
3780 | IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable, wxGridTableBase ) | |
3781 | ||
3782 | wxGridStringTable::wxGridStringTable() | |
3783 | : wxGridTableBase() | |
3784 | { | |
3785 | } | |
3786 | ||
3787 | wxGridStringTable::wxGridStringTable( int numRows, int numCols ) | |
3788 | : wxGridTableBase() | |
3789 | { | |
f85afd4e MB |
3790 | m_data.Alloc( numRows ); |
3791 | ||
3792 | wxArrayString sa; | |
3793 | sa.Alloc( numCols ); | |
27f35b66 | 3794 | sa.Add( wxEmptyString, numCols ); |
8f177c8e | 3795 | |
27f35b66 | 3796 | m_data.Add( sa, numRows ); |
f85afd4e MB |
3797 | } |
3798 | ||
3799 | wxGridStringTable::~wxGridStringTable() | |
3800 | { | |
3801 | } | |
3802 | ||
e32352cf | 3803 | int wxGridStringTable::GetNumberRows() |
f85afd4e MB |
3804 | { |
3805 | return m_data.GetCount(); | |
3806 | } | |
3807 | ||
e32352cf | 3808 | int wxGridStringTable::GetNumberCols() |
f85afd4e MB |
3809 | { |
3810 | if ( m_data.GetCount() > 0 ) | |
3811 | return m_data[0].GetCount(); | |
3812 | else | |
3813 | return 0; | |
3814 | } | |
3815 | ||
3816 | wxString wxGridStringTable::GetValue( int row, int col ) | |
3817 | { | |
3e13956a RD |
3818 | wxCHECK_MSG( (row < GetNumberRows()) && (col < GetNumberCols()), |
3819 | wxEmptyString, | |
3820 | _T("invalid row or column index in wxGridStringTable") ); | |
af547d51 | 3821 | |
f85afd4e MB |
3822 | return m_data[row][col]; |
3823 | } | |
3824 | ||
f2d76237 | 3825 | void wxGridStringTable::SetValue( int row, int col, const wxString& value ) |
f85afd4e | 3826 | { |
3e13956a RD |
3827 | wxCHECK_RET( (row < GetNumberRows()) && (col < GetNumberCols()), |
3828 | _T("invalid row or column index in wxGridStringTable") ); | |
af547d51 | 3829 | |
f2d76237 | 3830 | m_data[row][col] = value; |
f85afd4e MB |
3831 | } |
3832 | ||
3833 | bool wxGridStringTable::IsEmptyCell( int row, int col ) | |
3834 | { | |
3e13956a RD |
3835 | wxCHECK_MSG( (row < GetNumberRows()) && (col < GetNumberCols()), |
3836 | true, | |
af547d51 VZ |
3837 | _T("invalid row or column index in wxGridStringTable") ); |
3838 | ||
f85afd4e MB |
3839 | return (m_data[row][col] == wxEmptyString); |
3840 | } | |
3841 | ||
f85afd4e MB |
3842 | void wxGridStringTable::Clear() |
3843 | { | |
3844 | int row, col; | |
3845 | int numRows, numCols; | |
8f177c8e | 3846 | |
f85afd4e MB |
3847 | numRows = m_data.GetCount(); |
3848 | if ( numRows > 0 ) | |
3849 | { | |
3850 | numCols = m_data[0].GetCount(); | |
3851 | ||
3d59537f | 3852 | for ( row = 0; row < numRows; row++ ) |
f85afd4e | 3853 | { |
3d59537f | 3854 | for ( col = 0; col < numCols; col++ ) |
f85afd4e MB |
3855 | { |
3856 | m_data[row][col] = wxEmptyString; | |
3857 | } | |
3858 | } | |
3859 | } | |
3860 | } | |
3861 | ||
f85afd4e MB |
3862 | bool wxGridStringTable::InsertRows( size_t pos, size_t numRows ) |
3863 | { | |
f85afd4e | 3864 | size_t curNumRows = m_data.GetCount(); |
f6bcfd97 BP |
3865 | size_t curNumCols = ( curNumRows > 0 ? m_data[0].GetCount() : |
3866 | ( GetView() ? GetView()->GetNumberCols() : 0 ) ); | |
8f177c8e | 3867 | |
f85afd4e MB |
3868 | if ( pos >= curNumRows ) |
3869 | { | |
3870 | return AppendRows( numRows ); | |
3871 | } | |
8f177c8e | 3872 | |
f85afd4e MB |
3873 | wxArrayString sa; |
3874 | sa.Alloc( curNumCols ); | |
27f35b66 SN |
3875 | sa.Add( wxEmptyString, curNumCols ); |
3876 | m_data.Insert( sa, pos, numRows ); | |
2f024384 | 3877 | |
f85afd4e MB |
3878 | if ( GetView() ) |
3879 | { | |
3880 | wxGridTableMessage msg( this, | |
3881 | wxGRIDTABLE_NOTIFY_ROWS_INSERTED, | |
3882 | pos, | |
3883 | numRows ); | |
8f177c8e | 3884 | |
f85afd4e MB |
3885 | GetView()->ProcessTableMessage( msg ); |
3886 | } | |
3887 | ||
ca65c044 | 3888 | return true; |
f85afd4e MB |
3889 | } |
3890 | ||
3891 | bool wxGridStringTable::AppendRows( size_t numRows ) | |
3892 | { | |
f85afd4e | 3893 | size_t curNumRows = m_data.GetCount(); |
4db6714b KH |
3894 | size_t curNumCols = ( curNumRows > 0 |
3895 | ? m_data[0].GetCount() | |
3896 | : ( GetView() ? GetView()->GetNumberCols() : 0 ) ); | |
8f177c8e | 3897 | |
f85afd4e MB |
3898 | wxArrayString sa; |
3899 | if ( curNumCols > 0 ) | |
3900 | { | |
3901 | sa.Alloc( curNumCols ); | |
27f35b66 | 3902 | sa.Add( wxEmptyString, curNumCols ); |
f85afd4e | 3903 | } |
8f177c8e | 3904 | |
27f35b66 | 3905 | m_data.Add( sa, numRows ); |
f85afd4e MB |
3906 | |
3907 | if ( GetView() ) | |
3908 | { | |
3909 | wxGridTableMessage msg( this, | |
3910 | wxGRIDTABLE_NOTIFY_ROWS_APPENDED, | |
3911 | numRows ); | |
8f177c8e | 3912 | |
f85afd4e MB |
3913 | GetView()->ProcessTableMessage( msg ); |
3914 | } | |
3915 | ||
ca65c044 | 3916 | return true; |
f85afd4e MB |
3917 | } |
3918 | ||
3919 | bool wxGridStringTable::DeleteRows( size_t pos, size_t numRows ) | |
3920 | { | |
f85afd4e | 3921 | size_t curNumRows = m_data.GetCount(); |
8f177c8e | 3922 | |
f85afd4e MB |
3923 | if ( pos >= curNumRows ) |
3924 | { | |
e91d2033 VZ |
3925 | wxFAIL_MSG( wxString::Format |
3926 | ( | |
3927 | wxT("Called wxGridStringTable::DeleteRows(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu rows"), | |
3928 | (unsigned long)pos, | |
3929 | (unsigned long)numRows, | |
3930 | (unsigned long)curNumRows | |
3931 | ) ); | |
3932 | ||
ca65c044 | 3933 | return false; |
f85afd4e MB |
3934 | } |
3935 | ||
3936 | if ( numRows > curNumRows - pos ) | |
3937 | { | |
3938 | numRows = curNumRows - pos; | |
3939 | } | |
8f177c8e | 3940 | |
f85afd4e MB |
3941 | if ( numRows >= curNumRows ) |
3942 | { | |
d57ad377 | 3943 | m_data.Clear(); |
f85afd4e MB |
3944 | } |
3945 | else | |
3946 | { | |
27f35b66 | 3947 | m_data.RemoveAt( pos, numRows ); |
f85afd4e | 3948 | } |
4db6714b | 3949 | |
f85afd4e MB |
3950 | if ( GetView() ) |
3951 | { | |
3952 | wxGridTableMessage msg( this, | |
3953 | wxGRIDTABLE_NOTIFY_ROWS_DELETED, | |
3954 | pos, | |
3955 | numRows ); | |
8f177c8e | 3956 | |
f85afd4e MB |
3957 | GetView()->ProcessTableMessage( msg ); |
3958 | } | |
3959 | ||
ca65c044 | 3960 | return true; |
f85afd4e MB |
3961 | } |
3962 | ||
3963 | bool wxGridStringTable::InsertCols( size_t pos, size_t numCols ) | |
3964 | { | |
3965 | size_t row, col; | |
3966 | ||
3967 | size_t curNumRows = m_data.GetCount(); | |
4db6714b KH |
3968 | size_t curNumCols = ( curNumRows > 0 |
3969 | ? m_data[0].GetCount() | |
3970 | : ( GetView() ? GetView()->GetNumberCols() : 0 ) ); | |
8f177c8e | 3971 | |
f85afd4e MB |
3972 | if ( pos >= curNumCols ) |
3973 | { | |
3974 | return AppendCols( numCols ); | |
3975 | } | |
3976 | ||
d4175745 VZ |
3977 | if ( !m_colLabels.IsEmpty() ) |
3978 | { | |
3979 | m_colLabels.Insert( wxEmptyString, pos, numCols ); | |
3980 | ||
3981 | size_t i; | |
3982 | for ( i = pos; i < pos + numCols; i++ ) | |
3983 | m_colLabels[i] = wxGridTableBase::GetColLabelValue( i ); | |
3984 | } | |
3985 | ||
3d59537f | 3986 | for ( row = 0; row < curNumRows; row++ ) |
f85afd4e | 3987 | { |
3d59537f | 3988 | for ( col = pos; col < pos + numCols; col++ ) |
f85afd4e MB |
3989 | { |
3990 | m_data[row].Insert( wxEmptyString, col ); | |
3991 | } | |
3992 | } | |
4db6714b | 3993 | |
f85afd4e MB |
3994 | if ( GetView() ) |
3995 | { | |
3996 | wxGridTableMessage msg( this, | |
3997 | wxGRIDTABLE_NOTIFY_COLS_INSERTED, | |
3998 | pos, | |
3999 | numCols ); | |
8f177c8e | 4000 | |
f85afd4e MB |
4001 | GetView()->ProcessTableMessage( msg ); |
4002 | } | |
4003 | ||
ca65c044 | 4004 | return true; |
f85afd4e MB |
4005 | } |
4006 | ||
4007 | bool wxGridStringTable::AppendCols( size_t numCols ) | |
4008 | { | |
27f35b66 | 4009 | size_t row; |
f85afd4e MB |
4010 | |
4011 | size_t curNumRows = m_data.GetCount(); | |
2f024384 | 4012 | |
3d59537f | 4013 | for ( row = 0; row < curNumRows; row++ ) |
f85afd4e | 4014 | { |
27f35b66 | 4015 | m_data[row].Add( wxEmptyString, numCols ); |
f85afd4e MB |
4016 | } |
4017 | ||
4018 | if ( GetView() ) | |
4019 | { | |
4020 | wxGridTableMessage msg( this, | |
4021 | wxGRIDTABLE_NOTIFY_COLS_APPENDED, | |
4022 | numCols ); | |
8f177c8e | 4023 | |
f85afd4e MB |
4024 | GetView()->ProcessTableMessage( msg ); |
4025 | } | |
4026 | ||
ca65c044 | 4027 | return true; |
f85afd4e MB |
4028 | } |
4029 | ||
4030 | bool wxGridStringTable::DeleteCols( size_t pos, size_t numCols ) | |
4031 | { | |
27f35b66 | 4032 | size_t row; |
f85afd4e MB |
4033 | |
4034 | size_t curNumRows = m_data.GetCount(); | |
f6bcfd97 BP |
4035 | size_t curNumCols = ( curNumRows > 0 ? m_data[0].GetCount() : |
4036 | ( GetView() ? GetView()->GetNumberCols() : 0 ) ); | |
8f177c8e | 4037 | |
f85afd4e MB |
4038 | if ( pos >= curNumCols ) |
4039 | { | |
e91d2033 VZ |
4040 | wxFAIL_MSG( wxString::Format |
4041 | ( | |
4042 | wxT("Called wxGridStringTable::DeleteCols(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu cols"), | |
4043 | (unsigned long)pos, | |
4044 | (unsigned long)numCols, | |
4045 | (unsigned long)curNumCols | |
4046 | ) ); | |
ca65c044 | 4047 | return false; |
f85afd4e MB |
4048 | } |
4049 | ||
d4175745 VZ |
4050 | int colID; |
4051 | if ( GetView() ) | |
4052 | colID = GetView()->GetColAt( pos ); | |
4053 | else | |
4054 | colID = pos; | |
4055 | ||
4056 | if ( numCols > curNumCols - colID ) | |
4057 | { | |
4058 | numCols = curNumCols - colID; | |
4059 | } | |
4060 | ||
4061 | if ( !m_colLabels.IsEmpty() ) | |
f85afd4e | 4062 | { |
b2df5ddf VZ |
4063 | // m_colLabels stores just as many elements as it needs, e.g. if only |
4064 | // the label of the first column had been set it would have only one | |
4065 | // element and not numCols, so account for it | |
4066 | int nToRm = m_colLabels.size() - colID; | |
4067 | if ( nToRm > 0 ) | |
4068 | m_colLabels.RemoveAt( colID, nToRm ); | |
f85afd4e MB |
4069 | } |
4070 | ||
3d59537f | 4071 | for ( row = 0; row < curNumRows; row++ ) |
f85afd4e MB |
4072 | { |
4073 | if ( numCols >= curNumCols ) | |
4074 | { | |
dcdce64e | 4075 | m_data[row].Clear(); |
f85afd4e MB |
4076 | } |
4077 | else | |
4078 | { | |
d4175745 | 4079 | m_data[row].RemoveAt( colID, numCols ); |
f85afd4e MB |
4080 | } |
4081 | } | |
4db6714b | 4082 | |
f85afd4e MB |
4083 | if ( GetView() ) |
4084 | { | |
4085 | wxGridTableMessage msg( this, | |
4086 | wxGRIDTABLE_NOTIFY_COLS_DELETED, | |
4087 | pos, | |
4088 | numCols ); | |
8f177c8e | 4089 | |
f85afd4e MB |
4090 | GetView()->ProcessTableMessage( msg ); |
4091 | } | |
4092 | ||
ca65c044 | 4093 | return true; |
f85afd4e MB |
4094 | } |
4095 | ||
4096 | wxString wxGridStringTable::GetRowLabelValue( int row ) | |
4097 | { | |
4098 | if ( row > (int)(m_rowLabels.GetCount()) - 1 ) | |
4099 | { | |
4100 | // using default label | |
4101 | // | |
4102 | return wxGridTableBase::GetRowLabelValue( row ); | |
4103 | } | |
4104 | else | |
4105 | { | |
2f024384 | 4106 | return m_rowLabels[row]; |
f85afd4e MB |
4107 | } |
4108 | } | |
4109 | ||
4110 | wxString wxGridStringTable::GetColLabelValue( int col ) | |
4111 | { | |
4112 | if ( col > (int)(m_colLabels.GetCount()) - 1 ) | |
4113 | { | |
4114 | // using default label | |
4115 | // | |
4116 | return wxGridTableBase::GetColLabelValue( col ); | |
4117 | } | |
4118 | else | |
4119 | { | |
2f024384 | 4120 | return m_colLabels[col]; |
f85afd4e MB |
4121 | } |
4122 | } | |
4123 | ||
4124 | void wxGridStringTable::SetRowLabelValue( int row, const wxString& value ) | |
4125 | { | |
4126 | if ( row > (int)(m_rowLabels.GetCount()) - 1 ) | |
4127 | { | |
4128 | int n = m_rowLabels.GetCount(); | |
4129 | int i; | |
2f024384 | 4130 | |
3d59537f | 4131 | for ( i = n; i <= row; i++ ) |
f85afd4e MB |
4132 | { |
4133 | m_rowLabels.Add( wxGridTableBase::GetRowLabelValue(i) ); | |
4134 | } | |
4135 | } | |
4136 | ||
4137 | m_rowLabels[row] = value; | |
4138 | } | |
4139 | ||
4140 | void wxGridStringTable::SetColLabelValue( int col, const wxString& value ) | |
4141 | { | |
4142 | if ( col > (int)(m_colLabels.GetCount()) - 1 ) | |
4143 | { | |
4144 | int n = m_colLabels.GetCount(); | |
4145 | int i; | |
2f024384 | 4146 | |
3d59537f | 4147 | for ( i = n; i <= col; i++ ) |
f85afd4e MB |
4148 | { |
4149 | m_colLabels.Add( wxGridTableBase::GetColLabelValue(i) ); | |
4150 | } | |
4151 | } | |
4152 | ||
4153 | m_colLabels[col] = value; | |
4154 | } | |
4155 | ||
4156 | ||
f85afd4e | 4157 | ////////////////////////////////////////////////////////////////////// |
2d66e025 MB |
4158 | ////////////////////////////////////////////////////////////////////// |
4159 | ||
86033c4b VZ |
4160 | BEGIN_EVENT_TABLE(wxGridSubwindow, wxWindow) |
4161 | EVT_MOUSE_CAPTURE_LOST(wxGridSubwindow::OnMouseCaptureLost) | |
4162 | END_EVENT_TABLE() | |
4163 | ||
4164 | void wxGridSubwindow::OnMouseCaptureLost(wxMouseCaptureLostEvent& WXUNUSED(event)) | |
4165 | { | |
4166 | m_owner->CancelMouseCapture(); | |
4167 | } | |
4168 | ||
2d66e025 MB |
4169 | IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow, wxWindow ) |
4170 | ||
86033c4b | 4171 | BEGIN_EVENT_TABLE( wxGridRowLabelWindow, wxGridSubwindow ) |
2d66e025 | 4172 | EVT_PAINT( wxGridRowLabelWindow::OnPaint ) |
a9339fe2 | 4173 | EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel ) |
2d66e025 | 4174 | EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent ) |
2d66e025 MB |
4175 | END_EVENT_TABLE() |
4176 | ||
60ff3b99 VZ |
4177 | wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid *parent, |
4178 | wxWindowID id, | |
2d66e025 | 4179 | const wxPoint &pos, const wxSize &size ) |
86033c4b | 4180 | : wxGridSubwindow(parent, id, pos, size) |
2d66e025 MB |
4181 | { |
4182 | m_owner = parent; | |
4183 | } | |
4184 | ||
aa5e1f75 | 4185 | void wxGridRowLabelWindow::OnPaint( wxPaintEvent& WXUNUSED(event) ) |
2d66e025 MB |
4186 | { |
4187 | wxPaintDC dc(this); | |
4188 | ||
4189 | // NO - don't do this because it will set both the x and y origin | |
4190 | // coords to match the parent scrolled window and we just want to | |
4191 | // set the y coord - MB | |
4192 | // | |
4193 | // m_owner->PrepareDC( dc ); | |
60ff3b99 | 4194 | |
790ad94f | 4195 | int x, y; |
2d66e025 | 4196 | m_owner->CalcUnscrolledPosition( 0, 0, &x, &y ); |
615b7e6a RR |
4197 | wxPoint pt = dc.GetDeviceOrigin(); |
4198 | dc.SetDeviceOrigin( pt.x, pt.y-y ); | |
60ff3b99 | 4199 | |
d10f4bf9 | 4200 | wxArrayInt rows = m_owner->CalcRowLabelsExposed( GetUpdateRegion() ); |
a9339fe2 | 4201 | m_owner->DrawRowLabels( dc, rows ); |
2d66e025 MB |
4202 | } |
4203 | ||
2d66e025 MB |
4204 | void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent& event ) |
4205 | { | |
4206 | m_owner->ProcessRowLabelMouseEvent( event ); | |
4207 | } | |
4208 | ||
b51c3f27 RD |
4209 | void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent& event ) |
4210 | { | |
a9339fe2 | 4211 | m_owner->GetEventHandler()->ProcessEvent( event ); |
b51c3f27 RD |
4212 | } |
4213 | ||
2d66e025 MB |
4214 | ////////////////////////////////////////////////////////////////////// |
4215 | ||
4216 | IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow, wxWindow ) | |
4217 | ||
86033c4b | 4218 | BEGIN_EVENT_TABLE( wxGridColLabelWindow, wxGridSubwindow ) |
2d66e025 | 4219 | EVT_PAINT( wxGridColLabelWindow::OnPaint ) |
a9339fe2 | 4220 | EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel ) |
2d66e025 | 4221 | EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent ) |
2d66e025 MB |
4222 | END_EVENT_TABLE() |
4223 | ||
60ff3b99 VZ |
4224 | wxGridColLabelWindow::wxGridColLabelWindow( wxGrid *parent, |
4225 | wxWindowID id, | |
2d66e025 | 4226 | const wxPoint &pos, const wxSize &size ) |
86033c4b | 4227 | : wxGridSubwindow(parent, id, pos, size) |
2d66e025 MB |
4228 | { |
4229 | m_owner = parent; | |
4230 | } | |
4231 | ||
aa5e1f75 | 4232 | void wxGridColLabelWindow::OnPaint( wxPaintEvent& WXUNUSED(event) ) |
2d66e025 MB |
4233 | { |
4234 | wxPaintDC dc(this); | |
4235 | ||
4236 | // NO - don't do this because it will set both the x and y origin | |
4237 | // coords to match the parent scrolled window and we just want to | |
4238 | // set the x coord - MB | |
4239 | // | |
4240 | // m_owner->PrepareDC( dc ); | |
60ff3b99 | 4241 | |
790ad94f | 4242 | int x, y; |
2d66e025 | 4243 | m_owner->CalcUnscrolledPosition( 0, 0, &x, &y ); |
615b7e6a RR |
4244 | wxPoint pt = dc.GetDeviceOrigin(); |
4245 | if (GetLayoutDirection() == wxLayout_RightToLeft) | |
4246 | dc.SetDeviceOrigin( pt.x+x, pt.y ); | |
4247 | else | |
4248 | dc.SetDeviceOrigin( pt.x-x, pt.y ); | |
2d66e025 | 4249 | |
d10f4bf9 | 4250 | wxArrayInt cols = m_owner->CalcColLabelsExposed( GetUpdateRegion() ); |
a9339fe2 | 4251 | m_owner->DrawColLabels( dc, cols ); |
2d66e025 MB |
4252 | } |
4253 | ||
2d66e025 MB |
4254 | void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent& event ) |
4255 | { | |
4256 | m_owner->ProcessColLabelMouseEvent( event ); | |
4257 | } | |
4258 | ||
b51c3f27 RD |
4259 | void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent& event ) |
4260 | { | |
a9339fe2 | 4261 | m_owner->GetEventHandler()->ProcessEvent( event ); |
b51c3f27 RD |
4262 | } |
4263 | ||
2d66e025 MB |
4264 | ////////////////////////////////////////////////////////////////////// |
4265 | ||
4266 | IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow, wxWindow ) | |
4267 | ||
86033c4b | 4268 | BEGIN_EVENT_TABLE( wxGridCornerLabelWindow, wxGridSubwindow ) |
a9339fe2 | 4269 | EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel ) |
2d66e025 | 4270 | EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent ) |
a9339fe2 | 4271 | EVT_PAINT( wxGridCornerLabelWindow::OnPaint ) |
2d66e025 MB |
4272 | END_EVENT_TABLE() |
4273 | ||
60ff3b99 VZ |
4274 | wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid *parent, |
4275 | wxWindowID id, | |
ff72f628 VZ |
4276 | const wxPoint& pos, |
4277 | const wxSize& size ) | |
86033c4b | 4278 | : wxGridSubwindow(parent, id, pos, size) |
2d66e025 MB |
4279 | { |
4280 | m_owner = parent; | |
4281 | } | |
4282 | ||
d2fdd8d2 RR |
4283 | void wxGridCornerLabelWindow::OnPaint( wxPaintEvent& WXUNUSED(event) ) |
4284 | { | |
4285 | wxPaintDC dc(this); | |
b99be8fb | 4286 | |
ff72f628 | 4287 | m_owner->DrawCornerLabel(dc); |
d2fdd8d2 RR |
4288 | } |
4289 | ||
2d66e025 MB |
4290 | void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent& event ) |
4291 | { | |
4292 | m_owner->ProcessCornerLabelMouseEvent( event ); | |
4293 | } | |
4294 | ||
b51c3f27 RD |
4295 | void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent& event ) |
4296 | { | |
4297 | m_owner->GetEventHandler()->ProcessEvent(event); | |
4298 | } | |
4299 | ||
f85afd4e MB |
4300 | ////////////////////////////////////////////////////////////////////// |
4301 | ||
59ddac01 | 4302 | IMPLEMENT_DYNAMIC_CLASS( wxGridWindow, wxWindow ) |
2d66e025 | 4303 | |
86033c4b | 4304 | BEGIN_EVENT_TABLE( wxGridWindow, wxGridSubwindow ) |
2d66e025 | 4305 | EVT_PAINT( wxGridWindow::OnPaint ) |
a9339fe2 | 4306 | EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel ) |
2d66e025 MB |
4307 | EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent ) |
4308 | EVT_KEY_DOWN( wxGridWindow::OnKeyDown ) | |
f6bcfd97 | 4309 | EVT_KEY_UP( wxGridWindow::OnKeyUp ) |
a9339fe2 | 4310 | EVT_CHAR( wxGridWindow::OnChar ) |
80acaf25 JS |
4311 | EVT_SET_FOCUS( wxGridWindow::OnFocus ) |
4312 | EVT_KILL_FOCUS( wxGridWindow::OnFocus ) | |
2796cce3 | 4313 | EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground ) |
2d66e025 MB |
4314 | END_EVENT_TABLE() |
4315 | ||
60ff3b99 VZ |
4316 | wxGridWindow::wxGridWindow( wxGrid *parent, |
4317 | wxGridRowLabelWindow *rowLblWin, | |
2d66e025 | 4318 | wxGridColLabelWindow *colLblWin, |
04418332 VZ |
4319 | wxWindowID id, |
4320 | const wxPoint &pos, | |
4321 | const wxSize &size ) | |
86033c4b | 4322 | : wxGridSubwindow(parent, id, pos, size, |
760be3f7 VS |
4323 | wxWANTS_CHARS | wxCLIP_CHILDREN, |
4324 | wxT("grid window") ) | |
2d66e025 MB |
4325 | { |
4326 | m_owner = parent; | |
4327 | m_rowLabelWin = rowLblWin; | |
4328 | m_colLabelWin = colLblWin; | |
2d66e025 MB |
4329 | } |
4330 | ||
2d66e025 MB |
4331 | void wxGridWindow::OnPaint( wxPaintEvent &WXUNUSED(event) ) |
4332 | { | |
4333 | wxPaintDC dc( this ); | |
4334 | m_owner->PrepareDC( dc ); | |
796df70a | 4335 | wxRegion reg = GetUpdateRegion(); |
ccdee36f DS |
4336 | wxGridCellCoordsArray dirtyCells = m_owner->CalcCellsExposed( reg ); |
4337 | m_owner->DrawGridCellArea( dc, dirtyCells ); | |
2f024384 | 4338 | |
9f7aee01 VZ |
4339 | m_owner->DrawGridSpace( dc ); |
4340 | ||
796df70a | 4341 | m_owner->DrawAllGridLines( dc, reg ); |
2f024384 | 4342 | |
ccdee36f | 4343 | m_owner->DrawHighlight( dc, dirtyCells ); |
2d66e025 MB |
4344 | } |
4345 | ||
2d66e025 MB |
4346 | void wxGridWindow::ScrollWindow( int dx, int dy, const wxRect *rect ) |
4347 | { | |
59ddac01 | 4348 | wxWindow::ScrollWindow( dx, dy, rect ); |
2d66e025 MB |
4349 | m_rowLabelWin->ScrollWindow( 0, dy, rect ); |
4350 | m_colLabelWin->ScrollWindow( dx, 0, rect ); | |
4351 | } | |
4352 | ||
2d66e025 MB |
4353 | void wxGridWindow::OnMouseEvent( wxMouseEvent& event ) |
4354 | { | |
33e9fc54 RD |
4355 | if (event.ButtonDown(wxMOUSE_BTN_LEFT) && FindFocus() != this) |
4356 | SetFocus(); | |
902725ee | 4357 | |
2d66e025 MB |
4358 | m_owner->ProcessGridCellMouseEvent( event ); |
4359 | } | |
4360 | ||
b51c3f27 RD |
4361 | void wxGridWindow::OnMouseWheel( wxMouseEvent& event ) |
4362 | { | |
a9339fe2 | 4363 | m_owner->GetEventHandler()->ProcessEvent( event ); |
b51c3f27 | 4364 | } |
2d66e025 | 4365 | |
f6bcfd97 | 4366 | // This seems to be required for wxMotif/wxGTK otherwise the mouse |
2d66e025 MB |
4367 | // cursor must be in the cell edit control to get key events |
4368 | // | |
4369 | void wxGridWindow::OnKeyDown( wxKeyEvent& event ) | |
4370 | { | |
4db6714b KH |
4371 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
4372 | event.Skip(); | |
2d66e025 | 4373 | } |
f85afd4e | 4374 | |
f6bcfd97 BP |
4375 | void wxGridWindow::OnKeyUp( wxKeyEvent& event ) |
4376 | { | |
4db6714b KH |
4377 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
4378 | event.Skip(); | |
f6bcfd97 | 4379 | } |
7c8a8ad5 | 4380 | |
63e2147c RD |
4381 | void wxGridWindow::OnChar( wxKeyEvent& event ) |
4382 | { | |
4db6714b KH |
4383 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
4384 | event.Skip(); | |
63e2147c RD |
4385 | } |
4386 | ||
aa5e1f75 | 4387 | void wxGridWindow::OnEraseBackground( wxEraseEvent& WXUNUSED(event) ) |
8dd4f536 | 4388 | { |
8dd4f536 | 4389 | } |
025562fe | 4390 | |
80acaf25 JS |
4391 | void wxGridWindow::OnFocus(wxFocusEvent& event) |
4392 | { | |
760be3f7 VS |
4393 | // and if we have any selection, it has to be repainted, because it |
4394 | // uses different colour when the grid is not focused: | |
4395 | if ( m_owner->IsSelection() ) | |
4396 | { | |
4397 | Refresh(); | |
4398 | } | |
4399 | else | |
4400 | { | |
4401 | // NB: Note that this code is in "else" branch only because the other | |
4402 | // branch refreshes everything and so there's no point in calling | |
4403 | // Refresh() again, *not* because it should only be done if | |
4404 | // !IsSelection(). If the above code is ever optimized to refresh | |
4405 | // only selected area, this needs to be moved out of the "else" | |
4406 | // branch so that it's always executed. | |
4407 | ||
4408 | // current cell cursor {dis,re}appears on focus change: | |
4409 | const wxGridCellCoords cursorCoords(m_owner->GetGridCursorRow(), | |
4410 | m_owner->GetGridCursorCol()); | |
4411 | const wxRect cursor = | |
4412 | m_owner->BlockToDeviceRect(cursorCoords, cursorCoords); | |
4413 | Refresh(true, &cursor); | |
4414 | } | |
4415 | ||
80acaf25 JS |
4416 | if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) |
4417 | event.Skip(); | |
4418 | } | |
2d66e025 | 4419 | |
d4175745 | 4420 | #define internalXToCol(x) XToCol(x, true) |
bec70262 | 4421 | #define internalYToRow(y) YToRow(y, true) |
ccdee36f | 4422 | |
33188aa4 | 4423 | ///////////////////////////////////////////////////////////////////// |
07296f0b | 4424 | |
b0a877ec | 4425 | #if wxUSE_EXTENDED_RTTI |
73c36334 JS |
4426 | WX_DEFINE_FLAGS( wxGridStyle ) |
4427 | ||
3ff066a4 | 4428 | wxBEGIN_FLAGS( wxGridStyle ) |
73c36334 JS |
4429 | // new style border flags, we put them first to |
4430 | // use them for streaming out | |
3ff066a4 SC |
4431 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) |
4432 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
4433 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
4434 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
4435 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
4436 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
ca65c044 | 4437 | |
73c36334 | 4438 | // old style border flags |
3ff066a4 SC |
4439 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) |
4440 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
4441 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
4442 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
4443 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
cb0afb26 | 4444 | wxFLAGS_MEMBER(wxBORDER) |
73c36334 JS |
4445 | |
4446 | // standard window styles | |
3ff066a4 SC |
4447 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) |
4448 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
4449 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
4450 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
cb0afb26 | 4451 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) |
ccdee36f | 4452 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB) |
3ff066a4 SC |
4453 | wxFLAGS_MEMBER(wxVSCROLL) |
4454 | wxFLAGS_MEMBER(wxHSCROLL) | |
73c36334 | 4455 | |
3ff066a4 | 4456 | wxEND_FLAGS( wxGridStyle ) |
73c36334 | 4457 | |
b0a877ec SC |
4458 | IMPLEMENT_DYNAMIC_CLASS_XTI(wxGrid, wxScrolledWindow,"wx/grid.h") |
4459 | ||
3ff066a4 SC |
4460 | wxBEGIN_PROPERTIES_TABLE(wxGrid) |
4461 | wxHIDE_PROPERTY( Children ) | |
af498247 | 4462 | wxPROPERTY_FLAGS( WindowStyle , wxGridStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style |
3ff066a4 | 4463 | wxEND_PROPERTIES_TABLE() |
b0a877ec | 4464 | |
3ff066a4 SC |
4465 | wxBEGIN_HANDLERS_TABLE(wxGrid) |
4466 | wxEND_HANDLERS_TABLE() | |
b0a877ec | 4467 | |
ca65c044 | 4468 | wxCONSTRUCTOR_5( wxGrid , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle ) |
b0a877ec SC |
4469 | |
4470 | /* | |
ccdee36f | 4471 | TODO : Expose more information of a list's layout, etc. via appropriate objects (e.g., NotebookPageInfo) |
b0a877ec SC |
4472 | */ |
4473 | #else | |
2d66e025 | 4474 | IMPLEMENT_DYNAMIC_CLASS( wxGrid, wxScrolledWindow ) |
b0a877ec | 4475 | #endif |
2d66e025 MB |
4476 | |
4477 | BEGIN_EVENT_TABLE( wxGrid, wxScrolledWindow ) | |
f85afd4e MB |
4478 | EVT_PAINT( wxGrid::OnPaint ) |
4479 | EVT_SIZE( wxGrid::OnSize ) | |
f85afd4e | 4480 | EVT_KEY_DOWN( wxGrid::OnKeyDown ) |
f6bcfd97 | 4481 | EVT_KEY_UP( wxGrid::OnKeyUp ) |
63e2147c | 4482 | EVT_CHAR ( wxGrid::OnChar ) |
2796cce3 | 4483 | EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground ) |
f85afd4e | 4484 | END_EVENT_TABLE() |
8f177c8e | 4485 | |
b0a877ec SC |
4486 | wxGrid::wxGrid() |
4487 | { | |
f9549841 | 4488 | InitVars(); |
b0a877ec SC |
4489 | } |
4490 | ||
2d66e025 MB |
4491 | wxGrid::wxGrid( wxWindow *parent, |
4492 | wxWindowID id, | |
4493 | const wxPoint& pos, | |
4494 | const wxSize& size, | |
4495 | long style, | |
4496 | const wxString& name ) | |
2d66e025 | 4497 | { |
f9549841 | 4498 | InitVars(); |
ba808e11 | 4499 | Create(parent, id, pos, size, style, name); |
58dd5b3b MB |
4500 | } |
4501 | ||
b0a877ec SC |
4502 | bool wxGrid::Create(wxWindow *parent, wxWindowID id, |
4503 | const wxPoint& pos, const wxSize& size, | |
4504 | long style, const wxString& name) | |
4505 | { | |
4506 | if (!wxScrolledWindow::Create(parent, id, pos, size, | |
c2f5b920 | 4507 | style | wxWANTS_CHARS, name)) |
ca65c044 | 4508 | return false; |
b0a877ec | 4509 | |
2f024384 DS |
4510 | m_colMinWidths = wxLongToLongHashMap(GRID_HASH_SIZE); |
4511 | m_rowMinHeights = wxLongToLongHashMap(GRID_HASH_SIZE); | |
b0a877ec | 4512 | |
2f024384 | 4513 | Create(); |
170acdc9 | 4514 | SetInitialSize(size); |
72b0a1de | 4515 | SetScrollRate(m_scrollLineX, m_scrollLineY); |
b93aafab | 4516 | CalcDimensions(); |
b0a877ec | 4517 | |
ca65c044 | 4518 | return true; |
b0a877ec SC |
4519 | } |
4520 | ||
58dd5b3b MB |
4521 | wxGrid::~wxGrid() |
4522 | { | |
b09b3048 VZ |
4523 | // Ensure that the editor control is destroyed before the grid is, |
4524 | // otherwise we crash later when the editor tries to do something with the | |
4525 | // half destroyed grid | |
4526 | HideCellEditControl(); | |
4527 | ||
606b005f JS |
4528 | // Must do this or ~wxScrollHelper will pop the wrong event handler |
4529 | SetTargetWindow(this); | |
0a976765 | 4530 | ClearAttrCache(); |
39bcce60 | 4531 | wxSafeDecRef(m_defaultCellAttr); |
0a976765 VZ |
4532 | |
4533 | #ifdef DEBUG_ATTR_CACHE | |
4534 | size_t total = gs_nAttrCacheHits + gs_nAttrCacheMisses; | |
4535 | wxPrintf(_T("wxGrid attribute cache statistics: " | |
4536 | "total: %u, hits: %u (%u%%)\n"), | |
4537 | total, gs_nAttrCacheHits, | |
4538 | total ? (gs_nAttrCacheHits*100) / total : 0); | |
4539 | #endif | |
4540 | ||
86020f7e VZ |
4541 | // if we own the table, just delete it, otherwise at least don't leave it |
4542 | // with dangling view pointer | |
4543 | if ( m_ownTable ) | |
2796cce3 | 4544 | delete m_table; |
ecc7aa82 | 4545 | else if ( m_table && m_table->GetView() == this ) |
86020f7e | 4546 | m_table->SetView(NULL); |
f2d76237 RD |
4547 | |
4548 | delete m_typeRegistry; | |
b5808881 | 4549 | delete m_selection; |
58dd5b3b MB |
4550 | } |
4551 | ||
58dd5b3b MB |
4552 | // |
4553 | // ----- internal init and update functions | |
4554 | // | |
4555 | ||
9950649c RD |
4556 | // NOTE: If using the default visual attributes works everywhere then this can |
4557 | // be removed as well as the #else cases below. | |
4558 | #define _USE_VISATTR 0 | |
4559 | ||
58dd5b3b | 4560 | void wxGrid::Create() |
f0102d2a | 4561 | { |
3d59537f DS |
4562 | // create the type registry |
4563 | m_typeRegistry = new wxGridTypeRegistry; | |
2c9a89e0 | 4564 | |
ca65c044 | 4565 | m_cellEditCtrlEnabled = false; |
4634a5d6 | 4566 | |
ccd970b1 | 4567 | m_defaultCellAttr = new wxGridCellAttr(); |
f2d76237 RD |
4568 | |
4569 | // Set default cell attributes | |
ccd970b1 | 4570 | m_defaultCellAttr->SetDefAttr(m_defaultCellAttr); |
19d7140e | 4571 | m_defaultCellAttr->SetKind(wxGridCellAttr::Default); |
f2d76237 | 4572 | m_defaultCellAttr->SetFont(GetFont()); |
4c7277db | 4573 | m_defaultCellAttr->SetAlignment(wxALIGN_LEFT, wxALIGN_TOP); |
9950649c RD |
4574 | m_defaultCellAttr->SetRenderer(new wxGridCellStringRenderer); |
4575 | m_defaultCellAttr->SetEditor(new wxGridCellTextEditor); | |
4576 | ||
4577 | #if _USE_VISATTR | |
4578 | wxVisualAttributes gva = wxListBox::GetClassDefaultAttributes(); | |
4579 | wxVisualAttributes lva = wxPanel::GetClassDefaultAttributes(); | |
4580 | ||
4581 | m_defaultCellAttr->SetTextColour(gva.colFg); | |
4582 | m_defaultCellAttr->SetBackgroundColour(gva.colBg); | |
ca65c044 | 4583 | |
9950649c | 4584 | #else |
f2d76237 | 4585 | m_defaultCellAttr->SetTextColour( |
a756f210 | 4586 | wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT)); |
f2d76237 | 4587 | m_defaultCellAttr->SetBackgroundColour( |
a756f210 | 4588 | wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); |
9950649c | 4589 | #endif |
2796cce3 | 4590 | |
4634a5d6 MB |
4591 | m_numRows = 0; |
4592 | m_numCols = 0; | |
4593 | m_currentCellCoords = wxGridNoCellCoords; | |
b99be8fb | 4594 | |
18f9565d MB |
4595 | m_rowLabelWidth = WXGRID_DEFAULT_ROW_LABEL_WIDTH; |
4596 | m_colLabelHeight = WXGRID_DEFAULT_COL_LABEL_HEIGHT; | |
2d66e025 | 4597 | |
f2d76237 | 4598 | // subwindow components that make up the wxGrid |
60ff3b99 | 4599 | m_rowLabelWin = new wxGridRowLabelWindow( this, |
ca65c044 | 4600 | wxID_ANY, |
18f9565d MB |
4601 | wxDefaultPosition, |
4602 | wxDefaultSize ); | |
2d66e025 MB |
4603 | |
4604 | m_colLabelWin = new wxGridColLabelWindow( this, | |
ca65c044 | 4605 | wxID_ANY, |
18f9565d MB |
4606 | wxDefaultPosition, |
4607 | wxDefaultSize ); | |
60ff3b99 | 4608 | |
3d59537f DS |
4609 | m_cornerLabelWin = new wxGridCornerLabelWindow( this, |
4610 | wxID_ANY, | |
4611 | wxDefaultPosition, | |
4612 | wxDefaultSize ); | |
4613 | ||
60ff3b99 VZ |
4614 | m_gridWin = new wxGridWindow( this, |
4615 | m_rowLabelWin, | |
4616 | m_colLabelWin, | |
ca65c044 | 4617 | wxID_ANY, |
18f9565d | 4618 | wxDefaultPosition, |
2d66e025 MB |
4619 | wxDefaultSize ); |
4620 | ||
4621 | SetTargetWindow( m_gridWin ); | |
6f36917b | 4622 | |
9950649c RD |
4623 | #if _USE_VISATTR |
4624 | wxColour gfg = gva.colFg; | |
4625 | wxColour gbg = gva.colBg; | |
4626 | wxColour lfg = lva.colFg; | |
4627 | wxColour lbg = lva.colBg; | |
4628 | #else | |
4629 | wxColour gfg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT ); | |
4630 | wxColour gbg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW ); | |
4631 | wxColour lfg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT ); | |
4632 | wxColour lbg = wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE ); | |
4633 | #endif | |
2f024384 | 4634 | |
fa47d7a7 VS |
4635 | m_cornerLabelWin->SetOwnForegroundColour(lfg); |
4636 | m_cornerLabelWin->SetOwnBackgroundColour(lbg); | |
4637 | m_rowLabelWin->SetOwnForegroundColour(lfg); | |
4638 | m_rowLabelWin->SetOwnBackgroundColour(lbg); | |
4639 | m_colLabelWin->SetOwnForegroundColour(lfg); | |
4640 | m_colLabelWin->SetOwnBackgroundColour(lbg); | |
4641 | ||
4642 | m_gridWin->SetOwnForegroundColour(gfg); | |
4643 | m_gridWin->SetOwnBackgroundColour(gbg); | |
ca65c044 | 4644 | |
6f36917b | 4645 | Init(); |
2d66e025 | 4646 | } |
f85afd4e | 4647 | |
b5808881 | 4648 | bool wxGrid::CreateGrid( int numRows, int numCols, |
6b992f7d | 4649 | wxGridSelectionModes selmode ) |
2d66e025 | 4650 | { |
f6bcfd97 | 4651 | wxCHECK_MSG( !m_created, |
ca65c044 | 4652 | false, |
f6bcfd97 BP |
4653 | wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") ); |
4654 | ||
6b992f7d | 4655 | return SetTable(new wxGridStringTable(numRows, numCols), true, selmode); |
2796cce3 RD |
4656 | } |
4657 | ||
6b992f7d | 4658 | void wxGrid::SetSelectionMode(wxGridSelectionModes selmode) |
f1567cdd | 4659 | { |
6f36917b VZ |
4660 | wxCHECK_RET( m_created, |
4661 | wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") ); | |
4662 | ||
4663 | m_selection->SetSelectionMode( selmode ); | |
f1567cdd SN |
4664 | } |
4665 | ||
aa5b8857 SN |
4666 | wxGrid::wxGridSelectionModes wxGrid::GetSelectionMode() const |
4667 | { | |
6b992f7d | 4668 | wxCHECK_MSG( m_created, wxGridSelectCells, |
aa5b8857 SN |
4669 | wxT("Called wxGrid::GetSelectionMode() before calling CreateGrid()") ); |
4670 | ||
4671 | return m_selection->GetSelectionMode(); | |
4672 | } | |
4673 | ||
6b992f7d VZ |
4674 | bool |
4675 | wxGrid::SetTable(wxGridTableBase *table, | |
4676 | bool takeOwnership, | |
4677 | wxGrid::wxGridSelectionModes selmode ) | |
2796cce3 | 4678 | { |
a7dde52f | 4679 | bool checkSelection = false; |
2796cce3 RD |
4680 | if ( m_created ) |
4681 | { | |
3e13956a | 4682 | // stop all processing |
ca65c044 | 4683 | m_created = false; |
86c7378f | 4684 | |
c71b2126 | 4685 | if (m_table) |
86c7378f | 4686 | { |
a7dde52f SN |
4687 | m_table->SetView(0); |
4688 | if( m_ownTable ) | |
4689 | delete m_table; | |
5b061713 | 4690 | m_table = NULL; |
86c7378f | 4691 | } |
2f024384 | 4692 | |
3e13956a | 4693 | delete m_selection; |
5b061713 | 4694 | m_selection = NULL; |
a7dde52f SN |
4695 | |
4696 | m_ownTable = false; | |
2f024384 DS |
4697 | m_numRows = 0; |
4698 | m_numCols = 0; | |
a7dde52f SN |
4699 | checkSelection = true; |
4700 | ||
4701 | // kill row and column size arrays | |
4702 | m_colWidths.Empty(); | |
4703 | m_colRights.Empty(); | |
4704 | m_rowHeights.Empty(); | |
4705 | m_rowBottoms.Empty(); | |
233a54f6 | 4706 | } |
2f024384 | 4707 | |
233a54f6 | 4708 | if (table) |
2796cce3 RD |
4709 | { |
4710 | m_numRows = table->GetNumberRows(); | |
4711 | m_numCols = table->GetNumberCols(); | |
4712 | ||
4713 | m_table = table; | |
4714 | m_table->SetView( this ); | |
8fc856de | 4715 | m_ownTable = takeOwnership; |
043d16b2 | 4716 | m_selection = new wxGridSelection( this, selmode ); |
a7dde52f SN |
4717 | if (checkSelection) |
4718 | { | |
4719 | // If the newly set table is smaller than the | |
4720 | // original one current cell and selection regions | |
4721 | // might be invalid, | |
8a3e536c | 4722 | m_selectedBlockCorner = wxGridNoCellCoords; |
c71b2126 | 4723 | m_currentCellCoords = |
a7dde52f SN |
4724 | wxGridCellCoords(wxMin(m_numRows, m_currentCellCoords.GetRow()), |
4725 | wxMin(m_numCols, m_currentCellCoords.GetCol())); | |
8a3e536c VZ |
4726 | if (m_selectedBlockTopLeft.GetRow() >= m_numRows || |
4727 | m_selectedBlockTopLeft.GetCol() >= m_numCols) | |
a7dde52f | 4728 | { |
8a3e536c VZ |
4729 | m_selectedBlockTopLeft = wxGridNoCellCoords; |
4730 | m_selectedBlockBottomRight = wxGridNoCellCoords; | |
a7dde52f SN |
4731 | } |
4732 | else | |
8a3e536c | 4733 | m_selectedBlockBottomRight = |
a7dde52f | 4734 | wxGridCellCoords(wxMin(m_numRows, |
8a3e536c | 4735 | m_selectedBlockBottomRight.GetRow()), |
a7dde52f | 4736 | wxMin(m_numCols, |
8a3e536c | 4737 | m_selectedBlockBottomRight.GetCol())); |
a7dde52f | 4738 | } |
6f36917b VZ |
4739 | CalcDimensions(); |
4740 | ||
ca65c044 | 4741 | m_created = true; |
2d66e025 | 4742 | } |
f85afd4e | 4743 | |
2d66e025 | 4744 | return m_created; |
f85afd4e MB |
4745 | } |
4746 | ||
f9549841 VZ |
4747 | void wxGrid::InitVars() |
4748 | { | |
4749 | m_created = false; | |
4750 | ||
4751 | m_cornerLabelWin = NULL; | |
4752 | m_rowLabelWin = NULL; | |
4753 | m_colLabelWin = NULL; | |
4754 | m_gridWin = NULL; | |
4755 | ||
4756 | m_table = NULL; | |
4757 | m_ownTable = false; | |
4758 | ||
4759 | m_selection = NULL; | |
4760 | m_defaultCellAttr = NULL; | |
4761 | m_typeRegistry = NULL; | |
4762 | m_winCapture = NULL; | |
4763 | } | |
4764 | ||
f85afd4e MB |
4765 | void wxGrid::Init() |
4766 | { | |
f85afd4e MB |
4767 | m_rowLabelWidth = WXGRID_DEFAULT_ROW_LABEL_WIDTH; |
4768 | m_colLabelHeight = WXGRID_DEFAULT_COL_LABEL_HEIGHT; | |
4769 | ||
60ff3b99 VZ |
4770 | if ( m_rowLabelWin ) |
4771 | { | |
4772 | m_labelBackgroundColour = m_rowLabelWin->GetBackgroundColour(); | |
4773 | } | |
4774 | else | |
4775 | { | |
b0fa2187 | 4776 | m_labelBackgroundColour = *wxWHITE; |
60ff3b99 VZ |
4777 | } |
4778 | ||
b0fa2187 | 4779 | m_labelTextColour = *wxBLACK; |
f85afd4e | 4780 | |
0a976765 VZ |
4781 | // init attr cache |
4782 | m_attrCache.row = -1; | |
2b5f62a0 VZ |
4783 | m_attrCache.col = -1; |
4784 | m_attrCache.attr = NULL; | |
0a976765 | 4785 | |
ff72f628 | 4786 | m_labelFont = GetFont(); |
52d6f640 | 4787 | m_labelFont.SetWeight( wxBOLD ); |
8f177c8e | 4788 | |
73145b0e | 4789 | m_rowLabelHorizAlign = wxALIGN_CENTRE; |
4c7277db | 4790 | m_rowLabelVertAlign = wxALIGN_CENTRE; |
f85afd4e | 4791 | |
4c7277db | 4792 | m_colLabelHorizAlign = wxALIGN_CENTRE; |
73145b0e | 4793 | m_colLabelVertAlign = wxALIGN_CENTRE; |
d43851f7 | 4794 | m_colLabelTextOrientation = wxHORIZONTAL; |
f85afd4e | 4795 | |
f85afd4e | 4796 | m_defaultColWidth = WXGRID_DEFAULT_COL_WIDTH; |
1f1ce288 MB |
4797 | m_defaultRowHeight = m_gridWin->GetCharHeight(); |
4798 | ||
b8d24d4e RG |
4799 | m_minAcceptableColWidth = WXGRID_MIN_COL_WIDTH; |
4800 | m_minAcceptableRowHeight = WXGRID_MIN_ROW_HEIGHT; | |
4801 | ||
d2fdd8d2 | 4802 | #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl() |
1f1ce288 MB |
4803 | m_defaultRowHeight += 8; |
4804 | #else | |
4805 | m_defaultRowHeight += 4; | |
4806 | #endif | |
4807 | ||
73145b0e | 4808 | m_gridLineColour = wxColour( 192,192,192 ); |
ca65c044 | 4809 | m_gridLinesEnabled = true; |
9f7aee01 VZ |
4810 | m_gridLinesClipHorz = |
4811 | m_gridLinesClipVert = true; | |
73145b0e | 4812 | m_cellHighlightColour = *wxBLACK; |
bf7945ce | 4813 | m_cellHighlightPenWidth = 2; |
d2520c85 | 4814 | m_cellHighlightROPenWidth = 1; |
8f177c8e | 4815 | |
d4175745 VZ |
4816 | m_canDragColMove = false; |
4817 | ||
58dd5b3b | 4818 | m_cursorMode = WXGRID_CURSOR_SELECT_CELL; |
10a4531d | 4819 | m_winCapture = NULL; |
ca65c044 WS |
4820 | m_canDragRowSize = true; |
4821 | m_canDragColSize = true; | |
4822 | m_canDragGridSize = true; | |
79dbea21 | 4823 | m_canDragCell = false; |
f85afd4e MB |
4824 | m_dragLastPos = -1; |
4825 | m_dragRowOrCol = -1; | |
ca65c044 | 4826 | m_isDragging = false; |
07296f0b | 4827 | m_startDragPos = wxDefaultPosition; |
71cf399f | 4828 | m_nativeColumnLabels = false; |
f85afd4e | 4829 | |
ca65c044 | 4830 | m_waitForSlowClick = false; |
025562fe | 4831 | |
f85afd4e MB |
4832 | m_rowResizeCursor = wxCursor( wxCURSOR_SIZENS ); |
4833 | m_colResizeCursor = wxCursor( wxCURSOR_SIZEWE ); | |
4834 | ||
4835 | m_currentCellCoords = wxGridNoCellCoords; | |
f85afd4e | 4836 | |
b524b5c6 VZ |
4837 | ClearSelection(); |
4838 | ||
d43851f7 JS |
4839 | m_selectionBackground = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT); |
4840 | m_selectionForeground = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT); | |
8f177c8e | 4841 | |
ca65c044 | 4842 | m_editable = true; // default for whole grid |
f85afd4e | 4843 | |
ca65c044 | 4844 | m_inOnKeyDown = false; |
2d66e025 | 4845 | m_batchCount = 0; |
3c79cf49 | 4846 | |
266e8367 | 4847 | m_extraWidth = |
526dbb95 | 4848 | m_extraHeight = 0; |
608754c4 JS |
4849 | |
4850 | m_scrollLineX = GRID_SCROLL_LINE_X; | |
4851 | m_scrollLineY = GRID_SCROLL_LINE_Y; | |
7c1cb261 VZ |
4852 | } |
4853 | ||
4854 | // ---------------------------------------------------------------------------- | |
4855 | // the idea is to call these functions only when necessary because they create | |
4856 | // quite big arrays which eat memory mostly unnecessary - in particular, if | |
4857 | // default widths/heights are used for all rows/columns, we may not use these | |
4858 | // arrays at all | |
4859 | // | |
0ed3b812 VZ |
4860 | // with some extra code, it should be possible to only store the widths/heights |
4861 | // different from default ones (resulting in space savings for huge grids) but | |
4862 | // this is not done currently | |
7c1cb261 VZ |
4863 | // ---------------------------------------------------------------------------- |
4864 | ||
4865 | void wxGrid::InitRowHeights() | |
4866 | { | |
4867 | m_rowHeights.Empty(); | |
4868 | m_rowBottoms.Empty(); | |
4869 | ||
4870 | m_rowHeights.Alloc( m_numRows ); | |
4871 | m_rowBottoms.Alloc( m_numRows ); | |
4872 | ||
27f35b66 SN |
4873 | m_rowHeights.Add( m_defaultRowHeight, m_numRows ); |
4874 | ||
0ed3b812 | 4875 | int rowBottom = 0; |
3d59537f | 4876 | for ( int i = 0; i < m_numRows; i++ ) |
7c1cb261 | 4877 | { |
7c1cb261 VZ |
4878 | rowBottom += m_defaultRowHeight; |
4879 | m_rowBottoms.Add( rowBottom ); | |
4880 | } | |
4881 | } | |
4882 | ||
4883 | void wxGrid::InitColWidths() | |
4884 | { | |
4885 | m_colWidths.Empty(); | |
4886 | m_colRights.Empty(); | |
4887 | ||
4888 | m_colWidths.Alloc( m_numCols ); | |
4889 | m_colRights.Alloc( m_numCols ); | |
27f35b66 SN |
4890 | |
4891 | m_colWidths.Add( m_defaultColWidth, m_numCols ); | |
4892 | ||
3d59537f | 4893 | for ( int i = 0; i < m_numCols; i++ ) |
7c1cb261 | 4894 | { |
e822d1bd | 4895 | int colRight = ( GetColPos( i ) + 1 ) * m_defaultColWidth; |
7c1cb261 VZ |
4896 | m_colRights.Add( colRight ); |
4897 | } | |
4898 | } | |
4899 | ||
4900 | int wxGrid::GetColWidth(int col) const | |
4901 | { | |
4902 | return m_colWidths.IsEmpty() ? m_defaultColWidth : m_colWidths[col]; | |
4903 | } | |
4904 | ||
4905 | int wxGrid::GetColLeft(int col) const | |
4906 | { | |
d4175745 | 4907 | return m_colRights.IsEmpty() ? GetColPos( col ) * m_defaultColWidth |
7c1cb261 VZ |
4908 | : m_colRights[col] - m_colWidths[col]; |
4909 | } | |
4910 | ||
4911 | int wxGrid::GetColRight(int col) const | |
4912 | { | |
d4175745 | 4913 | return m_colRights.IsEmpty() ? (GetColPos( col ) + 1) * m_defaultColWidth |
7c1cb261 VZ |
4914 | : m_colRights[col]; |
4915 | } | |
4916 | ||
4917 | int wxGrid::GetRowHeight(int row) const | |
4918 | { | |
4919 | return m_rowHeights.IsEmpty() ? m_defaultRowHeight : m_rowHeights[row]; | |
4920 | } | |
2d66e025 | 4921 | |
7c1cb261 VZ |
4922 | int wxGrid::GetRowTop(int row) const |
4923 | { | |
4924 | return m_rowBottoms.IsEmpty() ? row * m_defaultRowHeight | |
4925 | : m_rowBottoms[row] - m_rowHeights[row]; | |
f85afd4e MB |
4926 | } |
4927 | ||
7c1cb261 VZ |
4928 | int wxGrid::GetRowBottom(int row) const |
4929 | { | |
4930 | return m_rowBottoms.IsEmpty() ? (row + 1) * m_defaultRowHeight | |
4931 | : m_rowBottoms[row]; | |
4932 | } | |
f85afd4e MB |
4933 | |
4934 | void wxGrid::CalcDimensions() | |
4935 | { | |
0ed3b812 VZ |
4936 | // compute the size of the scrollable area |
4937 | int w = m_numCols > 0 ? GetColRight(GetColAt(m_numCols - 1)) : 0; | |
4938 | int h = m_numRows > 0 ? GetRowBottom(m_numRows - 1) : 0; | |
60ff3b99 | 4939 | |
0ed3b812 VZ |
4940 | w += m_extraWidth; |
4941 | h += m_extraHeight; | |
faec5a43 | 4942 | |
73145b0e | 4943 | // take into account editor if shown |
4db6714b | 4944 | if ( IsCellEditControlShown() ) |
73145b0e | 4945 | { |
3d59537f DS |
4946 | int w2, h2; |
4947 | int r = m_currentCellCoords.GetRow(); | |
4948 | int c = m_currentCellCoords.GetCol(); | |
4949 | int x = GetColLeft(c); | |
4950 | int y = GetRowTop(r); | |
4951 | ||
4952 | // how big is the editor | |
4953 | wxGridCellAttr* attr = GetCellAttr(r, c); | |
4954 | wxGridCellEditor* editor = attr->GetEditor(this, r, c); | |
4955 | editor->GetControl()->GetSize(&w2, &h2); | |
4956 | w2 += x; | |
4957 | h2 += y; | |
4958 | if ( w2 > w ) | |
4959 | w = w2; | |
4960 | if ( h2 > h ) | |
4961 | h = h2; | |
4962 | editor->DecRef(); | |
4963 | attr->DecRef(); | |
73145b0e JS |
4964 | } |
4965 | ||
faec5a43 SN |
4966 | // preserve (more or less) the previous position |
4967 | int x, y; | |
4968 | GetViewStart( &x, &y ); | |
97a9929e | 4969 | |
c92ed9f7 | 4970 | // ensure the position is valid for the new scroll ranges |
7b519e5e | 4971 | if ( x >= w ) |
c92ed9f7 | 4972 | x = wxMax( w - 1, 0 ); |
7b519e5e | 4973 | if ( y >= h ) |
c92ed9f7 | 4974 | y = wxMax( h - 1, 0 ); |
faec5a43 | 4975 | |
ace8d849 | 4976 | // update the virtual size and refresh the scrollbars to reflect it |
f1ff7df0 VZ |
4977 | m_gridWin->SetVirtualSize(w, h); |
4978 | Scroll(x, y); | |
ace8d849 | 4979 | AdjustScrollbars(); |
12314291 VZ |
4980 | |
4981 | // if our OnSize() hadn't been called (it would if we have scrollbars), we | |
4982 | // still must reposition the children | |
4983 | CalcWindowSizes(); | |
f85afd4e MB |
4984 | } |
4985 | ||
69367c56 VZ |
4986 | wxSize wxGrid::GetSizeAvailableForScrollTarget(const wxSize& size) |
4987 | { | |
4988 | wxSize sizeGridWin(size); | |
4989 | sizeGridWin.x -= m_rowLabelWidth; | |
4990 | sizeGridWin.y -= m_colLabelHeight; | |
4991 | ||
4992 | return sizeGridWin; | |
4993 | } | |
4994 | ||
7807d81c MB |
4995 | void wxGrid::CalcWindowSizes() |
4996 | { | |
b0a877ec SC |
4997 | // escape if the window is has not been fully created yet |
4998 | ||
4999 | if ( m_cornerLabelWin == NULL ) | |
2f024384 | 5000 | return; |
b0a877ec | 5001 | |
7807d81c MB |
5002 | int cw, ch; |
5003 | GetClientSize( &cw, &ch ); | |
b99be8fb | 5004 | |
c1841ac2 VZ |
5005 | // the grid may be too small to have enough space for the labels yet, don't |
5006 | // size the windows to negative sizes in this case | |
5007 | int gw = cw - m_rowLabelWidth; | |
5008 | int gh = ch - m_colLabelHeight; | |
5009 | if (gw < 0) | |
5010 | gw = 0; | |
5011 | if (gh < 0) | |
5012 | gh = 0; | |
5013 | ||
6d308072 | 5014 | if ( m_cornerLabelWin && m_cornerLabelWin->IsShown() ) |
7807d81c MB |
5015 | m_cornerLabelWin->SetSize( 0, 0, m_rowLabelWidth, m_colLabelHeight ); |
5016 | ||
c2f5b920 | 5017 | if ( m_colLabelWin && m_colLabelWin->IsShown() ) |
c1841ac2 | 5018 | m_colLabelWin->SetSize( m_rowLabelWidth, 0, gw, m_colLabelHeight ); |
7807d81c | 5019 | |
6d308072 | 5020 | if ( m_rowLabelWin && m_rowLabelWin->IsShown() ) |
c1841ac2 | 5021 | m_rowLabelWin->SetSize( 0, m_colLabelHeight, m_rowLabelWidth, gh ); |
7807d81c | 5022 | |
6d308072 | 5023 | if ( m_gridWin && m_gridWin->IsShown() ) |
c1841ac2 | 5024 | m_gridWin->SetSize( m_rowLabelWidth, m_colLabelHeight, gw, gh ); |
7807d81c MB |
5025 | } |
5026 | ||
3d59537f DS |
5027 | // this is called when the grid table sends a message |
5028 | // to indicate that it has been redimensioned | |
f85afd4e MB |
5029 | // |
5030 | bool wxGrid::Redimension( wxGridTableMessage& msg ) | |
5031 | { | |
5032 | int i; | |
ca65c044 | 5033 | bool result = false; |
8f177c8e | 5034 | |
a6794685 SN |
5035 | // Clear the attribute cache as the attribute might refer to a different |
5036 | // cell than stored in the cache after adding/removing rows/columns. | |
5037 | ClearAttrCache(); | |
2f024384 | 5038 | |
7e48d7d9 SN |
5039 | // By the same reasoning, the editor should be dismissed if columns are |
5040 | // added or removed. And for consistency, it should IMHO always be | |
5041 | // removed, not only if the cell "underneath" it actually changes. | |
5042 | // For now, I intentionally do not save the editor's content as the | |
5043 | // cell it might want to save that stuff to might no longer exist. | |
bca7bfc8 | 5044 | HideCellEditControl(); |
2f024384 | 5045 | |
f6bcfd97 | 5046 | #if 0 |
7c1cb261 VZ |
5047 | // if we were using the default widths/heights so far, we must change them |
5048 | // now | |
5049 | if ( m_colWidths.IsEmpty() ) | |
5050 | { | |
5051 | InitColWidths(); | |
5052 | } | |
5053 | ||
5054 | if ( m_rowHeights.IsEmpty() ) | |
5055 | { | |
5056 | InitRowHeights(); | |
5057 | } | |
f6bcfd97 | 5058 | #endif |
7c1cb261 | 5059 | |
f85afd4e MB |
5060 | switch ( msg.GetId() ) |
5061 | { | |
5062 | case wxGRIDTABLE_NOTIFY_ROWS_INSERTED: | |
5063 | { | |
5064 | size_t pos = msg.GetCommandInt(); | |
5065 | int numRows = msg.GetCommandInt2(); | |
f6bcfd97 | 5066 | |
f85afd4e | 5067 | m_numRows += numRows; |
2d66e025 | 5068 | |
f6bcfd97 BP |
5069 | if ( !m_rowHeights.IsEmpty() ) |
5070 | { | |
27f35b66 SN |
5071 | m_rowHeights.Insert( m_defaultRowHeight, pos, numRows ); |
5072 | m_rowBottoms.Insert( 0, pos, numRows ); | |
f6bcfd97 BP |
5073 | |
5074 | int bottom = 0; | |
2f024384 DS |
5075 | if ( pos > 0 ) |
5076 | bottom = m_rowBottoms[pos - 1]; | |
60ff3b99 | 5077 | |
3d59537f | 5078 | for ( i = pos; i < m_numRows; i++ ) |
f6bcfd97 BP |
5079 | { |
5080 | bottom += m_rowHeights[i]; | |
5081 | m_rowBottoms[i] = bottom; | |
5082 | } | |
5083 | } | |
2f024384 | 5084 | |
f6bcfd97 BP |
5085 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
5086 | { | |
5087 | // if we have just inserted cols into an empty grid the current | |
5088 | // cell will be undefined... | |
5089 | // | |
5090 | SetCurrentCell( 0, 0 ); | |
5091 | } | |
3f3dc2ef VZ |
5092 | |
5093 | if ( m_selection ) | |
5094 | m_selection->UpdateRows( pos, numRows ); | |
f6bcfd97 BP |
5095 | wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider(); |
5096 | if (attrProvider) | |
5097 | attrProvider->UpdateAttrRows( pos, numRows ); | |
5098 | ||
5099 | if ( !GetBatchCount() ) | |
2d66e025 | 5100 | { |
f6bcfd97 BP |
5101 | CalcDimensions(); |
5102 | m_rowLabelWin->Refresh(); | |
2d66e025 | 5103 | } |
f85afd4e | 5104 | } |
ca65c044 | 5105 | result = true; |
f6bcfd97 | 5106 | break; |
f85afd4e MB |
5107 | |
5108 | case wxGRIDTABLE_NOTIFY_ROWS_APPENDED: | |
5109 | { | |
5110 | int numRows = msg.GetCommandInt(); | |
2d66e025 | 5111 | int oldNumRows = m_numRows; |
f85afd4e | 5112 | m_numRows += numRows; |
2d66e025 | 5113 | |
f6bcfd97 BP |
5114 | if ( !m_rowHeights.IsEmpty() ) |
5115 | { | |
27f35b66 SN |
5116 | m_rowHeights.Add( m_defaultRowHeight, numRows ); |
5117 | m_rowBottoms.Add( 0, numRows ); | |
60ff3b99 | 5118 | |
f6bcfd97 | 5119 | int bottom = 0; |
2f024384 DS |
5120 | if ( oldNumRows > 0 ) |
5121 | bottom = m_rowBottoms[oldNumRows - 1]; | |
f6bcfd97 | 5122 | |
3d59537f | 5123 | for ( i = oldNumRows; i < m_numRows; i++ ) |
f6bcfd97 BP |
5124 | { |
5125 | bottom += m_rowHeights[i]; | |
5126 | m_rowBottoms[i] = bottom; | |
5127 | } | |
5128 | } | |
2f024384 | 5129 | |
f6bcfd97 BP |
5130 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
5131 | { | |
5132 | // if we have just inserted cols into an empty grid the current | |
5133 | // cell will be undefined... | |
5134 | // | |
5135 | SetCurrentCell( 0, 0 ); | |
5136 | } | |
2f024384 | 5137 | |
f6bcfd97 | 5138 | if ( !GetBatchCount() ) |
2d66e025 | 5139 | { |
f6bcfd97 BP |
5140 | CalcDimensions(); |
5141 | m_rowLabelWin->Refresh(); | |
2d66e025 | 5142 | } |
f85afd4e | 5143 | } |
ca65c044 | 5144 | result = true; |
f6bcfd97 | 5145 | break; |
f85afd4e MB |
5146 | |
5147 | case wxGRIDTABLE_NOTIFY_ROWS_DELETED: | |
5148 | { | |
5149 | size_t pos = msg.GetCommandInt(); | |
5150 | int numRows = msg.GetCommandInt2(); | |
f85afd4e MB |
5151 | m_numRows -= numRows; |
5152 | ||
f6bcfd97 | 5153 | if ( !m_rowHeights.IsEmpty() ) |
f85afd4e | 5154 | { |
27f35b66 SN |
5155 | m_rowHeights.RemoveAt( pos, numRows ); |
5156 | m_rowBottoms.RemoveAt( pos, numRows ); | |
2d66e025 MB |
5157 | |
5158 | int h = 0; | |
3d59537f | 5159 | for ( i = 0; i < m_numRows; i++ ) |
2d66e025 MB |
5160 | { |
5161 | h += m_rowHeights[i]; | |
5162 | m_rowBottoms[i] = h; | |
5163 | } | |
f85afd4e | 5164 | } |
3d59537f | 5165 | |
f6bcfd97 BP |
5166 | if ( !m_numRows ) |
5167 | { | |
5168 | m_currentCellCoords = wxGridNoCellCoords; | |
5169 | } | |
5170 | else | |
5171 | { | |
5172 | if ( m_currentCellCoords.GetRow() >= m_numRows ) | |
5173 | m_currentCellCoords.Set( 0, 0 ); | |
5174 | } | |
3f3dc2ef VZ |
5175 | |
5176 | if ( m_selection ) | |
5177 | m_selection->UpdateRows( pos, -((int)numRows) ); | |
f6bcfd97 | 5178 | wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider(); |
4db6714b KH |
5179 | if (attrProvider) |
5180 | { | |
f6bcfd97 | 5181 | attrProvider->UpdateAttrRows( pos, -((int)numRows) ); |
3d59537f | 5182 | |
84912ef8 RD |
5183 | // ifdef'd out following patch from Paul Gammans |
5184 | #if 0 | |
3ca6a5f0 | 5185 | // No need to touch column attributes, unless we |
f6bcfd97 BP |
5186 | // removed _all_ rows, in this case, we remove |
5187 | // all column attributes. | |
5188 | // I hate to do this here, but the | |
5189 | // needed data is not available inside UpdateAttrRows. | |
5190 | if ( !GetNumberRows() ) | |
5191 | attrProvider->UpdateAttrCols( 0, -GetNumberCols() ); | |
84912ef8 | 5192 | #endif |
f6bcfd97 | 5193 | } |
ccdee36f | 5194 | |
f6bcfd97 BP |
5195 | if ( !GetBatchCount() ) |
5196 | { | |
5197 | CalcDimensions(); | |
5198 | m_rowLabelWin->Refresh(); | |
5199 | } | |
f85afd4e | 5200 | } |
ca65c044 | 5201 | result = true; |
f6bcfd97 | 5202 | break; |
f85afd4e MB |
5203 | |
5204 | case wxGRIDTABLE_NOTIFY_COLS_INSERTED: | |
5205 | { | |
5206 | size_t pos = msg.GetCommandInt(); | |
5207 | int numCols = msg.GetCommandInt2(); | |
f85afd4e | 5208 | m_numCols += numCols; |
2d66e025 | 5209 | |
d4175745 VZ |
5210 | if ( !m_colAt.IsEmpty() ) |
5211 | { | |
5212 | //Shift the column IDs | |
5213 | int i; | |
5214 | for ( i = 0; i < m_numCols - numCols; i++ ) | |
5215 | { | |
5216 | if ( m_colAt[i] >= (int)pos ) | |
5217 | m_colAt[i] += numCols; | |
5218 | } | |
5219 | ||
5220 | m_colAt.Insert( pos, pos, numCols ); | |
5221 | ||
5222 | //Set the new columns' positions | |
5223 | for ( i = pos + 1; i < (int)pos + numCols; i++ ) | |
5224 | { | |
5225 | m_colAt[i] = i; | |
5226 | } | |
5227 | } | |
5228 | ||
f6bcfd97 BP |
5229 | if ( !m_colWidths.IsEmpty() ) |
5230 | { | |
27f35b66 SN |
5231 | m_colWidths.Insert( m_defaultColWidth, pos, numCols ); |
5232 | m_colRights.Insert( 0, pos, numCols ); | |
f6bcfd97 BP |
5233 | |
5234 | int right = 0; | |
2f024384 | 5235 | if ( pos > 0 ) |
d4175745 | 5236 | right = m_colRights[GetColAt( pos - 1 )]; |
60ff3b99 | 5237 | |
d4175745 VZ |
5238 | int colPos; |
5239 | for ( colPos = pos; colPos < m_numCols; colPos++ ) | |
f6bcfd97 | 5240 | { |
d4175745 VZ |
5241 | i = GetColAt( colPos ); |
5242 | ||
f6bcfd97 BP |
5243 | right += m_colWidths[i]; |
5244 | m_colRights[i] = right; | |
5245 | } | |
5246 | } | |
2f024384 | 5247 | |
f6bcfd97 | 5248 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
2d66e025 | 5249 | { |
f6bcfd97 BP |
5250 | // if we have just inserted cols into an empty grid the current |
5251 | // cell will be undefined... | |
5252 | // | |
5253 | SetCurrentCell( 0, 0 ); | |
2d66e025 | 5254 | } |
3f3dc2ef VZ |
5255 | |
5256 | if ( m_selection ) | |
5257 | m_selection->UpdateCols( pos, numCols ); | |
f6bcfd97 BP |
5258 | wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider(); |
5259 | if (attrProvider) | |
5260 | attrProvider->UpdateAttrCols( pos, numCols ); | |
5261 | if ( !GetBatchCount() ) | |
5262 | { | |
5263 | CalcDimensions(); | |
5264 | m_colLabelWin->Refresh(); | |
5265 | } | |
f85afd4e | 5266 | } |
ca65c044 | 5267 | result = true; |
f6bcfd97 | 5268 | break; |
f85afd4e MB |
5269 | |
5270 | case wxGRIDTABLE_NOTIFY_COLS_APPENDED: | |
5271 | { | |
5272 | int numCols = msg.GetCommandInt(); | |
2d66e025 | 5273 | int oldNumCols = m_numCols; |
f85afd4e | 5274 | m_numCols += numCols; |
d4175745 VZ |
5275 | |
5276 | if ( !m_colAt.IsEmpty() ) | |
5277 | { | |
5278 | m_colAt.Add( 0, numCols ); | |
5279 | ||
5280 | //Set the new columns' positions | |
5281 | int i; | |
5282 | for ( i = oldNumCols; i < m_numCols; i++ ) | |
5283 | { | |
5284 | m_colAt[i] = i; | |
5285 | } | |
5286 | } | |
5287 | ||
f6bcfd97 BP |
5288 | if ( !m_colWidths.IsEmpty() ) |
5289 | { | |
27f35b66 SN |
5290 | m_colWidths.Add( m_defaultColWidth, numCols ); |
5291 | m_colRights.Add( 0, numCols ); | |
2d66e025 | 5292 | |
f6bcfd97 | 5293 | int right = 0; |
2f024384 | 5294 | if ( oldNumCols > 0 ) |
d4175745 | 5295 | right = m_colRights[GetColAt( oldNumCols - 1 )]; |
60ff3b99 | 5296 | |
d4175745 VZ |
5297 | int colPos; |
5298 | for ( colPos = oldNumCols; colPos < m_numCols; colPos++ ) | |
f6bcfd97 | 5299 | { |
d4175745 VZ |
5300 | i = GetColAt( colPos ); |
5301 | ||
f6bcfd97 BP |
5302 | right += m_colWidths[i]; |
5303 | m_colRights[i] = right; | |
5304 | } | |
5305 | } | |
2f024384 | 5306 | |
f6bcfd97 | 5307 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
2d66e025 | 5308 | { |
f6bcfd97 BP |
5309 | // if we have just inserted cols into an empty grid the current |
5310 | // cell will be undefined... | |
5311 | // | |
5312 | SetCurrentCell( 0, 0 ); | |
5313 | } | |
5314 | if ( !GetBatchCount() ) | |
5315 | { | |
5316 | CalcDimensions(); | |
5317 | m_colLabelWin->Refresh(); | |
2d66e025 | 5318 | } |
f85afd4e | 5319 | } |
ca65c044 | 5320 | result = true; |
f6bcfd97 | 5321 | break; |
f85afd4e MB |
5322 | |
5323 | case wxGRIDTABLE_NOTIFY_COLS_DELETED: | |
5324 | { | |
5325 | size_t pos = msg.GetCommandInt(); | |
5326 | int numCols = msg.GetCommandInt2(); | |
f85afd4e | 5327 | m_numCols -= numCols; |
f85afd4e | 5328 | |
d4175745 VZ |
5329 | if ( !m_colAt.IsEmpty() ) |
5330 | { | |
5331 | int colID = GetColAt( pos ); | |
5332 | ||
5333 | m_colAt.RemoveAt( pos, numCols ); | |
5334 | ||
5335 | //Shift the column IDs | |
5336 | int colPos; | |
5337 | for ( colPos = 0; colPos < m_numCols; colPos++ ) | |
5338 | { | |
5339 | if ( m_colAt[colPos] > colID ) | |
5340 | m_colAt[colPos] -= numCols; | |
5341 | } | |
5342 | } | |
5343 | ||
f6bcfd97 | 5344 | if ( !m_colWidths.IsEmpty() ) |
f85afd4e | 5345 | { |
27f35b66 SN |
5346 | m_colWidths.RemoveAt( pos, numCols ); |
5347 | m_colRights.RemoveAt( pos, numCols ); | |
2d66e025 MB |
5348 | |
5349 | int w = 0; | |
d4175745 VZ |
5350 | int colPos; |
5351 | for ( colPos = 0; colPos < m_numCols; colPos++ ) | |
2d66e025 | 5352 | { |
d4175745 VZ |
5353 | i = GetColAt( colPos ); |
5354 | ||
2d66e025 MB |
5355 | w += m_colWidths[i]; |
5356 | m_colRights[i] = w; | |
5357 | } | |
f85afd4e | 5358 | } |
2f024384 | 5359 | |
f6bcfd97 BP |
5360 | if ( !m_numCols ) |
5361 | { | |
5362 | m_currentCellCoords = wxGridNoCellCoords; | |
5363 | } | |
5364 | else | |
5365 | { | |
5366 | if ( m_currentCellCoords.GetCol() >= m_numCols ) | |
5367 | m_currentCellCoords.Set( 0, 0 ); | |
5368 | } | |
3f3dc2ef VZ |
5369 | |
5370 | if ( m_selection ) | |
5371 | m_selection->UpdateCols( pos, -((int)numCols) ); | |
f6bcfd97 | 5372 | wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider(); |
4db6714b KH |
5373 | if (attrProvider) |
5374 | { | |
f6bcfd97 | 5375 | attrProvider->UpdateAttrCols( pos, -((int)numCols) ); |
ccdee36f | 5376 | |
84912ef8 RD |
5377 | // ifdef'd out following patch from Paul Gammans |
5378 | #if 0 | |
f6bcfd97 BP |
5379 | // No need to touch row attributes, unless we |
5380 | // removed _all_ columns, in this case, we remove | |
5381 | // all row attributes. | |
5382 | // I hate to do this here, but the | |
5383 | // needed data is not available inside UpdateAttrCols. | |
5384 | if ( !GetNumberCols() ) | |
5385 | attrProvider->UpdateAttrRows( 0, -GetNumberRows() ); | |
84912ef8 | 5386 | #endif |
f6bcfd97 | 5387 | } |
ccdee36f | 5388 | |
f6bcfd97 BP |
5389 | if ( !GetBatchCount() ) |
5390 | { | |
5391 | CalcDimensions(); | |
5392 | m_colLabelWin->Refresh(); | |
5393 | } | |
f85afd4e | 5394 | } |
ca65c044 | 5395 | result = true; |
f6bcfd97 | 5396 | break; |
f85afd4e MB |
5397 | } |
5398 | ||
f6bcfd97 BP |
5399 | if (result && !GetBatchCount() ) |
5400 | m_gridWin->Refresh(); | |
2f024384 | 5401 | |
f6bcfd97 | 5402 | return result; |
f85afd4e MB |
5403 | } |
5404 | ||
ef316e23 | 5405 | wxArrayInt wxGrid::CalcRowLabelsExposed( const wxRegion& reg ) const |
f85afd4e | 5406 | { |
2d66e025 MB |
5407 | wxRegionIterator iter( reg ); |
5408 | wxRect r; | |
f85afd4e | 5409 | |
275c4ae4 RD |
5410 | wxArrayInt rowlabels; |
5411 | ||
2d66e025 MB |
5412 | int top, bottom; |
5413 | while ( iter ) | |
f85afd4e | 5414 | { |
2d66e025 | 5415 | r = iter.GetRect(); |
f85afd4e | 5416 | |
2d66e025 MB |
5417 | // TODO: remove this when we can... |
5418 | // There is a bug in wxMotif that gives garbage update | |
5419 | // rectangles if you jump-scroll a long way by clicking the | |
5420 | // scrollbar with middle button. This is a work-around | |
5421 | // | |
5422 | #if defined(__WXMOTIF__) | |
5423 | int cw, ch; | |
5424 | m_gridWin->GetClientSize( &cw, &ch ); | |
56b6cf26 DS |
5425 | if ( r.GetTop() > ch ) |
5426 | r.SetTop( 0 ); | |
2d66e025 MB |
5427 | r.SetBottom( wxMin( r.GetBottom(), ch ) ); |
5428 | #endif | |
f85afd4e | 5429 | |
2d66e025 MB |
5430 | // logical bounds of update region |
5431 | // | |
5432 | int dummy; | |
5433 | CalcUnscrolledPosition( 0, r.GetTop(), &dummy, &top ); | |
5434 | CalcUnscrolledPosition( 0, r.GetBottom(), &dummy, &bottom ); | |
5435 | ||
5436 | // find the row labels within these bounds | |
5437 | // | |
5438 | int row; | |
3d59537f | 5439 | for ( row = internalYToRow(top); row < m_numRows; row++ ) |
2d66e025 | 5440 | { |
7c1cb261 VZ |
5441 | if ( GetRowBottom(row) < top ) |
5442 | continue; | |
2d66e025 | 5443 | |
6d55126d | 5444 | if ( GetRowTop(row) > bottom ) |
7c1cb261 | 5445 | break; |
60ff3b99 | 5446 | |
d10f4bf9 | 5447 | rowlabels.Add( row ); |
2d66e025 | 5448 | } |
60ff3b99 | 5449 | |
60d8e886 | 5450 | ++iter; |
f85afd4e | 5451 | } |
d10f4bf9 VZ |
5452 | |
5453 | return rowlabels; | |
f85afd4e MB |
5454 | } |
5455 | ||
ef316e23 | 5456 | wxArrayInt wxGrid::CalcColLabelsExposed( const wxRegion& reg ) const |
f85afd4e | 5457 | { |
2d66e025 MB |
5458 | wxRegionIterator iter( reg ); |
5459 | wxRect r; | |
f85afd4e | 5460 | |
d10f4bf9 | 5461 | wxArrayInt colLabels; |
f85afd4e | 5462 | |
2d66e025 MB |
5463 | int left, right; |
5464 | while ( iter ) | |
f85afd4e | 5465 | { |
2d66e025 | 5466 | r = iter.GetRect(); |
f85afd4e | 5467 | |
2d66e025 MB |
5468 | // TODO: remove this when we can... |
5469 | // There is a bug in wxMotif that gives garbage update | |
5470 | // rectangles if you jump-scroll a long way by clicking the | |
5471 | // scrollbar with middle button. This is a work-around | |
5472 | // | |
5473 | #if defined(__WXMOTIF__) | |
5474 | int cw, ch; | |
5475 | m_gridWin->GetClientSize( &cw, &ch ); | |
56b6cf26 DS |
5476 | if ( r.GetLeft() > cw ) |
5477 | r.SetLeft( 0 ); | |
2d66e025 MB |
5478 | r.SetRight( wxMin( r.GetRight(), cw ) ); |
5479 | #endif | |
5480 | ||
5481 | // logical bounds of update region | |
5482 | // | |
5483 | int dummy; | |
5484 | CalcUnscrolledPosition( r.GetLeft(), 0, &left, &dummy ); | |
5485 | CalcUnscrolledPosition( r.GetRight(), 0, &right, &dummy ); | |
5486 | ||
5487 | // find the cells within these bounds | |
5488 | // | |
5489 | int col; | |
d4175745 VZ |
5490 | int colPos; |
5491 | for ( colPos = GetColPos( internalXToCol(left) ); colPos < m_numCols; colPos++ ) | |
2d66e025 | 5492 | { |
d4175745 VZ |
5493 | col = GetColAt( colPos ); |
5494 | ||
7c1cb261 VZ |
5495 | if ( GetColRight(col) < left ) |
5496 | continue; | |
60ff3b99 | 5497 | |
7c1cb261 VZ |
5498 | if ( GetColLeft(col) > right ) |
5499 | break; | |
2d66e025 | 5500 | |
d10f4bf9 | 5501 | colLabels.Add( col ); |
2d66e025 | 5502 | } |
60ff3b99 | 5503 | |
60d8e886 | 5504 | ++iter; |
f85afd4e | 5505 | } |
2f024384 | 5506 | |
d10f4bf9 | 5507 | return colLabels; |
f85afd4e MB |
5508 | } |
5509 | ||
ef316e23 | 5510 | wxGridCellCoordsArray wxGrid::CalcCellsExposed( const wxRegion& reg ) const |
f85afd4e | 5511 | { |
2d66e025 MB |
5512 | wxRegionIterator iter( reg ); |
5513 | wxRect r; | |
f85afd4e | 5514 | |
d10f4bf9 | 5515 | wxGridCellCoordsArray cellsExposed; |
f85afd4e | 5516 | |
2d66e025 MB |
5517 | int left, top, right, bottom; |
5518 | while ( iter ) | |
5519 | { | |
5520 | r = iter.GetRect(); | |
f85afd4e | 5521 | |
2d66e025 MB |
5522 | // TODO: remove this when we can... |
5523 | // There is a bug in wxMotif that gives garbage update | |
5524 | // rectangles if you jump-scroll a long way by clicking the | |
5525 | // scrollbar with middle button. This is a work-around | |
5526 | // | |
5527 | #if defined(__WXMOTIF__) | |
f85afd4e | 5528 | int cw, ch; |
2d66e025 MB |
5529 | m_gridWin->GetClientSize( &cw, &ch ); |
5530 | if ( r.GetTop() > ch ) r.SetTop( 0 ); | |
5531 | if ( r.GetLeft() > cw ) r.SetLeft( 0 ); | |
5532 | r.SetRight( wxMin( r.GetRight(), cw ) ); | |
5533 | r.SetBottom( wxMin( r.GetBottom(), ch ) ); | |
5534 | #endif | |
8f177c8e | 5535 | |
2d66e025 MB |
5536 | // logical bounds of update region |
5537 | // | |
5538 | CalcUnscrolledPosition( r.GetLeft(), r.GetTop(), &left, &top ); | |
5539 | CalcUnscrolledPosition( r.GetRight(), r.GetBottom(), &right, &bottom ); | |
f85afd4e | 5540 | |
2d66e025 | 5541 | // find the cells within these bounds |
f85afd4e | 5542 | // |
2d66e025 | 5543 | int row, col; |
3d59537f | 5544 | for ( row = internalYToRow(top); row < m_numRows; row++ ) |
f85afd4e | 5545 | { |
7c1cb261 VZ |
5546 | if ( GetRowBottom(row) <= top ) |
5547 | continue; | |
f85afd4e | 5548 | |
7c1cb261 VZ |
5549 | if ( GetRowTop(row) > bottom ) |
5550 | break; | |
60ff3b99 | 5551 | |
d4175745 VZ |
5552 | int colPos; |
5553 | for ( colPos = GetColPos( internalXToCol(left) ); colPos < m_numCols; colPos++ ) | |
2d66e025 | 5554 | { |
d4175745 VZ |
5555 | col = GetColAt( colPos ); |
5556 | ||
7c1cb261 VZ |
5557 | if ( GetColRight(col) <= left ) |
5558 | continue; | |
60ff3b99 | 5559 | |
7c1cb261 VZ |
5560 | if ( GetColLeft(col) > right ) |
5561 | break; | |
60ff3b99 | 5562 | |
d10f4bf9 | 5563 | cellsExposed.Add( wxGridCellCoords( row, col ) ); |
2d66e025 MB |
5564 | } |
5565 | } | |
60ff3b99 | 5566 | |
60d8e886 | 5567 | ++iter; |
f85afd4e | 5568 | } |
d10f4bf9 VZ |
5569 | |
5570 | return cellsExposed; | |
f85afd4e MB |
5571 | } |
5572 | ||
5573 | ||
2d66e025 | 5574 | void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent& event ) |
f85afd4e | 5575 | { |
2d66e025 MB |
5576 | int x, y, row; |
5577 | wxPoint pos( event.GetPosition() ); | |
5578 | CalcUnscrolledPosition( pos.x, pos.y, &x, &y ); | |
60ff3b99 | 5579 | |
2d66e025 | 5580 | if ( event.Dragging() ) |
f85afd4e | 5581 | { |
426b2d87 JS |
5582 | if (!m_isDragging) |
5583 | { | |
ca65c044 | 5584 | m_isDragging = true; |
426b2d87 JS |
5585 | m_rowLabelWin->CaptureMouse(); |
5586 | } | |
8f177c8e | 5587 | |
2d66e025 | 5588 | if ( event.LeftIsDown() ) |
f85afd4e | 5589 | { |
962a48f6 | 5590 | switch ( m_cursorMode ) |
f85afd4e | 5591 | { |
f85afd4e MB |
5592 | case WXGRID_CURSOR_RESIZE_ROW: |
5593 | { | |
2d66e025 MB |
5594 | int cw, ch, left, dummy; |
5595 | m_gridWin->GetClientSize( &cw, &ch ); | |
5596 | CalcUnscrolledPosition( 0, 0, &left, &dummy ); | |
60ff3b99 | 5597 | |
2d66e025 MB |
5598 | wxClientDC dc( m_gridWin ); |
5599 | PrepareDC( dc ); | |
af547d51 VZ |
5600 | y = wxMax( y, |
5601 | GetRowTop(m_dragRowOrCol) + | |
5602 | GetRowMinimalHeight(m_dragRowOrCol) ); | |
d2fdd8d2 | 5603 | dc.SetLogicalFunction(wxINVERT); |
f85afd4e MB |
5604 | if ( m_dragLastPos >= 0 ) |
5605 | { | |
2d66e025 | 5606 | dc.DrawLine( left, m_dragLastPos, left+cw, m_dragLastPos ); |
f85afd4e | 5607 | } |
2d66e025 MB |
5608 | dc.DrawLine( left, y, left+cw, y ); |
5609 | m_dragLastPos = y; | |
f85afd4e MB |
5610 | } |
5611 | break; | |
5612 | ||
5613 | case WXGRID_CURSOR_SELECT_ROW: | |
902725ee | 5614 | { |
e32352cf | 5615 | if ( (row = YToRow( y )) >= 0 ) |
aa5e1f75 | 5616 | { |
3f3dc2ef | 5617 | if ( m_selection ) |
8b5f6d9d | 5618 | m_selection->SelectRow(row, event); |
f85afd4e | 5619 | } |
902725ee WS |
5620 | } |
5621 | break; | |
e2b42eeb VZ |
5622 | |
5623 | // default label to suppress warnings about "enumeration value | |
5624 | // 'xxx' not handled in switch | |
5625 | default: | |
5626 | break; | |
f85afd4e MB |
5627 | } |
5628 | } | |
5629 | return; | |
5630 | } | |
5631 | ||
426b2d87 JS |
5632 | if ( m_isDragging && (event.Entering() || event.Leaving()) ) |
5633 | return; | |
8f177c8e | 5634 | |
426b2d87 JS |
5635 | if (m_isDragging) |
5636 | { | |
ccdee36f DS |
5637 | if (m_rowLabelWin->HasCapture()) |
5638 | m_rowLabelWin->ReleaseMouse(); | |
ca65c044 | 5639 | m_isDragging = false; |
426b2d87 | 5640 | } |
60ff3b99 | 5641 | |
6d004f67 MB |
5642 | // ------------ Entering or leaving the window |
5643 | // | |
5644 | if ( event.Entering() || event.Leaving() ) | |
5645 | { | |
e2b42eeb | 5646 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_rowLabelWin); |
6d004f67 MB |
5647 | } |
5648 | ||
2d66e025 | 5649 | // ------------ Left button pressed |
f85afd4e | 5650 | // |
6d004f67 | 5651 | else if ( event.LeftDown() ) |
f85afd4e | 5652 | { |
2d66e025 MB |
5653 | // don't send a label click event for a hit on the |
5654 | // edge of the row label - this is probably the user | |
5655 | // wanting to resize the row | |
5656 | // | |
5657 | if ( YToEdgeOfRow(y) < 0 ) | |
f85afd4e | 5658 | { |
2d66e025 | 5659 | row = YToRow(y); |
2f024384 | 5660 | if ( row >= 0 && |
b54ba671 | 5661 | !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK, row, -1, event ) ) |
f85afd4e | 5662 | { |
2b01fd49 | 5663 | if ( !event.ShiftDown() && !event.CmdDown() ) |
aa5e1f75 | 5664 | ClearSelection(); |
64e15340 | 5665 | if ( m_selection ) |
3f3dc2ef VZ |
5666 | { |
5667 | if ( event.ShiftDown() ) | |
5668 | { | |
8b5f6d9d VZ |
5669 | m_selection->SelectBlock |
5670 | ( | |
5671 | m_currentCellCoords.GetRow(), 0, | |
5672 | row, GetNumberCols() - 1, | |
5673 | event | |
5674 | ); | |
3f3dc2ef VZ |
5675 | } |
5676 | else | |
5677 | { | |
8b5f6d9d | 5678 | m_selection->SelectRow(row, event); |
3f3dc2ef VZ |
5679 | } |
5680 | } | |
5681 | ||
e2b42eeb | 5682 | ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW, m_rowLabelWin); |
f85afd4e | 5683 | } |
2d66e025 MB |
5684 | } |
5685 | else | |
5686 | { | |
5687 | // starting to drag-resize a row | |
6e8524b1 MB |
5688 | if ( CanDragRowSize() ) |
5689 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW, m_rowLabelWin); | |
2d66e025 MB |
5690 | } |
5691 | } | |
f85afd4e | 5692 | |
2d66e025 MB |
5693 | // ------------ Left double click |
5694 | // | |
5695 | else if (event.LeftDClick() ) | |
5696 | { | |
4e115ed2 | 5697 | row = YToEdgeOfRow(y); |
d43851f7 | 5698 | if ( row < 0 ) |
2d66e025 MB |
5699 | { |
5700 | row = YToRow(y); | |
a967f048 | 5701 | if ( row >=0 && |
ca65c044 WS |
5702 | !SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK, row, -1, event ) ) |
5703 | { | |
a967f048 | 5704 | // no default action at the moment |
ca65c044 | 5705 | } |
f85afd4e | 5706 | } |
d43851f7 JS |
5707 | else |
5708 | { | |
5709 | // adjust row height depending on label text | |
5710 | AutoSizeRowLabelSize( row ); | |
5711 | ||
5712 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_colLabelWin); | |
ccdee36f | 5713 | m_dragLastPos = -1; |
d43851f7 | 5714 | } |
f85afd4e | 5715 | } |
60ff3b99 | 5716 | |
2d66e025 | 5717 | // ------------ Left button released |
f85afd4e | 5718 | // |
2d66e025 | 5719 | else if ( event.LeftUp() ) |
f85afd4e | 5720 | { |
2d66e025 | 5721 | if ( m_cursorMode == WXGRID_CURSOR_RESIZE_ROW ) |
f85afd4e | 5722 | { |
6d004f67 | 5723 | DoEndDragResizeRow(); |
60ff3b99 | 5724 | |
6d004f67 MB |
5725 | // Note: we are ending the event *after* doing |
5726 | // default processing in this case | |
5727 | // | |
b54ba671 | 5728 | SendEvent( wxEVT_GRID_ROW_SIZE, m_dragRowOrCol, -1, event ); |
2d66e025 | 5729 | } |
f85afd4e | 5730 | |
e2b42eeb VZ |
5731 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_rowLabelWin); |
5732 | m_dragLastPos = -1; | |
2d66e025 | 5733 | } |
f85afd4e | 5734 | |
2d66e025 MB |
5735 | // ------------ Right button down |
5736 | // | |
5737 | else if ( event.RightDown() ) | |
5738 | { | |
5739 | row = YToRow(y); | |
ef5df12b | 5740 | if ( row >=0 && |
ca65c044 | 5741 | !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK, row, -1, event ) ) |
2d66e025 MB |
5742 | { |
5743 | // no default action at the moment | |
f85afd4e MB |
5744 | } |
5745 | } | |
60ff3b99 | 5746 | |
2d66e025 | 5747 | // ------------ Right double click |
f85afd4e | 5748 | // |
2d66e025 MB |
5749 | else if ( event.RightDClick() ) |
5750 | { | |
5751 | row = YToRow(y); | |
a967f048 | 5752 | if ( row >= 0 && |
ca65c044 | 5753 | !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK, row, -1, event ) ) |
2d66e025 MB |
5754 | { |
5755 | // no default action at the moment | |
5756 | } | |
5757 | } | |
60ff3b99 | 5758 | |
2d66e025 | 5759 | // ------------ No buttons down and mouse moving |
f85afd4e | 5760 | // |
2d66e025 | 5761 | else if ( event.Moving() ) |
f85afd4e | 5762 | { |
2d66e025 MB |
5763 | m_dragRowOrCol = YToEdgeOfRow( y ); |
5764 | if ( m_dragRowOrCol >= 0 ) | |
8f177c8e | 5765 | { |
2d66e025 | 5766 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) |
8f177c8e | 5767 | { |
e2b42eeb | 5768 | // don't capture the mouse yet |
6e8524b1 | 5769 | if ( CanDragRowSize() ) |
ca65c044 | 5770 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW, m_rowLabelWin, false); |
8f177c8e | 5771 | } |
2d66e025 | 5772 | } |
6d004f67 | 5773 | else if ( m_cursorMode != WXGRID_CURSOR_SELECT_CELL ) |
2d66e025 | 5774 | { |
ca65c044 | 5775 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_rowLabelWin, false); |
8f177c8e | 5776 | } |
f85afd4e | 5777 | } |
2d66e025 MB |
5778 | } |
5779 | ||
2d66e025 MB |
5780 | void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event ) |
5781 | { | |
5782 | int x, y, col; | |
5783 | wxPoint pos( event.GetPosition() ); | |
5784 | CalcUnscrolledPosition( pos.x, pos.y, &x, &y ); | |
60ff3b99 | 5785 | |
2d66e025 | 5786 | if ( event.Dragging() ) |
f85afd4e | 5787 | { |
fe77cf60 JS |
5788 | if (!m_isDragging) |
5789 | { | |
ca65c044 | 5790 | m_isDragging = true; |
fe77cf60 | 5791 | m_colLabelWin->CaptureMouse(); |
d4175745 VZ |
5792 | |
5793 | if ( m_cursorMode == WXGRID_CURSOR_MOVE_COL ) | |
5794 | m_dragRowOrCol = XToCol( x ); | |
fe77cf60 | 5795 | } |
8f177c8e | 5796 | |
2d66e025 | 5797 | if ( event.LeftIsDown() ) |
8f177c8e | 5798 | { |
962a48f6 | 5799 | switch ( m_cursorMode ) |
8f177c8e | 5800 | { |
2d66e025 | 5801 | case WXGRID_CURSOR_RESIZE_COL: |
8f177c8e | 5802 | { |
2d66e025 MB |
5803 | int cw, ch, dummy, top; |
5804 | m_gridWin->GetClientSize( &cw, &ch ); | |
5805 | CalcUnscrolledPosition( 0, 0, &dummy, &top ); | |
60ff3b99 | 5806 | |
2d66e025 MB |
5807 | wxClientDC dc( m_gridWin ); |
5808 | PrepareDC( dc ); | |
43947979 VZ |
5809 | |
5810 | x = wxMax( x, GetColLeft(m_dragRowOrCol) + | |
5811 | GetColMinimalWidth(m_dragRowOrCol)); | |
d2fdd8d2 | 5812 | dc.SetLogicalFunction(wxINVERT); |
2d66e025 MB |
5813 | if ( m_dragLastPos >= 0 ) |
5814 | { | |
ccdee36f | 5815 | dc.DrawLine( m_dragLastPos, top, m_dragLastPos, top + ch ); |
2d66e025 | 5816 | } |
ccdee36f | 5817 | dc.DrawLine( x, top, x, top + ch ); |
2d66e025 | 5818 | m_dragLastPos = x; |
f85afd4e | 5819 | } |
2d66e025 | 5820 | break; |
f85afd4e | 5821 | |
2d66e025 | 5822 | case WXGRID_CURSOR_SELECT_COL: |
902725ee | 5823 | { |
e32352cf | 5824 | if ( (col = XToCol( x )) >= 0 ) |
aa5e1f75 | 5825 | { |
3f3dc2ef | 5826 | if ( m_selection ) |
8b5f6d9d | 5827 | m_selection->SelectCol(col, event); |
2d66e025 | 5828 | } |
902725ee WS |
5829 | } |
5830 | break; | |
e2b42eeb | 5831 | |
d4175745 VZ |
5832 | case WXGRID_CURSOR_MOVE_COL: |
5833 | { | |
5834 | if ( x < 0 ) | |
5835 | m_moveToCol = GetColAt( 0 ); | |
5836 | else | |
5837 | m_moveToCol = XToCol( x ); | |
5838 | ||
5839 | int markerX; | |
5840 | ||
5841 | if ( m_moveToCol < 0 ) | |
5842 | markerX = GetColRight( GetColAt( m_numCols - 1 ) ); | |
87c819f9 VZ |
5843 | else if ( x >= (GetColLeft( m_moveToCol ) + (GetColWidth(m_moveToCol) / 2)) ) |
5844 | { | |
5845 | m_moveToCol = GetColAt( GetColPos( m_moveToCol ) + 1 ); | |
5846 | if ( m_moveToCol < 0 ) | |
5847 | markerX = GetColRight( GetColAt( m_numCols - 1 ) ); | |
5848 | else | |
5849 | markerX = GetColLeft( m_moveToCol ); | |
5850 | } | |
d4175745 VZ |
5851 | else |
5852 | markerX = GetColLeft( m_moveToCol ); | |
5853 | ||
5854 | if ( markerX != m_dragLastPos ) | |
5855 | { | |
5856 | wxClientDC dc( m_colLabelWin ); | |
1eab9659 | 5857 | DoPrepareDC(dc); |
d4175745 VZ |
5858 | |
5859 | int cw, ch; | |
5860 | m_colLabelWin->GetClientSize( &cw, &ch ); | |
5861 | ||
5862 | markerX++; | |
5863 | ||
5864 | //Clean up the last indicator | |
5865 | if ( m_dragLastPos >= 0 ) | |
5866 | { | |
5867 | wxPen pen( m_colLabelWin->GetBackgroundColour(), 2 ); | |
5868 | dc.SetPen(pen); | |
5869 | dc.DrawLine( m_dragLastPos + 1, 0, m_dragLastPos + 1, ch ); | |
5870 | dc.SetPen(wxNullPen); | |
5871 | ||
5872 | if ( XToCol( m_dragLastPos ) != -1 ) | |
5873 | DrawColLabel( dc, XToCol( m_dragLastPos ) ); | |
5874 | } | |
5875 | ||
87c819f9 | 5876 | const wxColour *color; |
d4175745 VZ |
5877 | //Moving to the same place? Don't draw a marker |
5878 | if ( (m_moveToCol == m_dragRowOrCol) | |
5879 | || (GetColPos( m_moveToCol ) == GetColPos( m_dragRowOrCol ) + 1) | |
5880 | || (m_moveToCol < 0 && m_dragRowOrCol == GetColAt( m_numCols - 1 ))) | |
87c819f9 VZ |
5881 | color = wxLIGHT_GREY; |
5882 | else | |
5883 | color = wxBLUE; | |
d4175745 VZ |
5884 | |
5885 | //Draw the marker | |
87c819f9 | 5886 | wxPen pen( *color, 2 ); |
d4175745 VZ |
5887 | dc.SetPen(pen); |
5888 | ||
5889 | dc.DrawLine( markerX, 0, markerX, ch ); | |
5890 | ||
5891 | dc.SetPen(wxNullPen); | |
5892 | ||
5893 | m_dragLastPos = markerX - 1; | |
5894 | } | |
5895 | } | |
5896 | break; | |
5897 | ||
e2b42eeb VZ |
5898 | // default label to suppress warnings about "enumeration value |
5899 | // 'xxx' not handled in switch | |
5900 | default: | |
5901 | break; | |
2d66e025 | 5902 | } |
f85afd4e | 5903 | } |
2d66e025 | 5904 | return; |
f85afd4e | 5905 | } |
2d66e025 | 5906 | |
fe77cf60 JS |
5907 | if ( m_isDragging && (event.Entering() || event.Leaving()) ) |
5908 | return; | |
2d66e025 | 5909 | |
fe77cf60 JS |
5910 | if (m_isDragging) |
5911 | { | |
ccdee36f DS |
5912 | if (m_colLabelWin->HasCapture()) |
5913 | m_colLabelWin->ReleaseMouse(); | |
ca65c044 | 5914 | m_isDragging = false; |
fe77cf60 | 5915 | } |
60ff3b99 | 5916 | |
6d004f67 MB |
5917 | // ------------ Entering or leaving the window |
5918 | // | |
5919 | if ( event.Entering() || event.Leaving() ) | |
5920 | { | |
e2b42eeb | 5921 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_colLabelWin); |
6d004f67 MB |
5922 | } |
5923 | ||
2d66e025 | 5924 | // ------------ Left button pressed |
f85afd4e | 5925 | // |
6d004f67 | 5926 | else if ( event.LeftDown() ) |
f85afd4e | 5927 | { |
2d66e025 MB |
5928 | // don't send a label click event for a hit on the |
5929 | // edge of the col label - this is probably the user | |
5930 | // wanting to resize the col | |
5931 | // | |
5932 | if ( XToEdgeOfCol(x) < 0 ) | |
8f177c8e | 5933 | { |
2d66e025 | 5934 | col = XToCol(x); |
2f024384 | 5935 | if ( col >= 0 && |
b54ba671 | 5936 | !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK, -1, col, event ) ) |
8f177c8e | 5937 | { |
d4175745 | 5938 | if ( m_canDragColMove ) |
3f3dc2ef | 5939 | { |
d4175745 VZ |
5940 | //Show button as pressed |
5941 | wxClientDC dc( m_colLabelWin ); | |
5942 | int colLeft = GetColLeft( col ); | |
5943 | int colRight = GetColRight( col ) - 1; | |
5944 | dc.SetPen( wxPen( m_colLabelWin->GetBackgroundColour(), 1 ) ); | |
5945 | dc.DrawLine( colLeft, 1, colLeft, m_colLabelHeight-1 ); | |
5946 | dc.DrawLine( colLeft, 1, colRight, 1 ); | |
5947 | ||
5948 | ChangeCursorMode(WXGRID_CURSOR_MOVE_COL, m_colLabelWin); | |
5949 | } | |
5950 | else | |
5951 | { | |
5952 | if ( !event.ShiftDown() && !event.CmdDown() ) | |
5953 | ClearSelection(); | |
5954 | if ( m_selection ) | |
3f3dc2ef | 5955 | { |
d4175745 VZ |
5956 | if ( event.ShiftDown() ) |
5957 | { | |
8b5f6d9d VZ |
5958 | m_selection->SelectBlock |
5959 | ( | |
5960 | 0, m_currentCellCoords.GetCol(), | |
5961 | GetNumberRows() - 1, col, | |
5962 | event | |
5963 | ); | |
d4175745 VZ |
5964 | } |
5965 | else | |
5966 | { | |
8b5f6d9d | 5967 | m_selection->SelectCol(col, event); |
d4175745 | 5968 | } |
3f3dc2ef | 5969 | } |
3f3dc2ef | 5970 | |
d4175745 VZ |
5971 | ChangeCursorMode(WXGRID_CURSOR_SELECT_COL, m_colLabelWin); |
5972 | } | |
f85afd4e | 5973 | } |
2d66e025 MB |
5974 | } |
5975 | else | |
5976 | { | |
5977 | // starting to drag-resize a col | |
5978 | // | |
6e8524b1 MB |
5979 | if ( CanDragColSize() ) |
5980 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL, m_colLabelWin); | |
2d66e025 MB |
5981 | } |
5982 | } | |
f85afd4e | 5983 | |
2d66e025 MB |
5984 | // ------------ Left double click |
5985 | // | |
5986 | if ( event.LeftDClick() ) | |
5987 | { | |
4e115ed2 | 5988 | col = XToEdgeOfCol(x); |
d43851f7 | 5989 | if ( col < 0 ) |
2d66e025 MB |
5990 | { |
5991 | col = XToCol(x); | |
a967f048 RG |
5992 | if ( col >= 0 && |
5993 | ! SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK, -1, col, event ) ) | |
5994 | { | |
ca65c044 | 5995 | // no default action at the moment |
a967f048 | 5996 | } |
2d66e025 | 5997 | } |
d43851f7 JS |
5998 | else |
5999 | { | |
6000 | // adjust column width depending on label text | |
6001 | AutoSizeColLabelSize( col ); | |
6002 | ||
6003 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_colLabelWin); | |
ccdee36f | 6004 | m_dragLastPos = -1; |
d43851f7 | 6005 | } |
2d66e025 | 6006 | } |
60ff3b99 | 6007 | |
2d66e025 MB |
6008 | // ------------ Left button released |
6009 | // | |
6010 | else if ( event.LeftUp() ) | |
6011 | { | |
d4175745 | 6012 | switch ( m_cursorMode ) |
2d66e025 | 6013 | { |
d4175745 | 6014 | case WXGRID_CURSOR_RESIZE_COL: |
d4175745 | 6015 | DoEndDragResizeCol(); |
e2b42eeb | 6016 | |
d4175745 VZ |
6017 | // Note: we are ending the event *after* doing |
6018 | // default processing in this case | |
6019 | // | |
6020 | SendEvent( wxEVT_GRID_COL_SIZE, -1, m_dragRowOrCol, event ); | |
852b6c3c | 6021 | break; |
d4175745 VZ |
6022 | |
6023 | case WXGRID_CURSOR_MOVE_COL: | |
d4175745 VZ |
6024 | DoEndDragMoveCol(); |
6025 | ||
6026 | SendEvent( wxEVT_GRID_COL_MOVE, -1, m_dragRowOrCol, event ); | |
852b6c3c VZ |
6027 | break; |
6028 | ||
6029 | case WXGRID_CURSOR_SELECT_COL: | |
6030 | case WXGRID_CURSOR_SELECT_CELL: | |
6031 | case WXGRID_CURSOR_RESIZE_ROW: | |
6032 | case WXGRID_CURSOR_SELECT_ROW: | |
6033 | // nothing to do (?) | |
6034 | break; | |
2d66e025 | 6035 | } |
f85afd4e | 6036 | |
e2b42eeb | 6037 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_colLabelWin); |
ccdee36f | 6038 | m_dragLastPos = -1; |
60ff3b99 VZ |
6039 | } |
6040 | ||
2d66e025 MB |
6041 | // ------------ Right button down |
6042 | // | |
6043 | else if ( event.RightDown() ) | |
6044 | { | |
6045 | col = XToCol(x); | |
a967f048 | 6046 | if ( col >= 0 && |
ca65c044 | 6047 | !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK, -1, col, event ) ) |
2d66e025 MB |
6048 | { |
6049 | // no default action at the moment | |
f85afd4e MB |
6050 | } |
6051 | } | |
60ff3b99 | 6052 | |
2d66e025 | 6053 | // ------------ Right double click |
f85afd4e | 6054 | // |
2d66e025 MB |
6055 | else if ( event.RightDClick() ) |
6056 | { | |
6057 | col = XToCol(x); | |
a967f048 | 6058 | if ( col >= 0 && |
ca65c044 | 6059 | !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK, -1, col, event ) ) |
2d66e025 MB |
6060 | { |
6061 | // no default action at the moment | |
6062 | } | |
6063 | } | |
60ff3b99 | 6064 | |
2d66e025 | 6065 | // ------------ No buttons down and mouse moving |
f85afd4e | 6066 | // |
2d66e025 | 6067 | else if ( event.Moving() ) |
f85afd4e | 6068 | { |
2d66e025 MB |
6069 | m_dragRowOrCol = XToEdgeOfCol( x ); |
6070 | if ( m_dragRowOrCol >= 0 ) | |
f85afd4e | 6071 | { |
2d66e025 | 6072 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) |
f85afd4e | 6073 | { |
e2b42eeb | 6074 | // don't capture the cursor yet |
6e8524b1 | 6075 | if ( CanDragColSize() ) |
ca65c044 | 6076 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL, m_colLabelWin, false); |
f85afd4e | 6077 | } |
2d66e025 | 6078 | } |
6d004f67 | 6079 | else if ( m_cursorMode != WXGRID_CURSOR_SELECT_CELL ) |
2d66e025 | 6080 | { |
ca65c044 | 6081 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL, m_colLabelWin, false); |
8f177c8e | 6082 | } |
f85afd4e MB |
6083 | } |
6084 | } | |
6085 | ||
2d66e025 | 6086 | void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent& event ) |
f85afd4e | 6087 | { |
2d66e025 | 6088 | if ( event.LeftDown() ) |
f85afd4e | 6089 | { |
2d66e025 MB |
6090 | // indicate corner label by having both row and |
6091 | // col args == -1 | |
f85afd4e | 6092 | // |
b54ba671 | 6093 | if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK, -1, -1, event ) ) |
2d66e025 MB |
6094 | { |
6095 | SelectAll(); | |
6096 | } | |
f85afd4e | 6097 | } |
2d66e025 MB |
6098 | else if ( event.LeftDClick() ) |
6099 | { | |
b54ba671 | 6100 | SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK, -1, -1, event ); |
2d66e025 | 6101 | } |
2d66e025 | 6102 | else if ( event.RightDown() ) |
f85afd4e | 6103 | { |
b54ba671 | 6104 | if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK, -1, -1, event ) ) |
f85afd4e | 6105 | { |
2d66e025 MB |
6106 | // no default action at the moment |
6107 | } | |
6108 | } | |
2d66e025 MB |
6109 | else if ( event.RightDClick() ) |
6110 | { | |
b54ba671 | 6111 | if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK, -1, -1, event ) ) |
2d66e025 MB |
6112 | { |
6113 | // no default action at the moment | |
6114 | } | |
6115 | } | |
6116 | } | |
f85afd4e | 6117 | |
86033c4b VZ |
6118 | void wxGrid::CancelMouseCapture() |
6119 | { | |
6120 | // cancel operation currently in progress, whatever it is | |
6121 | if ( m_winCapture ) | |
6122 | { | |
6123 | m_isDragging = false; | |
8a3e536c VZ |
6124 | m_startDragPos = wxDefaultPosition; |
6125 | ||
86033c4b VZ |
6126 | m_cursorMode = WXGRID_CURSOR_SELECT_CELL; |
6127 | m_winCapture->SetCursor( *wxSTANDARD_CURSOR ); | |
6128 | m_winCapture = NULL; | |
6129 | ||
6130 | // remove traces of whatever we drew on screen | |
6131 | Refresh(); | |
6132 | } | |
6133 | } | |
6134 | ||
e2b42eeb VZ |
6135 | void wxGrid::ChangeCursorMode(CursorMode mode, |
6136 | wxWindow *win, | |
6137 | bool captureMouse) | |
6138 | { | |
6139 | #ifdef __WXDEBUG__ | |
6140 | static const wxChar *cursorModes[] = | |
6141 | { | |
6142 | _T("SELECT_CELL"), | |
6143 | _T("RESIZE_ROW"), | |
6144 | _T("RESIZE_COL"), | |
6145 | _T("SELECT_ROW"), | |
d4175745 VZ |
6146 | _T("SELECT_COL"), |
6147 | _T("MOVE_COL"), | |
e2b42eeb VZ |
6148 | }; |
6149 | ||
181bfffd VZ |
6150 | wxLogTrace(_T("grid"), |
6151 | _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"), | |
e2b42eeb VZ |
6152 | win == m_colLabelWin ? _T("colLabelWin") |
6153 | : win ? _T("rowLabelWin") | |
6154 | : _T("gridWin"), | |
6155 | cursorModes[m_cursorMode], cursorModes[mode]); | |
2f024384 | 6156 | #endif |
e2b42eeb | 6157 | |
faec5a43 SN |
6158 | if ( mode == m_cursorMode && |
6159 | win == m_winCapture && | |
6160 | captureMouse == (m_winCapture != NULL)) | |
e2b42eeb VZ |
6161 | return; |
6162 | ||
6163 | if ( !win ) | |
6164 | { | |
6165 | // by default use the grid itself | |
6166 | win = m_gridWin; | |
6167 | } | |
6168 | ||
6169 | if ( m_winCapture ) | |
6170 | { | |
2f024384 DS |
6171 | if (m_winCapture->HasCapture()) |
6172 | m_winCapture->ReleaseMouse(); | |
10a4531d | 6173 | m_winCapture = NULL; |
e2b42eeb VZ |
6174 | } |
6175 | ||
6176 | m_cursorMode = mode; | |
6177 | ||
6178 | switch ( m_cursorMode ) | |
6179 | { | |
6180 | case WXGRID_CURSOR_RESIZE_ROW: | |
6181 | win->SetCursor( m_rowResizeCursor ); | |
6182 | break; | |
6183 | ||
6184 | case WXGRID_CURSOR_RESIZE_COL: | |
6185 | win->SetCursor( m_colResizeCursor ); | |
6186 | break; | |
6187 | ||
d4175745 VZ |
6188 | case WXGRID_CURSOR_MOVE_COL: |
6189 | win->SetCursor( wxCursor(wxCURSOR_HAND) ); | |
6190 | break; | |
6191 | ||
e2b42eeb VZ |
6192 | default: |
6193 | win->SetCursor( *wxSTANDARD_CURSOR ); | |
2f024384 | 6194 | break; |
e2b42eeb VZ |
6195 | } |
6196 | ||
6197 | // we need to capture mouse when resizing | |
6198 | bool resize = m_cursorMode == WXGRID_CURSOR_RESIZE_ROW || | |
6199 | m_cursorMode == WXGRID_CURSOR_RESIZE_COL; | |
6200 | ||
6201 | if ( captureMouse && resize ) | |
6202 | { | |
6203 | win->CaptureMouse(); | |
6204 | m_winCapture = win; | |
6205 | } | |
6206 | } | |
8f177c8e | 6207 | |
8a3e536c VZ |
6208 | // ---------------------------------------------------------------------------- |
6209 | // grid mouse event processing | |
6210 | // ---------------------------------------------------------------------------- | |
60ff3b99 | 6211 | |
8a3e536c VZ |
6212 | void |
6213 | wxGrid::DoGridCellDrag(wxMouseEvent& event, | |
6214 | const wxGridCellCoords& coords, | |
6215 | bool isFirstDrag) | |
6216 | { | |
6217 | if ( coords == wxGridNoCellCoords ) | |
6218 | return; // we're outside any valid cell | |
60ff3b99 | 6219 | |
8a3e536c VZ |
6220 | // Hide the edit control, so it won't interfere with drag-shrinking. |
6221 | if ( IsCellEditControlShown() ) | |
27f35b66 | 6222 | { |
8a3e536c VZ |
6223 | HideCellEditControl(); |
6224 | SaveEditControlValue(); | |
27f35b66 SN |
6225 | } |
6226 | ||
8a3e536c | 6227 | switch ( event.GetModifiers() ) |
2d66e025 | 6228 | { |
8a3e536c VZ |
6229 | case wxMOD_CMD: |
6230 | if ( m_selectedBlockCorner == wxGridNoCellCoords) | |
6231 | m_selectedBlockCorner = coords; | |
6232 | UpdateBlockBeingSelected(m_selectedBlockCorner, coords); | |
6233 | break; | |
07296f0b | 6234 | |
8a3e536c VZ |
6235 | case wxMOD_NONE: |
6236 | if ( CanDragCell() ) | |
2d66e025 | 6237 | { |
8a3e536c | 6238 | if ( isFirstDrag ) |
79dbea21 | 6239 | { |
8a3e536c VZ |
6240 | if ( m_selectedBlockCorner == wxGridNoCellCoords) |
6241 | m_selectedBlockCorner = coords; | |
07296f0b | 6242 | |
8a3e536c VZ |
6243 | SendEvent(wxEVT_GRID_CELL_BEGIN_DRAG, coords, event); |
6244 | return; | |
07296f0b | 6245 | } |
2d66e025 | 6246 | } |
25107357 | 6247 | |
8a3e536c VZ |
6248 | UpdateBlockBeingSelected(m_currentCellCoords, coords); |
6249 | break; | |
c71b2126 | 6250 | |
8a3e536c VZ |
6251 | default: |
6252 | // we don't handle the other key modifiers | |
6253 | event.Skip(); | |
6254 | } | |
6255 | } | |
8f177c8e | 6256 | |
8a3e536c VZ |
6257 | void wxGrid::DoGridLineDrag(wxMouseEvent& event, const wxGridOperations& oper) |
6258 | { | |
6259 | wxClientDC dc(m_gridWin); | |
6260 | PrepareDC(dc); | |
6261 | dc.SetLogicalFunction(wxINVERT); | |
e2b42eeb | 6262 | |
8a3e536c VZ |
6263 | const wxRect rectWin(CalcUnscrolledPosition(wxPoint(0, 0)), |
6264 | m_gridWin->GetClientSize()); | |
6265 | ||
6266 | // erase the previously drawn line, if any | |
6267 | if ( m_dragLastPos >= 0 ) | |
6268 | oper.DrawParallelLineInRect(dc, rectWin, m_dragLastPos); | |
6269 | ||
6270 | // we need the vertical position for rows and horizontal for columns here | |
6271 | m_dragLastPos = oper.Dual().Select(CalcUnscrolledPosition(event.GetPosition())); | |
6272 | ||
6273 | // don't allow resizing beneath the minimal size | |
6274 | const int posMin = oper.GetLineStartPos(this, m_dragRowOrCol) + | |
6275 | oper.GetMinimalLineSize(this, m_dragRowOrCol); | |
6276 | if ( m_dragLastPos < posMin ) | |
6277 | m_dragLastPos = posMin; | |
6278 | ||
6279 | // and draw it at the new position | |
6280 | oper.DrawParallelLineInRect(dc, rectWin, m_dragLastPos); | |
6281 | } | |
6282 | ||
6283 | void wxGrid::DoGridDragEvent(wxMouseEvent& event, const wxGridCellCoords& coords) | |
6284 | { | |
6285 | if ( !m_isDragging ) | |
6286 | { | |
6287 | // Don't start doing anything until the mouse has been dragged far | |
6288 | // enough | |
6289 | const wxPoint& pt = event.GetPosition(); | |
6290 | if ( m_startDragPos == wxDefaultPosition ) | |
6291 | { | |
6292 | m_startDragPos = pt; | |
6293 | return; | |
6d004f67 | 6294 | } |
e2b42eeb | 6295 | |
8a3e536c VZ |
6296 | if ( abs(m_startDragPos.x - pt.x) <= DRAG_SENSITIVITY && |
6297 | abs(m_startDragPos.y - pt.y) <= DRAG_SENSITIVITY ) | |
6298 | return; | |
2d66e025 | 6299 | } |
66242c80 | 6300 | |
8a3e536c VZ |
6301 | const bool isFirstDrag = !m_isDragging; |
6302 | m_isDragging = true; | |
07296f0b | 6303 | |
8a3e536c | 6304 | switch ( m_cursorMode ) |
a5777624 | 6305 | { |
8a3e536c VZ |
6306 | case WXGRID_CURSOR_SELECT_CELL: |
6307 | DoGridCellDrag(event, coords, isFirstDrag); | |
6308 | break; | |
6309 | ||
6310 | case WXGRID_CURSOR_RESIZE_ROW: | |
6311 | DoGridLineDrag(event, wxGridRowOperations()); | |
6312 | break; | |
6313 | ||
6314 | case WXGRID_CURSOR_RESIZE_COL: | |
6315 | DoGridLineDrag(event, wxGridColumnOperations()); | |
6316 | break; | |
6317 | ||
6318 | default: | |
6319 | event.Skip(); | |
a5777624 | 6320 | } |
e2b42eeb | 6321 | |
8a3e536c | 6322 | if ( isFirstDrag ) |
f6bcfd97 | 6323 | { |
8a3e536c VZ |
6324 | m_winCapture = m_gridWin; |
6325 | m_winCapture->CaptureMouse(); | |
6326 | } | |
6327 | } | |
a5777624 | 6328 | |
8a3e536c VZ |
6329 | void |
6330 | wxGrid::DoGridCellLeftDown(wxMouseEvent& event, | |
6331 | const wxGridCellCoords& coords, | |
6332 | const wxPoint& pos) | |
6333 | { | |
6334 | if ( SendEvent(wxEVT_GRID_CELL_LEFT_CLICK, coords, event) ) | |
6335 | { | |
6336 | // event handled by user code, no need to do anything here | |
6337 | return; | |
a5777624 | 6338 | } |
f85afd4e | 6339 | |
8a3e536c VZ |
6340 | if ( !event.CmdDown() ) |
6341 | ClearSelection(); | |
6342 | ||
6343 | if ( event.ShiftDown() ) | |
6344 | { | |
6345 | if ( m_selection ) | |
6346 | { | |
8b5f6d9d | 6347 | m_selection->SelectBlock(m_currentCellCoords, coords, event); |
8a3e536c VZ |
6348 | m_selectedBlockCorner = coords; |
6349 | } | |
6350 | } | |
6351 | else if ( XToEdgeOfCol(pos.x) < 0 && YToEdgeOfRow(pos.y) < 0 ) | |
a5777624 RD |
6352 | { |
6353 | DisableCellEditControl(); | |
8a3e536c | 6354 | MakeCellVisible( coords ); |
a5777624 | 6355 | |
8a3e536c | 6356 | if ( event.CmdDown() ) |
58dd5b3b | 6357 | { |
8a3e536c | 6358 | if ( m_selection ) |
1ef49ab5 | 6359 | { |
8b5f6d9d | 6360 | m_selection->ToggleCellSelection(coords, event); |
1ef49ab5 | 6361 | } |
8b5f6d9d | 6362 | |
8a3e536c VZ |
6363 | m_selectedBlockTopLeft = wxGridNoCellCoords; |
6364 | m_selectedBlockBottomRight = wxGridNoCellCoords; | |
6365 | m_selectedBlockCorner = coords; | |
6366 | } | |
6367 | else | |
6368 | { | |
6369 | m_waitForSlowClick = m_currentCellCoords == coords && | |
6370 | coords != wxGridNoCellCoords; | |
6371 | SetCurrentCell( coords ); | |
58dd5b3b | 6372 | } |
a5777624 | 6373 | } |
8a3e536c | 6374 | } |
f85afd4e | 6375 | |
8a3e536c VZ |
6376 | void |
6377 | wxGrid::DoGridCellLeftDClick(wxMouseEvent& event, | |
6378 | const wxGridCellCoords& coords, | |
6379 | const wxPoint& pos) | |
6380 | { | |
6381 | if ( XToEdgeOfCol(pos.x) < 0 && YToEdgeOfRow(pos.y) < 0 ) | |
a5777624 | 6382 | { |
8a3e536c | 6383 | if ( !SendEvent(wxEVT_GRID_CELL_LEFT_DCLICK, coords, event) ) |
f85afd4e | 6384 | { |
8a3e536c VZ |
6385 | // we want double click to select a cell and start editing |
6386 | // (i.e. to behave in same way as sequence of two slow clicks): | |
6387 | m_waitForSlowClick = true; | |
6388 | } | |
6389 | } | |
6390 | } | |
932b55d0 | 6391 | |
8a3e536c VZ |
6392 | void |
6393 | wxGrid::DoGridCellLeftUp(wxMouseEvent& event, const wxGridCellCoords& coords) | |
6394 | { | |
6395 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) | |
6396 | { | |
6397 | if (m_winCapture) | |
6398 | { | |
6399 | if (m_winCapture->HasCapture()) | |
6400 | m_winCapture->ReleaseMouse(); | |
6401 | m_winCapture = NULL; | |
6402 | } | |
932b55d0 | 6403 | |
8a3e536c VZ |
6404 | if ( coords == m_currentCellCoords && m_waitForSlowClick && CanEnableCellControl() ) |
6405 | { | |
6406 | ClearSelection(); | |
6407 | EnableCellEditControl(); | |
3f3dc2ef | 6408 | |
8a3e536c VZ |
6409 | wxGridCellAttr *attr = GetCellAttr(coords); |
6410 | wxGridCellEditor *editor = attr->GetEditor(this, coords.GetRow(), coords.GetCol()); | |
6411 | editor->StartingClick(); | |
6412 | editor->DecRef(); | |
6413 | attr->DecRef(); | |
2d66e025 | 6414 | |
8a3e536c | 6415 | m_waitForSlowClick = false; |
a5777624 | 6416 | } |
8a3e536c VZ |
6417 | else if ( m_selectedBlockTopLeft != wxGridNoCellCoords && |
6418 | m_selectedBlockBottomRight != wxGridNoCellCoords ) | |
a5777624 | 6419 | { |
8a3e536c VZ |
6420 | if ( m_selection ) |
6421 | { | |
6422 | m_selection->SelectBlock( m_selectedBlockTopLeft, | |
6423 | m_selectedBlockBottomRight, | |
8b5f6d9d | 6424 | event ); |
8a3e536c | 6425 | } |
e2b42eeb | 6426 | |
8a3e536c VZ |
6427 | m_selectedBlockTopLeft = wxGridNoCellCoords; |
6428 | m_selectedBlockBottomRight = wxGridNoCellCoords; | |
e2b42eeb | 6429 | |
8a3e536c VZ |
6430 | // Show the edit control, if it has been hidden for |
6431 | // drag-shrinking. | |
6432 | ShowCellEditControl(); | |
58dd5b3b | 6433 | } |
8a3e536c VZ |
6434 | } |
6435 | else if ( m_cursorMode == WXGRID_CURSOR_RESIZE_ROW ) | |
6436 | { | |
6437 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); | |
6438 | DoEndDragResizeRow(); | |
f85afd4e | 6439 | |
8a3e536c VZ |
6440 | // Note: we are ending the event *after* doing |
6441 | // default processing in this case | |
6442 | // | |
6443 | SendEvent( wxEVT_GRID_ROW_SIZE, m_dragRowOrCol, -1, event ); | |
a5777624 | 6444 | } |
8a3e536c VZ |
6445 | else if ( m_cursorMode == WXGRID_CURSOR_RESIZE_COL ) |
6446 | { | |
6447 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); | |
6448 | DoEndDragResizeCol(); | |
a5777624 | 6449 | |
8a3e536c VZ |
6450 | // Note: we are ending the event *after* doing |
6451 | // default processing in this case | |
6452 | // | |
6453 | SendEvent( wxEVT_GRID_COL_SIZE, -1, m_dragRowOrCol, event ); | |
6454 | } | |
6455 | ||
6456 | m_dragLastPos = -1; | |
6457 | } | |
6458 | ||
6459 | void | |
6460 | wxGrid::DoGridMouseMoveEvent(wxMouseEvent& WXUNUSED(event), | |
6461 | const wxGridCellCoords& coords, | |
6462 | const wxPoint& pos) | |
6463 | { | |
6464 | if ( coords.GetRow() < 0 || coords.GetCol() < 0 ) | |
a5777624 | 6465 | { |
8a3e536c VZ |
6466 | // out of grid cell area |
6467 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); | |
6468 | return; | |
a5777624 | 6469 | } |
2d66e025 | 6470 | |
8a3e536c VZ |
6471 | int dragRow = YToEdgeOfRow( pos.y ); |
6472 | int dragCol = XToEdgeOfCol( pos.x ); | |
6473 | ||
6474 | // Dragging on the corner of a cell to resize in both | |
6475 | // directions is not implemented yet... | |
a5777624 | 6476 | // |
8a3e536c | 6477 | if ( dragRow >= 0 && dragCol >= 0 ) |
a5777624 | 6478 | { |
8a3e536c VZ |
6479 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); |
6480 | return; | |
6481 | } | |
6482 | ||
6483 | if ( dragRow >= 0 ) | |
6484 | { | |
6485 | m_dragRowOrCol = dragRow; | |
6486 | ||
6487 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) | |
f85afd4e | 6488 | { |
8a3e536c VZ |
6489 | if ( CanDragRowSize() && CanDragGridSize() ) |
6490 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW, NULL, false); | |
60ff3b99 | 6491 | } |
a5777624 | 6492 | } |
8a3e536c VZ |
6493 | else if ( dragCol >= 0 ) |
6494 | { | |
6495 | m_dragRowOrCol = dragCol; | |
a5777624 | 6496 | |
8a3e536c VZ |
6497 | if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL ) |
6498 | { | |
6499 | if ( CanDragColSize() && CanDragGridSize() ) | |
6500 | ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL, NULL, false); | |
6501 | } | |
6502 | } | |
6503 | else // Neither on a row or col edge | |
a5777624 | 6504 | { |
8a3e536c | 6505 | if ( m_cursorMode != WXGRID_CURSOR_SELECT_CELL ) |
d57ad377 | 6506 | { |
d57ad377 | 6507 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); |
d57ad377 | 6508 | } |
8a3e536c VZ |
6509 | } |
6510 | } | |
d57ad377 | 6511 | |
8a3e536c VZ |
6512 | void wxGrid::ProcessGridCellMouseEvent(wxMouseEvent& event) |
6513 | { | |
6514 | const wxPoint pos = CalcUnscrolledPosition(event.GetPosition()); | |
790cc417 | 6515 | |
8a3e536c VZ |
6516 | // coordinates of the cell under mouse |
6517 | wxGridCellCoords coords = XYToCell(pos); | |
6d004f67 | 6518 | |
8a3e536c VZ |
6519 | int cell_rows, cell_cols; |
6520 | GetCellSize( coords.GetRow(), coords.GetCol(), &cell_rows, &cell_cols ); | |
6521 | if ( (cell_rows < 0) || (cell_cols < 0) ) | |
6522 | { | |
6523 | coords.SetRow(coords.GetRow() + cell_rows); | |
6524 | coords.SetCol(coords.GetCol() + cell_cols); | |
6525 | } | |
6d004f67 | 6526 | |
8a3e536c VZ |
6527 | if ( event.Dragging() ) |
6528 | { | |
6529 | if ( event.LeftIsDown() ) | |
6530 | DoGridDragEvent(event, coords); | |
6531 | else | |
6532 | event.Skip(); | |
6533 | return; | |
6534 | } | |
6535 | ||
6536 | m_isDragging = false; | |
6537 | m_startDragPos = wxDefaultPosition; | |
6538 | ||
6539 | // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL | |
6540 | // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under | |
6541 | // wxGTK | |
6542 | #if 0 | |
6543 | if ( event.Entering() || event.Leaving() ) | |
6544 | { | |
6545 | ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL); | |
6546 | m_gridWin->SetCursor( *wxSTANDARD_CURSOR ); | |
6547 | } | |
6548 | #endif // 0 | |
6549 | ||
6550 | // deal with various button presses | |
6551 | if ( event.IsButton() ) | |
6552 | { | |
6553 | if ( coords != wxGridNoCellCoords ) | |
a5777624 | 6554 | { |
8a3e536c | 6555 | DisableCellEditControl(); |
e2b42eeb | 6556 | |
8a3e536c VZ |
6557 | if ( event.LeftDown() ) |
6558 | DoGridCellLeftDown(event, coords, pos); | |
6559 | else if ( event.LeftDClick() ) | |
6560 | DoGridCellLeftDClick(event, coords, pos); | |
6561 | else if ( event.RightDown() ) | |
6562 | SendEvent(wxEVT_GRID_CELL_RIGHT_CLICK, coords, event); | |
6563 | else if ( event.RightDClick() ) | |
6564 | SendEvent(wxEVT_GRID_CELL_RIGHT_DCLICK, coords, event); | |
6d004f67 | 6565 | } |
8a3e536c VZ |
6566 | |
6567 | // this one should be called even if we're not over any cell | |
6568 | if ( event.LeftUp() ) | |
a5777624 | 6569 | { |
8a3e536c | 6570 | DoGridCellLeftUp(event, coords); |
a5777624 RD |
6571 | } |
6572 | } | |
8a3e536c VZ |
6573 | else if ( event.Moving() ) |
6574 | { | |
6575 | DoGridMouseMoveEvent(event, coords, pos); | |
6576 | } | |
6577 | else // unknown mouse event? | |
6578 | { | |
6579 | event.Skip(); | |
6580 | } | |
6d004f67 MB |
6581 | } |
6582 | ||
bec70262 | 6583 | void wxGrid::DoEndDragResizeLine(const wxGridOperations& oper) |
6d004f67 | 6584 | { |
bec70262 VZ |
6585 | if ( m_dragLastPos == -1 ) |
6586 | return; | |
6d004f67 | 6587 | |
bec70262 | 6588 | const wxGridOperations& doper = oper.Dual(); |
6d004f67 | 6589 | |
bec70262 | 6590 | const wxSize size = m_gridWin->GetClientSize(); |
e2b42eeb | 6591 | |
bec70262 | 6592 | const wxPoint ptOrigin = CalcUnscrolledPosition(wxPoint(0, 0)); |
ccdee36f | 6593 | |
bec70262 VZ |
6594 | // erase the last line we drew |
6595 | wxClientDC dc(m_gridWin); | |
6596 | PrepareDC(dc); | |
6597 | dc.SetLogicalFunction(wxINVERT); | |
6d004f67 | 6598 | |
bec70262 VZ |
6599 | const int posLineStart = oper.Select(ptOrigin); |
6600 | const int posLineEnd = oper.Select(ptOrigin) + oper.Select(size); | |
6d004f67 | 6601 | |
bec70262 | 6602 | oper.DrawParallelLine(dc, posLineStart, posLineEnd, m_dragLastPos); |
6d004f67 | 6603 | |
bec70262 VZ |
6604 | // temporarily hide the edit control before resizing |
6605 | HideCellEditControl(); | |
6606 | SaveEditControlValue(); | |
6607 | ||
6608 | // do resize the line | |
6609 | const int lineStart = oper.GetLineStartPos(this, m_dragRowOrCol); | |
6610 | oper.SetLineSize(this, m_dragRowOrCol, | |
6611 | wxMax(m_dragLastPos - lineStart, | |
6612 | oper.GetMinimalLineSize(this, m_dragRowOrCol))); | |
6613 | ||
6614 | // refresh now if we're not frozen | |
6615 | if ( !GetBatchCount() ) | |
6d004f67 | 6616 | { |
bec70262 VZ |
6617 | // we need to refresh everything beyond the resized line in the header |
6618 | // window | |
6d004f67 | 6619 | |
bec70262 VZ |
6620 | // get the position from which to refresh in the other direction |
6621 | wxRect rect(CellToRect(oper.MakeCoords(m_dragRowOrCol, 0))); | |
6622 | rect.SetPosition(CalcScrolledPosition(rect.GetPosition())); | |
6d004f67 | 6623 | |
bec70262 VZ |
6624 | // we only need the ordinate (for rows) or abscissa (for columns) here, |
6625 | // and need to cover the entire window in the other direction | |
6626 | oper.Select(rect) = 0; | |
6d004f67 | 6627 | |
bec70262 VZ |
6628 | wxRect rectHeader(rect.GetPosition(), |
6629 | oper.MakeSize | |
6630 | ( | |
6631 | oper.GetHeaderWindowSize(this), | |
6632 | doper.Select(size) - doper.Select(rect) | |
6633 | )); | |
6634 | ||
6635 | oper.GetHeaderWindow(this)->Refresh(true, &rectHeader); | |
6636 | ||
6637 | ||
6638 | // also refresh the grid window: extend the rectangle | |
6639 | if ( m_table ) | |
6d004f67 | 6640 | { |
bec70262 | 6641 | oper.SelectSize(rect) = oper.Select(size); |
2f024384 | 6642 | |
bec70262 VZ |
6643 | int subtractLines = 0; |
6644 | const int lineStart = oper.PosToLine(this, posLineStart); | |
6645 | if ( lineStart >= 0 ) | |
27f35b66 | 6646 | { |
bec70262 VZ |
6647 | // ensure that if we have a multi-cell block we redraw all of |
6648 | // it by increasing the refresh area to cover it entirely if a | |
6649 | // part of it is affected | |
6650 | const int lineEnd = oper.PosToLine(this, posLineEnd, true); | |
6651 | for ( int line = lineStart; line < lineEnd; line++ ) | |
27f35b66 | 6652 | { |
bec70262 VZ |
6653 | int cellLines = oper.Select( |
6654 | GetCellSize(oper.MakeCoords(m_dragRowOrCol, line))); | |
6655 | if ( cellLines < subtractLines ) | |
6656 | subtractLines = cellLines; | |
27f35b66 SN |
6657 | } |
6658 | } | |
2f024384 | 6659 | |
bec70262 VZ |
6660 | int startPos = |
6661 | oper.GetLineStartPos(this, m_dragRowOrCol + subtractLines); | |
6662 | startPos = doper.CalcScrolledPosition(this, startPos); | |
6663 | ||
6664 | doper.Select(rect) = startPos; | |
6665 | doper.SelectSize(rect) = doper.Select(size) - startPos; | |
e2b42eeb | 6666 | |
bec70262 VZ |
6667 | m_gridWin->Refresh(false, &rect); |
6668 | } | |
f85afd4e | 6669 | } |
bec70262 VZ |
6670 | |
6671 | // show the edit control back again | |
6672 | ShowCellEditControl(); | |
6673 | } | |
6674 | ||
6675 | void wxGrid::DoEndDragResizeRow() | |
6676 | { | |
6677 | DoEndDragResizeLine(wxGridRowOperations()); | |
6678 | } | |
6679 | ||
6680 | void wxGrid::DoEndDragResizeCol() | |
6681 | { | |
6682 | DoEndDragResizeLine(wxGridColumnOperations()); | |
f85afd4e MB |
6683 | } |
6684 | ||
d4175745 VZ |
6685 | void wxGrid::DoEndDragMoveCol() |
6686 | { | |
6687 | //The user clicked on the column but didn't actually drag | |
6688 | if ( m_dragLastPos < 0 ) | |
6689 | { | |
6690 | m_colLabelWin->Refresh(); //Do this to "unpress" the column | |
6691 | return; | |
6692 | } | |
6693 | ||
6694 | int newPos; | |
6695 | if ( m_moveToCol == -1 ) | |
6696 | newPos = m_numCols - 1; | |
6697 | else | |
6698 | { | |
6699 | newPos = GetColPos( m_moveToCol ); | |
6700 | if ( newPos > GetColPos( m_dragRowOrCol ) ) | |
6701 | newPos--; | |
6702 | } | |
6703 | ||
6704 | SetColPos( m_dragRowOrCol, newPos ); | |
6705 | } | |
6706 | ||
6707 | void wxGrid::SetColPos( int colID, int newPos ) | |
6708 | { | |
6709 | if ( m_colAt.IsEmpty() ) | |
6710 | { | |
6711 | m_colAt.Alloc( m_numCols ); | |
6712 | ||
6713 | int i; | |
6714 | for ( i = 0; i < m_numCols; i++ ) | |
6715 | { | |
6716 | m_colAt.Add( i ); | |
6717 | } | |
6718 | } | |
6719 | ||
6720 | int oldPos = GetColPos( colID ); | |
6721 | ||
6722 | //Reshuffle the m_colAt array | |
6723 | if ( newPos > oldPos ) | |
6724 | { | |
6725 | int i; | |
6726 | for ( i = oldPos; i < newPos; i++ ) | |
6727 | { | |
6728 | m_colAt[i] = m_colAt[i+1]; | |
6729 | } | |
6730 | } | |
6731 | else | |
6732 | { | |
6733 | int i; | |
6734 | for ( i = oldPos; i > newPos; i-- ) | |
6735 | { | |
6736 | m_colAt[i] = m_colAt[i-1]; | |
6737 | } | |
6738 | } | |
6739 | ||
6740 | m_colAt[newPos] = colID; | |
6741 | ||
6742 | //Recalculate the column rights | |
6743 | if ( !m_colWidths.IsEmpty() ) | |
6744 | { | |
6745 | int colRight = 0; | |
6746 | int colPos; | |
6747 | for ( colPos = 0; colPos < m_numCols; colPos++ ) | |
6748 | { | |
6749 | int colID = GetColAt( colPos ); | |
6750 | ||
6751 | colRight += m_colWidths[colID]; | |
6752 | m_colRights[colID] = colRight; | |
6753 | } | |
6754 | } | |
6755 | ||
6756 | m_colLabelWin->Refresh(); | |
6757 | m_gridWin->Refresh(); | |
6758 | } | |
6759 | ||
6760 | ||
6761 | ||
6762 | void wxGrid::EnableDragColMove( bool enable ) | |
6763 | { | |
6764 | if ( m_canDragColMove == enable ) | |
6765 | return; | |
6766 | ||
6767 | m_canDragColMove = enable; | |
6768 | ||
6769 | if ( !m_canDragColMove ) | |
6770 | { | |
6771 | m_colAt.Clear(); | |
6772 | ||
6773 | //Recalculate the column rights | |
6774 | if ( !m_colWidths.IsEmpty() ) | |
6775 | { | |
6776 | int colRight = 0; | |
6777 | int colPos; | |
6778 | for ( colPos = 0; colPos < m_numCols; colPos++ ) | |
6779 | { | |
6780 | colRight += m_colWidths[colPos]; | |
6781 | m_colRights[colPos] = colRight; | |
6782 | } | |
6783 | } | |
6784 | ||
6785 | m_colLabelWin->Refresh(); | |
6786 | m_gridWin->Refresh(); | |
6787 | } | |
6788 | } | |
6789 | ||
6790 | ||
2d66e025 MB |
6791 | // |
6792 | // ------ interaction with data model | |
6793 | // | |
6794 | bool wxGrid::ProcessTableMessage( wxGridTableMessage& msg ) | |
f85afd4e | 6795 | { |
2d66e025 | 6796 | switch ( msg.GetId() ) |
17732cec | 6797 | { |
2d66e025 MB |
6798 | case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES: |
6799 | return GetModelValues(); | |
17732cec | 6800 | |
2d66e025 MB |
6801 | case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES: |
6802 | return SetModelValues(); | |
f85afd4e | 6803 | |
2d66e025 MB |
6804 | case wxGRIDTABLE_NOTIFY_ROWS_INSERTED: |
6805 | case wxGRIDTABLE_NOTIFY_ROWS_APPENDED: | |
6806 | case wxGRIDTABLE_NOTIFY_ROWS_DELETED: | |
6807 | case wxGRIDTABLE_NOTIFY_COLS_INSERTED: | |
6808 | case wxGRIDTABLE_NOTIFY_COLS_APPENDED: | |
6809 | case wxGRIDTABLE_NOTIFY_COLS_DELETED: | |
6810 | return Redimension( msg ); | |
6811 | ||
6812 | default: | |
ca65c044 | 6813 | return false; |
f85afd4e | 6814 | } |
2d66e025 | 6815 | } |
f85afd4e | 6816 | |
2d66e025 | 6817 | // The behaviour of this function depends on the grid table class |
5b061713 | 6818 | // Clear() function. For the default wxGridStringTable class the |
10a4531d | 6819 | // behaviour is to replace all cell contents with wxEmptyString but |
2d66e025 MB |
6820 | // not to change the number of rows or cols. |
6821 | // | |
6822 | void wxGrid::ClearGrid() | |
6823 | { | |
6824 | if ( m_table ) | |
f85afd4e | 6825 | { |
4cfa5de6 RD |
6826 | if (IsCellEditControlEnabled()) |
6827 | DisableCellEditControl(); | |
6828 | ||
2d66e025 | 6829 | m_table->Clear(); |
5b061713 | 6830 | if (!GetBatchCount()) |
a9339fe2 | 6831 | m_gridWin->Refresh(); |
f85afd4e MB |
6832 | } |
6833 | } | |
6834 | ||
10a4531d VZ |
6835 | bool |
6836 | wxGrid::DoModifyLines(bool (wxGridTableBase::*funcModify)(size_t, size_t), | |
6837 | int pos, int num, bool WXUNUSED(updateLabels) ) | |
f85afd4e | 6838 | { |
10a4531d | 6839 | wxCHECK_MSG( m_created, false, "must finish creating the grid first" ); |
f85afd4e | 6840 | |
10a4531d | 6841 | if ( !m_table ) |
ca65c044 | 6842 | return false; |
f85afd4e | 6843 | |
10a4531d VZ |
6844 | if ( IsCellEditControlEnabled() ) |
6845 | DisableCellEditControl(); | |
b7fff980 | 6846 | |
10a4531d | 6847 | return (m_table->*funcModify)(pos, num); |
2f024384 | 6848 | |
10a4531d VZ |
6849 | // the table will have sent the results of the insert row |
6850 | // operation to this view object as a grid table message | |
f85afd4e MB |
6851 | } |
6852 | ||
10a4531d VZ |
6853 | bool |
6854 | wxGrid::DoAppendLines(bool (wxGridTableBase::*funcAppend)(size_t), | |
6855 | int num, bool WXUNUSED(updateLabels)) | |
f85afd4e | 6856 | { |
10a4531d | 6857 | wxCHECK_MSG( m_created, false, "must finish creating the grid first" ); |
2f024384 | 6858 | |
10a4531d | 6859 | if ( !m_table ) |
ca65c044 | 6860 | return false; |
f85afd4e | 6861 | |
10a4531d | 6862 | return (m_table->*funcAppend)(num); |
f85afd4e MB |
6863 | } |
6864 | ||
2d66e025 MB |
6865 | // |
6866 | // ----- event handlers | |
f85afd4e | 6867 | // |
8f177c8e | 6868 | |
8a3e536c VZ |
6869 | // Generate a grid event based on a mouse event and return: |
6870 | // -1 if the event was vetoed | |
6871 | // +1 if the event was processed (but not vetoed) | |
6872 | // 0 if the event wasn't handled | |
6873 | int | |
6874 | wxGrid::SendEvent(const wxEventType type, | |
6875 | int row, int col, | |
6876 | wxMouseEvent& mouseEv) | |
2d66e025 | 6877 | { |
2f024384 | 6878 | bool claimed, vetoed; |
fe7b9ed6 | 6879 | |
97a9929e VZ |
6880 | if ( type == wxEVT_GRID_ROW_SIZE || type == wxEVT_GRID_COL_SIZE ) |
6881 | { | |
6882 | int rowOrCol = (row == -1 ? col : row); | |
6883 | ||
6884 | wxGridSizeEvent gridEvt( GetId(), | |
6885 | type, | |
6886 | this, | |
6887 | rowOrCol, | |
6888 | mouseEv.GetX() + GetRowLabelSize(), | |
6889 | mouseEv.GetY() + GetColLabelSize(), | |
8b5f6d9d | 6890 | mouseEv); |
97a9929e VZ |
6891 | |
6892 | claimed = GetEventHandler()->ProcessEvent(gridEvt); | |
6893 | vetoed = !gridEvt.IsAllowed(); | |
6894 | } | |
fe7b9ed6 | 6895 | else if ( type == wxEVT_GRID_RANGE_SELECT ) |
97a9929e VZ |
6896 | { |
6897 | // Right now, it should _never_ end up here! | |
6898 | wxGridRangeSelectEvent gridEvt( GetId(), | |
6899 | type, | |
6900 | this, | |
8a3e536c VZ |
6901 | m_selectedBlockTopLeft, |
6902 | m_selectedBlockBottomRight, | |
ca65c044 | 6903 | true, |
8b5f6d9d | 6904 | mouseEv); |
97a9929e VZ |
6905 | |
6906 | claimed = GetEventHandler()->ProcessEvent(gridEvt); | |
6907 | vetoed = !gridEvt.IsAllowed(); | |
6908 | } | |
2b73a34e RD |
6909 | else if ( type == wxEVT_GRID_LABEL_LEFT_CLICK || |
6910 | type == wxEVT_GRID_LABEL_LEFT_DCLICK || | |
6911 | type == wxEVT_GRID_LABEL_RIGHT_CLICK || | |
6912 | type == wxEVT_GRID_LABEL_RIGHT_DCLICK ) | |
6913 | { | |
6914 | wxPoint pos = mouseEv.GetPosition(); | |
6915 | ||
6916 | if ( mouseEv.GetEventObject() == GetGridRowLabelWindow() ) | |
6917 | pos.y += GetColLabelSize(); | |
6918 | if ( mouseEv.GetEventObject() == GetGridColLabelWindow() ) | |
6919 | pos.x += GetRowLabelSize(); | |
c71b2126 | 6920 | |
2b73a34e RD |
6921 | wxGridEvent gridEvt( GetId(), |
6922 | type, | |
6923 | this, | |
6924 | row, col, | |
6925 | pos.x, | |
6926 | pos.y, | |
6927 | false, | |
8b5f6d9d | 6928 | mouseEv); |
2b73a34e RD |
6929 | claimed = GetEventHandler()->ProcessEvent(gridEvt); |
6930 | vetoed = !gridEvt.IsAllowed(); | |
6931 | } | |
fe7b9ed6 | 6932 | else |
97a9929e VZ |
6933 | { |
6934 | wxGridEvent gridEvt( GetId(), | |
6935 | type, | |
6936 | this, | |
6937 | row, col, | |
6938 | mouseEv.GetX() + GetRowLabelSize(), | |
6939 | mouseEv.GetY() + GetColLabelSize(), | |
ca65c044 | 6940 | false, |
8b5f6d9d | 6941 | mouseEv); |
97a9929e VZ |
6942 | claimed = GetEventHandler()->ProcessEvent(gridEvt); |
6943 | vetoed = !gridEvt.IsAllowed(); | |
6944 | } | |
6945 | ||
6946 | // A Veto'd event may not be `claimed' so test this first | |
4db6714b KH |
6947 | if (vetoed) |
6948 | return -1; | |
6949 | ||
97a9929e | 6950 | return claimed ? 1 : 0; |
f85afd4e MB |
6951 | } |
6952 | ||
8a3e536c | 6953 | // Generate a grid event of specified type, return value same as above |
f85afd4e | 6954 | // |
8a3e536c | 6955 | int wxGrid::SendEvent(const wxEventType type, int row, int col) |
f85afd4e | 6956 | { |
a9339fe2 | 6957 | bool claimed, vetoed; |
fe7b9ed6 | 6958 | |
b54ba671 | 6959 | if ( type == wxEVT_GRID_ROW_SIZE || type == wxEVT_GRID_COL_SIZE ) |
f85afd4e | 6960 | { |
2d66e025 | 6961 | int rowOrCol = (row == -1 ? col : row); |
f85afd4e | 6962 | |
a9339fe2 | 6963 | wxGridSizeEvent gridEvt( GetId(), type, this, rowOrCol ); |
2d66e025 | 6964 | |
fe7b9ed6 VZ |
6965 | claimed = GetEventHandler()->ProcessEvent(gridEvt); |
6966 | vetoed = !gridEvt.IsAllowed(); | |
2d66e025 MB |
6967 | } |
6968 | else | |
6969 | { | |
a9339fe2 | 6970 | wxGridEvent gridEvt( GetId(), type, this, row, col ); |
8f177c8e | 6971 | |
fe7b9ed6 VZ |
6972 | claimed = GetEventHandler()->ProcessEvent(gridEvt); |
6973 | vetoed = !gridEvt.IsAllowed(); | |
6974 | } | |
6975 | ||
97a9929e | 6976 | // A Veto'd event may not be `claimed' so test this first |
4db6714b KH |
6977 | if (vetoed) |
6978 | return -1; | |
6979 | ||
97a9929e | 6980 | return claimed ? 1 : 0; |
f85afd4e MB |
6981 | } |
6982 | ||
2d66e025 | 6983 | void wxGrid::OnPaint( wxPaintEvent& WXUNUSED(event) ) |
f85afd4e | 6984 | { |
3d59537f DS |
6985 | // needed to prevent zillions of paint events on MSW |
6986 | wxPaintDC dc(this); | |
8f177c8e | 6987 | } |
f85afd4e | 6988 | |
bca7bfc8 | 6989 | void wxGrid::Refresh(bool eraseb, const wxRect* rect) |
27f35b66 | 6990 | { |
ad603bf7 VZ |
6991 | // Don't do anything if between Begin/EndBatch... |
6992 | // EndBatch() will do all this on the last nested one anyway. | |
f9549841 | 6993 | if ( m_created && !GetBatchCount() ) |
27f35b66 | 6994 | { |
bca7bfc8 | 6995 | // Refresh to get correct scrolled position: |
4db6714b | 6996 | wxScrolledWindow::Refresh(eraseb, rect); |
27f35b66 | 6997 | |
27f35b66 SN |
6998 | if (rect) |
6999 | { | |
bca7bfc8 SN |
7000 | int rect_x, rect_y, rectWidth, rectHeight; |
7001 | int width_label, width_cell, height_label, height_cell; | |
7002 | int x, y; | |
7003 | ||
2f024384 | 7004 | // Copy rectangle can get scroll offsets.. |
bca7bfc8 SN |
7005 | rect_x = rect->GetX(); |
7006 | rect_y = rect->GetY(); | |
7007 | rectWidth = rect->GetWidth(); | |
7008 | rectHeight = rect->GetHeight(); | |
27f35b66 | 7009 | |
bca7bfc8 | 7010 | width_label = m_rowLabelWidth - rect_x; |
4db6714b KH |
7011 | if (width_label > rectWidth) |
7012 | width_label = rectWidth; | |
27f35b66 | 7013 | |
bca7bfc8 | 7014 | height_label = m_colLabelHeight - rect_y; |
a9339fe2 DS |
7015 | if (height_label > rectHeight) |
7016 | height_label = rectHeight; | |
27f35b66 | 7017 | |
bca7bfc8 SN |
7018 | if (rect_x > m_rowLabelWidth) |
7019 | { | |
7020 | x = rect_x - m_rowLabelWidth; | |
7021 | width_cell = rectWidth; | |
7022 | } | |
7023 | else | |
7024 | { | |
7025 | x = 0; | |
7026 | width_cell = rectWidth - (m_rowLabelWidth - rect_x); | |
7027 | } | |
7028 | ||
7029 | if (rect_y > m_colLabelHeight) | |
7030 | { | |
7031 | y = rect_y - m_colLabelHeight; | |
7032 | height_cell = rectHeight; | |
7033 | } | |
7034 | else | |
7035 | { | |
7036 | y = 0; | |
7037 | height_cell = rectHeight - (m_colLabelHeight - rect_y); | |
7038 | } | |
7039 | ||
7040 | // Paint corner label part intersecting rect. | |
7041 | if ( width_label > 0 && height_label > 0 ) | |
7042 | { | |
7043 | wxRect anotherrect(rect_x, rect_y, width_label, height_label); | |
7044 | m_cornerLabelWin->Refresh(eraseb, &anotherrect); | |
7045 | } | |
7046 | ||
7047 | // Paint col labels part intersecting rect. | |
7048 | if ( width_cell > 0 && height_label > 0 ) | |
7049 | { | |
7050 | wxRect anotherrect(x, rect_y, width_cell, height_label); | |
7051 | m_colLabelWin->Refresh(eraseb, &anotherrect); | |
7052 | } | |
7053 | ||
7054 | // Paint row labels part intersecting rect. | |
7055 | if ( width_label > 0 && height_cell > 0 ) | |
7056 | { | |
7057 | wxRect anotherrect(rect_x, y, width_label, height_cell); | |
7058 | m_rowLabelWin->Refresh(eraseb, &anotherrect); | |
7059 | } | |
7060 | ||
7061 | // Paint cell area part intersecting rect. | |
7062 | if ( width_cell > 0 && height_cell > 0 ) | |
7063 | { | |
7064 | wxRect anotherrect(x, y, width_cell, height_cell); | |
7065 | m_gridWin->Refresh(eraseb, &anotherrect); | |
7066 | } | |
7067 | } | |
7068 | else | |
7069 | { | |
7070 | m_cornerLabelWin->Refresh(eraseb, NULL); | |
2b5f62a0 | 7071 | m_colLabelWin->Refresh(eraseb, NULL); |
bca7bfc8 SN |
7072 | m_rowLabelWin->Refresh(eraseb, NULL); |
7073 | m_gridWin->Refresh(eraseb, NULL); | |
7074 | } | |
27f35b66 SN |
7075 | } |
7076 | } | |
f85afd4e | 7077 | |
c71b2126 | 7078 | void wxGrid::OnSize(wxSizeEvent& WXUNUSED(event)) |
f85afd4e | 7079 | { |
b93aafab JS |
7080 | if (m_targetWindow != this) // check whether initialisation has been done |
7081 | { | |
f1ff7df0 VZ |
7082 | // reposition our children windows |
7083 | CalcWindowSizes(); | |
b93aafab | 7084 | } |
f85afd4e MB |
7085 | } |
7086 | ||
2d66e025 | 7087 | void wxGrid::OnKeyDown( wxKeyEvent& event ) |
f85afd4e | 7088 | { |
2d66e025 | 7089 | if ( m_inOnKeyDown ) |
f85afd4e | 7090 | { |
2d66e025 MB |
7091 | // shouldn't be here - we are going round in circles... |
7092 | // | |
07296f0b | 7093 | wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") ); |
f85afd4e MB |
7094 | } |
7095 | ||
ca65c044 | 7096 | m_inOnKeyDown = true; |
f85afd4e | 7097 | |
2d66e025 | 7098 | // propagate the event up and see if it gets processed |
2d66e025 MB |
7099 | wxWindow *parent = GetParent(); |
7100 | wxKeyEvent keyEvt( event ); | |
7101 | keyEvt.SetEventObject( parent ); | |
7102 | ||
7103 | if ( !parent->GetEventHandler()->ProcessEvent( keyEvt ) ) | |
f85afd4e | 7104 | { |
bcb614b3 RR |
7105 | if (GetLayoutDirection() == wxLayout_RightToLeft) |
7106 | { | |
7107 | if (event.GetKeyCode() == WXK_RIGHT) | |
7108 | event.m_keyCode = WXK_LEFT; | |
7109 | else if (event.GetKeyCode() == WXK_LEFT) | |
7110 | event.m_keyCode = WXK_RIGHT; | |
7111 | } | |
c71b2126 | 7112 | |
2d66e025 | 7113 | // try local handlers |
12a3f227 | 7114 | switch ( event.GetKeyCode() ) |
2d66e025 MB |
7115 | { |
7116 | case WXK_UP: | |
7117 | if ( event.ControlDown() ) | |
5c8fc7c1 | 7118 | MoveCursorUpBlock( event.ShiftDown() ); |
2d66e025 | 7119 | else |
5c8fc7c1 | 7120 | MoveCursorUp( event.ShiftDown() ); |
2d66e025 | 7121 | break; |
f85afd4e | 7122 | |
2d66e025 MB |
7123 | case WXK_DOWN: |
7124 | if ( event.ControlDown() ) | |
5c8fc7c1 | 7125 | MoveCursorDownBlock( event.ShiftDown() ); |
2d66e025 | 7126 | else |
5c8fc7c1 | 7127 | MoveCursorDown( event.ShiftDown() ); |
2d66e025 | 7128 | break; |
8f177c8e | 7129 | |
2d66e025 MB |
7130 | case WXK_LEFT: |
7131 | if ( event.ControlDown() ) | |
5c8fc7c1 | 7132 | MoveCursorLeftBlock( event.ShiftDown() ); |
2d66e025 | 7133 | else |
5c8fc7c1 | 7134 | MoveCursorLeft( event.ShiftDown() ); |
2d66e025 MB |
7135 | break; |
7136 | ||
7137 | case WXK_RIGHT: | |
7138 | if ( event.ControlDown() ) | |
5c8fc7c1 | 7139 | MoveCursorRightBlock( event.ShiftDown() ); |
2d66e025 | 7140 | else |
5c8fc7c1 | 7141 | MoveCursorRight( event.ShiftDown() ); |
2d66e025 | 7142 | break; |
b99be8fb | 7143 | |
2d66e025 | 7144 | case WXK_RETURN: |
a4f7bf58 | 7145 | case WXK_NUMPAD_ENTER: |
58dd5b3b MB |
7146 | if ( event.ControlDown() ) |
7147 | { | |
7148 | event.Skip(); // to let the edit control have the return | |
7149 | } | |
7150 | else | |
7151 | { | |
f6bcfd97 BP |
7152 | if ( GetGridCursorRow() < GetNumberRows()-1 ) |
7153 | { | |
7154 | MoveCursorDown( event.ShiftDown() ); | |
7155 | } | |
7156 | else | |
7157 | { | |
7158 | // at the bottom of a column | |
13f6e9e8 | 7159 | DisableCellEditControl(); |
f6bcfd97 | 7160 | } |
58dd5b3b | 7161 | } |
2d66e025 MB |
7162 | break; |
7163 | ||
5c8fc7c1 | 7164 | case WXK_ESCAPE: |
e32352cf | 7165 | ClearSelection(); |
5c8fc7c1 SN |
7166 | break; |
7167 | ||
2c9a89e0 RD |
7168 | case WXK_TAB: |
7169 | if (event.ShiftDown()) | |
f6bcfd97 BP |
7170 | { |
7171 | if ( GetGridCursorCol() > 0 ) | |
7172 | { | |
ca65c044 | 7173 | MoveCursorLeft( false ); |
f6bcfd97 BP |
7174 | } |
7175 | else | |
7176 | { | |
7177 | // at left of grid | |
13f6e9e8 | 7178 | DisableCellEditControl(); |
f6bcfd97 BP |
7179 | } |
7180 | } | |
2c9a89e0 | 7181 | else |
f6bcfd97 | 7182 | { |
ccdee36f | 7183 | if ( GetGridCursorCol() < GetNumberCols() - 1 ) |
f6bcfd97 | 7184 | { |
ca65c044 | 7185 | MoveCursorRight( false ); |
f6bcfd97 BP |
7186 | } |
7187 | else | |
7188 | { | |
7189 | // at right of grid | |
13f6e9e8 | 7190 | DisableCellEditControl(); |
f6bcfd97 BP |
7191 | } |
7192 | } | |
2c9a89e0 RD |
7193 | break; |
7194 | ||
2d66e025 MB |
7195 | case WXK_HOME: |
7196 | if ( event.ControlDown() ) | |
7197 | { | |
8a3e536c | 7198 | GoToCell(0, 0); |
2d66e025 MB |
7199 | } |
7200 | else | |
7201 | { | |
7202 | event.Skip(); | |
7203 | } | |
7204 | break; | |
7205 | ||
7206 | case WXK_END: | |
7207 | if ( event.ControlDown() ) | |
7208 | { | |
8a3e536c | 7209 | GoToCell(m_numRows - 1, m_numCols - 1); |
2d66e025 MB |
7210 | } |
7211 | else | |
7212 | { | |
7213 | event.Skip(); | |
7214 | } | |
7215 | break; | |
7216 | ||
faa94f3e | 7217 | case WXK_PAGEUP: |
2d66e025 MB |
7218 | MovePageUp(); |
7219 | break; | |
7220 | ||
faa94f3e | 7221 | case WXK_PAGEDOWN: |
2d66e025 MB |
7222 | MovePageDown(); |
7223 | break; | |
7224 | ||
07296f0b | 7225 | case WXK_SPACE: |
32b4e9ec VZ |
7226 | // Ctrl-Space selects the current column, Shift-Space -- the |
7227 | // current row and Ctrl-Shift-Space -- everything | |
7228 | switch ( m_selection ? event.GetModifiers() : wxMOD_NONE ) | |
aa5e1f75 | 7229 | { |
32b4e9ec VZ |
7230 | case wxMOD_CONTROL: |
7231 | m_selection->SelectCol(m_currentCellCoords.GetCol()); | |
7232 | break; | |
ccdee36f | 7233 | |
32b4e9ec VZ |
7234 | case wxMOD_SHIFT: |
7235 | m_selection->SelectRow(m_currentCellCoords.GetRow()); | |
7236 | break; | |
7237 | ||
7238 | case wxMOD_CONTROL | wxMOD_SHIFT: | |
7239 | m_selection->SelectBlock(0, 0, | |
7240 | m_numRows - 1, m_numCols - 1); | |
7241 | break; | |
7242 | ||
7243 | case wxMOD_NONE: | |
7244 | if ( !IsEditable() ) | |
7245 | { | |
7246 | MoveCursorRight(false); | |
7247 | break; | |
7248 | } | |
7249 | //else: fall through | |
7250 | ||
7251 | default: | |
7252 | event.Skip(); | |
7253 | } | |
ccdee36f | 7254 | break; |
07296f0b | 7255 | |
2d66e025 | 7256 | default: |
63e2147c | 7257 | event.Skip(); |
025562fe | 7258 | break; |
2d66e025 | 7259 | } |
f85afd4e MB |
7260 | } |
7261 | ||
ca65c044 | 7262 | m_inOnKeyDown = false; |
f85afd4e MB |
7263 | } |
7264 | ||
f6bcfd97 BP |
7265 | void wxGrid::OnKeyUp( wxKeyEvent& event ) |
7266 | { | |
7267 | // try local handlers | |
7268 | // | |
12a3f227 | 7269 | if ( event.GetKeyCode() == WXK_SHIFT ) |
f6bcfd97 | 7270 | { |
8a3e536c VZ |
7271 | if ( m_selectedBlockTopLeft != wxGridNoCellCoords && |
7272 | m_selectedBlockBottomRight != wxGridNoCellCoords ) | |
3f3dc2ef VZ |
7273 | { |
7274 | if ( m_selection ) | |
7275 | { | |
a9339fe2 | 7276 | m_selection->SelectBlock( |
8a3e536c VZ |
7277 | m_selectedBlockTopLeft, |
7278 | m_selectedBlockBottomRight, | |
8b5f6d9d | 7279 | event); |
3f3dc2ef VZ |
7280 | } |
7281 | } | |
7282 | ||
8a3e536c VZ |
7283 | m_selectedBlockTopLeft = wxGridNoCellCoords; |
7284 | m_selectedBlockBottomRight = wxGridNoCellCoords; | |
7285 | m_selectedBlockCorner = wxGridNoCellCoords; | |
f6bcfd97 BP |
7286 | } |
7287 | } | |
7288 | ||
63e2147c RD |
7289 | void wxGrid::OnChar( wxKeyEvent& event ) |
7290 | { | |
7291 | // is it possible to edit the current cell at all? | |
7292 | if ( !IsCellEditControlEnabled() && CanEnableCellControl() ) | |
7293 | { | |
7294 | // yes, now check whether the cells editor accepts the key | |
7295 | int row = m_currentCellCoords.GetRow(); | |
7296 | int col = m_currentCellCoords.GetCol(); | |
2f024384 | 7297 | wxGridCellAttr *attr = GetCellAttr(row, col); |
63e2147c RD |
7298 | wxGridCellEditor *editor = attr->GetEditor(this, row, col); |
7299 | ||
7300 | // <F2> is special and will always start editing, for | |
7301 | // other keys - ask the editor itself | |
7302 | if ( (event.GetKeyCode() == WXK_F2 && !event.HasModifiers()) | |
7303 | || editor->IsAcceptedKey(event) ) | |
7304 | { | |
7305 | // ensure cell is visble | |
7306 | MakeCellVisible(row, col); | |
7307 | EnableCellEditControl(); | |
7308 | ||
7309 | // a problem can arise if the cell is not completely | |
7310 | // visible (even after calling MakeCellVisible the | |
7311 | // control is not created and calling StartingKey will | |
7312 | // crash the app | |
046d682f | 7313 | if ( event.GetKeyCode() != WXK_F2 && editor->IsCreated() && m_cellEditCtrlEnabled ) |
63e2147c RD |
7314 | editor->StartingKey(event); |
7315 | } | |
7316 | else | |
7317 | { | |
7318 | event.Skip(); | |
7319 | } | |
7320 | ||
7321 | editor->DecRef(); | |
7322 | attr->DecRef(); | |
7323 | } | |
7324 | else | |
7325 | { | |
7326 | event.Skip(); | |
7327 | } | |
7328 | } | |
7329 | ||
2796cce3 | 7330 | void wxGrid::OnEraseBackground(wxEraseEvent&) |
508011ce VZ |
7331 | { |
7332 | } | |
07296f0b | 7333 | |
8a3e536c | 7334 | bool wxGrid::SetCurrentCell( const wxGridCellCoords& coords ) |
66242c80 | 7335 | { |
8a3e536c | 7336 | if ( SendEvent(wxEVT_GRID_SELECT_CELL, coords) == -1 ) |
f6bcfd97 | 7337 | { |
8a3e536c VZ |
7338 | // the event has been vetoed - do nothing |
7339 | return false; | |
f6bcfd97 BP |
7340 | } |
7341 | ||
9553702e | 7342 | #if !defined(__WXMAC__) |
bee19958 DS |
7343 | wxClientDC dc( m_gridWin ); |
7344 | PrepareDC( dc ); | |
5d38a5f3 | 7345 | #endif |
f6bcfd97 | 7346 | |
2a7750d9 | 7347 | if ( m_currentCellCoords != wxGridNoCellCoords ) |
2d66e025 | 7348 | { |
b54ba671 | 7349 | DisableCellEditControl(); |
07296f0b | 7350 | |
ca65c044 | 7351 | if ( IsVisible( m_currentCellCoords, false ) ) |
f6bcfd97 BP |
7352 | { |
7353 | wxRect r; | |
bee19958 | 7354 | r = BlockToDeviceRect( m_currentCellCoords, m_currentCellCoords ); |
f6bcfd97 BP |
7355 | if ( !m_gridLinesEnabled ) |
7356 | { | |
7357 | r.x--; | |
7358 | r.y--; | |
7359 | r.width++; | |
7360 | r.height++; | |
7361 | } | |
d1c0b4f9 | 7362 | |
3ed884a0 | 7363 | wxGridCellCoordsArray cells = CalcCellsExposed( r ); |
84912ef8 | 7364 | |
f6bcfd97 BP |
7365 | // Otherwise refresh redraws the highlight! |
7366 | m_currentCellCoords = coords; | |
275c4ae4 | 7367 | |
9553702e | 7368 | #if defined(__WXMAC__) |
5d38a5f3 JS |
7369 | m_gridWin->Refresh(true /*, & r */); |
7370 | #else | |
bee19958 | 7371 | DrawGridCellArea( dc, cells ); |
f6bcfd97 | 7372 | DrawAllGridLines( dc, r ); |
5d38a5f3 | 7373 | #endif |
f6bcfd97 | 7374 | } |
66242c80 | 7375 | } |
8f177c8e | 7376 | |
2d66e025 MB |
7377 | m_currentCellCoords = coords; |
7378 | ||
bee19958 | 7379 | wxGridCellAttr *attr = GetCellAttr( coords ); |
76c66f19 | 7380 | #if !defined(__WXMAC__) |
bee19958 | 7381 | DrawCellHighlight( dc, attr ); |
5d38a5f3 | 7382 | #endif |
2a7750d9 | 7383 | attr->DecRef(); |
8a3e536c VZ |
7384 | |
7385 | return true; | |
66242c80 MB |
7386 | } |
7387 | ||
8a3e536c VZ |
7388 | void |
7389 | wxGrid::UpdateBlockBeingSelected(int topRow, int leftCol, | |
7390 | int bottomRow, int rightCol) | |
c9097836 | 7391 | { |
3f3dc2ef | 7392 | if ( m_selection ) |
c9097836 | 7393 | { |
8a3e536c | 7394 | switch ( m_selection->GetSelectionMode() ) |
3f3dc2ef | 7395 | { |
8a3e536c VZ |
7396 | default: |
7397 | wxFAIL_MSG( "unknown selection mode" ); | |
7398 | // fall through | |
7399 | ||
7400 | case wxGridSelectCells: | |
7401 | // arbitrary blocks selection allowed so just use the cell | |
7402 | // coordinates as is | |
7403 | break; | |
7404 | ||
7405 | case wxGridSelectRows: | |
7406 | // only full rows selection allowd, ensure that we do select | |
7407 | // full rows | |
7408 | leftCol = 0; | |
7409 | rightCol = GetNumberCols() - 1; | |
7410 | break; | |
7411 | ||
7412 | case wxGridSelectColumns: | |
7413 | // same as above but for columns | |
7414 | topRow = 0; | |
7415 | bottomRow = GetNumberRows() - 1; | |
7416 | break; | |
7417 | ||
7418 | case wxGridSelectRowsOrColumns: | |
7419 | // in this mode we can select only full rows or full columns so | |
7420 | // it doesn't make sense to select blocks at all (and we can't | |
7421 | // extend the block because there is no preferred direction, we | |
7422 | // could only extend it to cover the entire grid but this is | |
7423 | // not useful) | |
7424 | return; | |
3f3dc2ef | 7425 | } |
c9097836 | 7426 | } |
3f3dc2ef | 7427 | |
8a3e536c VZ |
7428 | m_selectedBlockCorner = wxGridCellCoords(bottomRow, rightCol); |
7429 | MakeCellVisible(m_selectedBlockCorner); | |
7430 | ||
1372f8cc VZ |
7431 | EnsureFirstLessThanSecond(topRow, bottomRow); |
7432 | EnsureFirstLessThanSecond(leftCol, rightCol); | |
c9097836 | 7433 | |
8a3e536c VZ |
7434 | wxGridCellCoords updateTopLeft = wxGridCellCoords(topRow, leftCol), |
7435 | updateBottomRight = wxGridCellCoords(bottomRow, rightCol); | |
c9097836 | 7436 | |
3ed884a0 | 7437 | // First the case that we selected a completely new area |
8a3e536c VZ |
7438 | if ( m_selectedBlockTopLeft == wxGridNoCellCoords || |
7439 | m_selectedBlockBottomRight == wxGridNoCellCoords ) | |
3ed884a0 SN |
7440 | { |
7441 | wxRect rect; | |
7442 | rect = BlockToDeviceRect( wxGridCellCoords ( topRow, leftCol ), | |
7443 | wxGridCellCoords ( bottomRow, rightCol ) ); | |
ca65c044 | 7444 | m_gridWin->Refresh( false, &rect ); |
3ed884a0 | 7445 | } |
2f024384 | 7446 | |
3ed884a0 | 7447 | // Now handle changing an existing selection area. |
8a3e536c VZ |
7448 | else if ( m_selectedBlockTopLeft != updateTopLeft || |
7449 | m_selectedBlockBottomRight != updateBottomRight ) | |
c9097836 MB |
7450 | { |
7451 | // Compute two optimal update rectangles: | |
7452 | // Either one rectangle is a real subset of the | |
7453 | // other, or they are (almost) disjoint! | |
7454 | wxRect rect[4]; | |
7455 | bool need_refresh[4]; | |
7456 | need_refresh[0] = | |
7457 | need_refresh[1] = | |
7458 | need_refresh[2] = | |
ca65c044 | 7459 | need_refresh[3] = false; |
c9097836 MB |
7460 | int i; |
7461 | ||
7462 | // Store intermediate values | |
8a3e536c VZ |
7463 | wxCoord oldLeft = m_selectedBlockTopLeft.GetCol(); |
7464 | wxCoord oldTop = m_selectedBlockTopLeft.GetRow(); | |
7465 | wxCoord oldRight = m_selectedBlockBottomRight.GetCol(); | |
7466 | wxCoord oldBottom = m_selectedBlockBottomRight.GetRow(); | |
c9097836 MB |
7467 | |
7468 | // Determine the outer/inner coordinates. | |
1372f8cc VZ |
7469 | EnsureFirstLessThanSecond(oldLeft, leftCol); |
7470 | EnsureFirstLessThanSecond(oldTop, topRow); | |
7471 | EnsureFirstLessThanSecond(rightCol, oldRight); | |
7472 | EnsureFirstLessThanSecond(bottomRow, oldBottom); | |
c9097836 MB |
7473 | |
7474 | // Now, either the stuff marked old is the outer | |
7475 | // rectangle or we don't have a situation where one | |
7476 | // is contained in the other. | |
7477 | ||
7478 | if ( oldLeft < leftCol ) | |
7479 | { | |
3ed884a0 SN |
7480 | // Refresh the newly selected or deselected |
7481 | // area to the left of the old or new selection. | |
ca65c044 | 7482 | need_refresh[0] = true; |
a9339fe2 DS |
7483 | rect[0] = BlockToDeviceRect( |
7484 | wxGridCellCoords( oldTop, oldLeft ), | |
7485 | wxGridCellCoords( oldBottom, leftCol - 1 ) ); | |
c9097836 MB |
7486 | } |
7487 | ||
2f024384 | 7488 | if ( oldTop < topRow ) |
c9097836 | 7489 | { |
3ed884a0 SN |
7490 | // Refresh the newly selected or deselected |
7491 | // area above the old or new selection. | |
ca65c044 | 7492 | need_refresh[1] = true; |
2f024384 DS |
7493 | rect[1] = BlockToDeviceRect( |
7494 | wxGridCellCoords( oldTop, leftCol ), | |
7495 | wxGridCellCoords( topRow - 1, rightCol ) ); | |
c9097836 MB |
7496 | } |
7497 | ||
7498 | if ( oldRight > rightCol ) | |
7499 | { | |
3ed884a0 SN |
7500 | // Refresh the newly selected or deselected |
7501 | // area to the right of the old or new selection. | |
ca65c044 | 7502 | need_refresh[2] = true; |
2f024384 | 7503 | rect[2] = BlockToDeviceRect( |
a9339fe2 DS |
7504 | wxGridCellCoords( oldTop, rightCol + 1 ), |
7505 | wxGridCellCoords( oldBottom, oldRight ) ); | |
c9097836 MB |
7506 | } |
7507 | ||
7508 | if ( oldBottom > bottomRow ) | |
7509 | { | |
3ed884a0 SN |
7510 | // Refresh the newly selected or deselected |
7511 | // area below the old or new selection. | |
ca65c044 | 7512 | need_refresh[3] = true; |
2f024384 | 7513 | rect[3] = BlockToDeviceRect( |
a9339fe2 DS |
7514 | wxGridCellCoords( bottomRow + 1, leftCol ), |
7515 | wxGridCellCoords( oldBottom, rightCol ) ); | |
c9097836 MB |
7516 | } |
7517 | ||
c9097836 MB |
7518 | // various Refresh() calls |
7519 | for (i = 0; i < 4; i++ ) | |
7520 | if ( need_refresh[i] && rect[i] != wxGridNoCellRect ) | |
ca65c044 | 7521 | m_gridWin->Refresh( false, &(rect[i]) ); |
c9097836 | 7522 | } |
2f024384 DS |
7523 | |
7524 | // change selection | |
8a3e536c VZ |
7525 | m_selectedBlockTopLeft = updateTopLeft; |
7526 | m_selectedBlockBottomRight = updateBottomRight; | |
c9097836 MB |
7527 | } |
7528 | ||
2d66e025 MB |
7529 | // |
7530 | // ------ functions to get/send data (see also public functions) | |
7531 | // | |
7532 | ||
7533 | bool wxGrid::GetModelValues() | |
66242c80 | 7534 | { |
bca7bfc8 SN |
7535 | // Hide the editor, so it won't hide a changed value. |
7536 | HideCellEditControl(); | |
c6707d16 | 7537 | |
2d66e025 | 7538 | if ( m_table ) |
66242c80 | 7539 | { |
2d66e025 | 7540 | // all we need to do is repaint the grid |
66242c80 | 7541 | // |
2d66e025 | 7542 | m_gridWin->Refresh(); |
ca65c044 | 7543 | return true; |
66242c80 | 7544 | } |
8f177c8e | 7545 | |
ca65c044 | 7546 | return false; |
66242c80 MB |
7547 | } |
7548 | ||
2d66e025 | 7549 | bool wxGrid::SetModelValues() |
f85afd4e | 7550 | { |
2d66e025 | 7551 | int row, col; |
8f177c8e | 7552 | |
c6707d16 SN |
7553 | // Disable the editor, so it won't hide a changed value. |
7554 | // Do we also want to save the current value of the editor first? | |
7555 | // I think so ... | |
c6707d16 SN |
7556 | DisableCellEditControl(); |
7557 | ||
2d66e025 MB |
7558 | if ( m_table ) |
7559 | { | |
56b6cf26 | 7560 | for ( row = 0; row < m_numRows; row++ ) |
f85afd4e | 7561 | { |
56b6cf26 | 7562 | for ( col = 0; col < m_numCols; col++ ) |
f85afd4e | 7563 | { |
2d66e025 | 7564 | m_table->SetValue( row, col, GetCellValue(row, col) ); |
f85afd4e MB |
7565 | } |
7566 | } | |
8f177c8e | 7567 | |
ca65c044 | 7568 | return true; |
f85afd4e MB |
7569 | } |
7570 | ||
ca65c044 | 7571 | return false; |
f85afd4e MB |
7572 | } |
7573 | ||
2d66e025 MB |
7574 | // Note - this function only draws cells that are in the list of |
7575 | // exposed cells (usually set from the update region by | |
7576 | // CalcExposedCells) | |
7577 | // | |
d10f4bf9 | 7578 | void wxGrid::DrawGridCellArea( wxDC& dc, const wxGridCellCoordsArray& cells ) |
f85afd4e | 7579 | { |
4db6714b KH |
7580 | if ( !m_numRows || !m_numCols ) |
7581 | return; | |
60ff3b99 | 7582 | |
dc1f566f | 7583 | int i, numCells = cells.GetCount(); |
27f35b66 SN |
7584 | int row, col, cell_rows, cell_cols; |
7585 | wxGridCellCoordsArray redrawCells; | |
60ff3b99 | 7586 | |
a9339fe2 | 7587 | for ( i = numCells - 1; i >= 0; i-- ) |
f85afd4e | 7588 | { |
27f35b66 SN |
7589 | row = cells[i].GetRow(); |
7590 | col = cells[i].GetCol(); | |
7591 | GetCellSize( row, col, &cell_rows, &cell_cols ); | |
7592 | ||
7593 | // If this cell is part of a multicell block, find owner for repaint | |
7594 | if ( cell_rows <= 0 || cell_cols <= 0 ) | |
7595 | { | |
a9339fe2 | 7596 | wxGridCellCoords cell( row + cell_rows, col + cell_cols ); |
ca65c044 | 7597 | bool marked = false; |
56b6cf26 | 7598 | for ( int j = 0; j < numCells; j++ ) |
27f35b66 SN |
7599 | { |
7600 | if ( cell == cells[j] ) | |
7601 | { | |
ca65c044 | 7602 | marked = true; |
3ed884a0 | 7603 | break; |
27f35b66 SN |
7604 | } |
7605 | } | |
2f024384 | 7606 | |
27f35b66 SN |
7607 | if (!marked) |
7608 | { | |
7609 | int count = redrawCells.GetCount(); | |
dc1f566f | 7610 | for (int j = 0; j < count; j++) |
27f35b66 SN |
7611 | { |
7612 | if ( cell == redrawCells[j] ) | |
7613 | { | |
ca65c044 | 7614 | marked = true; |
27f35b66 SN |
7615 | break; |
7616 | } | |
7617 | } | |
2f024384 | 7618 | |
4db6714b KH |
7619 | if (!marked) |
7620 | redrawCells.Add( cell ); | |
27f35b66 | 7621 | } |
2f024384 DS |
7622 | |
7623 | // don't bother drawing this cell | |
7624 | continue; | |
27f35b66 SN |
7625 | } |
7626 | ||
7627 | // If this cell is empty, find cell to left that might want to overflow | |
7628 | if (m_table && m_table->IsEmptyCell(row, col)) | |
7629 | { | |
dc1f566f | 7630 | for ( int l = 0; l < cell_rows; l++ ) |
27f35b66 | 7631 | { |
56b6cf26 | 7632 | // find a cell in this row to leave already marked for repaint |
dc1f566f SN |
7633 | int left = col; |
7634 | for (int k = 0; k < int(redrawCells.GetCount()); k++) | |
7635 | if ((redrawCells[k].GetCol() < left) && | |
7636 | (redrawCells[k].GetRow() == row)) | |
2f024384 | 7637 | { |
4db6714b | 7638 | left = redrawCells[k].GetCol(); |
2f024384 | 7639 | } |
dc1f566f | 7640 | |
4db6714b KH |
7641 | if (left == col) |
7642 | left = 0; // oh well | |
dc1f566f | 7643 | |
2f024384 | 7644 | for (int j = col - 1; j >= left; j--) |
27f35b66 | 7645 | { |
2f024384 | 7646 | if (!m_table->IsEmptyCell(row + l, j)) |
27f35b66 | 7647 | { |
2f024384 | 7648 | if (GetCellOverflow(row + l, j)) |
27f35b66 | 7649 | { |
2f024384 | 7650 | wxGridCellCoords cell(row + l, j); |
ca65c044 | 7651 | bool marked = false; |
27f35b66 | 7652 | |
dc1f566f | 7653 | for (int k = 0; k < numCells; k++) |
27f35b66 SN |
7654 | { |
7655 | if ( cell == cells[k] ) | |
7656 | { | |
ca65c044 | 7657 | marked = true; |
27f35b66 SN |
7658 | break; |
7659 | } | |
7660 | } | |
4db6714b | 7661 | |
27f35b66 SN |
7662 | if (!marked) |
7663 | { | |
7664 | int count = redrawCells.GetCount(); | |
dc1f566f | 7665 | for (int k = 0; k < count; k++) |
27f35b66 SN |
7666 | { |
7667 | if ( cell == redrawCells[k] ) | |
7668 | { | |
ca65c044 | 7669 | marked = true; |
27f35b66 SN |
7670 | break; |
7671 | } | |
7672 | } | |
4db6714b KH |
7673 | if (!marked) |
7674 | redrawCells.Add( cell ); | |
27f35b66 SN |
7675 | } |
7676 | } | |
7677 | break; | |
7678 | } | |
7679 | } | |
7680 | } | |
7681 | } | |
4db6714b | 7682 | |
d10f4bf9 | 7683 | DrawCell( dc, cells[i] ); |
2d66e025 | 7684 | } |
27f35b66 SN |
7685 | |
7686 | numCells = redrawCells.GetCount(); | |
7687 | ||
56b6cf26 | 7688 | for ( i = numCells - 1; i >= 0; i-- ) |
27f35b66 SN |
7689 | { |
7690 | DrawCell( dc, redrawCells[i] ); | |
7691 | } | |
2d66e025 | 7692 | } |
8f177c8e | 7693 | |
7c8a8ad5 MB |
7694 | void wxGrid::DrawGridSpace( wxDC& dc ) |
7695 | { | |
f6bcfd97 BP |
7696 | int cw, ch; |
7697 | m_gridWin->GetClientSize( &cw, &ch ); | |
7c8a8ad5 | 7698 | |
f6bcfd97 BP |
7699 | int right, bottom; |
7700 | CalcUnscrolledPosition( cw, ch, &right, &bottom ); | |
7c8a8ad5 | 7701 | |
d4175745 | 7702 | int rightCol = m_numCols > 0 ? GetColRight(GetColAt( m_numCols - 1 )) : 0; |
2f024384 | 7703 | int bottomRow = m_numRows > 0 ? GetRowBottom(m_numRows - 1) : 0; |
7c8a8ad5 | 7704 | |
f6bcfd97 BP |
7705 | if ( right > rightCol || bottom > bottomRow ) |
7706 | { | |
7707 | int left, top; | |
7708 | CalcUnscrolledPosition( 0, 0, &left, &top ); | |
7c8a8ad5 | 7709 | |
ff72f628 | 7710 | dc.SetBrush(GetDefaultCellBackgroundColour()); |
f6bcfd97 | 7711 | dc.SetPen( *wxTRANSPARENT_PEN ); |
7c8a8ad5 | 7712 | |
f6bcfd97 BP |
7713 | if ( right > rightCol ) |
7714 | { | |
a9339fe2 | 7715 | dc.DrawRectangle( rightCol, top, right - rightCol, ch ); |
f6bcfd97 BP |
7716 | } |
7717 | ||
7718 | if ( bottom > bottomRow ) | |
7719 | { | |
a9339fe2 | 7720 | dc.DrawRectangle( left, bottomRow, cw, bottom - bottomRow ); |
f6bcfd97 BP |
7721 | } |
7722 | } | |
7c8a8ad5 MB |
7723 | } |
7724 | ||
2d66e025 MB |
7725 | void wxGrid::DrawCell( wxDC& dc, const wxGridCellCoords& coords ) |
7726 | { | |
ab79958a VZ |
7727 | int row = coords.GetRow(); |
7728 | int col = coords.GetCol(); | |
60ff3b99 | 7729 | |
7c1cb261 | 7730 | if ( GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) |
ab79958a VZ |
7731 | return; |
7732 | ||
7733 | // we draw the cell border ourselves | |
189d0213 VZ |
7734 | wxGridCellAttr* attr = GetCellAttr(row, col); |
7735 | ||
7736 | bool isCurrent = coords == m_currentCellCoords; | |
508011ce | 7737 | |
f6bcfd97 | 7738 | wxRect rect = CellToRect( row, col ); |
f85afd4e | 7739 | |
189d0213 | 7740 | // if the editor is shown, we should use it and not the renderer |
f6bcfd97 BP |
7741 | // Note: However, only if it is really _shown_, i.e. not hidden! |
7742 | if ( isCurrent && IsCellEditControlShown() ) | |
189d0213 | 7743 | { |
a9339fe2 | 7744 | // NB: this "#if..." is temporary and fixes a problem where the |
962a48f6 DS |
7745 | // edit control is erased by this code after being rendered. |
7746 | // On wxMac (QD build only), the cell editor is a wxTextCntl and is rendered | |
7747 | // implicitly, causing this out-of order render. | |
5d38a5f3 | 7748 | #if !defined(__WXMAC__) |
0b190b0f VZ |
7749 | wxGridCellEditor *editor = attr->GetEditor(this, row, col); |
7750 | editor->PaintBackground(rect, attr); | |
7751 | editor->DecRef(); | |
962a48f6 | 7752 | #endif |
189d0213 VZ |
7753 | } |
7754 | else | |
7755 | { | |
a9339fe2 | 7756 | // but all the rest is drawn by the cell renderer and hence may be customized |
0b190b0f VZ |
7757 | wxGridCellRenderer *renderer = attr->GetRenderer(this, row, col); |
7758 | renderer->Draw(*this, *attr, dc, rect, row, col, IsInSelection(coords)); | |
7759 | renderer->DecRef(); | |
189d0213 | 7760 | } |
07296f0b | 7761 | |
283b7808 VZ |
7762 | attr->DecRef(); |
7763 | } | |
07296f0b | 7764 | |
283b7808 | 7765 | void wxGrid::DrawCellHighlight( wxDC& dc, const wxGridCellAttr *attr ) |
07296f0b | 7766 | { |
760be3f7 VS |
7767 | // don't show highlight when the grid doesn't have focus |
7768 | if ( !HasFocus() ) | |
7769 | return; | |
7770 | ||
07296f0b RD |
7771 | int row = m_currentCellCoords.GetRow(); |
7772 | int col = m_currentCellCoords.GetCol(); | |
7773 | ||
7c1cb261 | 7774 | if ( GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) |
07296f0b RD |
7775 | return; |
7776 | ||
f6bcfd97 | 7777 | wxRect rect = CellToRect(row, col); |
07296f0b | 7778 | |
b3a7510d VZ |
7779 | // hmmm... what could we do here to show that the cell is disabled? |
7780 | // for now, I just draw a thinner border than for the other ones, but | |
7781 | // it doesn't look really good | |
b3a7510d | 7782 | |
d2520c85 RD |
7783 | int penWidth = attr->IsReadOnly() ? m_cellHighlightROPenWidth : m_cellHighlightPenWidth; |
7784 | ||
27f35b66 SN |
7785 | if (penWidth > 0) |
7786 | { | |
56b6cf26 DS |
7787 | // The center of the drawn line is where the position/width/height of |
7788 | // the rectangle is actually at (on wxMSW at least), so the | |
7789 | // size of the rectangle is reduced to compensate for the thickness of | |
7790 | // the line. If this is too strange on non-wxMSW platforms then | |
d2520c85 | 7791 | // please #ifdef this appropriately. |
4db6714b KH |
7792 | rect.x += penWidth / 2; |
7793 | rect.y += penWidth / 2; | |
7794 | rect.width -= penWidth - 1; | |
7795 | rect.height -= penWidth - 1; | |
d2520c85 | 7796 | |
d2520c85 | 7797 | // Now draw the rectangle |
73145b0e JS |
7798 | // use the cellHighlightColour if the cell is inside a selection, this |
7799 | // will ensure the cell is always visible. | |
ff72f628 VZ |
7800 | dc.SetPen(wxPen(IsInSelection(row,col) ? m_selectionForeground |
7801 | : m_cellHighlightColour, | |
7802 | penWidth)); | |
d2520c85 RD |
7803 | dc.SetBrush(*wxTRANSPARENT_BRUSH); |
7804 | dc.DrawRectangle(rect); | |
7805 | } | |
2d66e025 | 7806 | } |
f85afd4e | 7807 | |
3d3f3e37 VZ |
7808 | wxPen wxGrid::GetDefaultGridLinePen() |
7809 | { | |
ff72f628 | 7810 | return wxPen(GetGridLineColour()); |
3d3f3e37 VZ |
7811 | } |
7812 | ||
7813 | wxPen wxGrid::GetRowGridLinePen(int WXUNUSED(row)) | |
7814 | { | |
7815 | return GetDefaultGridLinePen(); | |
7816 | } | |
7817 | ||
7818 | wxPen wxGrid::GetColGridLinePen(int WXUNUSED(col)) | |
7819 | { | |
7820 | return GetDefaultGridLinePen(); | |
7821 | } | |
7822 | ||
2d66e025 MB |
7823 | void wxGrid::DrawCellBorder( wxDC& dc, const wxGridCellCoords& coords ) |
7824 | { | |
2d66e025 MB |
7825 | int row = coords.GetRow(); |
7826 | int col = coords.GetCol(); | |
7c1cb261 VZ |
7827 | if ( GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) |
7828 | return; | |
7829 | ||
60ff3b99 | 7830 | |
27f35b66 SN |
7831 | wxRect rect = CellToRect( row, col ); |
7832 | ||
2d66e025 | 7833 | // right hand border |
3d3f3e37 | 7834 | dc.SetPen( GetColGridLinePen(col) ); |
27f35b66 SN |
7835 | dc.DrawLine( rect.x + rect.width, rect.y, |
7836 | rect.x + rect.width, rect.y + rect.height + 1 ); | |
2d66e025 MB |
7837 | |
7838 | // bottom border | |
3d3f3e37 | 7839 | dc.SetPen( GetRowGridLinePen(row) ); |
2f024384 | 7840 | dc.DrawLine( rect.x, rect.y + rect.height, |
27f35b66 | 7841 | rect.x + rect.width, rect.y + rect.height); |
f85afd4e MB |
7842 | } |
7843 | ||
2f024384 | 7844 | void wxGrid::DrawHighlight(wxDC& dc, const wxGridCellCoordsArray& cells) |
b3a7510d | 7845 | { |
2a7750d9 MB |
7846 | // This if block was previously in wxGrid::OnPaint but that doesn't |
7847 | // seem to get called under wxGTK - MB | |
7848 | // | |
2f024384 | 7849 | if ( m_currentCellCoords == wxGridNoCellCoords && |
2a7750d9 MB |
7850 | m_numRows && m_numCols ) |
7851 | { | |
7852 | m_currentCellCoords.Set(0, 0); | |
7853 | } | |
7854 | ||
f6bcfd97 | 7855 | if ( IsCellEditControlShown() ) |
99306db2 VZ |
7856 | { |
7857 | // don't show highlight when the edit control is shown | |
7858 | return; | |
7859 | } | |
7860 | ||
b3a7510d VZ |
7861 | // if the active cell was repainted, repaint its highlight too because it |
7862 | // might have been damaged by the grid lines | |
d10f4bf9 | 7863 | size_t count = cells.GetCount(); |
b3a7510d VZ |
7864 | for ( size_t n = 0; n < count; n++ ) |
7865 | { | |
54181a33 VZ |
7866 | wxGridCellCoords cell = cells[n]; |
7867 | ||
7868 | // If we are using attributes, then we may have just exposed another | |
7869 | // cell in a partially-visible merged cluster of cells. If the "anchor" | |
7870 | // (upper left) cell of this merged cluster is the cell indicated by | |
7871 | // m_currentCellCoords, then we need to refresh the cell highlight even | |
7872 | // though the "anchor" itself is not part of our update segment. | |
7873 | if ( CanHaveAttributes() ) | |
7874 | { | |
7875 | int rows = 0, | |
7876 | cols = 0; | |
7877 | GetCellSize(cell.GetRow(), cell.GetCol(), &rows, &cols); | |
7878 | ||
7879 | if ( rows < 0 ) | |
7880 | cell.SetRow(cell.GetRow() + rows); | |
7881 | ||
7882 | if ( cols < 0 ) | |
7883 | cell.SetCol(cell.GetCol() + cols); | |
7884 | } | |
7885 | ||
7886 | if ( cell == m_currentCellCoords ) | |
b3a7510d VZ |
7887 | { |
7888 | wxGridCellAttr* attr = GetCellAttr(m_currentCellCoords); | |
7889 | DrawCellHighlight(dc, attr); | |
7890 | attr->DecRef(); | |
7891 | ||
7892 | break; | |
7893 | } | |
7894 | } | |
7895 | } | |
2d66e025 | 7896 | |
2d66e025 MB |
7897 | // This is used to redraw all grid lines e.g. when the grid line colour |
7898 | // has been changed | |
7899 | // | |
33ac7e6f | 7900 | void wxGrid::DrawAllGridLines( wxDC& dc, const wxRegion & WXUNUSED(reg) ) |
f85afd4e | 7901 | { |
9f7aee01 | 7902 | if ( !m_gridLinesEnabled ) |
4db6714b | 7903 | return; |
f85afd4e | 7904 | |
2d66e025 | 7905 | int top, bottom, left, right; |
796df70a | 7906 | |
ff72f628 VZ |
7907 | int cw, ch; |
7908 | m_gridWin->GetClientSize(&cw, &ch); | |
7909 | CalcUnscrolledPosition( 0, 0, &left, &top ); | |
7910 | CalcUnscrolledPosition( cw, ch, &right, &bottom ); | |
f85afd4e | 7911 | |
9496deb5 | 7912 | // avoid drawing grid lines past the last row and col |
9f7aee01 VZ |
7913 | if ( m_gridLinesClipHorz ) |
7914 | { | |
7915 | if ( !m_numCols ) | |
7916 | return; | |
7917 | ||
7918 | const int lastColRight = GetColRight(GetColAt(m_numCols - 1)); | |
7919 | if ( right > lastColRight ) | |
7920 | right = lastColRight; | |
7921 | } | |
7922 | ||
7923 | if ( m_gridLinesClipVert ) | |
7924 | { | |
7925 | if ( !m_numRows ) | |
7926 | return; | |
7927 | ||
7928 | const int lastRowBottom = GetRowBottom(m_numRows - 1); | |
7929 | if ( bottom > lastRowBottom ) | |
7930 | bottom = lastRowBottom; | |
7931 | } | |
9496deb5 | 7932 | |
27f35b66 | 7933 | // no gridlines inside multicells, clip them out |
d4175745 | 7934 | int leftCol = GetColPos( internalXToCol(left) ); |
a9339fe2 | 7935 | int topRow = internalYToRow(top); |
d4175745 | 7936 | int rightCol = GetColPos( internalXToCol(right) ); |
a967f048 | 7937 | int bottomRow = internalYToRow(bottom); |
27f35b66 | 7938 | |
c03bf0c7 | 7939 | wxRegion clippedcells(0, 0, cw, ch); |
27f35b66 | 7940 | |
ff72f628 | 7941 | int cell_rows, cell_cols; |
a967f048 | 7942 | wxRect rect; |
27f35b66 | 7943 | |
ff72f628 | 7944 | for ( int j = topRow; j <= bottomRow; j++ ) |
a967f048 | 7945 | { |
ff72f628 | 7946 | for ( int colPos = leftCol; colPos <= rightCol; colPos++ ) |
27f35b66 | 7947 | { |
ff72f628 | 7948 | int i = GetColAt( colPos ); |
d4175745 | 7949 | |
a967f048 RG |
7950 | GetCellSize( j, i, &cell_rows, &cell_cols ); |
7951 | if ((cell_rows > 1) || (cell_cols > 1)) | |
27f35b66 | 7952 | { |
a967f048 RG |
7953 | rect = CellToRect(j,i); |
7954 | CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); | |
7955 | clippedcells.Subtract(rect); | |
7956 | } | |
7957 | else if ((cell_rows < 0) || (cell_cols < 0)) | |
7958 | { | |
a9339fe2 | 7959 | rect = CellToRect(j + cell_rows, i + cell_cols); |
a967f048 RG |
7960 | CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); |
7961 | clippedcells.Subtract(rect); | |
27f35b66 SN |
7962 | } |
7963 | } | |
7964 | } | |
a9339fe2 | 7965 | |
c1bc8d9f | 7966 | dc.SetDeviceClippingRegion( clippedcells ); |
27f35b66 | 7967 | |
f85afd4e | 7968 | |
2d66e025 | 7969 | // horizontal grid lines |
ff72f628 | 7970 | for ( int i = internalYToRow(top); i < m_numRows; i++ ) |
f85afd4e | 7971 | { |
6d55126d | 7972 | int bot = GetRowBottom(i) - 1; |
7c1cb261 | 7973 | |
6d55126d | 7974 | if ( bot > bottom ) |
2d66e025 | 7975 | break; |
7c1cb261 | 7976 | |
6d55126d | 7977 | if ( bot >= top ) |
2d66e025 | 7978 | { |
3d3f3e37 | 7979 | dc.SetPen( GetRowGridLinePen(i) ); |
6d55126d | 7980 | dc.DrawLine( left, bot, right, bot ); |
2d66e025 | 7981 | } |
f85afd4e MB |
7982 | } |
7983 | ||
2d66e025 | 7984 | // vertical grid lines |
ff72f628 | 7985 | for ( int colPos = leftCol; colPos < m_numCols; colPos++ ) |
f85afd4e | 7986 | { |
ff72f628 | 7987 | int i = GetColAt( colPos ); |
d4175745 | 7988 | |
2121eb69 RR |
7989 | int colRight = GetColRight(i); |
7990 | #ifdef __WXGTK__ | |
7991 | if (GetLayoutDirection() != wxLayout_RightToLeft) | |
7992 | #endif | |
7993 | colRight--; | |
7994 | ||
7c1cb261 | 7995 | if ( colRight > right ) |
2d66e025 | 7996 | break; |
7c1cb261 VZ |
7997 | |
7998 | if ( colRight >= left ) | |
2d66e025 | 7999 | { |
3d3f3e37 | 8000 | dc.SetPen( GetColGridLinePen(i) ); |
7c1cb261 | 8001 | dc.DrawLine( colRight, top, colRight, bottom ); |
2d66e025 MB |
8002 | } |
8003 | } | |
a9339fe2 | 8004 | |
27f35b66 | 8005 | dc.DestroyClippingRegion(); |
2d66e025 | 8006 | } |
f85afd4e | 8007 | |
c2f5b920 | 8008 | void wxGrid::DrawRowLabels( wxDC& dc, const wxArrayInt& rows) |
2d66e025 | 8009 | { |
4db6714b KH |
8010 | if ( !m_numRows ) |
8011 | return; | |
60ff3b99 | 8012 | |
ff72f628 VZ |
8013 | const size_t numLabels = rows.GetCount(); |
8014 | for ( size_t i = 0; i < numLabels; i++ ) | |
2d66e025 | 8015 | { |
d10f4bf9 | 8016 | DrawRowLabel( dc, rows[i] ); |
60ff3b99 | 8017 | } |
f85afd4e MB |
8018 | } |
8019 | ||
2d66e025 | 8020 | void wxGrid::DrawRowLabel( wxDC& dc, int row ) |
f85afd4e | 8021 | { |
659af826 | 8022 | if ( GetRowHeight(row) <= 0 || m_rowLabelWidth <= 0 ) |
7c1cb261 | 8023 | return; |
60ff3b99 | 8024 | |
4d1bc39c | 8025 | wxRect rect; |
2f024384 | 8026 | |
7c1cb261 VZ |
8027 | int rowTop = GetRowTop(row), |
8028 | rowBottom = GetRowBottom(row) - 1; | |
b99be8fb | 8029 | |
ff72f628 | 8030 | dc.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW))); |
a9339fe2 | 8031 | dc.DrawLine( m_rowLabelWidth - 1, rowTop, m_rowLabelWidth - 1, rowBottom ); |
73145b0e | 8032 | dc.DrawLine( 0, rowTop, 0, rowBottom ); |
73145b0e | 8033 | dc.DrawLine( 0, rowBottom, m_rowLabelWidth, rowBottom ); |
b99be8fb | 8034 | |
2d66e025 | 8035 | dc.SetPen( *wxWHITE_PEN ); |
73145b0e | 8036 | dc.DrawLine( 1, rowTop, 1, rowBottom ); |
a9339fe2 | 8037 | dc.DrawLine( 1, rowTop, m_rowLabelWidth - 1, rowTop ); |
2f024384 | 8038 | |
04ee05f9 | 8039 | dc.SetBackgroundMode( wxBRUSHSTYLE_TRANSPARENT ); |
f85afd4e MB |
8040 | dc.SetTextForeground( GetLabelTextColour() ); |
8041 | dc.SetFont( GetLabelFont() ); | |
8f177c8e | 8042 | |
f85afd4e | 8043 | int hAlign, vAlign; |
2d66e025 | 8044 | GetRowLabelAlignment( &hAlign, &vAlign ); |
60ff3b99 | 8045 | |
2d66e025 | 8046 | rect.SetX( 2 ); |
7c1cb261 | 8047 | rect.SetY( GetRowTop(row) + 2 ); |
2d66e025 | 8048 | rect.SetWidth( m_rowLabelWidth - 4 ); |
7c1cb261 | 8049 | rect.SetHeight( GetRowHeight(row) - 4 ); |
60ff3b99 | 8050 | DrawTextRectangle( dc, GetRowLabelValue( row ), rect, hAlign, vAlign ); |
f85afd4e MB |
8051 | } |
8052 | ||
71cf399f RR |
8053 | void wxGrid::SetUseNativeColLabels( bool native ) |
8054 | { | |
8055 | m_nativeColumnLabels = native; | |
8056 | if (native) | |
8057 | { | |
8058 | int height = wxRendererNative::Get().GetHeaderButtonHeight( this ); | |
8059 | SetColLabelSize( height ); | |
8060 | } | |
76c66f19 | 8061 | |
71cf399f | 8062 | m_colLabelWin->Refresh(); |
ff72f628 | 8063 | m_cornerLabelWin->Refresh(); |
71cf399f RR |
8064 | } |
8065 | ||
d10f4bf9 | 8066 | void wxGrid::DrawColLabels( wxDC& dc,const wxArrayInt& cols ) |
f85afd4e | 8067 | { |
4db6714b KH |
8068 | if ( !m_numCols ) |
8069 | return; | |
60ff3b99 | 8070 | |
ff72f628 VZ |
8071 | const size_t numLabels = cols.GetCount(); |
8072 | for ( size_t i = 0; i < numLabels; i++ ) | |
f85afd4e | 8073 | { |
d10f4bf9 | 8074 | DrawColLabel( dc, cols[i] ); |
60ff3b99 | 8075 | } |
f85afd4e MB |
8076 | } |
8077 | ||
ff72f628 VZ |
8078 | void wxGrid::DrawCornerLabel(wxDC& dc) |
8079 | { | |
8080 | if ( m_nativeColumnLabels ) | |
8081 | { | |
8082 | wxRect rect(wxSize(m_rowLabelWidth, m_colLabelHeight)); | |
8083 | rect.Deflate(1); | |
8084 | ||
8085 | wxRendererNative::Get().DrawHeaderButton(m_cornerLabelWin, dc, rect, 0); | |
8086 | } | |
8087 | else | |
8088 | { | |
8089 | dc.SetPen(wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW))); | |
8090 | dc.DrawLine( m_rowLabelWidth - 1, m_colLabelHeight - 1, | |
8091 | m_rowLabelWidth - 1, 0 ); | |
8092 | dc.DrawLine( m_rowLabelWidth - 1, m_colLabelHeight - 1, | |
8093 | 0, m_colLabelHeight - 1 ); | |
8094 | dc.DrawLine( 0, 0, m_rowLabelWidth, 0 ); | |
8095 | dc.DrawLine( 0, 0, 0, m_colLabelHeight ); | |
8096 | ||
8097 | dc.SetPen( *wxWHITE_PEN ); | |
8098 | dc.DrawLine( 1, 1, m_rowLabelWidth - 1, 1 ); | |
8099 | dc.DrawLine( 1, 1, 1, m_colLabelHeight - 1 ); | |
8100 | } | |
8101 | } | |
8102 | ||
8103 | void wxGrid::DrawColLabel(wxDC& dc, int col) | |
f85afd4e | 8104 | { |
659af826 | 8105 | if ( GetColWidth(col) <= 0 || m_colLabelHeight <= 0 ) |
7c1cb261 | 8106 | return; |
60ff3b99 | 8107 | |
4d1bc39c | 8108 | int colLeft = GetColLeft(col); |
ec157c8f | 8109 | |
ff72f628 | 8110 | wxRect rect(colLeft, 0, GetColWidth(col), m_colLabelHeight); |
2f024384 | 8111 | |
ff72f628 | 8112 | if ( m_nativeColumnLabels ) |
71cf399f | 8113 | { |
ff72f628 | 8114 | wxRendererNative::Get().DrawHeaderButton(m_colLabelWin, dc, rect, 0); |
71cf399f RR |
8115 | } |
8116 | else | |
8117 | { | |
8118 | int colRight = GetColRight(col) - 1; | |
b99be8fb | 8119 | |
ff72f628 VZ |
8120 | dc.SetPen(wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW))); |
8121 | dc.DrawLine( colRight, 0, | |
8122 | colRight, m_colLabelHeight - 1 ); | |
8123 | dc.DrawLine( colLeft, 0, | |
8124 | colRight, 0 ); | |
71cf399f | 8125 | dc.DrawLine( colLeft, m_colLabelHeight - 1, |
ff72f628 | 8126 | colRight + 1, m_colLabelHeight - 1 ); |
b99be8fb | 8127 | |
71cf399f RR |
8128 | dc.SetPen( *wxWHITE_PEN ); |
8129 | dc.DrawLine( colLeft, 1, colLeft, m_colLabelHeight - 1 ); | |
8130 | dc.DrawLine( colLeft, 1, colRight, 1 ); | |
8131 | } | |
2f024384 | 8132 | |
04ee05f9 | 8133 | dc.SetBackgroundMode( wxBRUSHSTYLE_TRANSPARENT ); |
b0d6ff2f MB |
8134 | dc.SetTextForeground( GetLabelTextColour() ); |
8135 | dc.SetFont( GetLabelFont() ); | |
8f177c8e | 8136 | |
ff72f628 | 8137 | int hAlign, vAlign; |
2d66e025 | 8138 | GetColLabelAlignment( &hAlign, &vAlign ); |
ff72f628 | 8139 | const int orient = GetColLabelTextOrientation(); |
60ff3b99 | 8140 | |
ff72f628 VZ |
8141 | rect.Deflate(2); |
8142 | DrawTextRectangle(dc, GetColLabelValue(col), rect, hAlign, vAlign, orient); | |
f85afd4e MB |
8143 | } |
8144 | ||
ff72f628 VZ |
8145 | // TODO: these 2 functions should be replaced with wxDC::DrawLabel() to which |
8146 | // we just have to add textOrientation support | |
2d66e025 MB |
8147 | void wxGrid::DrawTextRectangle( wxDC& dc, |
8148 | const wxString& value, | |
8149 | const wxRect& rect, | |
8150 | int horizAlign, | |
d43851f7 JS |
8151 | int vertAlign, |
8152 | int textOrientation ) | |
f85afd4e | 8153 | { |
2d66e025 | 8154 | wxArrayString lines; |
ef5df12b | 8155 | |
2d66e025 | 8156 | StringToLines( value, lines ); |
ef5df12b | 8157 | |
ff72f628 | 8158 | DrawTextRectangle(dc, lines, rect, horizAlign, vertAlign, textOrientation); |
d10f4bf9 VZ |
8159 | } |
8160 | ||
4330c974 | 8161 | void wxGrid::DrawTextRectangle(wxDC& dc, |
038a5591 JS |
8162 | const wxArrayString& lines, |
8163 | const wxRect& rect, | |
8164 | int horizAlign, | |
8165 | int vertAlign, | |
4330c974 | 8166 | int textOrientation) |
d10f4bf9 | 8167 | { |
4330c974 VZ |
8168 | if ( lines.empty() ) |
8169 | return; | |
ef5df12b | 8170 | |
4330c974 | 8171 | wxDCClipper clip(dc, rect); |
ef5df12b | 8172 | |
4330c974 VZ |
8173 | long textWidth, |
8174 | textHeight; | |
ef5df12b | 8175 | |
4330c974 VZ |
8176 | if ( textOrientation == wxHORIZONTAL ) |
8177 | GetTextBoxSize( dc, lines, &textWidth, &textHeight ); | |
8178 | else | |
8179 | GetTextBoxSize( dc, lines, &textHeight, &textWidth ); | |
ef5df12b | 8180 | |
4330c974 VZ |
8181 | int x = 0, |
8182 | y = 0; | |
8183 | switch ( vertAlign ) | |
8184 | { | |
73145b0e | 8185 | case wxALIGN_BOTTOM: |
4db6714b | 8186 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 | 8187 | y = rect.y + (rect.height - textHeight - 1); |
d43851f7 | 8188 | else |
038a5591 JS |
8189 | x = rect.x + rect.width - textWidth; |
8190 | break; | |
ef5df12b | 8191 | |
73145b0e | 8192 | case wxALIGN_CENTRE: |
4db6714b | 8193 | if ( textOrientation == wxHORIZONTAL ) |
a9339fe2 | 8194 | y = rect.y + ((rect.height - textHeight) / 2); |
d43851f7 | 8195 | else |
a9339fe2 | 8196 | x = rect.x + ((rect.width - textWidth) / 2); |
038a5591 | 8197 | break; |
ef5df12b | 8198 | |
73145b0e JS |
8199 | case wxALIGN_TOP: |
8200 | default: | |
4db6714b | 8201 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 | 8202 | y = rect.y + 1; |
d43851f7 | 8203 | else |
038a5591 | 8204 | x = rect.x + 1; |
73145b0e | 8205 | break; |
4330c974 | 8206 | } |
ef5df12b | 8207 | |
4330c974 VZ |
8208 | // Align each line of a multi-line label |
8209 | size_t nLines = lines.GetCount(); | |
8210 | for ( size_t l = 0; l < nLines; l++ ) | |
8211 | { | |
8212 | const wxString& line = lines[l]; | |
ef5df12b | 8213 | |
9b7d3c09 VZ |
8214 | if ( line.empty() ) |
8215 | { | |
8216 | *(textOrientation == wxHORIZONTAL ? &y : &x) += dc.GetCharHeight(); | |
8217 | continue; | |
8218 | } | |
8219 | ||
ad2633bd | 8220 | wxCoord lineWidth = 0, |
c2b2c10e | 8221 | lineHeight = 0; |
4330c974 VZ |
8222 | dc.GetTextExtent(line, &lineWidth, &lineHeight); |
8223 | ||
8224 | switch ( horizAlign ) | |
8225 | { | |
038a5591 | 8226 | case wxALIGN_RIGHT: |
4db6714b | 8227 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 JS |
8228 | x = rect.x + (rect.width - lineWidth - 1); |
8229 | else | |
8230 | y = rect.y + lineWidth + 1; | |
8231 | break; | |
ef5df12b | 8232 | |
038a5591 | 8233 | case wxALIGN_CENTRE: |
4db6714b | 8234 | if ( textOrientation == wxHORIZONTAL ) |
2f024384 | 8235 | x = rect.x + ((rect.width - lineWidth) / 2); |
038a5591 | 8236 | else |
2f024384 | 8237 | y = rect.y + rect.height - ((rect.height - lineWidth) / 2); |
038a5591 | 8238 | break; |
ef5df12b | 8239 | |
038a5591 JS |
8240 | case wxALIGN_LEFT: |
8241 | default: | |
4db6714b | 8242 | if ( textOrientation == wxHORIZONTAL ) |
038a5591 JS |
8243 | x = rect.x + 1; |
8244 | else | |
8245 | y = rect.y + rect.height - 1; | |
8246 | break; | |
4330c974 | 8247 | } |
ef5df12b | 8248 | |
4330c974 VZ |
8249 | if ( textOrientation == wxHORIZONTAL ) |
8250 | { | |
8251 | dc.DrawText( line, x, y ); | |
8252 | y += lineHeight; | |
8253 | } | |
8254 | else | |
8255 | { | |
8256 | dc.DrawRotatedText( line, x, y, 90.0 ); | |
8257 | x += lineHeight; | |
038a5591 | 8258 | } |
f85afd4e | 8259 | } |
f85afd4e MB |
8260 | } |
8261 | ||
2f024384 DS |
8262 | // Split multi-line text up into an array of strings. |
8263 | // Any existing contents of the string array are preserved. | |
f85afd4e | 8264 | // |
696f3e9d | 8265 | // TODO: refactor wxTextFile::Read() and reuse the same code from here |
ef316e23 | 8266 | void wxGrid::StringToLines( const wxString& value, wxArrayString& lines ) const |
f85afd4e | 8267 | { |
f85afd4e MB |
8268 | int startPos = 0; |
8269 | int pos; | |
6d004f67 | 8270 | wxString eol = wxTextFile::GetEOL( wxTextFileType_Unix ); |
2433bb2e | 8271 | wxString tVal = wxTextFile::Translate( value, wxTextFileType_Unix ); |
e2b42eeb | 8272 | |
faa94f3e | 8273 | while ( startPos < (int)tVal.length() ) |
f85afd4e | 8274 | { |
2433bb2e | 8275 | pos = tVal.Mid(startPos).Find( eol ); |
f85afd4e MB |
8276 | if ( pos < 0 ) |
8277 | { | |
8278 | break; | |
8279 | } | |
8280 | else if ( pos == 0 ) | |
8281 | { | |
8282 | lines.Add( wxEmptyString ); | |
8283 | } | |
8284 | else | |
8285 | { | |
696f3e9d | 8286 | lines.Add( tVal.Mid(startPos, pos) ); |
f85afd4e | 8287 | } |
a9339fe2 | 8288 | |
4db6714b | 8289 | startPos += pos + 1; |
f85afd4e | 8290 | } |
4db6714b | 8291 | |
2eafd712 | 8292 | if ( startPos < (int)tVal.length() ) |
f85afd4e | 8293 | { |
696f3e9d | 8294 | lines.Add( tVal.Mid( startPos ) ); |
f85afd4e MB |
8295 | } |
8296 | } | |
8297 | ||
fbfb8bcc | 8298 | void wxGrid::GetTextBoxSize( const wxDC& dc, |
d10f4bf9 | 8299 | const wxArrayString& lines, |
ef316e23 | 8300 | long *width, long *height ) const |
f85afd4e | 8301 | { |
ad2633bd RR |
8302 | wxCoord w = 0; |
8303 | wxCoord h = 0; | |
8304 | wxCoord lineW = 0, lineH = 0; | |
f85afd4e | 8305 | |
b540eb2b | 8306 | size_t i; |
56b6cf26 | 8307 | for ( i = 0; i < lines.GetCount(); i++ ) |
f85afd4e MB |
8308 | { |
8309 | dc.GetTextExtent( lines[i], &lineW, &lineH ); | |
8310 | w = wxMax( w, lineW ); | |
8311 | h += lineH; | |
8312 | } | |
8313 | ||
8314 | *width = w; | |
8315 | *height = h; | |
8316 | } | |
8317 | ||
f6bcfd97 BP |
8318 | // |
8319 | // ------ Batch processing. | |
8320 | // | |
8321 | void wxGrid::EndBatch() | |
8322 | { | |
8323 | if ( m_batchCount > 0 ) | |
8324 | { | |
8325 | m_batchCount--; | |
8326 | if ( !m_batchCount ) | |
8327 | { | |
8328 | CalcDimensions(); | |
8329 | m_rowLabelWin->Refresh(); | |
8330 | m_colLabelWin->Refresh(); | |
8331 | m_cornerLabelWin->Refresh(); | |
8332 | m_gridWin->Refresh(); | |
8333 | } | |
8334 | } | |
8335 | } | |
f85afd4e | 8336 | |
d8232393 MB |
8337 | // Use this, rather than wxWindow::Refresh(), to force an immediate |
8338 | // repainting of the grid. Has no effect if you are already inside a | |
8339 | // BeginBatch / EndBatch block. | |
8340 | // | |
8341 | void wxGrid::ForceRefresh() | |
8342 | { | |
8343 | BeginBatch(); | |
8344 | EndBatch(); | |
8345 | } | |
8346 | ||
bf646121 VZ |
8347 | bool wxGrid::Enable(bool enable) |
8348 | { | |
8349 | if ( !wxScrolledWindow::Enable(enable) ) | |
8350 | return false; | |
8351 | ||
8352 | // redraw in the new state | |
8353 | m_gridWin->Refresh(); | |
8354 | ||
8355 | return true; | |
8356 | } | |
d8232393 | 8357 | |
f85afd4e | 8358 | // |
2d66e025 | 8359 | // ------ Edit control functions |
f85afd4e MB |
8360 | // |
8361 | ||
2d66e025 | 8362 | void wxGrid::EnableEditing( bool edit ) |
f85afd4e | 8363 | { |
2d66e025 | 8364 | if ( edit != m_editable ) |
f85afd4e | 8365 | { |
4db6714b KH |
8366 | if (!edit) |
8367 | EnableCellEditControl(edit); | |
2d66e025 | 8368 | m_editable = edit; |
f85afd4e | 8369 | } |
f85afd4e MB |
8370 | } |
8371 | ||
2d66e025 | 8372 | void wxGrid::EnableCellEditControl( bool enable ) |
f85afd4e | 8373 | { |
2c9a89e0 RD |
8374 | if (! m_editable) |
8375 | return; | |
8376 | ||
2c9a89e0 RD |
8377 | if ( enable != m_cellEditCtrlEnabled ) |
8378 | { | |
dcfe4c3d | 8379 | if ( enable ) |
f85afd4e | 8380 | { |
8a3e536c | 8381 | if ( SendEvent(wxEVT_GRID_EDITOR_SHOWN) == -1 ) |
97a9929e | 8382 | return; |
fe7b9ed6 | 8383 | |
97a9929e | 8384 | // this should be checked by the caller! |
a9339fe2 | 8385 | wxASSERT_MSG( CanEnableCellControl(), _T("can't enable editing for this cell!") ); |
b54ba671 VZ |
8386 | |
8387 | // do it before ShowCellEditControl() | |
dcfe4c3d | 8388 | m_cellEditCtrlEnabled = enable; |
b54ba671 | 8389 | |
2d66e025 | 8390 | ShowCellEditControl(); |
2d66e025 MB |
8391 | } |
8392 | else | |
8393 | { | |
97a9929e | 8394 | //FIXME:add veto support |
8a3e536c | 8395 | SendEvent(wxEVT_GRID_EDITOR_HIDDEN); |
fe7b9ed6 | 8396 | |
97a9929e | 8397 | HideCellEditControl(); |
2d66e025 | 8398 | SaveEditControlValue(); |
b54ba671 VZ |
8399 | |
8400 | // do it after HideCellEditControl() | |
dcfe4c3d | 8401 | m_cellEditCtrlEnabled = enable; |
f85afd4e | 8402 | } |
f85afd4e | 8403 | } |
f85afd4e | 8404 | } |
f85afd4e | 8405 | |
b54ba671 | 8406 | bool wxGrid::IsCurrentCellReadOnly() const |
283b7808 | 8407 | { |
b54ba671 VZ |
8408 | // const_cast |
8409 | wxGridCellAttr* attr = ((wxGrid *)this)->GetCellAttr(m_currentCellCoords); | |
8410 | bool readonly = attr->IsReadOnly(); | |
8411 | attr->DecRef(); | |
283b7808 | 8412 | |
b54ba671 VZ |
8413 | return readonly; |
8414 | } | |
283b7808 | 8415 | |
b54ba671 VZ |
8416 | bool wxGrid::CanEnableCellControl() const |
8417 | { | |
20c84410 SN |
8418 | return m_editable && (m_currentCellCoords != wxGridNoCellCoords) && |
8419 | !IsCurrentCellReadOnly(); | |
b54ba671 VZ |
8420 | } |
8421 | ||
8422 | bool wxGrid::IsCellEditControlEnabled() const | |
8423 | { | |
8424 | // the cell edit control might be disable for all cells or just for the | |
8425 | // current one if it's read only | |
ca65c044 | 8426 | return m_cellEditCtrlEnabled ? !IsCurrentCellReadOnly() : false; |
283b7808 VZ |
8427 | } |
8428 | ||
f6bcfd97 BP |
8429 | bool wxGrid::IsCellEditControlShown() const |
8430 | { | |
ca65c044 | 8431 | bool isShown = false; |
f6bcfd97 BP |
8432 | |
8433 | if ( m_cellEditCtrlEnabled ) | |
8434 | { | |
8435 | int row = m_currentCellCoords.GetRow(); | |
8436 | int col = m_currentCellCoords.GetCol(); | |
8437 | wxGridCellAttr* attr = GetCellAttr(row, col); | |
8438 | wxGridCellEditor* editor = attr->GetEditor((wxGrid*) this, row, col); | |
8439 | attr->DecRef(); | |
8440 | ||
8441 | if ( editor ) | |
8442 | { | |
8443 | if ( editor->IsCreated() ) | |
8444 | { | |
8445 | isShown = editor->GetControl()->IsShown(); | |
8446 | } | |
8447 | ||
8448 | editor->DecRef(); | |
8449 | } | |
8450 | } | |
8451 | ||
8452 | return isShown; | |
8453 | } | |
8454 | ||
2d66e025 | 8455 | void wxGrid::ShowCellEditControl() |
f85afd4e | 8456 | { |
2d66e025 | 8457 | if ( IsCellEditControlEnabled() ) |
f85afd4e | 8458 | { |
7db713ae | 8459 | if ( !IsVisible( m_currentCellCoords, false ) ) |
2d66e025 | 8460 | { |
ca65c044 | 8461 | m_cellEditCtrlEnabled = false; |
2d66e025 MB |
8462 | return; |
8463 | } | |
8464 | else | |
8465 | { | |
2c9a89e0 RD |
8466 | wxRect rect = CellToRect( m_currentCellCoords ); |
8467 | int row = m_currentCellCoords.GetRow(); | |
8468 | int col = m_currentCellCoords.GetCol(); | |
2d66e025 | 8469 | |
27f35b66 SN |
8470 | // if this is part of a multicell, find owner (topleft) |
8471 | int cell_rows, cell_cols; | |
8472 | GetCellSize( row, col, &cell_rows, &cell_cols ); | |
8473 | if ( cell_rows <= 0 || cell_cols <= 0 ) | |
8474 | { | |
8475 | row += cell_rows; | |
8476 | col += cell_cols; | |
8477 | m_currentCellCoords.SetRow( row ); | |
8478 | m_currentCellCoords.SetCol( col ); | |
8479 | } | |
8480 | ||
99306db2 VZ |
8481 | // erase the highlight and the cell contents because the editor |
8482 | // might not cover the entire cell | |
8483 | wxClientDC dc( m_gridWin ); | |
8484 | PrepareDC( dc ); | |
2c03d771 | 8485 | wxGridCellAttr* attr = GetCellAttr(row, col); |
ff72f628 | 8486 | dc.SetBrush(wxBrush(attr->GetBackgroundColour())); |
99306db2 VZ |
8487 | dc.SetPen(*wxTRANSPARENT_PEN); |
8488 | dc.DrawRectangle(rect); | |
d2fdd8d2 | 8489 | |
6f706ee0 VZ |
8490 | // convert to scrolled coords |
8491 | CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); | |
8492 | ||
8493 | int nXMove = 0; | |
8494 | if (rect.x < 0) | |
8495 | nXMove = rect.x; | |
8496 | ||
99306db2 | 8497 | // cell is shifted by one pixel |
68c5a31c | 8498 | // However, don't allow x or y to become negative |
70e8d961 | 8499 | // since the SetSize() method interprets that as |
68c5a31c SN |
8500 | // "don't change." |
8501 | if (rect.x > 0) | |
8502 | rect.x--; | |
8503 | if (rect.y > 0) | |
8504 | rect.y--; | |
f0102d2a | 8505 | |
28a77bc4 | 8506 | wxGridCellEditor* editor = attr->GetEditor(this, row, col); |
3da93aae VZ |
8507 | if ( !editor->IsCreated() ) |
8508 | { | |
ca65c044 | 8509 | editor->Create(m_gridWin, wxID_ANY, |
2c9a89e0 | 8510 | new wxGridCellEditorEvtHandler(this, editor)); |
bf7945ce RD |
8511 | |
8512 | wxGridEditorCreatedEvent evt(GetId(), | |
8513 | wxEVT_GRID_EDITOR_CREATED, | |
8514 | this, | |
8515 | row, | |
8516 | col, | |
8517 | editor->GetControl()); | |
8518 | GetEventHandler()->ProcessEvent(evt); | |
2d66e025 MB |
8519 | } |
8520 | ||
27f35b66 | 8521 | // resize editor to overflow into righthand cells if allowed |
39b80349 | 8522 | int maxWidth = rect.width; |
27f35b66 SN |
8523 | wxString value = GetCellValue(row, col); |
8524 | if ( (value != wxEmptyString) && (attr->GetOverflow()) ) | |
8525 | { | |
39b80349 | 8526 | int y; |
2f024384 DS |
8527 | GetTextExtent(value, &maxWidth, &y, NULL, NULL, &attr->GetFont()); |
8528 | if (maxWidth < rect.width) | |
8529 | maxWidth = rect.width; | |
39b80349 | 8530 | } |
4db6714b | 8531 | |
39b80349 | 8532 | int client_right = m_gridWin->GetClientSize().GetWidth(); |
2f024384 | 8533 | if (rect.x + maxWidth > client_right) |
2b5f62a0 | 8534 | maxWidth = client_right - rect.x; |
39b80349 | 8535 | |
2b5f62a0 VZ |
8536 | if ((maxWidth > rect.width) && (col < m_numCols) && m_table) |
8537 | { | |
39b80349 | 8538 | GetCellSize( row, col, &cell_rows, &cell_cols ); |
2b5f62a0 | 8539 | // may have changed earlier |
2f024384 | 8540 | for (int i = col + cell_cols; i < m_numCols; i++) |
2b5f62a0 | 8541 | { |
39b80349 SN |
8542 | int c_rows, c_cols; |
8543 | GetCellSize( row, i, &c_rows, &c_cols ); | |
2f024384 | 8544 | |
2b5f62a0 | 8545 | // looks weird going over a multicell |
bee19958 | 8546 | if (m_table->IsEmptyCell( row, i ) && |
2b5f62a0 | 8547 | (rect.width < maxWidth) && (c_rows == 1)) |
2f024384 | 8548 | { |
bee19958 | 8549 | rect.width += GetColWidth( i ); |
2f024384 | 8550 | } |
2b5f62a0 VZ |
8551 | else |
8552 | break; | |
8553 | } | |
4db6714b | 8554 | |
39b80349 | 8555 | if (rect.GetRight() > client_right) |
bee19958 | 8556 | rect.SetRight( client_right - 1 ); |
27f35b66 | 8557 | } |
76c66f19 | 8558 | |
bee19958 | 8559 | editor->SetCellAttr( attr ); |
2c9a89e0 | 8560 | editor->SetSize( rect ); |
e1a66d9a RD |
8561 | if (nXMove != 0) |
8562 | editor->GetControl()->Move( | |
8563 | editor->GetControl()->GetPosition().x + nXMove, | |
8564 | editor->GetControl()->GetPosition().y ); | |
ca65c044 | 8565 | editor->Show( true, attr ); |
04418332 VZ |
8566 | |
8567 | // recalc dimensions in case we need to | |
8568 | // expand the scrolled window to account for editor | |
73145b0e | 8569 | CalcDimensions(); |
99306db2 | 8570 | |
3da93aae | 8571 | editor->BeginEdit(row, col, this); |
1bd71df9 | 8572 | editor->SetCellAttr(NULL); |
0b190b0f VZ |
8573 | |
8574 | editor->DecRef(); | |
2c9a89e0 | 8575 | attr->DecRef(); |
2b5f62a0 | 8576 | } |
f85afd4e MB |
8577 | } |
8578 | } | |
8579 | ||
2d66e025 | 8580 | void wxGrid::HideCellEditControl() |
f85afd4e | 8581 | { |
2d66e025 | 8582 | if ( IsCellEditControlEnabled() ) |
f85afd4e | 8583 | { |
2c9a89e0 RD |
8584 | int row = m_currentCellCoords.GetRow(); |
8585 | int col = m_currentCellCoords.GetCol(); | |
8586 | ||
bee19958 | 8587 | wxGridCellAttr *attr = GetCellAttr(row, col); |
0b190b0f | 8588 | wxGridCellEditor *editor = attr->GetEditor(this, row, col); |
7d277ac0 | 8589 | const bool editorHadFocus = editor->GetControl()->HasFocus(); |
ca65c044 | 8590 | editor->Show( false ); |
0b190b0f | 8591 | editor->DecRef(); |
2c9a89e0 | 8592 | attr->DecRef(); |
2fb3e528 | 8593 | |
7d277ac0 VZ |
8594 | // return the focus to the grid itself if the editor had it |
8595 | // | |
8596 | // note that we must not do this unconditionally to avoid stealing | |
8597 | // focus from the window which just received it if we are hiding the | |
8598 | // editor precisely because we lost focus | |
8599 | if ( editorHadFocus ) | |
8600 | m_gridWin->SetFocus(); | |
2fb3e528 | 8601 | |
27f35b66 SN |
8602 | // refresh whole row to the right |
8603 | wxRect rect( CellToRect(row, col) ); | |
8604 | CalcScrolledPosition(rect.x, rect.y, &rect.x, &rect.y ); | |
8605 | rect.width = m_gridWin->GetClientSize().GetWidth() - rect.x; | |
2f024384 | 8606 | |
7d75e6c6 RD |
8607 | #ifdef __WXMAC__ |
8608 | // ensure that the pixels under the focus ring get refreshed as well | |
4db6714b | 8609 | rect.Inflate(10, 10); |
7d75e6c6 | 8610 | #endif |
2f024384 | 8611 | |
ca65c044 | 8612 | m_gridWin->Refresh( false, &rect ); |
f85afd4e | 8613 | } |
2d66e025 | 8614 | } |
8f177c8e | 8615 | |
2d66e025 MB |
8616 | void wxGrid::SaveEditControlValue() |
8617 | { | |
3da93aae VZ |
8618 | if ( IsCellEditControlEnabled() ) |
8619 | { | |
2c9a89e0 RD |
8620 | int row = m_currentCellCoords.GetRow(); |
8621 | int col = m_currentCellCoords.GetCol(); | |
8f177c8e | 8622 | |
4db6714b | 8623 | wxString oldval = GetCellValue(row, col); |
fe7b9ed6 | 8624 | |
3da93aae | 8625 | wxGridCellAttr* attr = GetCellAttr(row, col); |
28a77bc4 | 8626 | wxGridCellEditor* editor = attr->GetEditor(this, row, col); |
3324d5f5 | 8627 | bool changed = editor->EndEdit(row, col, this); |
2d66e025 | 8628 | |
0b190b0f | 8629 | editor->DecRef(); |
2c9a89e0 | 8630 | attr->DecRef(); |
2d66e025 | 8631 | |
3da93aae VZ |
8632 | if (changed) |
8633 | { | |
8a3e536c | 8634 | if ( SendEvent(wxEVT_GRID_CELL_CHANGE) == -1 ) |
4db6714b | 8635 | { |
97a9929e | 8636 | // Event has been vetoed, set the data back. |
4db6714b | 8637 | SetCellValue(row, col, oldval); |
97a9929e | 8638 | } |
2d66e025 | 8639 | } |
f85afd4e MB |
8640 | } |
8641 | } | |
8642 | ||
2d66e025 | 8643 | // |
60ff3b99 VZ |
8644 | // ------ Grid location functions |
8645 | // Note that all of these functions work with the logical coordinates of | |
2d66e025 MB |
8646 | // grid cells and labels so you will need to convert from device |
8647 | // coordinates for mouse events etc. | |
8648 | // | |
8649 | ||
8a3e536c | 8650 | wxGridCellCoords wxGrid::XYToCell(int x, int y) const |
f85afd4e | 8651 | { |
58dd5b3b MB |
8652 | int row = YToRow(y); |
8653 | int col = XToCol(x); | |
8654 | ||
8a3e536c VZ |
8655 | return row == -1 || col == -1 ? wxGridNoCellCoords |
8656 | : wxGridCellCoords(row, col); | |
2d66e025 | 8657 | } |
f85afd4e | 8658 | |
bec70262 VZ |
8659 | // compute row or column from some (unscrolled) coordinate value, using either |
8660 | // m_defaultRowHeight/m_defaultColWidth or binary search on array of | |
8661 | // m_rowBottoms/m_colRights to do it quickly (linear search shouldn't be used | |
8662 | // for large grids) | |
8663 | int | |
8664 | wxGrid::PosToLine(int coord, | |
8665 | bool clipToMinMax, | |
8666 | const wxGridOperations& oper) const | |
2d66e025 | 8667 | { |
bec70262 | 8668 | const int numLines = oper.GetNumberOfLines(this); |
a967f048 | 8669 | |
bec70262 VZ |
8670 | if ( coord < 0 ) |
8671 | return clipToMinMax && numLines > 0 ? oper.GetLineAt(this, 0) : -1; | |
a967f048 | 8672 | |
bec70262 VZ |
8673 | const int defaultLineSize = oper.GetDefaultLineSize(this); |
8674 | wxCHECK_MSG( defaultLineSize, -1, "can't have 0 default line size" ); | |
d57ad377 | 8675 | |
bec70262 VZ |
8676 | int maxPos = coord / defaultLineSize, |
8677 | minPos = 0; | |
8f177c8e | 8678 | |
bec70262 VZ |
8679 | // check for the simplest case: if we have no explicit line sizes |
8680 | // configured, then we already know the line this position falls in | |
8681 | const wxArrayInt& lineEnds = oper.GetLineEnds(this); | |
8682 | if ( lineEnds.empty() ) | |
f85afd4e | 8683 | { |
bec70262 VZ |
8684 | if ( maxPos < numLines ) |
8685 | return maxPos; | |
4db6714b | 8686 | |
bec70262 | 8687 | return clipToMinMax ? numLines - 1 : -1; |
f85afd4e | 8688 | } |
4db6714b | 8689 | |
2d66e025 | 8690 | |
bec70262 VZ |
8691 | // adjust maxPos before starting the binary search |
8692 | if ( maxPos >= numLines ) | |
b1da8107 | 8693 | { |
bec70262 | 8694 | maxPos = numLines - 1; |
b1da8107 | 8695 | } |
d4175745 VZ |
8696 | else |
8697 | { | |
bec70262 | 8698 | if ( coord >= lineEnds[oper.GetLineAt(this, maxPos)]) |
d4175745 VZ |
8699 | { |
8700 | minPos = maxPos; | |
bec70262 VZ |
8701 | const int minDist = oper.GetMinimalAcceptableLineSize(this); |
8702 | if ( minDist ) | |
8703 | maxPos = coord / minDist; | |
d4175745 | 8704 | else |
bec70262 | 8705 | maxPos = numLines - 1; |
d4175745 | 8706 | } |
bec70262 VZ |
8707 | |
8708 | if ( maxPos >= numLines ) | |
8709 | maxPos = numLines - 1; | |
d4175745 VZ |
8710 | } |
8711 | ||
bec70262 VZ |
8712 | // check if the position is beyond the last column |
8713 | const int lineAtMaxPos = oper.GetLineAt(this, maxPos); | |
8714 | if ( coord >= lineEnds[lineAtMaxPos] ) | |
8715 | return clipToMinMax ? lineAtMaxPos : -1; | |
d4175745 | 8716 | |
bec70262 VZ |
8717 | // or before the first one |
8718 | const int lineAt0 = oper.GetLineAt(this, 0); | |
8719 | if ( coord < lineEnds[lineAt0] ) | |
8720 | return lineAt0; | |
d4175745 | 8721 | |
bec70262 VZ |
8722 | |
8723 | // finally do perform the binary search | |
8724 | while ( minPos < maxPos ) | |
d4175745 | 8725 | { |
bec70262 VZ |
8726 | wxCHECK_MSG( lineEnds[oper.GetLineAt(this, minPos)] <= coord && |
8727 | coord < lineEnds[oper.GetLineAt(this, maxPos)], | |
8728 | -1, | |
8729 | "wxGrid: internal error in PosToLine()" ); | |
d4175745 | 8730 | |
bec70262 VZ |
8731 | if ( coord >= lineEnds[oper.GetLineAt(this, maxPos - 1)] ) |
8732 | return oper.GetLineAt(this, maxPos); | |
d4175745 VZ |
8733 | else |
8734 | maxPos--; | |
bec70262 VZ |
8735 | |
8736 | const int median = minPos + (maxPos - minPos + 1) / 2; | |
8737 | if ( coord < lineEnds[oper.GetLineAt(this, median)] ) | |
d4175745 VZ |
8738 | maxPos = median; |
8739 | else | |
8740 | minPos = median; | |
8741 | } | |
bec70262 VZ |
8742 | |
8743 | return oper.GetLineAt(this, maxPos); | |
8744 | } | |
8745 | ||
8746 | int wxGrid::YToRow(int y, bool clipToMinMax) const | |
8747 | { | |
8748 | return PosToLine(y, clipToMinMax, wxGridRowOperations()); | |
8749 | } | |
8750 | ||
8751 | int wxGrid::XToCol(int x, bool clipToMinMax) const | |
8752 | { | |
8753 | return PosToLine(x, clipToMinMax, wxGridColumnOperations()); | |
2d66e025 | 8754 | } |
8f177c8e | 8755 | |
10a4531d VZ |
8756 | // return the row number that that the y coord is near the edge of, or -1 if |
8757 | // not near an edge. | |
8758 | // | |
be2e4015 SN |
8759 | // coords can only possibly be near an edge if |
8760 | // (a) the row/column is large enough to still allow for an "inner" area | |
10a4531d | 8761 | // that is _not_ near the edge (i.e., if the height/width is smaller |
be2e4015 SN |
8762 | // than WXGRID_LABEL_EDGE_ZONE, coords are _never_ considered to be |
8763 | // near the edge). | |
8764 | // and | |
8765 | // (b) resizing rows/columns (the thing for which edge detection is | |
8766 | // relevant at all) is enabled. | |
2d66e025 | 8767 | // |
10a4531d | 8768 | int wxGrid::PosToEdgeOfLine(int pos, const wxGridOperations& oper) const |
2d66e025 | 8769 | { |
10a4531d VZ |
8770 | if ( !oper.CanResizeLines(this) ) |
8771 | return -1; | |
33188aa4 | 8772 | |
10a4531d VZ |
8773 | const int line = oper.PosToLine(this, pos, true); |
8774 | ||
8775 | if ( oper.GetLineSize(this, line) > WXGRID_LABEL_EDGE_ZONE ) | |
2d66e025 | 8776 | { |
10a4531d VZ |
8777 | // We know that we are in this line, test whether we are close enough |
8778 | // to start or end border, respectively. | |
8779 | if ( abs(oper.GetLineEndPos(this, line) - pos) < WXGRID_LABEL_EDGE_ZONE ) | |
8780 | return line; | |
8781 | else if ( line > 0 && | |
8782 | pos - oper.GetLineStartPos(this, | |
8783 | line) < WXGRID_LABEL_EDGE_ZONE ) | |
8784 | return line - 1; | |
f85afd4e | 8785 | } |
2d66e025 MB |
8786 | |
8787 | return -1; | |
8788 | } | |
8789 | ||
10a4531d | 8790 | int wxGrid::YToEdgeOfRow(int y) const |
2d66e025 | 8791 | { |
10a4531d VZ |
8792 | return PosToEdgeOfLine(y, wxGridRowOperations()); |
8793 | } | |
2d66e025 | 8794 | |
10a4531d VZ |
8795 | int wxGrid::XToEdgeOfCol(int x) const |
8796 | { | |
8797 | return PosToEdgeOfLine(x, wxGridColumnOperations()); | |
f85afd4e MB |
8798 | } |
8799 | ||
ef316e23 | 8800 | wxRect wxGrid::CellToRect( int row, int col ) const |
f85afd4e | 8801 | { |
2d66e025 | 8802 | wxRect rect( -1, -1, -1, -1 ); |
f85afd4e | 8803 | |
2f024384 DS |
8804 | if ( row >= 0 && row < m_numRows && |
8805 | col >= 0 && col < m_numCols ) | |
f85afd4e | 8806 | { |
27f35b66 SN |
8807 | int i, cell_rows, cell_cols; |
8808 | rect.width = rect.height = 0; | |
8809 | GetCellSize( row, col, &cell_rows, &cell_cols ); | |
8810 | // if negative then find multicell owner | |
2f024384 DS |
8811 | if (cell_rows < 0) |
8812 | row += cell_rows; | |
8813 | if (cell_cols < 0) | |
8814 | col += cell_cols; | |
27f35b66 SN |
8815 | GetCellSize( row, col, &cell_rows, &cell_cols ); |
8816 | ||
7c1cb261 VZ |
8817 | rect.x = GetColLeft(col); |
8818 | rect.y = GetRowTop(row); | |
2f024384 DS |
8819 | for (i=col; i < col + cell_cols; i++) |
8820 | rect.width += GetColWidth(i); | |
8821 | for (i=row; i < row + cell_rows; i++) | |
27f35b66 | 8822 | rect.height += GetRowHeight(i); |
f85afd4e MB |
8823 | } |
8824 | ||
f6bcfd97 | 8825 | // if grid lines are enabled, then the area of the cell is a bit smaller |
4db6714b KH |
8826 | if (m_gridLinesEnabled) |
8827 | { | |
f6bcfd97 BP |
8828 | rect.width -= 1; |
8829 | rect.height -= 1; | |
8830 | } | |
4db6714b | 8831 | |
2d66e025 MB |
8832 | return rect; |
8833 | } | |
8834 | ||
ef316e23 | 8835 | bool wxGrid::IsVisible( int row, int col, bool wholeCellVisible ) const |
2d66e025 MB |
8836 | { |
8837 | // get the cell rectangle in logical coords | |
8838 | // | |
8839 | wxRect r( CellToRect( row, col ) ); | |
60ff3b99 | 8840 | |
2d66e025 MB |
8841 | // convert to device coords |
8842 | // | |
8843 | int left, top, right, bottom; | |
8844 | CalcScrolledPosition( r.GetLeft(), r.GetTop(), &left, &top ); | |
8845 | CalcScrolledPosition( r.GetRight(), r.GetBottom(), &right, &bottom ); | |
60ff3b99 | 8846 | |
2d66e025 | 8847 | // check against the client area of the grid window |
2d66e025 MB |
8848 | int cw, ch; |
8849 | m_gridWin->GetClientSize( &cw, &ch ); | |
60ff3b99 | 8850 | |
2d66e025 | 8851 | if ( wholeCellVisible ) |
f85afd4e | 8852 | { |
2d66e025 | 8853 | // is the cell wholly visible ? |
2f024384 DS |
8854 | return ( left >= 0 && right <= cw && |
8855 | top >= 0 && bottom <= ch ); | |
2d66e025 MB |
8856 | } |
8857 | else | |
8858 | { | |
8859 | // is the cell partly visible ? | |
8860 | // | |
2f024384 DS |
8861 | return ( ((left >= 0 && left < cw) || (right > 0 && right <= cw)) && |
8862 | ((top >= 0 && top < ch) || (bottom > 0 && bottom <= ch)) ); | |
2d66e025 MB |
8863 | } |
8864 | } | |
8865 | ||
2d66e025 MB |
8866 | // make the specified cell location visible by doing a minimal amount |
8867 | // of scrolling | |
8868 | // | |
8869 | void wxGrid::MakeCellVisible( int row, int col ) | |
8870 | { | |
8871 | int i; | |
60ff3b99 | 8872 | int xpos = -1, ypos = -1; |
2d66e025 | 8873 | |
2f024384 DS |
8874 | if ( row >= 0 && row < m_numRows && |
8875 | col >= 0 && col < m_numCols ) | |
2d66e025 MB |
8876 | { |
8877 | // get the cell rectangle in logical coords | |
2d66e025 | 8878 | wxRect r( CellToRect( row, col ) ); |
60ff3b99 | 8879 | |
2d66e025 | 8880 | // convert to device coords |
2d66e025 MB |
8881 | int left, top, right, bottom; |
8882 | CalcScrolledPosition( r.GetLeft(), r.GetTop(), &left, &top ); | |
8883 | CalcScrolledPosition( r.GetRight(), r.GetBottom(), &right, &bottom ); | |
60ff3b99 | 8884 | |
2d66e025 MB |
8885 | int cw, ch; |
8886 | m_gridWin->GetClientSize( &cw, &ch ); | |
60ff3b99 | 8887 | |
2d66e025 | 8888 | if ( top < 0 ) |
3f296516 | 8889 | { |
2d66e025 | 8890 | ypos = r.GetTop(); |
3f296516 | 8891 | } |
2d66e025 MB |
8892 | else if ( bottom > ch ) |
8893 | { | |
8894 | int h = r.GetHeight(); | |
8895 | ypos = r.GetTop(); | |
56b6cf26 | 8896 | for ( i = row - 1; i >= 0; i-- ) |
2d66e025 | 8897 | { |
7c1cb261 VZ |
8898 | int rowHeight = GetRowHeight(i); |
8899 | if ( h + rowHeight > ch ) | |
8900 | break; | |
2d66e025 | 8901 | |
7c1cb261 VZ |
8902 | h += rowHeight; |
8903 | ypos -= rowHeight; | |
2d66e025 | 8904 | } |
f0102d2a VZ |
8905 | |
8906 | // we divide it later by GRID_SCROLL_LINE, make sure that we don't | |
56b6cf26 DS |
8907 | // have rounding errors (this is important, because if we do, |
8908 | // we might not scroll at all and some cells won't be redrawn) | |
275c4ae4 | 8909 | // |
56b6cf26 DS |
8910 | // Sometimes GRID_SCROLL_LINE / 2 is not enough, |
8911 | // so just add a full scroll unit... | |
675a9c0d | 8912 | ypos += m_scrollLineY; |
2d66e025 MB |
8913 | } |
8914 | ||
7db713ae | 8915 | // special handling for wide cells - show always left part of the cell! |
faa94f3e | 8916 | // Otherwise, e.g. when stepping from row to row, it would jump between |
7db713ae JS |
8917 | // left and right part of the cell on every step! |
8918 | // if ( left < 0 ) | |
ccdee36f | 8919 | if ( left < 0 || (right - left) >= cw ) |
2d66e025 MB |
8920 | { |
8921 | xpos = r.GetLeft(); | |
8922 | } | |
8923 | else if ( right > cw ) | |
8924 | { | |
73145b0e JS |
8925 | // position the view so that the cell is on the right |
8926 | int x0, y0; | |
8927 | CalcUnscrolledPosition(0, 0, &x0, &y0); | |
8928 | xpos = x0 + (right - cw); | |
f0102d2a VZ |
8929 | |
8930 | // see comment for ypos above | |
675a9c0d | 8931 | xpos += m_scrollLineX; |
2d66e025 MB |
8932 | } |
8933 | ||
ccdee36f | 8934 | if ( xpos != -1 || ypos != -1 ) |
2d66e025 | 8935 | { |
97a9929e | 8936 | if ( xpos != -1 ) |
675a9c0d | 8937 | xpos /= m_scrollLineX; |
97a9929e | 8938 | if ( ypos != -1 ) |
675a9c0d | 8939 | ypos /= m_scrollLineY; |
2d66e025 MB |
8940 | Scroll( xpos, ypos ); |
8941 | AdjustScrollbars(); | |
8942 | } | |
8943 | } | |
8944 | } | |
8945 | ||
2d66e025 MB |
8946 | // |
8947 | // ------ Grid cursor movement functions | |
8948 | // | |
8949 | ||
10a4531d VZ |
8950 | bool |
8951 | wxGrid::DoMoveCursor(bool expandSelection, | |
8952 | const wxGridDirectionOperations& diroper) | |
2d66e025 | 8953 | { |
10a4531d VZ |
8954 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
8955 | return false; | |
8956 | ||
8957 | if ( expandSelection ) | |
2d66e025 | 8958 | { |
8a3e536c VZ |
8959 | wxGridCellCoords coords = m_selectedBlockCorner; |
8960 | if ( coords == wxGridNoCellCoords ) | |
8961 | coords = m_currentCellCoords; | |
4db6714b | 8962 | |
8a3e536c | 8963 | if ( diroper.IsAtBoundary(coords) ) |
10a4531d | 8964 | return false; |
2d66e025 | 8965 | |
8a3e536c | 8966 | diroper.Advance(coords); |
2d66e025 | 8967 | |
8a3e536c | 8968 | UpdateBlockBeingSelected(m_currentCellCoords, coords); |
10a4531d | 8969 | } |
8a3e536c | 8970 | else // don't expand selection |
f85afd4e | 8971 | { |
8a3e536c VZ |
8972 | ClearSelection(); |
8973 | ||
10a4531d | 8974 | if ( diroper.IsAtBoundary(m_currentCellCoords) ) |
ca65c044 | 8975 | return false; |
4db6714b | 8976 | |
10a4531d VZ |
8977 | wxGridCellCoords coords = m_currentCellCoords; |
8978 | diroper.Advance(coords); | |
8a3e536c VZ |
8979 | |
8980 | GoToCell(coords); | |
f85afd4e | 8981 | } |
2d66e025 | 8982 | |
10a4531d | 8983 | return true; |
f85afd4e MB |
8984 | } |
8985 | ||
10a4531d | 8986 | bool wxGrid::MoveCursorUp(bool expandSelection) |
f85afd4e | 8987 | { |
10a4531d VZ |
8988 | return DoMoveCursor(expandSelection, |
8989 | wxGridBackwardOperations(this, wxGridRowOperations())); | |
2d66e025 MB |
8990 | } |
8991 | ||
10a4531d | 8992 | bool wxGrid::MoveCursorDown(bool expandSelection) |
2d66e025 | 8993 | { |
10a4531d VZ |
8994 | return DoMoveCursor(expandSelection, |
8995 | wxGridForwardOperations(this, wxGridRowOperations())); | |
8996 | } | |
4db6714b | 8997 | |
10a4531d VZ |
8998 | bool wxGrid::MoveCursorLeft(bool expandSelection) |
8999 | { | |
9000 | return DoMoveCursor(expandSelection, | |
9001 | wxGridBackwardOperations(this, wxGridColumnOperations())); | |
9002 | } | |
8f177c8e | 9003 | |
10a4531d VZ |
9004 | bool wxGrid::MoveCursorRight(bool expandSelection) |
9005 | { | |
9006 | return DoMoveCursor(expandSelection, | |
9007 | wxGridForwardOperations(this, wxGridColumnOperations())); | |
2d66e025 MB |
9008 | } |
9009 | ||
10a4531d | 9010 | bool wxGrid::DoMoveCursorByPage(const wxGridDirectionOperations& diroper) |
2d66e025 | 9011 | { |
4db6714b KH |
9012 | if ( m_currentCellCoords == wxGridNoCellCoords ) |
9013 | return false; | |
60ff3b99 | 9014 | |
10a4531d VZ |
9015 | if ( diroper.IsAtBoundary(m_currentCellCoords) ) |
9016 | return false; | |
ef5df12b | 9017 | |
10a4531d VZ |
9018 | const int oldRow = m_currentCellCoords.GetRow(); |
9019 | int newRow = diroper.MoveByPixelDistance(oldRow, m_gridWin->GetClientSize().y); | |
9020 | if ( newRow == oldRow ) | |
9021 | { | |
9022 | wxGridCellCoords coords(m_currentCellCoords); | |
9023 | diroper.Advance(coords); | |
9024 | newRow = coords.GetRow(); | |
9025 | } | |
8f177c8e | 9026 | |
8a3e536c | 9027 | GoToCell(newRow, m_currentCellCoords.GetCol()); |
60ff3b99 | 9028 | |
10a4531d VZ |
9029 | return true; |
9030 | } | |
2d66e025 | 9031 | |
10a4531d VZ |
9032 | bool wxGrid::MovePageUp() |
9033 | { | |
9034 | return DoMoveCursorByPage( | |
9035 | wxGridBackwardOperations(this, wxGridRowOperations())); | |
2d66e025 MB |
9036 | } |
9037 | ||
9038 | bool wxGrid::MovePageDown() | |
9039 | { | |
10a4531d VZ |
9040 | return DoMoveCursorByPage( |
9041 | wxGridForwardOperations(this, wxGridColumnOperations())); | |
9042 | } | |
60ff3b99 | 9043 | |
10a4531d VZ |
9044 | // helper of DoMoveCursorByBlock(): advance the cell coordinates using diroper |
9045 | // until we find a non-empty cell or reach the grid end | |
9046 | void | |
9047 | wxGrid::AdvanceToNextNonEmpty(wxGridCellCoords& coords, | |
9048 | const wxGridDirectionOperations& diroper) | |
9049 | { | |
9050 | while ( !diroper.IsAtBoundary(coords) ) | |
f85afd4e | 9051 | { |
10a4531d VZ |
9052 | diroper.Advance(coords); |
9053 | if ( !m_table->IsEmpty(coords) ) | |
9054 | break; | |
f85afd4e MB |
9055 | } |
9056 | } | |
8f177c8e | 9057 | |
10a4531d VZ |
9058 | bool |
9059 | wxGrid::DoMoveCursorByBlock(bool expandSelection, | |
9060 | const wxGridDirectionOperations& diroper) | |
2d66e025 | 9061 | { |
10a4531d VZ |
9062 | if ( !m_table || m_currentCellCoords == wxGridNoCellCoords ) |
9063 | return false; | |
f85afd4e | 9064 | |
10a4531d VZ |
9065 | if ( diroper.IsAtBoundary(m_currentCellCoords) ) |
9066 | return false; | |
4db6714b | 9067 | |
10a4531d VZ |
9068 | wxGridCellCoords coords(m_currentCellCoords); |
9069 | if ( m_table->IsEmpty(coords) ) | |
9070 | { | |
9071 | // we are in an empty cell: find the next block of non-empty cells | |
9072 | AdvanceToNextNonEmpty(coords, diroper); | |
2d66e025 | 9073 | } |
10a4531d | 9074 | else // current cell is not empty |
f85afd4e | 9075 | { |
10a4531d VZ |
9076 | diroper.Advance(coords); |
9077 | if ( m_table->IsEmpty(coords) ) | |
2d66e025 | 9078 | { |
10a4531d VZ |
9079 | // we started at the end of a block, find the next one |
9080 | AdvanceToNextNonEmpty(coords, diroper); | |
2d66e025 | 9081 | } |
10a4531d | 9082 | else // we're in a middle of a block |
2d66e025 | 9083 | { |
10a4531d VZ |
9084 | // go to the end of it, i.e. find the last cell before the next |
9085 | // empty one | |
9086 | while ( !diroper.IsAtBoundary(coords) ) | |
2d66e025 | 9087 | { |
10a4531d VZ |
9088 | wxGridCellCoords coordsNext(coords); |
9089 | diroper.Advance(coordsNext); | |
9090 | if ( m_table->IsEmpty(coordsNext) ) | |
2d66e025 | 9091 | break; |
2d66e025 | 9092 | |
10a4531d VZ |
9093 | coords = coordsNext; |
9094 | } | |
aa5e1f75 | 9095 | } |
10a4531d | 9096 | } |
2d66e025 | 9097 | |
10a4531d VZ |
9098 | if ( expandSelection ) |
9099 | { | |
8a3e536c | 9100 | UpdateBlockBeingSelected(m_currentCellCoords, coords); |
10a4531d VZ |
9101 | } |
9102 | else | |
9103 | { | |
9104 | ClearSelection(); | |
8a3e536c | 9105 | GoToCell(coords); |
f85afd4e | 9106 | } |
f85afd4e | 9107 | |
10a4531d | 9108 | return true; |
2d66e025 | 9109 | } |
f85afd4e | 9110 | |
10a4531d | 9111 | bool wxGrid::MoveCursorUpBlock(bool expandSelection) |
f85afd4e | 9112 | { |
10a4531d VZ |
9113 | return DoMoveCursorByBlock( |
9114 | expandSelection, | |
9115 | wxGridBackwardOperations(this, wxGridRowOperations()) | |
9116 | ); | |
9117 | } | |
8f177c8e | 9118 | |
10a4531d VZ |
9119 | bool wxGrid::MoveCursorDownBlock( bool expandSelection ) |
9120 | { | |
9121 | return DoMoveCursorByBlock( | |
9122 | expandSelection, | |
9123 | wxGridForwardOperations(this, wxGridRowOperations()) | |
9124 | ); | |
9125 | } | |
2d66e025 | 9126 | |
10a4531d VZ |
9127 | bool wxGrid::MoveCursorLeftBlock( bool expandSelection ) |
9128 | { | |
9129 | return DoMoveCursorByBlock( | |
9130 | expandSelection, | |
9131 | wxGridBackwardOperations(this, wxGridColumnOperations()) | |
9132 | ); | |
f85afd4e MB |
9133 | } |
9134 | ||
5c8fc7c1 | 9135 | bool wxGrid::MoveCursorRightBlock( bool expandSelection ) |
f85afd4e | 9136 | { |
10a4531d VZ |
9137 | return DoMoveCursorByBlock( |
9138 | expandSelection, | |
9139 | wxGridForwardOperations(this, wxGridColumnOperations()) | |
9140 | ); | |
f85afd4e MB |
9141 | } |
9142 | ||
f85afd4e | 9143 | // |
2d66e025 | 9144 | // ------ Label values and formatting |
f85afd4e MB |
9145 | // |
9146 | ||
ef316e23 | 9147 | void wxGrid::GetRowLabelAlignment( int *horiz, int *vert ) const |
f85afd4e | 9148 | { |
2f024384 DS |
9149 | if ( horiz ) |
9150 | *horiz = m_rowLabelHorizAlign; | |
9151 | if ( vert ) | |
9152 | *vert = m_rowLabelVertAlign; | |
f85afd4e MB |
9153 | } |
9154 | ||
ef316e23 | 9155 | void wxGrid::GetColLabelAlignment( int *horiz, int *vert ) const |
f85afd4e | 9156 | { |
2f024384 DS |
9157 | if ( horiz ) |
9158 | *horiz = m_colLabelHorizAlign; | |
9159 | if ( vert ) | |
9160 | *vert = m_colLabelVertAlign; | |
f85afd4e MB |
9161 | } |
9162 | ||
ef316e23 | 9163 | int wxGrid::GetColLabelTextOrientation() const |
d43851f7 JS |
9164 | { |
9165 | return m_colLabelTextOrientation; | |
9166 | } | |
9167 | ||
ef316e23 | 9168 | wxString wxGrid::GetRowLabelValue( int row ) const |
f85afd4e MB |
9169 | { |
9170 | if ( m_table ) | |
9171 | { | |
9172 | return m_table->GetRowLabelValue( row ); | |
9173 | } | |
9174 | else | |
9175 | { | |
9176 | wxString s; | |
9177 | s << row; | |
9178 | return s; | |
9179 | } | |
9180 | } | |
9181 | ||
ef316e23 | 9182 | wxString wxGrid::GetColLabelValue( int col ) const |
f85afd4e MB |
9183 | { |
9184 | if ( m_table ) | |
9185 | { | |
9186 | return m_table->GetColLabelValue( col ); | |
9187 | } | |
9188 | else | |
9189 | { | |
9190 | wxString s; | |
9191 | s << col; | |
9192 | return s; | |
9193 | } | |
9194 | } | |
9195 | ||
9196 | void wxGrid::SetRowLabelSize( int width ) | |
9197 | { | |
733f486a VZ |
9198 | wxASSERT( width >= 0 || width == wxGRID_AUTOSIZE ); |
9199 | ||
9200 | if ( width == wxGRID_AUTOSIZE ) | |
9201 | { | |
9202 | width = CalcColOrRowLabelAreaMinSize(wxGRID_ROW); | |
9203 | } | |
9204 | ||
2e8cd977 MB |
9205 | if ( width != m_rowLabelWidth ) |
9206 | { | |
2e8cd977 MB |
9207 | if ( width == 0 ) |
9208 | { | |
ca65c044 WS |
9209 | m_rowLabelWin->Show( false ); |
9210 | m_cornerLabelWin->Show( false ); | |
2e8cd977 | 9211 | } |
7807d81c | 9212 | else if ( m_rowLabelWidth == 0 ) |
2e8cd977 | 9213 | { |
ca65c044 | 9214 | m_rowLabelWin->Show( true ); |
2f024384 DS |
9215 | if ( m_colLabelHeight > 0 ) |
9216 | m_cornerLabelWin->Show( true ); | |
2e8cd977 | 9217 | } |
b99be8fb | 9218 | |
2e8cd977 | 9219 | m_rowLabelWidth = width; |
7807d81c | 9220 | CalcWindowSizes(); |
ca65c044 | 9221 | wxScrolledWindow::Refresh( true ); |
2e8cd977 | 9222 | } |
f85afd4e MB |
9223 | } |
9224 | ||
9225 | void wxGrid::SetColLabelSize( int height ) | |
9226 | { | |
733f486a VZ |
9227 | wxASSERT( height >=0 || height == wxGRID_AUTOSIZE ); |
9228 | ||
9229 | if ( height == wxGRID_AUTOSIZE ) | |
9230 | { | |
9231 | height = CalcColOrRowLabelAreaMinSize(wxGRID_COLUMN); | |
9232 | } | |
9233 | ||
2e8cd977 MB |
9234 | if ( height != m_colLabelHeight ) |
9235 | { | |
2e8cd977 MB |
9236 | if ( height == 0 ) |
9237 | { | |
ca65c044 WS |
9238 | m_colLabelWin->Show( false ); |
9239 | m_cornerLabelWin->Show( false ); | |
2e8cd977 | 9240 | } |
7807d81c | 9241 | else if ( m_colLabelHeight == 0 ) |
2e8cd977 | 9242 | { |
ca65c044 | 9243 | m_colLabelWin->Show( true ); |
a9339fe2 DS |
9244 | if ( m_rowLabelWidth > 0 ) |
9245 | m_cornerLabelWin->Show( true ); | |
2e8cd977 | 9246 | } |
7807d81c | 9247 | |
2e8cd977 | 9248 | m_colLabelHeight = height; |
7807d81c | 9249 | CalcWindowSizes(); |
ca65c044 | 9250 | wxScrolledWindow::Refresh( true ); |
2e8cd977 | 9251 | } |
f85afd4e MB |
9252 | } |
9253 | ||
9254 | void wxGrid::SetLabelBackgroundColour( const wxColour& colour ) | |
9255 | { | |
2d66e025 MB |
9256 | if ( m_labelBackgroundColour != colour ) |
9257 | { | |
9258 | m_labelBackgroundColour = colour; | |
9259 | m_rowLabelWin->SetBackgroundColour( colour ); | |
9260 | m_colLabelWin->SetBackgroundColour( colour ); | |
9261 | m_cornerLabelWin->SetBackgroundColour( colour ); | |
9262 | ||
9263 | if ( !GetBatchCount() ) | |
9264 | { | |
9265 | m_rowLabelWin->Refresh(); | |
9266 | m_colLabelWin->Refresh(); | |
9267 | m_cornerLabelWin->Refresh(); | |
9268 | } | |
9269 | } | |
f85afd4e MB |
9270 | } |
9271 | ||
9272 | void wxGrid::SetLabelTextColour( const wxColour& colour ) | |
9273 | { | |
2d66e025 MB |
9274 | if ( m_labelTextColour != colour ) |
9275 | { | |
9276 | m_labelTextColour = colour; | |
9277 | if ( !GetBatchCount() ) | |
9278 | { | |
9279 | m_rowLabelWin->Refresh(); | |
9280 | m_colLabelWin->Refresh(); | |
9281 | } | |
9282 | } | |
f85afd4e MB |
9283 | } |
9284 | ||
9285 | void wxGrid::SetLabelFont( const wxFont& font ) | |
9286 | { | |
9287 | m_labelFont = font; | |
2d66e025 MB |
9288 | if ( !GetBatchCount() ) |
9289 | { | |
9290 | m_rowLabelWin->Refresh(); | |
9291 | m_colLabelWin->Refresh(); | |
9292 | } | |
f85afd4e MB |
9293 | } |
9294 | ||
9295 | void wxGrid::SetRowLabelAlignment( int horiz, int vert ) | |
9296 | { | |
4c7277db MB |
9297 | // allow old (incorrect) defs to be used |
9298 | switch ( horiz ) | |
9299 | { | |
9300 | case wxLEFT: horiz = wxALIGN_LEFT; break; | |
9301 | case wxRIGHT: horiz = wxALIGN_RIGHT; break; | |
9302 | case wxCENTRE: horiz = wxALIGN_CENTRE; break; | |
9303 | } | |
84912ef8 | 9304 | |
4c7277db MB |
9305 | switch ( vert ) |
9306 | { | |
9307 | case wxTOP: vert = wxALIGN_TOP; break; | |
9308 | case wxBOTTOM: vert = wxALIGN_BOTTOM; break; | |
9309 | case wxCENTRE: vert = wxALIGN_CENTRE; break; | |
9310 | } | |
84912ef8 | 9311 | |
4c7277db | 9312 | if ( horiz == wxALIGN_LEFT || horiz == wxALIGN_CENTRE || horiz == wxALIGN_RIGHT ) |
f85afd4e MB |
9313 | { |
9314 | m_rowLabelHorizAlign = horiz; | |
9315 | } | |
8f177c8e | 9316 | |
4c7277db | 9317 | if ( vert == wxALIGN_TOP || vert == wxALIGN_CENTRE || vert == wxALIGN_BOTTOM ) |
f85afd4e MB |
9318 | { |
9319 | m_rowLabelVertAlign = vert; | |
9320 | } | |
9321 | ||
2d66e025 MB |
9322 | if ( !GetBatchCount() ) |
9323 | { | |
9324 | m_rowLabelWin->Refresh(); | |
60ff3b99 | 9325 | } |
f85afd4e MB |
9326 | } |
9327 | ||
9328 | void wxGrid::SetColLabelAlignment( int horiz, int vert ) | |
9329 | { | |
4c7277db MB |
9330 | // allow old (incorrect) defs to be used |
9331 | switch ( horiz ) | |
9332 | { | |
9333 | case wxLEFT: horiz = wxALIGN_LEFT; break; | |
9334 | case wxRIGHT: horiz = wxALIGN_RIGHT; break; | |
9335 | case wxCENTRE: horiz = wxALIGN_CENTRE; break; | |
9336 | } | |
84912ef8 | 9337 | |
4c7277db MB |
9338 | switch ( vert ) |
9339 | { | |
9340 | case wxTOP: vert = wxALIGN_TOP; break; | |
9341 | case wxBOTTOM: vert = wxALIGN_BOTTOM; break; | |
9342 | case wxCENTRE: vert = wxALIGN_CENTRE; break; | |
9343 | } | |
84912ef8 | 9344 | |
4c7277db | 9345 | if ( horiz == wxALIGN_LEFT || horiz == wxALIGN_CENTRE || horiz == wxALIGN_RIGHT ) |
f85afd4e MB |
9346 | { |
9347 | m_colLabelHorizAlign = horiz; | |
9348 | } | |
8f177c8e | 9349 | |
4c7277db | 9350 | if ( vert == wxALIGN_TOP || vert == wxALIGN_CENTRE || vert == wxALIGN_BOTTOM ) |
f85afd4e MB |
9351 | { |
9352 | m_colLabelVertAlign = vert; | |
9353 | } | |
9354 | ||
2d66e025 MB |
9355 | if ( !GetBatchCount() ) |
9356 | { | |
2d66e025 | 9357 | m_colLabelWin->Refresh(); |
60ff3b99 | 9358 | } |
f85afd4e MB |
9359 | } |
9360 | ||
ca65c044 WS |
9361 | // Note: under MSW, the default column label font must be changed because it |
9362 | // does not support vertical printing | |
d43851f7 JS |
9363 | // |
9364 | // Example: wxFont font(9, wxSWISS, wxNORMAL, wxBOLD); | |
ca65c044 WS |
9365 | // pGrid->SetLabelFont(font); |
9366 | // pGrid->SetColLabelTextOrientation(wxVERTICAL); | |
d43851f7 JS |
9367 | // |
9368 | void wxGrid::SetColLabelTextOrientation( int textOrientation ) | |
9369 | { | |
4db6714b | 9370 | if ( textOrientation == wxHORIZONTAL || textOrientation == wxVERTICAL ) |
d43851f7 | 9371 | m_colLabelTextOrientation = textOrientation; |
d43851f7 JS |
9372 | |
9373 | if ( !GetBatchCount() ) | |
d43851f7 | 9374 | m_colLabelWin->Refresh(); |
d43851f7 JS |
9375 | } |
9376 | ||
f85afd4e MB |
9377 | void wxGrid::SetRowLabelValue( int row, const wxString& s ) |
9378 | { | |
9379 | if ( m_table ) | |
9380 | { | |
9381 | m_table->SetRowLabelValue( row, s ); | |
2d66e025 MB |
9382 | if ( !GetBatchCount() ) |
9383 | { | |
ccdee36f | 9384 | wxRect rect = CellToRect( row, 0 ); |
70c7a608 SN |
9385 | if ( rect.height > 0 ) |
9386 | { | |
cb309039 | 9387 | CalcScrolledPosition(0, rect.y, &rect.x, &rect.y); |
b1944ebc | 9388 | rect.x = 0; |
70c7a608 | 9389 | rect.width = m_rowLabelWidth; |
ca65c044 | 9390 | m_rowLabelWin->Refresh( true, &rect ); |
70c7a608 | 9391 | } |
2d66e025 | 9392 | } |
f85afd4e MB |
9393 | } |
9394 | } | |
9395 | ||
9396 | void wxGrid::SetColLabelValue( int col, const wxString& s ) | |
9397 | { | |
9398 | if ( m_table ) | |
9399 | { | |
9400 | m_table->SetColLabelValue( col, s ); | |
2d66e025 MB |
9401 | if ( !GetBatchCount() ) |
9402 | { | |
70c7a608 SN |
9403 | wxRect rect = CellToRect( 0, col ); |
9404 | if ( rect.width > 0 ) | |
9405 | { | |
cb309039 | 9406 | CalcScrolledPosition(rect.x, 0, &rect.x, &rect.y); |
b1944ebc | 9407 | rect.y = 0; |
70c7a608 | 9408 | rect.height = m_colLabelHeight; |
ca65c044 | 9409 | m_colLabelWin->Refresh( true, &rect ); |
70c7a608 | 9410 | } |
2d66e025 | 9411 | } |
f85afd4e MB |
9412 | } |
9413 | } | |
9414 | ||
9415 | void wxGrid::SetGridLineColour( const wxColour& colour ) | |
9416 | { | |
2d66e025 MB |
9417 | if ( m_gridLineColour != colour ) |
9418 | { | |
9419 | m_gridLineColour = colour; | |
60ff3b99 | 9420 | |
9f7aee01 VZ |
9421 | if ( GridLinesEnabled() ) |
9422 | RedrawGridLines(); | |
2d66e025 | 9423 | } |
f85afd4e MB |
9424 | } |
9425 | ||
f6bcfd97 BP |
9426 | void wxGrid::SetCellHighlightColour( const wxColour& colour ) |
9427 | { | |
9428 | if ( m_cellHighlightColour != colour ) | |
9429 | { | |
9430 | m_cellHighlightColour = colour; | |
9431 | ||
9432 | wxClientDC dc( m_gridWin ); | |
9433 | PrepareDC( dc ); | |
9434 | wxGridCellAttr* attr = GetCellAttr(m_currentCellCoords); | |
9435 | DrawCellHighlight(dc, attr); | |
9436 | attr->DecRef(); | |
9437 | } | |
9438 | } | |
9439 | ||
d2520c85 RD |
9440 | void wxGrid::SetCellHighlightPenWidth(int width) |
9441 | { | |
4db6714b KH |
9442 | if (m_cellHighlightPenWidth != width) |
9443 | { | |
d2520c85 RD |
9444 | m_cellHighlightPenWidth = width; |
9445 | ||
9446 | // Just redrawing the cell highlight is not enough since that won't | |
9447 | // make any visible change if the the thickness is getting smaller. | |
9448 | int row = m_currentCellCoords.GetRow(); | |
9449 | int col = m_currentCellCoords.GetCol(); | |
1b3b96d8 | 9450 | if ( row == -1 || col == -1 || GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) |
d2520c85 | 9451 | return; |
2f024384 | 9452 | |
d2520c85 | 9453 | wxRect rect = CellToRect(row, col); |
ca65c044 | 9454 | m_gridWin->Refresh(true, &rect); |
d2520c85 RD |
9455 | } |
9456 | } | |
9457 | ||
9458 | void wxGrid::SetCellHighlightROPenWidth(int width) | |
9459 | { | |
4db6714b KH |
9460 | if (m_cellHighlightROPenWidth != width) |
9461 | { | |
d2520c85 RD |
9462 | m_cellHighlightROPenWidth = width; |
9463 | ||
9464 | // Just redrawing the cell highlight is not enough since that won't | |
9465 | // make any visible change if the the thickness is getting smaller. | |
9466 | int row = m_currentCellCoords.GetRow(); | |
9467 | int col = m_currentCellCoords.GetCol(); | |
76c66f19 VZ |
9468 | if ( row == -1 || col == -1 || |
9469 | GetColWidth(col) <= 0 || GetRowHeight(row) <= 0 ) | |
d2520c85 | 9470 | return; |
ccdee36f | 9471 | |
d2520c85 | 9472 | wxRect rect = CellToRect(row, col); |
ca65c044 | 9473 | m_gridWin->Refresh(true, &rect); |
d2520c85 RD |
9474 | } |
9475 | } | |
9476 | ||
9f7aee01 VZ |
9477 | void wxGrid::RedrawGridLines() |
9478 | { | |
9479 | // the lines will be redrawn when the window is thawn | |
9480 | if ( GetBatchCount() ) | |
9481 | return; | |
9482 | ||
9483 | if ( GridLinesEnabled() ) | |
9484 | { | |
9485 | wxClientDC dc( m_gridWin ); | |
9486 | PrepareDC( dc ); | |
9487 | DrawAllGridLines( dc, wxRegion() ); | |
9488 | } | |
9489 | else // remove the grid lines | |
9490 | { | |
9491 | m_gridWin->Refresh(); | |
9492 | } | |
9493 | } | |
9494 | ||
f85afd4e MB |
9495 | void wxGrid::EnableGridLines( bool enable ) |
9496 | { | |
9497 | if ( enable != m_gridLinesEnabled ) | |
9498 | { | |
9499 | m_gridLinesEnabled = enable; | |
2d66e025 | 9500 | |
9f7aee01 VZ |
9501 | RedrawGridLines(); |
9502 | } | |
9503 | } | |
9504 | ||
9505 | void wxGrid::DoClipGridLines(bool& var, bool clip) | |
9506 | { | |
9507 | if ( clip != var ) | |
9508 | { | |
9509 | var = clip; | |
9510 | ||
9511 | if ( GridLinesEnabled() ) | |
9512 | RedrawGridLines(); | |
f85afd4e MB |
9513 | } |
9514 | } | |
9515 | ||
ef316e23 | 9516 | int wxGrid::GetDefaultRowSize() const |
f85afd4e MB |
9517 | { |
9518 | return m_defaultRowHeight; | |
9519 | } | |
9520 | ||
ef316e23 | 9521 | int wxGrid::GetRowSize( int row ) const |
f85afd4e | 9522 | { |
b99be8fb VZ |
9523 | wxCHECK_MSG( row >= 0 && row < m_numRows, 0, _T("invalid row index") ); |
9524 | ||
7c1cb261 | 9525 | return GetRowHeight(row); |
f85afd4e MB |
9526 | } |
9527 | ||
ef316e23 | 9528 | int wxGrid::GetDefaultColSize() const |
f85afd4e MB |
9529 | { |
9530 | return m_defaultColWidth; | |
9531 | } | |
9532 | ||
ef316e23 | 9533 | int wxGrid::GetColSize( int col ) const |
f85afd4e | 9534 | { |
b99be8fb VZ |
9535 | wxCHECK_MSG( col >= 0 && col < m_numCols, 0, _T("invalid column index") ); |
9536 | ||
7c1cb261 | 9537 | return GetColWidth(col); |
f85afd4e MB |
9538 | } |
9539 | ||
2e9a6788 VZ |
9540 | // ============================================================================ |
9541 | // access to the grid attributes: each of them has a default value in the grid | |
9542 | // itself and may be overidden on a per-cell basis | |
9543 | // ============================================================================ | |
9544 | ||
9545 | // ---------------------------------------------------------------------------- | |
9546 | // setting default attributes | |
9547 | // ---------------------------------------------------------------------------- | |
9548 | ||
9549 | void wxGrid::SetDefaultCellBackgroundColour( const wxColour& col ) | |
9550 | { | |
2796cce3 | 9551 | m_defaultCellAttr->SetBackgroundColour(col); |
c916e13b RR |
9552 | #ifdef __WXGTK__ |
9553 | m_gridWin->SetBackgroundColour(col); | |
9554 | #endif | |
2e9a6788 VZ |
9555 | } |
9556 | ||
9557 | void wxGrid::SetDefaultCellTextColour( const wxColour& col ) | |
9558 | { | |
2796cce3 | 9559 | m_defaultCellAttr->SetTextColour(col); |
2e9a6788 VZ |
9560 | } |
9561 | ||
9562 | void wxGrid::SetDefaultCellAlignment( int horiz, int vert ) | |
9563 | { | |
2796cce3 | 9564 | m_defaultCellAttr->SetAlignment(horiz, vert); |
2e9a6788 VZ |
9565 | } |
9566 | ||
27f35b66 SN |
9567 | void wxGrid::SetDefaultCellOverflow( bool allow ) |
9568 | { | |
9569 | m_defaultCellAttr->SetOverflow(allow); | |
9570 | } | |
9571 | ||
2e9a6788 VZ |
9572 | void wxGrid::SetDefaultCellFont( const wxFont& font ) |
9573 | { | |
2796cce3 RD |
9574 | m_defaultCellAttr->SetFont(font); |
9575 | } | |
9576 | ||
ca63e8e9 RD |
9577 | // For editors and renderers the type registry takes precedence over the |
9578 | // default attr, so we need to register the new editor/renderer for the string | |
9579 | // data type in order to make setting a default editor/renderer appear to | |
9580 | // work correctly. | |
9581 | ||
0ba143c9 RD |
9582 | void wxGrid::SetDefaultRenderer(wxGridCellRenderer *renderer) |
9583 | { | |
ca63e8e9 RD |
9584 | RegisterDataType(wxGRID_VALUE_STRING, |
9585 | renderer, | |
9586 | GetDefaultEditorForType(wxGRID_VALUE_STRING)); | |
0ba143c9 | 9587 | } |
2e9a6788 | 9588 | |
0ba143c9 RD |
9589 | void wxGrid::SetDefaultEditor(wxGridCellEditor *editor) |
9590 | { | |
ca63e8e9 RD |
9591 | RegisterDataType(wxGRID_VALUE_STRING, |
9592 | GetDefaultRendererForType(wxGRID_VALUE_STRING), | |
42841dfc | 9593 | editor); |
0ba143c9 | 9594 | } |
9b4aede2 | 9595 | |
2e9a6788 | 9596 | // ---------------------------------------------------------------------------- |
ef316e23 | 9597 | // access to the default attributes |
2e9a6788 VZ |
9598 | // ---------------------------------------------------------------------------- |
9599 | ||
ef316e23 | 9600 | wxColour wxGrid::GetDefaultCellBackgroundColour() const |
f85afd4e | 9601 | { |
2796cce3 | 9602 | return m_defaultCellAttr->GetBackgroundColour(); |
f85afd4e MB |
9603 | } |
9604 | ||
ef316e23 | 9605 | wxColour wxGrid::GetDefaultCellTextColour() const |
2e9a6788 | 9606 | { |
2796cce3 | 9607 | return m_defaultCellAttr->GetTextColour(); |
2e9a6788 VZ |
9608 | } |
9609 | ||
ef316e23 | 9610 | wxFont wxGrid::GetDefaultCellFont() const |
2e9a6788 | 9611 | { |
2796cce3 | 9612 | return m_defaultCellAttr->GetFont(); |
2e9a6788 VZ |
9613 | } |
9614 | ||
ef316e23 | 9615 | void wxGrid::GetDefaultCellAlignment( int *horiz, int *vert ) const |
2e9a6788 | 9616 | { |
2796cce3 | 9617 | m_defaultCellAttr->GetAlignment(horiz, vert); |
2e9a6788 VZ |
9618 | } |
9619 | ||
ef316e23 | 9620 | bool wxGrid::GetDefaultCellOverflow() const |
27f35b66 SN |
9621 | { |
9622 | return m_defaultCellAttr->GetOverflow(); | |
9623 | } | |
9624 | ||
0ba143c9 RD |
9625 | wxGridCellRenderer *wxGrid::GetDefaultRenderer() const |
9626 | { | |
0b190b0f | 9627 | return m_defaultCellAttr->GetRenderer(NULL, 0, 0); |
0ba143c9 | 9628 | } |
ab79958a | 9629 | |
0ba143c9 RD |
9630 | wxGridCellEditor *wxGrid::GetDefaultEditor() const |
9631 | { | |
4db6714b | 9632 | return m_defaultCellAttr->GetEditor(NULL, 0, 0); |
0ba143c9 | 9633 | } |
9b4aede2 | 9634 | |
2e9a6788 VZ |
9635 | // ---------------------------------------------------------------------------- |
9636 | // access to cell attributes | |
9637 | // ---------------------------------------------------------------------------- | |
9638 | ||
ef316e23 | 9639 | wxColour wxGrid::GetCellBackgroundColour(int row, int col) const |
f85afd4e | 9640 | { |
0a976765 | 9641 | wxGridCellAttr *attr = GetCellAttr(row, col); |
2796cce3 | 9642 | wxColour colour = attr->GetBackgroundColour(); |
39bcce60 | 9643 | attr->DecRef(); |
2f024384 | 9644 | |
b99be8fb | 9645 | return colour; |
f85afd4e MB |
9646 | } |
9647 | ||
ef316e23 | 9648 | wxColour wxGrid::GetCellTextColour( int row, int col ) const |
f85afd4e | 9649 | { |
0a976765 | 9650 | wxGridCellAttr *attr = GetCellAttr(row, col); |
2796cce3 | 9651 | wxColour colour = attr->GetTextColour(); |
39bcce60 | 9652 | attr->DecRef(); |
2f024384 | 9653 | |
b99be8fb | 9654 | return colour; |
f85afd4e MB |
9655 | } |
9656 | ||
ef316e23 | 9657 | wxFont wxGrid::GetCellFont( int row, int col ) const |
f85afd4e | 9658 | { |
0a976765 | 9659 | wxGridCellAttr *attr = GetCellAttr(row, col); |
2796cce3 | 9660 | wxFont font = attr->GetFont(); |
39bcce60 | 9661 | attr->DecRef(); |
2f024384 | 9662 | |
b99be8fb | 9663 | return font; |
f85afd4e MB |
9664 | } |
9665 | ||
ef316e23 | 9666 | void wxGrid::GetCellAlignment( int row, int col, int *horiz, int *vert ) const |
f85afd4e | 9667 | { |
0a976765 | 9668 | wxGridCellAttr *attr = GetCellAttr(row, col); |
2796cce3 | 9669 | attr->GetAlignment(horiz, vert); |
39bcce60 | 9670 | attr->DecRef(); |
2e9a6788 VZ |
9671 | } |
9672 | ||
ef316e23 | 9673 | bool wxGrid::GetCellOverflow( int row, int col ) const |
27f35b66 SN |
9674 | { |
9675 | wxGridCellAttr *attr = GetCellAttr(row, col); | |
9676 | bool allow = attr->GetOverflow(); | |
9677 | attr->DecRef(); | |
4db6714b | 9678 | |
27f35b66 SN |
9679 | return allow; |
9680 | } | |
9681 | ||
ef316e23 | 9682 | void wxGrid::GetCellSize( int row, int col, int *num_rows, int *num_cols ) const |
27f35b66 SN |
9683 | { |
9684 | wxGridCellAttr *attr = GetCellAttr(row, col); | |
9685 | attr->GetSize( num_rows, num_cols ); | |
9686 | attr->DecRef(); | |
9687 | } | |
9688 | ||
ef316e23 | 9689 | wxGridCellRenderer* wxGrid::GetCellRenderer(int row, int col) const |
2796cce3 RD |
9690 | { |
9691 | wxGridCellAttr* attr = GetCellAttr(row, col); | |
28a77bc4 | 9692 | wxGridCellRenderer* renderer = attr->GetRenderer(this, row, col); |
2796cce3 | 9693 | attr->DecRef(); |
0b190b0f | 9694 | |
2796cce3 RD |
9695 | return renderer; |
9696 | } | |
9697 | ||
ef316e23 | 9698 | wxGridCellEditor* wxGrid::GetCellEditor(int row, int col) const |
9b4aede2 RD |
9699 | { |
9700 | wxGridCellAttr* attr = GetCellAttr(row, col); | |
28a77bc4 | 9701 | wxGridCellEditor* editor = attr->GetEditor(this, row, col); |
9b4aede2 | 9702 | attr->DecRef(); |
0b190b0f | 9703 | |
9b4aede2 RD |
9704 | return editor; |
9705 | } | |
9706 | ||
283b7808 VZ |
9707 | bool wxGrid::IsReadOnly(int row, int col) const |
9708 | { | |
9709 | wxGridCellAttr* attr = GetCellAttr(row, col); | |
9710 | bool isReadOnly = attr->IsReadOnly(); | |
9711 | attr->DecRef(); | |
4db6714b | 9712 | |
283b7808 VZ |
9713 | return isReadOnly; |
9714 | } | |
9715 | ||
2e9a6788 | 9716 | // ---------------------------------------------------------------------------- |
758cbedf | 9717 | // attribute support: cache, automatic provider creation, ... |
2e9a6788 VZ |
9718 | // ---------------------------------------------------------------------------- |
9719 | ||
ef316e23 | 9720 | bool wxGrid::CanHaveAttributes() const |
2e9a6788 VZ |
9721 | { |
9722 | if ( !m_table ) | |
9723 | { | |
ca65c044 | 9724 | return false; |
2e9a6788 VZ |
9725 | } |
9726 | ||
f2d76237 | 9727 | return m_table->CanHaveAttributes(); |
2e9a6788 VZ |
9728 | } |
9729 | ||
0a976765 VZ |
9730 | void wxGrid::ClearAttrCache() |
9731 | { | |
9732 | if ( m_attrCache.row != -1 ) | |
9733 | { | |
54181a33 | 9734 | wxGridCellAttr *oldAttr = m_attrCache.attr; |
19d7140e | 9735 | m_attrCache.attr = NULL; |
0a976765 | 9736 | m_attrCache.row = -1; |
1506cc66 SN |
9737 | // wxSafeDecRec(...) might cause event processing that accesses |
9738 | // the cached attribute, if one exists (e.g. by deleting the | |
9739 | // editor stored within the attribute). Therefore it is important | |
ace8d849 | 9740 | // to invalidate the cache before calling wxSafeDecRef! |
1506cc66 | 9741 | wxSafeDecRef(oldAttr); |
0a976765 VZ |
9742 | } |
9743 | } | |
9744 | ||
9745 | void wxGrid::CacheAttr(int row, int col, wxGridCellAttr *attr) const | |
9746 | { | |
2b5f62a0 VZ |
9747 | if ( attr != NULL ) |
9748 | { | |
9749 | wxGrid *self = (wxGrid *)this; // const_cast | |
0a976765 | 9750 | |
2b5f62a0 VZ |
9751 | self->ClearAttrCache(); |
9752 | self->m_attrCache.row = row; | |
9753 | self->m_attrCache.col = col; | |
9754 | self->m_attrCache.attr = attr; | |
9755 | wxSafeIncRef(attr); | |
9756 | } | |
0a976765 VZ |
9757 | } |
9758 | ||
9759 | bool wxGrid::LookupAttr(int row, int col, wxGridCellAttr **attr) const | |
9760 | { | |
9761 | if ( row == m_attrCache.row && col == m_attrCache.col ) | |
9762 | { | |
9763 | *attr = m_attrCache.attr; | |
39bcce60 | 9764 | wxSafeIncRef(m_attrCache.attr); |
0a976765 VZ |
9765 | |
9766 | #ifdef DEBUG_ATTR_CACHE | |
9767 | gs_nAttrCacheHits++; | |
9768 | #endif | |
9769 | ||
ca65c044 | 9770 | return true; |
0a976765 VZ |
9771 | } |
9772 | else | |
9773 | { | |
9774 | #ifdef DEBUG_ATTR_CACHE | |
9775 | gs_nAttrCacheMisses++; | |
9776 | #endif | |
4db6714b | 9777 | |
ca65c044 | 9778 | return false; |
0a976765 VZ |
9779 | } |
9780 | } | |
9781 | ||
2e9a6788 VZ |
9782 | wxGridCellAttr *wxGrid::GetCellAttr(int row, int col) const |
9783 | { | |
a373d23b SN |
9784 | wxGridCellAttr *attr = NULL; |
9785 | // Additional test to avoid looking at the cache e.g. for | |
9786 | // wxNoCellCoords, as this will confuse memory management. | |
9787 | if ( row >= 0 ) | |
9788 | { | |
3ed884a0 SN |
9789 | if ( !LookupAttr(row, col, &attr) ) |
9790 | { | |
c2f5b920 | 9791 | attr = m_table ? m_table->GetAttr(row, col, wxGridCellAttr::Any) |
10a4531d | 9792 | : NULL; |
3ed884a0 SN |
9793 | CacheAttr(row, col, attr); |
9794 | } | |
0a976765 | 9795 | } |
4db6714b | 9796 | |
508011ce VZ |
9797 | if (attr) |
9798 | { | |
2796cce3 | 9799 | attr->SetDefAttr(m_defaultCellAttr); |
508011ce VZ |
9800 | } |
9801 | else | |
9802 | { | |
2796cce3 RD |
9803 | attr = m_defaultCellAttr; |
9804 | attr->IncRef(); | |
9805 | } | |
2e9a6788 | 9806 | |
0a976765 VZ |
9807 | return attr; |
9808 | } | |
9809 | ||
9810 | wxGridCellAttr *wxGrid::GetOrCreateCellAttr(int row, int col) const | |
9811 | { | |
10a4531d | 9812 | wxGridCellAttr *attr = NULL; |
71e60f70 | 9813 | bool canHave = ((wxGrid*)this)->CanHaveAttributes(); |
0a976765 | 9814 | |
71e60f70 RD |
9815 | wxCHECK_MSG( canHave, attr, _T("Cell attributes not allowed")); |
9816 | wxCHECK_MSG( m_table, attr, _T("must have a table") ); | |
1df4050d VZ |
9817 | |
9818 | attr = m_table->GetAttr(row, col, wxGridCellAttr::Cell); | |
9819 | if ( !attr ) | |
9820 | { | |
9821 | attr = new wxGridCellAttr(m_defaultCellAttr); | |
9822 | ||
9823 | // artificially inc the ref count to match DecRef() in caller | |
9824 | attr->IncRef(); | |
9825 | m_table->SetAttr(attr, row, col); | |
9826 | } | |
0a976765 | 9827 | |
2e9a6788 VZ |
9828 | return attr; |
9829 | } | |
9830 | ||
0b190b0f VZ |
9831 | // ---------------------------------------------------------------------------- |
9832 | // setting column attributes (wrappers around SetColAttr) | |
9833 | // ---------------------------------------------------------------------------- | |
9834 | ||
9835 | void wxGrid::SetColFormatBool(int col) | |
9836 | { | |
9837 | SetColFormatCustom(col, wxGRID_VALUE_BOOL); | |
9838 | } | |
9839 | ||
9840 | void wxGrid::SetColFormatNumber(int col) | |
9841 | { | |
9842 | SetColFormatCustom(col, wxGRID_VALUE_NUMBER); | |
9843 | } | |
9844 | ||
9845 | void wxGrid::SetColFormatFloat(int col, int width, int precision) | |
9846 | { | |
9847 | wxString typeName = wxGRID_VALUE_FLOAT; | |
9848 | if ( (width != -1) || (precision != -1) ) | |
9849 | { | |
9850 | typeName << _T(':') << width << _T(',') << precision; | |
9851 | } | |
9852 | ||
9853 | SetColFormatCustom(col, typeName); | |
9854 | } | |
9855 | ||
9856 | void wxGrid::SetColFormatCustom(int col, const wxString& typeName) | |
9857 | { | |
999836aa | 9858 | wxGridCellAttr *attr = m_table->GetAttr(-1, col, wxGridCellAttr::Col ); |
4db6714b | 9859 | if (!attr) |
19d7140e | 9860 | attr = new wxGridCellAttr; |
0b190b0f VZ |
9861 | wxGridCellRenderer *renderer = GetDefaultRendererForType(typeName); |
9862 | attr->SetRenderer(renderer); | |
54181a33 VZ |
9863 | wxGridCellEditor *editor = GetDefaultEditorForType(typeName); |
9864 | attr->SetEditor(editor); | |
0b190b0f VZ |
9865 | |
9866 | SetColAttr(col, attr); | |
19d7140e | 9867 | |
0b190b0f VZ |
9868 | } |
9869 | ||
758cbedf VZ |
9870 | // ---------------------------------------------------------------------------- |
9871 | // setting cell attributes: this is forwarded to the table | |
9872 | // ---------------------------------------------------------------------------- | |
9873 | ||
27f35b66 SN |
9874 | void wxGrid::SetAttr(int row, int col, wxGridCellAttr *attr) |
9875 | { | |
9876 | if ( CanHaveAttributes() ) | |
9877 | { | |
9878 | m_table->SetAttr(attr, row, col); | |
9879 | ClearAttrCache(); | |
9880 | } | |
9881 | else | |
9882 | { | |
9883 | wxSafeDecRef(attr); | |
9884 | } | |
9885 | } | |
9886 | ||
758cbedf VZ |
9887 | void wxGrid::SetRowAttr(int row, wxGridCellAttr *attr) |
9888 | { | |
9889 | if ( CanHaveAttributes() ) | |
9890 | { | |
9891 | m_table->SetRowAttr(attr, row); | |
19d7140e | 9892 | ClearAttrCache(); |
758cbedf VZ |
9893 | } |
9894 | else | |
9895 | { | |
39bcce60 | 9896 | wxSafeDecRef(attr); |
758cbedf VZ |
9897 | } |
9898 | } | |
9899 | ||
9900 | void wxGrid::SetColAttr(int col, wxGridCellAttr *attr) | |
9901 | { | |
9902 | if ( CanHaveAttributes() ) | |
9903 | { | |
9904 | m_table->SetColAttr(attr, col); | |
19d7140e | 9905 | ClearAttrCache(); |
758cbedf VZ |
9906 | } |
9907 | else | |
9908 | { | |
39bcce60 | 9909 | wxSafeDecRef(attr); |
758cbedf VZ |
9910 | } |
9911 | } | |
9912 | ||
2e9a6788 VZ |
9913 | void wxGrid::SetCellBackgroundColour( int row, int col, const wxColour& colour ) |
9914 | { | |
9915 | if ( CanHaveAttributes() ) | |
9916 | { | |
0a976765 | 9917 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
2e9a6788 VZ |
9918 | attr->SetBackgroundColour(colour); |
9919 | attr->DecRef(); | |
9920 | } | |
9921 | } | |
9922 | ||
9923 | void wxGrid::SetCellTextColour( int row, int col, const wxColour& colour ) | |
9924 | { | |
9925 | if ( CanHaveAttributes() ) | |
9926 | { | |
0a976765 | 9927 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
2e9a6788 VZ |
9928 | attr->SetTextColour(colour); |
9929 | attr->DecRef(); | |
9930 | } | |
9931 | } | |
9932 | ||
9933 | void wxGrid::SetCellFont( int row, int col, const wxFont& font ) | |
9934 | { | |
9935 | if ( CanHaveAttributes() ) | |
9936 | { | |
0a976765 | 9937 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
2e9a6788 VZ |
9938 | attr->SetFont(font); |
9939 | attr->DecRef(); | |
9940 | } | |
9941 | } | |
9942 | ||
9943 | void wxGrid::SetCellAlignment( int row, int col, int horiz, int vert ) | |
9944 | { | |
9945 | if ( CanHaveAttributes() ) | |
9946 | { | |
0a976765 | 9947 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
2e9a6788 VZ |
9948 | attr->SetAlignment(horiz, vert); |
9949 | attr->DecRef(); | |
ab79958a VZ |
9950 | } |
9951 | } | |
9952 | ||
27f35b66 SN |
9953 | void wxGrid::SetCellOverflow( int row, int col, bool allow ) |
9954 | { | |
9955 | if ( CanHaveAttributes() ) | |
9956 | { | |
9957 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); | |
9958 | attr->SetOverflow(allow); | |
9959 | attr->DecRef(); | |
9960 | } | |
9961 | } | |
9962 | ||
9963 | void wxGrid::SetCellSize( int row, int col, int num_rows, int num_cols ) | |
9964 | { | |
9965 | if ( CanHaveAttributes() ) | |
9966 | { | |
9967 | int cell_rows, cell_cols; | |
9968 | ||
9969 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); | |
9970 | attr->GetSize(&cell_rows, &cell_cols); | |
9971 | attr->SetSize(num_rows, num_cols); | |
9972 | attr->DecRef(); | |
9973 | ||
9974 | // Cannot set the size of a cell to 0 or negative values | |
9975 | // While it is perfectly legal to do that, this function cannot | |
9976 | // handle all the possibilies, do it by hand by getting the CellAttr. | |
9977 | // You can only set the size of a cell to 1,1 or greater with this fn | |
9978 | wxASSERT_MSG( !((cell_rows < 1) || (cell_cols < 1)), | |
9979 | wxT("wxGrid::SetCellSize setting cell size that is already part of another cell")); | |
9980 | wxASSERT_MSG( !((num_rows < 1) || (num_cols < 1)), | |
9981 | wxT("wxGrid::SetCellSize setting cell size to < 1")); | |
9982 | ||
9983 | // if this was already a multicell then "turn off" the other cells first | |
a6b2078d | 9984 | if ((cell_rows > 1) || (cell_cols > 1)) |
27f35b66 SN |
9985 | { |
9986 | int i, j; | |
2f024384 | 9987 | for (j=row; j < row + cell_rows; j++) |
27f35b66 | 9988 | { |
2f024384 | 9989 | for (i=col; i < col + cell_cols; i++) |
27f35b66 SN |
9990 | { |
9991 | if ((i != col) || (j != row)) | |
9992 | { | |
9993 | wxGridCellAttr *attr_stub = GetOrCreateCellAttr(j, i); | |
9994 | attr_stub->SetSize( 1, 1 ); | |
9995 | attr_stub->DecRef(); | |
9996 | } | |
9997 | } | |
9998 | } | |
9999 | } | |
10000 | ||
10001 | // mark the cells that will be covered by this cell to | |
10002 | // negative or zero values to point back at this cell | |
10003 | if (((num_rows > 1) || (num_cols > 1)) && (num_rows >= 1) && (num_cols >= 1)) | |
10004 | { | |
10005 | int i, j; | |
2f024384 | 10006 | for (j=row; j < row + num_rows; j++) |
27f35b66 | 10007 | { |
2f024384 | 10008 | for (i=col; i < col + num_cols; i++) |
27f35b66 SN |
10009 | { |
10010 | if ((i != col) || (j != row)) | |
10011 | { | |
10012 | wxGridCellAttr *attr_stub = GetOrCreateCellAttr(j, i); | |
2f024384 | 10013 | attr_stub->SetSize( row - j, col - i ); |
27f35b66 SN |
10014 | attr_stub->DecRef(); |
10015 | } | |
10016 | } | |
10017 | } | |
10018 | } | |
10019 | } | |
10020 | } | |
10021 | ||
ab79958a VZ |
10022 | void wxGrid::SetCellRenderer(int row, int col, wxGridCellRenderer *renderer) |
10023 | { | |
10024 | if ( CanHaveAttributes() ) | |
10025 | { | |
0a976765 | 10026 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); |
ab79958a VZ |
10027 | attr->SetRenderer(renderer); |
10028 | attr->DecRef(); | |
9b4aede2 RD |
10029 | } |
10030 | } | |
10031 | ||
10032 | void wxGrid::SetCellEditor(int row, int col, wxGridCellEditor* editor) | |
10033 | { | |
10034 | if ( CanHaveAttributes() ) | |
10035 | { | |
10036 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); | |
10037 | attr->SetEditor(editor); | |
10038 | attr->DecRef(); | |
283b7808 VZ |
10039 | } |
10040 | } | |
10041 | ||
10042 | void wxGrid::SetReadOnly(int row, int col, bool isReadOnly) | |
10043 | { | |
10044 | if ( CanHaveAttributes() ) | |
10045 | { | |
10046 | wxGridCellAttr *attr = GetOrCreateCellAttr(row, col); | |
10047 | attr->SetReadOnly(isReadOnly); | |
10048 | attr->DecRef(); | |
2e9a6788 | 10049 | } |
f85afd4e MB |
10050 | } |
10051 | ||
f2d76237 RD |
10052 | // ---------------------------------------------------------------------------- |
10053 | // Data type registration | |
10054 | // ---------------------------------------------------------------------------- | |
10055 | ||
10056 | void wxGrid::RegisterDataType(const wxString& typeName, | |
10057 | wxGridCellRenderer* renderer, | |
10058 | wxGridCellEditor* editor) | |
10059 | { | |
10060 | m_typeRegistry->RegisterDataType(typeName, renderer, editor); | |
10061 | } | |
10062 | ||
10063 | ||
a9339fe2 | 10064 | wxGridCellEditor * wxGrid::GetDefaultEditorForCell(int row, int col) const |
f2d76237 RD |
10065 | { |
10066 | wxString typeName = m_table->GetTypeName(row, col); | |
10067 | return GetDefaultEditorForType(typeName); | |
10068 | } | |
10069 | ||
a9339fe2 | 10070 | wxGridCellRenderer * wxGrid::GetDefaultRendererForCell(int row, int col) const |
f2d76237 RD |
10071 | { |
10072 | wxString typeName = m_table->GetTypeName(row, col); | |
10073 | return GetDefaultRendererForType(typeName); | |
10074 | } | |
10075 | ||
a9339fe2 | 10076 | wxGridCellEditor * wxGrid::GetDefaultEditorForType(const wxString& typeName) const |
f2d76237 | 10077 | { |
c4608a8a | 10078 | int index = m_typeRegistry->FindOrCloneDataType(typeName); |
0b190b0f VZ |
10079 | if ( index == wxNOT_FOUND ) |
10080 | { | |
767e0835 | 10081 | wxFAIL_MSG(wxString::Format(wxT("Unknown data type name [%s]"), typeName.c_str())); |
0b190b0f | 10082 | |
f2d76237 RD |
10083 | return NULL; |
10084 | } | |
0b190b0f | 10085 | |
f2d76237 RD |
10086 | return m_typeRegistry->GetEditor(index); |
10087 | } | |
10088 | ||
a9339fe2 | 10089 | wxGridCellRenderer * wxGrid::GetDefaultRendererForType(const wxString& typeName) const |
f2d76237 | 10090 | { |
c4608a8a | 10091 | int index = m_typeRegistry->FindOrCloneDataType(typeName); |
0b190b0f VZ |
10092 | if ( index == wxNOT_FOUND ) |
10093 | { | |
767e0835 | 10094 | wxFAIL_MSG(wxString::Format(wxT("Unknown data type name [%s]"), typeName.c_str())); |
0b190b0f | 10095 | |
c4608a8a | 10096 | return NULL; |
e72b4213 | 10097 | } |
0b190b0f | 10098 | |
c4608a8a | 10099 | return m_typeRegistry->GetRenderer(index); |
f2d76237 RD |
10100 | } |
10101 | ||
2e9a6788 VZ |
10102 | // ---------------------------------------------------------------------------- |
10103 | // row/col size | |
10104 | // ---------------------------------------------------------------------------- | |
10105 | ||
6e8524b1 MB |
10106 | void wxGrid::EnableDragRowSize( bool enable ) |
10107 | { | |
10108 | m_canDragRowSize = enable; | |
10109 | } | |
10110 | ||
6e8524b1 MB |
10111 | void wxGrid::EnableDragColSize( bool enable ) |
10112 | { | |
10113 | m_canDragColSize = enable; | |
10114 | } | |
10115 | ||
4cfa5de6 RD |
10116 | void wxGrid::EnableDragGridSize( bool enable ) |
10117 | { | |
10118 | m_canDragGridSize = enable; | |
10119 | } | |
10120 | ||
79dbea21 RD |
10121 | void wxGrid::EnableDragCell( bool enable ) |
10122 | { | |
10123 | m_canDragCell = enable; | |
10124 | } | |
6e8524b1 | 10125 | |
f85afd4e MB |
10126 | void wxGrid::SetDefaultRowSize( int height, bool resizeExistingRows ) |
10127 | { | |
b8d24d4e | 10128 | m_defaultRowHeight = wxMax( height, m_minAcceptableRowHeight ); |
f85afd4e MB |
10129 | |
10130 | if ( resizeExistingRows ) | |
10131 | { | |
b1da8107 SN |
10132 | // since we are resizing all rows to the default row size, |
10133 | // we can simply clear the row heights and row bottoms | |
10134 | // arrays (which also allows us to take advantage of | |
10135 | // some speed optimisations) | |
10136 | m_rowHeights.Empty(); | |
10137 | m_rowBottoms.Empty(); | |
edb89f7e VZ |
10138 | if ( !GetBatchCount() ) |
10139 | CalcDimensions(); | |
f85afd4e MB |
10140 | } |
10141 | } | |
10142 | ||
10143 | void wxGrid::SetRowSize( int row, int height ) | |
10144 | { | |
b99be8fb | 10145 | wxCHECK_RET( row >= 0 && row < m_numRows, _T("invalid row index") ); |
60ff3b99 | 10146 | |
ad7502d8 SN |
10147 | // if < 0 then calculate new height from label |
10148 | if ( height < 0 ) | |
10149 | { | |
10150 | long w, h; | |
10151 | wxArrayString lines; | |
10152 | wxClientDC dc(m_rowLabelWin); | |
10153 | dc.SetFont(GetLabelFont()); | |
10154 | StringToLines(GetRowLabelValue( row ), lines); | |
ace8d849 VZ |
10155 | GetTextBoxSize( dc, lines, &w, &h ); |
10156 | //check that it is not less than the minimal height | |
10157 | height = wxMax(h, GetRowMinimalAcceptableHeight()); | |
ad7502d8 SN |
10158 | } |
10159 | ||
b4bfd0fa | 10160 | // See comment in SetColSize |
4db6714b KH |
10161 | if ( height < GetRowMinimalAcceptableHeight()) |
10162 | return; | |
b8d24d4e | 10163 | |
7c1cb261 VZ |
10164 | if ( m_rowHeights.IsEmpty() ) |
10165 | { | |
10166 | // need to really create the array | |
10167 | InitRowHeights(); | |
10168 | } | |
60ff3b99 | 10169 | |
b99be8fb VZ |
10170 | int h = wxMax( 0, height ); |
10171 | int diff = h - m_rowHeights[row]; | |
60ff3b99 | 10172 | |
b99be8fb | 10173 | m_rowHeights[row] = h; |
0ed3b812 | 10174 | for ( int i = row; i < m_numRows; i++ ) |
f85afd4e | 10175 | { |
b99be8fb | 10176 | m_rowBottoms[i] += diff; |
f85afd4e | 10177 | } |
2f024384 | 10178 | |
faec5a43 SN |
10179 | if ( !GetBatchCount() ) |
10180 | CalcDimensions(); | |
f85afd4e MB |
10181 | } |
10182 | ||
10183 | void wxGrid::SetDefaultColSize( int width, bool resizeExistingCols ) | |
10184 | { | |
ef316e23 VZ |
10185 | // we dont allow zero default column width |
10186 | m_defaultColWidth = wxMax( wxMax( width, m_minAcceptableColWidth ), 1 ); | |
f85afd4e MB |
10187 | |
10188 | if ( resizeExistingCols ) | |
10189 | { | |
b1da8107 SN |
10190 | // since we are resizing all columns to the default column size, |
10191 | // we can simply clear the col widths and col rights | |
10192 | // arrays (which also allows us to take advantage of | |
10193 | // some speed optimisations) | |
10194 | m_colWidths.Empty(); | |
10195 | m_colRights.Empty(); | |
edb89f7e VZ |
10196 | if ( !GetBatchCount() ) |
10197 | CalcDimensions(); | |
f85afd4e MB |
10198 | } |
10199 | } | |
10200 | ||
10201 | void wxGrid::SetColSize( int col, int width ) | |
10202 | { | |
b99be8fb | 10203 | wxCHECK_RET( col >= 0 && col < m_numCols, _T("invalid column index") ); |
60ff3b99 | 10204 | |
ad7502d8 SN |
10205 | // if < 0 then calculate new width from label |
10206 | if ( width < 0 ) | |
10207 | { | |
10208 | long w, h; | |
10209 | wxArrayString lines; | |
10210 | wxClientDC dc(m_colLabelWin); | |
10211 | dc.SetFont(GetLabelFont()); | |
10212 | StringToLines(GetColLabelValue(col), lines); | |
10213 | if ( GetColLabelTextOrientation() == wxHORIZONTAL ) | |
10214 | GetTextBoxSize( dc, lines, &w, &h ); | |
10215 | else | |
10216 | GetTextBoxSize( dc, lines, &h, &w ); | |
10217 | width = w + 6; | |
ace8d849 | 10218 | //check that it is not less than the minimal width |
54181a33 | 10219 | width = wxMax(width, GetColMinimalAcceptableWidth()); |
ad7502d8 SN |
10220 | } |
10221 | ||
43947979 | 10222 | // should we check that it's bigger than GetColMinimalWidth(col) here? |
b4bfd0fa RG |
10223 | // (VZ) |
10224 | // No, because it is reasonable to assume the library user know's | |
d4175745 | 10225 | // what he is doing. However we should test against the weaker |
ccdee36f | 10226 | // constraint of minimalAcceptableWidth, as this breaks rendering |
3e13956a | 10227 | // |
b4bfd0fa | 10228 | // This test then fixes sf.net bug #645734 |
3e13956a | 10229 | |
962a48f6 | 10230 | if ( width < GetColMinimalAcceptableWidth() ) |
4db6714b | 10231 | return; |
3e13956a | 10232 | |
7c1cb261 VZ |
10233 | if ( m_colWidths.IsEmpty() ) |
10234 | { | |
10235 | // need to really create the array | |
10236 | InitColWidths(); | |
10237 | } | |
f85afd4e | 10238 | |
b99be8fb VZ |
10239 | int w = wxMax( 0, width ); |
10240 | int diff = w - m_colWidths[col]; | |
10241 | m_colWidths[col] = w; | |
60ff3b99 | 10242 | |
0ed3b812 | 10243 | for ( int colPos = GetColPos(col); colPos < m_numCols; colPos++ ) |
f85afd4e | 10244 | { |
0ed3b812 | 10245 | m_colRights[GetColAt(colPos)] += diff; |
f85afd4e | 10246 | } |
962a48f6 | 10247 | |
faec5a43 SN |
10248 | if ( !GetBatchCount() ) |
10249 | CalcDimensions(); | |
f85afd4e MB |
10250 | } |
10251 | ||
43947979 VZ |
10252 | void wxGrid::SetColMinimalWidth( int col, int width ) |
10253 | { | |
4db6714b KH |
10254 | if (width > GetColMinimalAcceptableWidth()) |
10255 | { | |
c6fbe2f0 | 10256 | wxLongToLongHashMap::key_type key = (wxLongToLongHashMap::key_type)col; |
8253f2e0 | 10257 | m_colMinWidths[key] = width; |
b8d24d4e | 10258 | } |
af547d51 VZ |
10259 | } |
10260 | ||
10261 | void wxGrid::SetRowMinimalHeight( int row, int width ) | |
10262 | { | |
4db6714b KH |
10263 | if (width > GetRowMinimalAcceptableHeight()) |
10264 | { | |
c6fbe2f0 | 10265 | wxLongToLongHashMap::key_type key = (wxLongToLongHashMap::key_type)row; |
8253f2e0 | 10266 | m_rowMinHeights[key] = width; |
b8d24d4e | 10267 | } |
43947979 VZ |
10268 | } |
10269 | ||
10270 | int wxGrid::GetColMinimalWidth(int col) const | |
10271 | { | |
c6fbe2f0 | 10272 | wxLongToLongHashMap::key_type key = (wxLongToLongHashMap::key_type)col; |
8253f2e0 | 10273 | wxLongToLongHashMap::const_iterator it = m_colMinWidths.find(key); |
962a48f6 | 10274 | |
ba8c1601 | 10275 | return it != m_colMinWidths.end() ? (int)it->second : m_minAcceptableColWidth; |
af547d51 VZ |
10276 | } |
10277 | ||
10278 | int wxGrid::GetRowMinimalHeight(int row) const | |
10279 | { | |
c6fbe2f0 | 10280 | wxLongToLongHashMap::key_type key = (wxLongToLongHashMap::key_type)row; |
8253f2e0 | 10281 | wxLongToLongHashMap::const_iterator it = m_rowMinHeights.find(key); |
962a48f6 | 10282 | |
ba8c1601 | 10283 | return it != m_rowMinHeights.end() ? (int)it->second : m_minAcceptableRowHeight; |
b8d24d4e RG |
10284 | } |
10285 | ||
10286 | void wxGrid::SetColMinimalAcceptableWidth( int width ) | |
10287 | { | |
20c84410 | 10288 | // We do allow a width of 0 since this gives us |
962a48f6 DS |
10289 | // an easy way to temporarily hiding columns. |
10290 | if ( width >= 0 ) | |
10291 | m_minAcceptableColWidth = width; | |
b8d24d4e RG |
10292 | } |
10293 | ||
10294 | void wxGrid::SetRowMinimalAcceptableHeight( int height ) | |
10295 | { | |
20c84410 | 10296 | // We do allow a height of 0 since this gives us |
962a48f6 DS |
10297 | // an easy way to temporarily hiding rows. |
10298 | if ( height >= 0 ) | |
10299 | m_minAcceptableRowHeight = height; | |
17a1ebd1 | 10300 | } |
b8d24d4e RG |
10301 | |
10302 | int wxGrid::GetColMinimalAcceptableWidth() const | |
10303 | { | |
10304 | return m_minAcceptableColWidth; | |
10305 | } | |
10306 | ||
10307 | int wxGrid::GetRowMinimalAcceptableHeight() const | |
10308 | { | |
10309 | return m_minAcceptableRowHeight; | |
43947979 VZ |
10310 | } |
10311 | ||
57c086ef VZ |
10312 | // ---------------------------------------------------------------------------- |
10313 | // auto sizing | |
10314 | // ---------------------------------------------------------------------------- | |
10315 | ||
733f486a VZ |
10316 | void |
10317 | wxGrid::AutoSizeColOrRow(int colOrRow, bool setAsMin, wxGridDirection direction) | |
65e4e78e | 10318 | { |
733f486a VZ |
10319 | const bool column = direction == wxGRID_COLUMN; |
10320 | ||
65e4e78e VZ |
10321 | wxClientDC dc(m_gridWin); |
10322 | ||
962a48f6 | 10323 | // cancel editing of cell |
13f6e9e8 RG |
10324 | HideCellEditControl(); |
10325 | SaveEditControlValue(); | |
10326 | ||
962a48f6 | 10327 | // init both of them to avoid compiler warnings, even if we only need one |
a95e38c0 VZ |
10328 | int row = -1, |
10329 | col = -1; | |
af547d51 VZ |
10330 | if ( column ) |
10331 | col = colOrRow; | |
10332 | else | |
10333 | row = colOrRow; | |
10334 | ||
10335 | wxCoord extent, extentMax = 0; | |
10336 | int max = column ? m_numRows : m_numCols; | |
39bcce60 | 10337 | for ( int rowOrCol = 0; rowOrCol < max; rowOrCol++ ) |
65e4e78e | 10338 | { |
af547d51 VZ |
10339 | if ( column ) |
10340 | row = rowOrCol; | |
10341 | else | |
10342 | col = rowOrCol; | |
10343 | ||
2f024384 DS |
10344 | wxGridCellAttr *attr = GetCellAttr(row, col); |
10345 | wxGridCellRenderer *renderer = attr->GetRenderer(this, row, col); | |
65e4e78e VZ |
10346 | if ( renderer ) |
10347 | { | |
af547d51 VZ |
10348 | wxSize size = renderer->GetBestSize(*this, *attr, dc, row, col); |
10349 | extent = column ? size.x : size.y; | |
10350 | if ( extent > extentMax ) | |
af547d51 | 10351 | extentMax = extent; |
0b190b0f VZ |
10352 | |
10353 | renderer->DecRef(); | |
65e4e78e VZ |
10354 | } |
10355 | ||
10356 | attr->DecRef(); | |
10357 | } | |
10358 | ||
af547d51 VZ |
10359 | // now also compare with the column label extent |
10360 | wxCoord w, h; | |
65e4e78e | 10361 | dc.SetFont( GetLabelFont() ); |
294d195c MB |
10362 | |
10363 | if ( column ) | |
d43851f7 | 10364 | { |
9d4b8a5d | 10365 | dc.GetMultiLineTextExtent( GetColLabelValue(col), &w, &h ); |
4db6714b | 10366 | if ( GetColLabelTextOrientation() == wxVERTICAL ) |
d43851f7 JS |
10367 | w = h; |
10368 | } | |
294d195c | 10369 | else |
9d4b8a5d | 10370 | dc.GetMultiLineTextExtent( GetRowLabelValue(row), &w, &h ); |
294d195c | 10371 | |
af547d51 VZ |
10372 | extent = column ? w : h; |
10373 | if ( extent > extentMax ) | |
af547d51 | 10374 | extentMax = extent; |
65e4e78e | 10375 | |
af547d51 | 10376 | if ( !extentMax ) |
65e4e78e | 10377 | { |
af547d51 | 10378 | // empty column - give default extent (notice that if extentMax is less |
2f024384 | 10379 | // than default extent but != 0, it's OK) |
af547d51 | 10380 | extentMax = column ? m_defaultColWidth : m_defaultRowHeight; |
65e4e78e VZ |
10381 | } |
10382 | else | |
10383 | { | |
a95e38c0 | 10384 | if ( column ) |
a95e38c0 VZ |
10385 | // leave some space around text |
10386 | extentMax += 10; | |
f6bcfd97 | 10387 | else |
f6bcfd97 | 10388 | extentMax += 6; |
65e4e78e VZ |
10389 | } |
10390 | ||
edb89f7e VZ |
10391 | if ( column ) |
10392 | { | |
a01cfc08 VS |
10393 | // Ensure automatic width is not less than minimal width. See the |
10394 | // comment in SetColSize() for explanation of why this isn't done | |
10395 | // in SetColSize(). | |
10396 | if ( !setAsMin ) | |
10397 | extentMax = wxMax(extentMax, GetColMinimalWidth(col)); | |
10398 | ||
962a48f6 | 10399 | SetColSize( col, extentMax ); |
faec5a43 SN |
10400 | if ( !GetBatchCount() ) |
10401 | { | |
edb89f7e VZ |
10402 | int cw, ch, dummy; |
10403 | m_gridWin->GetClientSize( &cw, &ch ); | |
10404 | wxRect rect ( CellToRect( 0, col ) ); | |
10405 | rect.y = 0; | |
10406 | CalcScrolledPosition(rect.x, 0, &rect.x, &dummy); | |
10407 | rect.width = cw - rect.x; | |
10408 | rect.height = m_colLabelHeight; | |
ca65c044 | 10409 | m_colLabelWin->Refresh( true, &rect ); |
edb89f7e VZ |
10410 | } |
10411 | } | |
10412 | else | |
10413 | { | |
a01cfc08 VS |
10414 | // Ensure automatic width is not less than minimal height. See the |
10415 | // comment in SetColSize() for explanation of why this isn't done | |
10416 | // in SetRowSize(). | |
10417 | if ( !setAsMin ) | |
10418 | extentMax = wxMax(extentMax, GetRowMinimalHeight(row)); | |
10419 | ||
39bcce60 | 10420 | SetRowSize(row, extentMax); |
faec5a43 SN |
10421 | if ( !GetBatchCount() ) |
10422 | { | |
edb89f7e VZ |
10423 | int cw, ch, dummy; |
10424 | m_gridWin->GetClientSize( &cw, &ch ); | |
ccdee36f | 10425 | wxRect rect( CellToRect( row, 0 ) ); |
edb89f7e VZ |
10426 | rect.x = 0; |
10427 | CalcScrolledPosition(0, rect.y, &dummy, &rect.y); | |
10428 | rect.width = m_rowLabelWidth; | |
faec5a43 | 10429 | rect.height = ch - rect.y; |
ca65c044 | 10430 | m_rowLabelWin->Refresh( true, &rect ); |
edb89f7e | 10431 | } |
faec5a43 | 10432 | } |
2f024384 | 10433 | |
65e4e78e VZ |
10434 | if ( setAsMin ) |
10435 | { | |
af547d51 VZ |
10436 | if ( column ) |
10437 | SetColMinimalWidth(col, extentMax); | |
10438 | else | |
39bcce60 | 10439 | SetRowMinimalHeight(row, extentMax); |
65e4e78e VZ |
10440 | } |
10441 | } | |
10442 | ||
733f486a VZ |
10443 | wxCoord wxGrid::CalcColOrRowLabelAreaMinSize(wxGridDirection direction) |
10444 | { | |
10445 | // calculate size for the rows or columns? | |
10446 | const bool calcRows = direction == wxGRID_ROW; | |
10447 | ||
10448 | wxClientDC dc(calcRows ? GetGridRowLabelWindow() | |
10449 | : GetGridColLabelWindow()); | |
10450 | dc.SetFont(GetLabelFont()); | |
10451 | ||
10452 | // which dimension should we take into account for calculations? | |
10453 | // | |
10454 | // for columns, the text can be only horizontal so it's easy but for rows | |
10455 | // we also have to take into account the text orientation | |
10456 | const bool | |
10457 | useWidth = calcRows || (GetColLabelTextOrientation() == wxVERTICAL); | |
10458 | ||
10459 | wxArrayString lines; | |
10460 | wxCoord extentMax = 0; | |
10461 | ||
10462 | const int numRowsOrCols = calcRows ? m_numRows : m_numCols; | |
10463 | for ( int rowOrCol = 0; rowOrCol < numRowsOrCols; rowOrCol++ ) | |
10464 | { | |
10465 | lines.Clear(); | |
add4bb40 VS |
10466 | |
10467 | wxString label = calcRows ? GetRowLabelValue(rowOrCol) | |
10468 | : GetColLabelValue(rowOrCol); | |
10469 | StringToLines(label, lines); | |
733f486a VZ |
10470 | |
10471 | long w, h; | |
10472 | GetTextBoxSize(dc, lines, &w, &h); | |
10473 | ||
10474 | const wxCoord extent = useWidth ? w : h; | |
10475 | if ( extent > extentMax ) | |
10476 | extentMax = extent; | |
10477 | } | |
10478 | ||
10479 | if ( !extentMax ) | |
10480 | { | |
10481 | // empty column - give default extent (notice that if extentMax is less | |
10482 | // than default extent but != 0, it's OK) | |
10483 | extentMax = calcRows ? GetDefaultRowLabelSize() | |
10484 | : GetDefaultColLabelSize(); | |
10485 | } | |
10486 | ||
10487 | // leave some space around text (taken from AutoSizeColOrRow) | |
10488 | if ( calcRows ) | |
10489 | extentMax += 10; | |
10490 | else | |
10491 | extentMax += 6; | |
10492 | ||
10493 | return extentMax; | |
10494 | } | |
10495 | ||
266e8367 | 10496 | int wxGrid::SetOrCalcColumnSizes(bool calcOnly, bool setAsMin) |
65e4e78e | 10497 | { |
57c086ef VZ |
10498 | int width = m_rowLabelWidth; |
10499 | ||
b62f94ff VZ |
10500 | wxGridUpdateLocker locker; |
10501 | if(!calcOnly) | |
10502 | locker.Create(this); | |
97a9929e | 10503 | |
65e4e78e VZ |
10504 | for ( int col = 0; col < m_numCols; col++ ) |
10505 | { | |
266e8367 | 10506 | if ( !calcOnly ) |
266e8367 | 10507 | AutoSizeColumn(col, setAsMin); |
57c086ef VZ |
10508 | |
10509 | width += GetColWidth(col); | |
65e4e78e | 10510 | } |
97a9929e | 10511 | |
266e8367 | 10512 | return width; |
65e4e78e VZ |
10513 | } |
10514 | ||
266e8367 | 10515 | int wxGrid::SetOrCalcRowSizes(bool calcOnly, bool setAsMin) |
57c086ef VZ |
10516 | { |
10517 | int height = m_colLabelHeight; | |
10518 | ||
b62f94ff VZ |
10519 | wxGridUpdateLocker locker; |
10520 | if(!calcOnly) | |
10521 | locker.Create(this); | |
97a9929e | 10522 | |
57c086ef VZ |
10523 | for ( int row = 0; row < m_numRows; row++ ) |
10524 | { | |
af547d51 | 10525 | if ( !calcOnly ) |
af547d51 | 10526 | AutoSizeRow(row, setAsMin); |
57c086ef VZ |
10527 | |
10528 | height += GetRowHeight(row); | |
10529 | } | |
97a9929e | 10530 | |
266e8367 | 10531 | return height; |
57c086ef VZ |
10532 | } |
10533 | ||
10534 | void wxGrid::AutoSize() | |
10535 | { | |
b62f94ff | 10536 | wxGridUpdateLocker locker(this); |
97a9929e | 10537 | |
0ed3b812 VZ |
10538 | wxSize size(SetOrCalcColumnSizes(false) - m_rowLabelWidth + m_extraWidth, |
10539 | SetOrCalcRowSizes(false) - m_colLabelHeight + m_extraHeight); | |
97a9929e | 10540 | |
0ed3b812 VZ |
10541 | // we know that we're not going to have scrollbars so disable them now to |
10542 | // avoid trouble in SetClientSize() which can otherwise set the correct | |
10543 | // client size but also leave space for (not needed any more) scrollbars | |
39621ee0 | 10544 | SetScrollbars(0, 0, 0, 0, 0, 0, true); |
72b0a1de VZ |
10545 | |
10546 | // restore the scroll rate parameters overwritten by SetScrollbars() | |
10547 | SetScrollRate(m_scrollLineX, m_scrollLineY); | |
10548 | ||
10549 | SetClientSize(size.x + m_rowLabelWidth, size.y + m_colLabelHeight); | |
266e8367 VZ |
10550 | } |
10551 | ||
d43851f7 JS |
10552 | void wxGrid::AutoSizeRowLabelSize( int row ) |
10553 | { | |
d43851f7 | 10554 | // Hide the edit control, so it |
4db6714b KH |
10555 | // won't interfere with drag-shrinking. |
10556 | if ( IsCellEditControlShown() ) | |
d43851f7 JS |
10557 | { |
10558 | HideCellEditControl(); | |
10559 | SaveEditControlValue(); | |
10560 | } | |
10561 | ||
10562 | // autosize row height depending on label text | |
ad7502d8 | 10563 | SetRowSize(row, -1); |
d43851f7 JS |
10564 | ForceRefresh(); |
10565 | } | |
10566 | ||
10567 | void wxGrid::AutoSizeColLabelSize( int col ) | |
10568 | { | |
d43851f7 | 10569 | // Hide the edit control, so it |
c2f5b920 | 10570 | // won't interfere with drag-shrinking. |
4db6714b | 10571 | if ( IsCellEditControlShown() ) |
d43851f7 JS |
10572 | { |
10573 | HideCellEditControl(); | |
10574 | SaveEditControlValue(); | |
10575 | } | |
10576 | ||
10577 | // autosize column width depending on label text | |
ad7502d8 | 10578 | SetColSize(col, -1); |
d43851f7 JS |
10579 | ForceRefresh(); |
10580 | } | |
10581 | ||
266e8367 VZ |
10582 | wxSize wxGrid::DoGetBestSize() const |
10583 | { | |
266e8367 VZ |
10584 | wxGrid *self = (wxGrid *)this; // const_cast |
10585 | ||
dc4689ef VZ |
10586 | // we do the same as in AutoSize() here with the exception that we don't |
10587 | // change the column/row sizes, only calculate them | |
10588 | wxSize size(self->SetOrCalcColumnSizes(true) - m_rowLabelWidth + m_extraWidth, | |
10589 | self->SetOrCalcRowSizes(true) - m_colLabelHeight + m_extraHeight); | |
962a48f6 | 10590 | |
6d308072 RD |
10591 | // NOTE: This size should be cached, but first we need to add calls to |
10592 | // InvalidateBestSize everywhere that could change the results of this | |
10593 | // calculation. | |
10594 | // CacheBestSize(size); | |
962a48f6 | 10595 | |
72b0a1de | 10596 | return wxSize(size.x + m_rowLabelWidth, size.y + m_colLabelHeight) |
dc4689ef | 10597 | + GetWindowBorderSize(); |
266e8367 VZ |
10598 | } |
10599 | ||
10600 | void wxGrid::Fit() | |
10601 | { | |
10602 | AutoSize(); | |
57c086ef VZ |
10603 | } |
10604 | ||
6fc0f38f SN |
10605 | wxPen& wxGrid::GetDividerPen() const |
10606 | { | |
10607 | return wxNullPen; | |
10608 | } | |
10609 | ||
57c086ef VZ |
10610 | // ---------------------------------------------------------------------------- |
10611 | // cell value accessor functions | |
10612 | // ---------------------------------------------------------------------------- | |
f85afd4e MB |
10613 | |
10614 | void wxGrid::SetCellValue( int row, int col, const wxString& s ) | |
10615 | { | |
10616 | if ( m_table ) | |
10617 | { | |
f6bcfd97 | 10618 | m_table->SetValue( row, col, s ); |
2d66e025 MB |
10619 | if ( !GetBatchCount() ) |
10620 | { | |
27f35b66 SN |
10621 | int dummy; |
10622 | wxRect rect( CellToRect( row, col ) ); | |
10623 | rect.x = 0; | |
10624 | rect.width = m_gridWin->GetClientSize().GetWidth(); | |
10625 | CalcScrolledPosition(0, rect.y, &dummy, &rect.y); | |
ca65c044 | 10626 | m_gridWin->Refresh( false, &rect ); |
2d66e025 | 10627 | } |
60ff3b99 | 10628 | |
f85afd4e | 10629 | if ( m_currentCellCoords.GetRow() == row && |
4cfa5de6 | 10630 | m_currentCellCoords.GetCol() == col && |
f6bcfd97 BP |
10631 | IsCellEditControlShown()) |
10632 | // Note: If we are using IsCellEditControlEnabled, | |
10633 | // this interacts badly with calling SetCellValue from | |
10634 | // an EVT_GRID_CELL_CHANGE handler. | |
f85afd4e | 10635 | { |
4cfa5de6 RD |
10636 | HideCellEditControl(); |
10637 | ShowCellEditControl(); // will reread data from table | |
f85afd4e | 10638 | } |
f85afd4e MB |
10639 | } |
10640 | } | |
10641 | ||
962a48f6 | 10642 | // ---------------------------------------------------------------------------- |
2f024384 | 10643 | // block, row and column selection |
962a48f6 | 10644 | // ---------------------------------------------------------------------------- |
f85afd4e MB |
10645 | |
10646 | void wxGrid::SelectRow( int row, bool addToSelected ) | |
10647 | { | |
8b5f6d9d VZ |
10648 | if ( !m_selection ) |
10649 | return; | |
10650 | ||
10651 | if ( !addToSelected ) | |
e32352cf | 10652 | ClearSelection(); |
70c7a608 | 10653 | |
8b5f6d9d | 10654 | m_selection->SelectRow(row); |
f85afd4e MB |
10655 | } |
10656 | ||
f85afd4e MB |
10657 | void wxGrid::SelectCol( int col, bool addToSelected ) |
10658 | { | |
8b5f6d9d VZ |
10659 | if ( !m_selection ) |
10660 | return; | |
10661 | ||
10662 | if ( !addToSelected ) | |
e32352cf | 10663 | ClearSelection(); |
f85afd4e | 10664 | |
8b5f6d9d | 10665 | m_selection->SelectCol(col); |
f85afd4e MB |
10666 | } |
10667 | ||
8b5f6d9d VZ |
10668 | void wxGrid::SelectBlock(int topRow, int leftCol, int bottomRow, int rightCol, |
10669 | bool addToSelected) | |
f85afd4e | 10670 | { |
8b5f6d9d VZ |
10671 | if ( !m_selection ) |
10672 | return; | |
10673 | ||
10674 | if ( !addToSelected ) | |
c9097836 | 10675 | ClearSelection(); |
f85afd4e | 10676 | |
8b5f6d9d | 10677 | m_selection->SelectBlock(topRow, leftCol, bottomRow, rightCol); |
f85afd4e MB |
10678 | } |
10679 | ||
10680 | void wxGrid::SelectAll() | |
10681 | { | |
f74d0b57 | 10682 | if ( m_numRows > 0 && m_numCols > 0 ) |
3f3dc2ef VZ |
10683 | { |
10684 | if ( m_selection ) | |
ccdee36f | 10685 | m_selection->SelectBlock( 0, 0, m_numRows - 1, m_numCols - 1 ); |
3f3dc2ef | 10686 | } |
b5808881 | 10687 | } |
f85afd4e | 10688 | |
962a48f6 DS |
10689 | // ---------------------------------------------------------------------------- |
10690 | // cell, row and col deselection | |
10691 | // ---------------------------------------------------------------------------- | |
f7b4b343 | 10692 | |
bec70262 | 10693 | void wxGrid::DeselectLine(int line, const wxGridOperations& oper) |
f7b4b343 | 10694 | { |
3f3dc2ef VZ |
10695 | if ( !m_selection ) |
10696 | return; | |
10697 | ||
bec70262 VZ |
10698 | const wxGridSelectionModes mode = m_selection->GetSelectionMode(); |
10699 | if ( mode == oper.GetSelectionMode() ) | |
f7b4b343 | 10700 | { |
bec70262 VZ |
10701 | const wxGridCellCoords c(oper.MakeCoords(line, 0)); |
10702 | if ( m_selection->IsInSelection(c) ) | |
10703 | m_selection->ToggleCellSelection(c); | |
ffdd3c98 | 10704 | } |
bec70262 | 10705 | else if ( mode != oper.Dual().GetSelectionMode() ) |
f7b4b343 | 10706 | { |
bec70262 VZ |
10707 | const int nOther = oper.Dual().GetNumberOfLines(this); |
10708 | for ( int i = 0; i < nOther; i++ ) | |
f7b4b343 | 10709 | { |
bec70262 VZ |
10710 | const wxGridCellCoords c(oper.MakeCoords(line, i)); |
10711 | if ( m_selection->IsInSelection(c) ) | |
10712 | m_selection->ToggleCellSelection(c); | |
f7b4b343 VZ |
10713 | } |
10714 | } | |
bec70262 VZ |
10715 | //else: can only select orthogonal lines so no lines in this direction |
10716 | // could have been selected anyhow | |
f7b4b343 VZ |
10717 | } |
10718 | ||
bec70262 | 10719 | void wxGrid::DeselectRow(int row) |
f7b4b343 | 10720 | { |
bec70262 VZ |
10721 | DeselectLine(row, wxGridRowOperations()); |
10722 | } | |
3f3dc2ef | 10723 | |
bec70262 VZ |
10724 | void wxGrid::DeselectCol(int col) |
10725 | { | |
10726 | DeselectLine(col, wxGridColumnOperations()); | |
f7b4b343 VZ |
10727 | } |
10728 | ||
10729 | void wxGrid::DeselectCell( int row, int col ) | |
10730 | { | |
3f3dc2ef | 10731 | if ( m_selection && m_selection->IsInSelection(row, col) ) |
f7b4b343 VZ |
10732 | m_selection->ToggleCellSelection(row, col); |
10733 | } | |
10734 | ||
ef316e23 | 10735 | bool wxGrid::IsSelection() const |
b5808881 | 10736 | { |
3f3dc2ef | 10737 | return ( m_selection && (m_selection->IsSelection() || |
8a3e536c VZ |
10738 | ( m_selectedBlockTopLeft != wxGridNoCellCoords && |
10739 | m_selectedBlockBottomRight != wxGridNoCellCoords) ) ); | |
f85afd4e MB |
10740 | } |
10741 | ||
84035150 | 10742 | bool wxGrid::IsInSelection( int row, int col ) const |
b5808881 | 10743 | { |
3f3dc2ef | 10744 | return ( m_selection && (m_selection->IsInSelection( row, col ) || |
8a3e536c VZ |
10745 | ( row >= m_selectedBlockTopLeft.GetRow() && |
10746 | col >= m_selectedBlockTopLeft.GetCol() && | |
10747 | row <= m_selectedBlockBottomRight.GetRow() && | |
10748 | col <= m_selectedBlockBottomRight.GetCol() )) ); | |
b5808881 | 10749 | } |
f85afd4e | 10750 | |
aa5b8857 SN |
10751 | wxGridCellCoordsArray wxGrid::GetSelectedCells() const |
10752 | { | |
4db6714b KH |
10753 | if (!m_selection) |
10754 | { | |
10755 | wxGridCellCoordsArray a; | |
10756 | return a; | |
10757 | } | |
10758 | ||
aa5b8857 SN |
10759 | return m_selection->m_cellSelection; |
10760 | } | |
4db6714b | 10761 | |
aa5b8857 SN |
10762 | wxGridCellCoordsArray wxGrid::GetSelectionBlockTopLeft() const |
10763 | { | |
4db6714b KH |
10764 | if (!m_selection) |
10765 | { | |
10766 | wxGridCellCoordsArray a; | |
10767 | return a; | |
10768 | } | |
10769 | ||
aa5b8857 SN |
10770 | return m_selection->m_blockSelectionTopLeft; |
10771 | } | |
4db6714b | 10772 | |
aa5b8857 SN |
10773 | wxGridCellCoordsArray wxGrid::GetSelectionBlockBottomRight() const |
10774 | { | |
4db6714b KH |
10775 | if (!m_selection) |
10776 | { | |
10777 | wxGridCellCoordsArray a; | |
10778 | return a; | |
10779 | } | |
10780 | ||
a8de8190 | 10781 | return m_selection->m_blockSelectionBottomRight; |
aa5b8857 | 10782 | } |
4db6714b | 10783 | |
aa5b8857 SN |
10784 | wxArrayInt wxGrid::GetSelectedRows() const |
10785 | { | |
4db6714b KH |
10786 | if (!m_selection) |
10787 | { | |
10788 | wxArrayInt a; | |
10789 | return a; | |
10790 | } | |
10791 | ||
aa5b8857 SN |
10792 | return m_selection->m_rowSelection; |
10793 | } | |
4db6714b | 10794 | |
aa5b8857 SN |
10795 | wxArrayInt wxGrid::GetSelectedCols() const |
10796 | { | |
4db6714b KH |
10797 | if (!m_selection) |
10798 | { | |
10799 | wxArrayInt a; | |
10800 | return a; | |
10801 | } | |
10802 | ||
aa5b8857 SN |
10803 | return m_selection->m_colSelection; |
10804 | } | |
10805 | ||
f85afd4e MB |
10806 | void wxGrid::ClearSelection() |
10807 | { | |
8a3e536c VZ |
10808 | wxRect r1 = BlockToDeviceRect(m_selectedBlockTopLeft, |
10809 | m_selectedBlockBottomRight); | |
10810 | wxRect r2 = BlockToDeviceRect(m_currentCellCoords, | |
10811 | m_selectedBlockCorner); | |
10812 | ||
10813 | m_selectedBlockTopLeft = | |
10814 | m_selectedBlockBottomRight = | |
10815 | m_selectedBlockCorner = wxGridNoCellCoords; | |
10816 | ||
6fb1c1cb SN |
10817 | Refresh( false, &r1 ); |
10818 | Refresh( false, &r2 ); | |
8a3e536c | 10819 | |
3f3dc2ef VZ |
10820 | if ( m_selection ) |
10821 | m_selection->ClearSelection(); | |
8f177c8e | 10822 | } |
f85afd4e | 10823 | |
da6af900 | 10824 | // This function returns the rectangle that encloses the given block |
2d66e025 MB |
10825 | // in device coords clipped to the client size of the grid window. |
10826 | // | |
731330ec VZ |
10827 | wxRect wxGrid::BlockToDeviceRect( const wxGridCellCoords& topLeft, |
10828 | const wxGridCellCoords& bottomRight ) const | |
f85afd4e | 10829 | { |
731330ec VZ |
10830 | wxRect resultRect; |
10831 | wxRect tempCellRect = CellToRect(topLeft); | |
10832 | if ( tempCellRect != wxGridNoCellRect ) | |
f85afd4e | 10833 | { |
731330ec | 10834 | resultRect = tempCellRect; |
58dd5b3b MB |
10835 | } |
10836 | else | |
10837 | { | |
731330ec | 10838 | resultRect = wxRect(0, 0, 0, 0); |
58dd5b3b | 10839 | } |
60ff3b99 | 10840 | |
731330ec VZ |
10841 | tempCellRect = CellToRect(bottomRight); |
10842 | if ( tempCellRect != wxGridNoCellRect ) | |
58dd5b3b | 10843 | { |
731330ec | 10844 | resultRect += tempCellRect; |
2d66e025 MB |
10845 | } |
10846 | else | |
10847 | { | |
731330ec | 10848 | // If both inputs were "wxGridNoCellRect," then there's nothing to do. |
2d66e025 | 10849 | return wxGridNoCellRect; |
f85afd4e MB |
10850 | } |
10851 | ||
731330ec VZ |
10852 | // Ensure that left/right and top/bottom pairs are in order. |
10853 | int left = resultRect.GetLeft(); | |
10854 | int top = resultRect.GetTop(); | |
10855 | int right = resultRect.GetRight(); | |
10856 | int bottom = resultRect.GetBottom(); | |
27f35b66 SN |
10857 | |
10858 | int leftCol = topLeft.GetCol(); | |
10859 | int topRow = topLeft.GetRow(); | |
10860 | int rightCol = bottomRight.GetCol(); | |
10861 | int bottomRow = bottomRight.GetRow(); | |
10862 | ||
3ed884a0 SN |
10863 | if (left > right) |
10864 | { | |
731330ec | 10865 | int tmp = left; |
3ed884a0 | 10866 | left = right; |
731330ec VZ |
10867 | right = tmp; |
10868 | ||
10869 | tmp = leftCol; | |
4db6714b | 10870 | leftCol = rightCol; |
731330ec | 10871 | rightCol = tmp; |
3ed884a0 SN |
10872 | } |
10873 | ||
10874 | if (top > bottom) | |
10875 | { | |
731330ec | 10876 | int tmp = top; |
3ed884a0 | 10877 | top = bottom; |
731330ec VZ |
10878 | bottom = tmp; |
10879 | ||
10880 | tmp = topRow; | |
3ed884a0 | 10881 | topRow = bottomRow; |
731330ec | 10882 | bottomRow = tmp; |
3ed884a0 SN |
10883 | } |
10884 | ||
731330ec VZ |
10885 | // The following loop is ONLY necessary to detect and handle merged cells. |
10886 | int cw, ch; | |
10887 | m_gridWin->GetClientSize( &cw, &ch ); | |
10888 | ||
10889 | // Get the origin coordinates: notice that they will be negative if the | |
10890 | // grid is scrolled downwards/to the right. | |
10891 | int gridOriginX = 0; | |
10892 | int gridOriginY = 0; | |
10893 | CalcScrolledPosition(gridOriginX, gridOriginY, &gridOriginX, &gridOriginY); | |
10894 | ||
10895 | int onScreenLeftmostCol = internalXToCol(-gridOriginX); | |
10896 | int onScreenUppermostRow = internalYToRow(-gridOriginY); | |
10897 | ||
10898 | int onScreenRightmostCol = internalXToCol(-gridOriginX + cw); | |
10899 | int onScreenBottommostRow = internalYToRow(-gridOriginY + ch); | |
10900 | ||
10901 | // Bound our loop so that we only examine the portion of the selected block | |
10902 | // that is shown on screen. Therefore, we compare the Top-Left block values | |
10903 | // to the Top-Left screen values, and the Bottom-Right block values to the | |
10904 | // Bottom-Right screen values, choosing appropriately. | |
10905 | const int visibleTopRow = wxMax(topRow, onScreenUppermostRow); | |
10906 | const int visibleBottomRow = wxMin(bottomRow, onScreenBottommostRow); | |
10907 | const int visibleLeftCol = wxMax(leftCol, onScreenLeftmostCol); | |
10908 | const int visibleRightCol = wxMin(rightCol, onScreenRightmostCol); | |
10909 | ||
10910 | for ( int j = visibleTopRow; j <= visibleBottomRow; j++ ) | |
27f35b66 | 10911 | { |
731330ec | 10912 | for ( int i = visibleLeftCol; i <= visibleRightCol; i++ ) |
27f35b66 | 10913 | { |
731330ec VZ |
10914 | if ( (j == visibleTopRow) || (j == visibleBottomRow) || |
10915 | (i == visibleLeftCol) || (i == visibleRightCol) ) | |
27f35b66 | 10916 | { |
731330ec | 10917 | tempCellRect = CellToRect( j, i ); |
27f35b66 | 10918 | |
731330ec VZ |
10919 | if (tempCellRect.x < left) |
10920 | left = tempCellRect.x; | |
10921 | if (tempCellRect.y < top) | |
10922 | top = tempCellRect.y; | |
10923 | if (tempCellRect.x + tempCellRect.width > right) | |
10924 | right = tempCellRect.x + tempCellRect.width; | |
10925 | if (tempCellRect.y + tempCellRect.height > bottom) | |
10926 | bottom = tempCellRect.y + tempCellRect.height; | |
27f35b66 | 10927 | } |
4db6714b KH |
10928 | else |
10929 | { | |
731330ec | 10930 | i = visibleRightCol; // jump over inner cells. |
4db6714b | 10931 | } |
27f35b66 SN |
10932 | } |
10933 | } | |
10934 | ||
731330ec | 10935 | // Convert to scrolled coords |
27f35b66 SN |
10936 | CalcScrolledPosition( left, top, &left, &top ); |
10937 | CalcScrolledPosition( right, bottom, &right, &bottom ); | |
58dd5b3b | 10938 | |
f6bcfd97 | 10939 | if (right < 0 || bottom < 0 || left > cw || top > ch) |
c47addef | 10940 | return wxRect(0,0,0,0); |
f6bcfd97 | 10941 | |
731330ec VZ |
10942 | resultRect.SetLeft( wxMax(0, left) ); |
10943 | resultRect.SetTop( wxMax(0, top) ); | |
10944 | resultRect.SetRight( wxMin(cw, right) ); | |
10945 | resultRect.SetBottom( wxMin(ch, bottom) ); | |
58dd5b3b | 10946 | |
731330ec | 10947 | return resultRect; |
f85afd4e MB |
10948 | } |
10949 | ||
1edce33f VZ |
10950 | // ---------------------------------------------------------------------------- |
10951 | // drop target | |
10952 | // ---------------------------------------------------------------------------- | |
10953 | ||
10954 | #if wxUSE_DRAG_AND_DROP | |
10955 | ||
10956 | // this allow setting drop target directly on wxGrid | |
10957 | void wxGrid::SetDropTarget(wxDropTarget *dropTarget) | |
10958 | { | |
10959 | GetGridWindow()->SetDropTarget(dropTarget); | |
10960 | } | |
10961 | ||
10962 | #endif // wxUSE_DRAG_AND_DROP | |
10963 | ||
962a48f6 DS |
10964 | // ---------------------------------------------------------------------------- |
10965 | // grid event classes | |
10966 | // ---------------------------------------------------------------------------- | |
f85afd4e | 10967 | |
bf7945ce | 10968 | IMPLEMENT_DYNAMIC_CLASS( wxGridEvent, wxNotifyEvent ) |
f85afd4e MB |
10969 | |
10970 | wxGridEvent::wxGridEvent( int id, wxEventType type, wxObject* obj, | |
5c8fc7c1 | 10971 | int row, int col, int x, int y, bool sel, |
f85afd4e | 10972 | bool control, bool shift, bool alt, bool meta ) |
8b5f6d9d VZ |
10973 | : wxNotifyEvent( type, id ), |
10974 | wxKeyboardState(control, shift, alt, meta) | |
f85afd4e | 10975 | { |
8b5f6d9d | 10976 | Init(row, col, x, y, sel); |
8f177c8e | 10977 | |
f85afd4e MB |
10978 | SetEventObject(obj); |
10979 | } | |
10980 | ||
bf7945ce | 10981 | IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent, wxNotifyEvent ) |
f85afd4e MB |
10982 | |
10983 | wxGridSizeEvent::wxGridSizeEvent( int id, wxEventType type, wxObject* obj, | |
10984 | int rowOrCol, int x, int y, | |
10985 | bool control, bool shift, bool alt, bool meta ) | |
8b5f6d9d VZ |
10986 | : wxNotifyEvent( type, id ), |
10987 | wxKeyboardState(control, shift, alt, meta) | |
f85afd4e | 10988 | { |
8b5f6d9d | 10989 | Init(rowOrCol, x, y); |
8f177c8e | 10990 | |
f85afd4e MB |
10991 | SetEventObject(obj); |
10992 | } | |
10993 | ||
10994 | ||
bf7945ce | 10995 | IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent, wxNotifyEvent ) |
f85afd4e MB |
10996 | |
10997 | wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id, wxEventType type, wxObject* obj, | |
8f177c8e VZ |
10998 | const wxGridCellCoords& topLeft, |
10999 | const wxGridCellCoords& bottomRight, | |
5c8fc7c1 SN |
11000 | bool sel, bool control, |
11001 | bool shift, bool alt, bool meta ) | |
8b5f6d9d VZ |
11002 | : wxNotifyEvent( type, id ), |
11003 | wxKeyboardState(control, shift, alt, meta) | |
11004 | { | |
11005 | Init(topLeft, bottomRight, sel); | |
f85afd4e MB |
11006 | |
11007 | SetEventObject(obj); | |
11008 | } | |
11009 | ||
11010 | ||
bf7945ce RD |
11011 | IMPLEMENT_DYNAMIC_CLASS(wxGridEditorCreatedEvent, wxCommandEvent) |
11012 | ||
11013 | wxGridEditorCreatedEvent::wxGridEditorCreatedEvent(int id, wxEventType type, | |
11014 | wxObject* obj, int row, | |
11015 | int col, wxControl* ctrl) | |
11016 | : wxCommandEvent(type, id) | |
11017 | { | |
11018 | SetEventObject(obj); | |
11019 | m_row = row; | |
11020 | m_col = col; | |
11021 | m_ctrl = ctrl; | |
11022 | } | |
11023 | ||
27b92ca4 | 11024 | #endif // wxUSE_GRID |