]>
Commit | Line | Data |
---|---|---|
a3ef8eb5 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/generic/private/grid.h | |
3 | // Purpose: Private wxGrid structures | |
4 | // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn) | |
5 | // Modified by: Santiago Palacios | |
6 | // Created: 1/08/1999 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Michael Bedward | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_GENERIC_GRID_PRIVATE_H_ | |
13 | #define _WX_GENERIC_GRID_PRIVATE_H_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | ||
17 | #if wxUSE_GRID | |
18 | ||
19 | // ---------------------------------------------------------------------------- | |
20 | // array classes | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
23 | WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridCellAttr *, wxArrayAttrs, | |
24 | class WXDLLIMPEXP_ADV); | |
25 | ||
26 | struct wxGridCellWithAttr | |
27 | { | |
28 | wxGridCellWithAttr(int row, int col, wxGridCellAttr *attr_) | |
29 | : coords(row, col), attr(attr_) | |
30 | { | |
31 | wxASSERT( attr ); | |
32 | } | |
33 | ||
34 | wxGridCellWithAttr(const wxGridCellWithAttr& other) | |
35 | : coords(other.coords), | |
36 | attr(other.attr) | |
37 | { | |
38 | attr->IncRef(); | |
39 | } | |
40 | ||
41 | wxGridCellWithAttr& operator=(const wxGridCellWithAttr& other) | |
42 | { | |
43 | coords = other.coords; | |
44 | if (attr != other.attr) | |
45 | { | |
46 | attr->DecRef(); | |
47 | attr = other.attr; | |
48 | attr->IncRef(); | |
49 | } | |
50 | return *this; | |
51 | } | |
52 | ||
53 | void ChangeAttr(wxGridCellAttr* new_attr) | |
54 | { | |
55 | if (attr != new_attr) | |
56 | { | |
57 | // "Delete" (i.e. DecRef) the old attribute. | |
58 | attr->DecRef(); | |
59 | attr = new_attr; | |
60 | // Take ownership of the new attribute, i.e. no IncRef. | |
61 | } | |
62 | } | |
63 | ||
64 | ~wxGridCellWithAttr() | |
65 | { | |
66 | attr->DecRef(); | |
67 | } | |
68 | ||
69 | wxGridCellCoords coords; | |
70 | wxGridCellAttr *attr; | |
71 | }; | |
72 | ||
73 | WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellWithAttr, wxGridCellWithAttrArray, | |
74 | class WXDLLIMPEXP_ADV); | |
75 | ||
76 | ||
77 | // ---------------------------------------------------------------------------- | |
78 | // private classes | |
79 | // ---------------------------------------------------------------------------- | |
80 | ||
81 | // header column providing access to the column information stored in wxGrid | |
82 | // via wxHeaderColumn interface | |
83 | class wxGridHeaderColumn : public wxHeaderColumn | |
84 | { | |
85 | public: | |
86 | wxGridHeaderColumn(wxGrid *grid, int col) | |
87 | : m_grid(grid), | |
88 | m_col(col) | |
89 | { | |
90 | } | |
91 | ||
92 | virtual wxString GetTitle() const { return m_grid->GetColLabelValue(m_col); } | |
93 | virtual wxBitmap GetBitmap() const { return wxNullBitmap; } | |
94 | virtual int GetWidth() const { return m_grid->GetColSize(m_col); } | |
95 | virtual int GetMinWidth() const { return 0; } | |
96 | virtual wxAlignment GetAlignment() const | |
97 | { | |
98 | int horz, | |
99 | vert; | |
100 | m_grid->GetColLabelAlignment(&horz, &vert); | |
101 | ||
102 | return static_cast<wxAlignment>(horz); | |
103 | } | |
104 | ||
105 | virtual int GetFlags() const | |
106 | { | |
107 | // we can't know in advance whether we can sort by this column or not | |
108 | // with wxGrid API so suppose we can by default | |
109 | int flags = wxCOL_SORTABLE; | |
82edfbe7 | 110 | if ( m_grid->CanDragColSize(m_col) ) |
a3ef8eb5 VZ |
111 | flags |= wxCOL_RESIZABLE; |
112 | if ( m_grid->CanDragColMove() ) | |
113 | flags |= wxCOL_REORDERABLE; | |
114 | if ( GetWidth() == 0 ) | |
115 | flags |= wxCOL_HIDDEN; | |
116 | ||
117 | return flags; | |
118 | } | |
119 | ||
120 | virtual bool IsSortKey() const | |
121 | { | |
122 | return m_grid->IsSortingBy(m_col); | |
123 | } | |
124 | ||
125 | virtual bool IsSortOrderAscending() const | |
126 | { | |
127 | return m_grid->IsSortOrderAscending(); | |
128 | } | |
129 | ||
130 | private: | |
131 | // these really should be const but are not because the column needs to be | |
132 | // assignable to be used in a wxVector (in STL build, in non-STL build we | |
133 | // avoid the need for this) | |
134 | wxGrid *m_grid; | |
135 | int m_col; | |
136 | }; | |
137 | ||
138 | // header control retreiving column information from the grid | |
139 | class wxGridHeaderCtrl : public wxHeaderCtrl | |
140 | { | |
141 | public: | |
142 | wxGridHeaderCtrl(wxGrid *owner) | |
143 | : wxHeaderCtrl(owner, | |
144 | wxID_ANY, | |
145 | wxDefaultPosition, | |
146 | wxDefaultSize, | |
147 | wxHD_ALLOW_HIDE | | |
148 | (owner->CanDragColMove() ? wxHD_ALLOW_REORDER : 0)) | |
149 | { | |
150 | } | |
151 | ||
152 | protected: | |
153 | virtual const wxHeaderColumn& GetColumn(unsigned int idx) const | |
154 | { | |
155 | return m_columns[idx]; | |
156 | } | |
157 | ||
158 | private: | |
159 | wxGrid *GetOwner() const { return static_cast<wxGrid *>(GetParent()); } | |
160 | ||
4a07d706 VZ |
161 | static wxMouseEvent GetDummyMouseEvent() |
162 | { | |
163 | // make up a dummy event for the grid event to use -- unfortunately we | |
164 | // can't do anything else here | |
165 | wxMouseEvent e; | |
166 | e.SetState(wxGetMouseState()); | |
167 | return e; | |
168 | } | |
169 | ||
a3ef8eb5 VZ |
170 | // override the base class method to update our m_columns array |
171 | virtual void OnColumnCountChanging(unsigned int count) | |
172 | { | |
173 | const unsigned countOld = m_columns.size(); | |
174 | if ( count < countOld ) | |
175 | { | |
176 | // just discard the columns which don't exist any more (notice that | |
177 | // we can't use resize() here as it would require the vector | |
178 | // value_type, i.e. wxGridHeaderColumn to be default constructible, | |
179 | // which it is not) | |
180 | m_columns.erase(m_columns.begin() + count, m_columns.end()); | |
181 | } | |
182 | else // new columns added | |
183 | { | |
184 | // add columns for the new elements | |
185 | for ( unsigned n = countOld; n < count; n++ ) | |
186 | m_columns.push_back(wxGridHeaderColumn(GetOwner(), n)); | |
187 | } | |
188 | } | |
189 | ||
190 | // override to implement column auto sizing | |
191 | virtual bool UpdateColumnWidthToFit(unsigned int idx, int widthTitle) | |
192 | { | |
193 | // TODO: currently grid doesn't support computing the column best width | |
194 | // from its contents so we just use the best label width as is | |
195 | GetOwner()->SetColSize(idx, widthTitle); | |
196 | ||
197 | return true; | |
198 | } | |
199 | ||
200 | // overridden to react to the actions using the columns popup menu | |
201 | virtual void UpdateColumnVisibility(unsigned int idx, bool show) | |
202 | { | |
203 | GetOwner()->SetColSize(idx, show ? wxGRID_AUTOSIZE : 0); | |
204 | ||
205 | // as this is done by the user we should notify the main program about | |
206 | // it | |
4a07d706 VZ |
207 | GetOwner()->SendGridSizeEvent(wxEVT_GRID_COL_SIZE, -1, idx, |
208 | GetDummyMouseEvent()); | |
a3ef8eb5 VZ |
209 | } |
210 | ||
211 | // overridden to react to the columns order changes in the customization | |
212 | // dialog | |
213 | virtual void UpdateColumnsOrder(const wxArrayInt& order) | |
214 | { | |
215 | GetOwner()->SetColumnsOrder(order); | |
216 | } | |
217 | ||
218 | ||
219 | // event handlers forwarding wxHeaderCtrl events to wxGrid | |
220 | void OnClick(wxHeaderCtrlEvent& event) | |
221 | { | |
4a07d706 VZ |
222 | GetOwner()->SendEvent(wxEVT_GRID_LABEL_LEFT_CLICK, |
223 | -1, event.GetColumn(), | |
224 | GetDummyMouseEvent()); | |
225 | ||
a3ef8eb5 VZ |
226 | GetOwner()->DoColHeaderClick(event.GetColumn()); |
227 | } | |
228 | ||
4a07d706 VZ |
229 | void OnDoubleClick(wxHeaderCtrlEvent& event) |
230 | { | |
231 | if ( !GetOwner()->SendEvent(wxEVT_GRID_LABEL_LEFT_DCLICK, | |
232 | -1, event.GetColumn(), | |
233 | GetDummyMouseEvent()) ) | |
234 | { | |
235 | event.Skip(); | |
236 | } | |
237 | } | |
238 | ||
239 | void OnRightClick(wxHeaderCtrlEvent& event) | |
240 | { | |
241 | if ( !GetOwner()->SendEvent(wxEVT_GRID_LABEL_RIGHT_CLICK, | |
242 | -1, event.GetColumn(), | |
243 | GetDummyMouseEvent()) ) | |
244 | { | |
245 | event.Skip(); | |
246 | } | |
247 | } | |
248 | ||
a3ef8eb5 VZ |
249 | void OnBeginResize(wxHeaderCtrlEvent& event) |
250 | { | |
251 | GetOwner()->DoStartResizeCol(event.GetColumn()); | |
252 | ||
253 | event.Skip(); | |
254 | } | |
255 | ||
256 | void OnResizing(wxHeaderCtrlEvent& event) | |
257 | { | |
258 | GetOwner()->DoUpdateResizeColWidth(event.GetWidth()); | |
259 | } | |
260 | ||
261 | void OnEndResize(wxHeaderCtrlEvent& event) | |
262 | { | |
27bb2c8c VZ |
263 | // we again need to pass a mouse event to be used for the grid event |
264 | // generation but we don't have it here so use a dummy one as in | |
265 | // UpdateColumnVisibility() | |
266 | wxMouseEvent e; | |
267 | e.SetState(wxGetMouseState()); | |
268 | GetOwner()->DoEndDragResizeCol(e); | |
a3ef8eb5 VZ |
269 | |
270 | event.Skip(); | |
271 | } | |
272 | ||
273 | void OnBeginReorder(wxHeaderCtrlEvent& event) | |
274 | { | |
275 | GetOwner()->DoStartMoveCol(event.GetColumn()); | |
276 | } | |
277 | ||
278 | void OnEndReorder(wxHeaderCtrlEvent& event) | |
279 | { | |
280 | GetOwner()->DoEndMoveCol(event.GetNewOrder()); | |
281 | } | |
282 | ||
283 | wxVector<wxGridHeaderColumn> m_columns; | |
284 | ||
285 | DECLARE_EVENT_TABLE() | |
286 | wxDECLARE_NO_COPY_CLASS(wxGridHeaderCtrl); | |
287 | }; | |
288 | ||
289 | // common base class for various grid subwindows | |
290 | class WXDLLIMPEXP_ADV wxGridSubwindow : public wxWindow | |
291 | { | |
292 | public: | |
293 | wxGridSubwindow(wxGrid *owner, | |
294 | int additionalStyle = 0, | |
295 | const wxString& name = wxPanelNameStr) | |
296 | : wxWindow(owner, wxID_ANY, | |
297 | wxDefaultPosition, wxDefaultSize, | |
298 | wxBORDER_NONE | additionalStyle, | |
299 | name) | |
300 | { | |
301 | m_owner = owner; | |
302 | } | |
303 | ||
304 | virtual bool AcceptsFocus() const { return false; } | |
305 | ||
306 | wxGrid *GetOwner() { return m_owner; } | |
307 | ||
308 | protected: | |
309 | void OnMouseCaptureLost(wxMouseCaptureLostEvent& event); | |
310 | ||
311 | wxGrid *m_owner; | |
312 | ||
313 | DECLARE_EVENT_TABLE() | |
314 | wxDECLARE_NO_COPY_CLASS(wxGridSubwindow); | |
315 | }; | |
316 | ||
317 | class WXDLLIMPEXP_ADV wxGridRowLabelWindow : public wxGridSubwindow | |
318 | { | |
319 | public: | |
320 | wxGridRowLabelWindow(wxGrid *parent) | |
321 | : wxGridSubwindow(parent) | |
322 | { | |
323 | } | |
324 | ||
325 | ||
326 | private: | |
327 | void OnPaint( wxPaintEvent& event ); | |
328 | void OnMouseEvent( wxMouseEvent& event ); | |
329 | void OnMouseWheel( wxMouseEvent& event ); | |
330 | ||
331 | DECLARE_EVENT_TABLE() | |
332 | wxDECLARE_NO_COPY_CLASS(wxGridRowLabelWindow); | |
333 | }; | |
334 | ||
335 | ||
336 | class WXDLLIMPEXP_ADV wxGridColLabelWindow : public wxGridSubwindow | |
337 | { | |
338 | public: | |
339 | wxGridColLabelWindow(wxGrid *parent) | |
340 | : wxGridSubwindow(parent) | |
341 | { | |
342 | } | |
343 | ||
344 | ||
345 | private: | |
346 | void OnPaint( wxPaintEvent& event ); | |
347 | void OnMouseEvent( wxMouseEvent& event ); | |
348 | void OnMouseWheel( wxMouseEvent& event ); | |
349 | ||
350 | DECLARE_EVENT_TABLE() | |
351 | wxDECLARE_NO_COPY_CLASS(wxGridColLabelWindow); | |
352 | }; | |
353 | ||
354 | ||
355 | class WXDLLIMPEXP_ADV wxGridCornerLabelWindow : public wxGridSubwindow | |
356 | { | |
357 | public: | |
358 | wxGridCornerLabelWindow(wxGrid *parent) | |
359 | : wxGridSubwindow(parent) | |
360 | { | |
361 | } | |
362 | ||
363 | private: | |
364 | void OnMouseEvent( wxMouseEvent& event ); | |
365 | void OnMouseWheel( wxMouseEvent& event ); | |
366 | void OnPaint( wxPaintEvent& event ); | |
367 | ||
368 | DECLARE_EVENT_TABLE() | |
369 | wxDECLARE_NO_COPY_CLASS(wxGridCornerLabelWindow); | |
370 | }; | |
371 | ||
372 | class WXDLLIMPEXP_ADV wxGridWindow : public wxGridSubwindow | |
373 | { | |
374 | public: | |
375 | wxGridWindow(wxGrid *parent) | |
376 | : wxGridSubwindow(parent, | |
377 | wxWANTS_CHARS | wxCLIP_CHILDREN, | |
378 | "GridWindow") | |
379 | { | |
380 | } | |
381 | ||
382 | ||
383 | virtual void ScrollWindow( int dx, int dy, const wxRect *rect ); | |
384 | ||
385 | virtual bool AcceptsFocus() const { return true; } | |
386 | ||
387 | private: | |
388 | void OnPaint( wxPaintEvent &event ); | |
389 | void OnMouseWheel( wxMouseEvent& event ); | |
390 | void OnMouseEvent( wxMouseEvent& event ); | |
391 | void OnKeyDown( wxKeyEvent& ); | |
392 | void OnKeyUp( wxKeyEvent& ); | |
393 | void OnChar( wxKeyEvent& ); | |
394 | void OnEraseBackground( wxEraseEvent& ); | |
395 | void OnFocus( wxFocusEvent& ); | |
396 | ||
397 | DECLARE_EVENT_TABLE() | |
398 | wxDECLARE_NO_COPY_CLASS(wxGridWindow); | |
399 | }; | |
400 | ||
401 | // ---------------------------------------------------------------------------- | |
402 | // the internal data representation used by wxGridCellAttrProvider | |
403 | // ---------------------------------------------------------------------------- | |
404 | ||
405 | // this class stores attributes set for cells | |
406 | class WXDLLIMPEXP_ADV wxGridCellAttrData | |
407 | { | |
408 | public: | |
409 | void SetAttr(wxGridCellAttr *attr, int row, int col); | |
410 | wxGridCellAttr *GetAttr(int row, int col) const; | |
411 | void UpdateAttrRows( size_t pos, int numRows ); | |
412 | void UpdateAttrCols( size_t pos, int numCols ); | |
413 | ||
414 | private: | |
415 | // searches for the attr for given cell, returns wxNOT_FOUND if not found | |
416 | int FindIndex(int row, int col) const; | |
417 | ||
418 | wxGridCellWithAttrArray m_attrs; | |
419 | }; | |
420 | ||
421 | // this class stores attributes set for rows or columns | |
422 | class WXDLLIMPEXP_ADV wxGridRowOrColAttrData | |
423 | { | |
424 | public: | |
425 | // empty ctor to suppress warnings | |
426 | wxGridRowOrColAttrData() {} | |
427 | ~wxGridRowOrColAttrData(); | |
428 | ||
429 | void SetAttr(wxGridCellAttr *attr, int rowOrCol); | |
430 | wxGridCellAttr *GetAttr(int rowOrCol) const; | |
431 | void UpdateAttrRowsOrCols( size_t pos, int numRowsOrCols ); | |
432 | ||
433 | private: | |
434 | wxArrayInt m_rowsOrCols; | |
435 | wxArrayAttrs m_attrs; | |
436 | }; | |
437 | ||
438 | // NB: this is just a wrapper around 3 objects: one which stores cell | |
439 | // attributes, and 2 others for row/col ones | |
440 | class WXDLLIMPEXP_ADV wxGridCellAttrProviderData | |
441 | { | |
442 | public: | |
443 | wxGridCellAttrData m_cellAttrs; | |
444 | wxGridRowOrColAttrData m_rowAttrs, | |
445 | m_colAttrs; | |
446 | }; | |
447 | ||
448 | // ---------------------------------------------------------------------------- | |
449 | // operations classes abstracting the difference between operating on rows and | |
450 | // columns | |
451 | // ---------------------------------------------------------------------------- | |
452 | ||
453 | // This class allows to write a function only once because by using its methods | |
454 | // it will apply to both columns and rows. | |
455 | // | |
456 | // This is an abstract interface definition, the two concrete implementations | |
457 | // below should be used when working with rows and columns respectively. | |
458 | class wxGridOperations | |
459 | { | |
460 | public: | |
461 | // Returns the operations in the other direction, i.e. wxGridRowOperations | |
462 | // if this object is a wxGridColumnOperations and vice versa. | |
463 | virtual wxGridOperations& Dual() const = 0; | |
464 | ||
465 | // Return the number of rows or columns. | |
466 | virtual int GetNumberOfLines(const wxGrid *grid) const = 0; | |
467 | ||
468 | // Return the selection mode which allows selecting rows or columns. | |
469 | virtual wxGrid::wxGridSelectionModes GetSelectionMode() const = 0; | |
470 | ||
471 | // Make a wxGridCellCoords from the given components: thisDir is row or | |
472 | // column and otherDir is column or row | |
473 | virtual wxGridCellCoords MakeCoords(int thisDir, int otherDir) const = 0; | |
474 | ||
475 | // Calculate the scrolled position of the given abscissa or ordinate. | |
476 | virtual int CalcScrolledPosition(wxGrid *grid, int pos) const = 0; | |
477 | ||
478 | // Selects the horizontal or vertical component from the given object. | |
479 | virtual int Select(const wxGridCellCoords& coords) const = 0; | |
480 | virtual int Select(const wxPoint& pt) const = 0; | |
481 | virtual int Select(const wxSize& sz) const = 0; | |
482 | virtual int Select(const wxRect& r) const = 0; | |
483 | virtual int& Select(wxRect& r) const = 0; | |
484 | ||
485 | // Returns width or height of the rectangle | |
486 | virtual int& SelectSize(wxRect& r) const = 0; | |
487 | ||
488 | // Make a wxSize such that Select() applied to it returns first component | |
489 | virtual wxSize MakeSize(int first, int second) const = 0; | |
490 | ||
491 | // Sets the row or column component of the given cell coordinates | |
492 | virtual void Set(wxGridCellCoords& coords, int line) const = 0; | |
493 | ||
494 | ||
495 | // Draws a line parallel to the row or column, i.e. horizontal or vertical: | |
496 | // pos is the horizontal or vertical position of the line and start and end | |
497 | // are the coordinates of the line extremities in the other direction | |
498 | virtual void | |
499 | DrawParallelLine(wxDC& dc, int start, int end, int pos) const = 0; | |
500 | ||
501 | // Draw a horizontal or vertical line across the given rectangle | |
502 | // (this is implemented in terms of above and uses Select() to extract | |
503 | // start and end from the given rectangle) | |
504 | void DrawParallelLineInRect(wxDC& dc, const wxRect& rect, int pos) const | |
505 | { | |
506 | const int posStart = Select(rect.GetPosition()); | |
507 | DrawParallelLine(dc, posStart, posStart + Select(rect.GetSize()), pos); | |
508 | } | |
509 | ||
510 | ||
511 | // Return the index of the row or column at the given pixel coordinate. | |
512 | virtual int | |
513 | PosToLine(const wxGrid *grid, int pos, bool clip = false) const = 0; | |
514 | ||
515 | // Get the top/left position, in pixels, of the given row or column | |
516 | virtual int GetLineStartPos(const wxGrid *grid, int line) const = 0; | |
517 | ||
518 | // Get the bottom/right position, in pixels, of the given row or column | |
519 | virtual int GetLineEndPos(const wxGrid *grid, int line) const = 0; | |
520 | ||
521 | // Get the height/width of the given row/column | |
522 | virtual int GetLineSize(const wxGrid *grid, int line) const = 0; | |
523 | ||
524 | // Get wxGrid::m_rowBottoms/m_colRights array | |
525 | virtual const wxArrayInt& GetLineEnds(const wxGrid *grid) const = 0; | |
526 | ||
527 | // Get default height row height or column width | |
528 | virtual int GetDefaultLineSize(const wxGrid *grid) const = 0; | |
529 | ||
530 | // Return the minimal acceptable row height or column width | |
531 | virtual int GetMinimalAcceptableLineSize(const wxGrid *grid) const = 0; | |
532 | ||
533 | // Return the minimal row height or column width | |
534 | virtual int GetMinimalLineSize(const wxGrid *grid, int line) const = 0; | |
535 | ||
536 | // Set the row height or column width | |
537 | virtual void SetLineSize(wxGrid *grid, int line, int size) const = 0; | |
538 | ||
539 | // Set the row default height or column default width | |
540 | virtual void SetDefaultLineSize(wxGrid *grid, int size, bool resizeExisting) const = 0; | |
541 | ||
a3ef8eb5 VZ |
542 | |
543 | // Return the index of the line at the given position | |
544 | // | |
545 | // NB: currently this is always identity for the rows as reordering is only | |
546 | // implemented for the lines | |
f71adb50 | 547 | virtual int GetLineAt(const wxGrid *grid, int pos) const = 0; |
a3ef8eb5 | 548 | |
f71adb50 VZ |
549 | // Return the index of the line just before the given one. |
550 | virtual int GetLineBefore(const wxGrid* grid, int line) const = 0; | |
a3ef8eb5 VZ |
551 | |
552 | // Get the row or column label window | |
553 | virtual wxWindow *GetHeaderWindow(wxGrid *grid) const = 0; | |
554 | ||
555 | // Get the width or height of the row or column label window | |
556 | virtual int GetHeaderWindowSize(wxGrid *grid) const = 0; | |
557 | ||
558 | ||
559 | // This class is never used polymorphically but give it a virtual dtor | |
560 | // anyhow to suppress g++ complaints about it | |
561 | virtual ~wxGridOperations() { } | |
562 | }; | |
563 | ||
564 | class wxGridRowOperations : public wxGridOperations | |
565 | { | |
566 | public: | |
567 | virtual wxGridOperations& Dual() const; | |
568 | ||
569 | virtual int GetNumberOfLines(const wxGrid *grid) const | |
570 | { return grid->GetNumberRows(); } | |
571 | ||
572 | virtual wxGrid::wxGridSelectionModes GetSelectionMode() const | |
573 | { return wxGrid::wxGridSelectRows; } | |
574 | ||
575 | virtual wxGridCellCoords MakeCoords(int thisDir, int otherDir) const | |
576 | { return wxGridCellCoords(thisDir, otherDir); } | |
577 | ||
578 | virtual int CalcScrolledPosition(wxGrid *grid, int pos) const | |
579 | { return grid->CalcScrolledPosition(wxPoint(pos, 0)).x; } | |
580 | ||
581 | virtual int Select(const wxGridCellCoords& c) const { return c.GetRow(); } | |
582 | virtual int Select(const wxPoint& pt) const { return pt.x; } | |
583 | virtual int Select(const wxSize& sz) const { return sz.x; } | |
584 | virtual int Select(const wxRect& r) const { return r.x; } | |
585 | virtual int& Select(wxRect& r) const { return r.x; } | |
586 | virtual int& SelectSize(wxRect& r) const { return r.width; } | |
587 | virtual wxSize MakeSize(int first, int second) const | |
588 | { return wxSize(first, second); } | |
589 | virtual void Set(wxGridCellCoords& coords, int line) const | |
590 | { coords.SetRow(line); } | |
591 | ||
592 | virtual void DrawParallelLine(wxDC& dc, int start, int end, int pos) const | |
593 | { dc.DrawLine(start, pos, end, pos); } | |
594 | ||
595 | virtual int PosToLine(const wxGrid *grid, int pos, bool clip = false) const | |
596 | { return grid->YToRow(pos, clip); } | |
597 | virtual int GetLineStartPos(const wxGrid *grid, int line) const | |
598 | { return grid->GetRowTop(line); } | |
599 | virtual int GetLineEndPos(const wxGrid *grid, int line) const | |
600 | { return grid->GetRowBottom(line); } | |
601 | virtual int GetLineSize(const wxGrid *grid, int line) const | |
602 | { return grid->GetRowHeight(line); } | |
603 | virtual const wxArrayInt& GetLineEnds(const wxGrid *grid) const | |
604 | { return grid->m_rowBottoms; } | |
605 | virtual int GetDefaultLineSize(const wxGrid *grid) const | |
606 | { return grid->GetDefaultRowSize(); } | |
607 | virtual int GetMinimalAcceptableLineSize(const wxGrid *grid) const | |
608 | { return grid->GetRowMinimalAcceptableHeight(); } | |
609 | virtual int GetMinimalLineSize(const wxGrid *grid, int line) const | |
610 | { return grid->GetRowMinimalHeight(line); } | |
611 | virtual void SetLineSize(wxGrid *grid, int line, int size) const | |
612 | { grid->SetRowSize(line, size); } | |
a3ef8eb5 | 613 | virtual void SetDefaultLineSize(wxGrid *grid, int size, bool resizeExisting) const |
82edfbe7 | 614 | { grid->SetDefaultRowSize(size, resizeExisting); } |
a3ef8eb5 VZ |
615 | |
616 | virtual int GetLineAt(const wxGrid * WXUNUSED(grid), int line) const | |
617 | { return line; } // TODO: implement row reordering | |
618 | ||
f71adb50 VZ |
619 | virtual int GetLineBefore(const wxGrid* WXUNUSED(grid), int line) const |
620 | { return line ? line - 1 : line; } | |
621 | ||
a3ef8eb5 VZ |
622 | virtual wxWindow *GetHeaderWindow(wxGrid *grid) const |
623 | { return grid->GetGridRowLabelWindow(); } | |
624 | virtual int GetHeaderWindowSize(wxGrid *grid) const | |
625 | { return grid->GetRowLabelSize(); } | |
626 | }; | |
627 | ||
628 | class wxGridColumnOperations : public wxGridOperations | |
629 | { | |
630 | public: | |
631 | virtual wxGridOperations& Dual() const; | |
632 | ||
633 | virtual int GetNumberOfLines(const wxGrid *grid) const | |
634 | { return grid->GetNumberCols(); } | |
635 | ||
636 | virtual wxGrid::wxGridSelectionModes GetSelectionMode() const | |
637 | { return wxGrid::wxGridSelectColumns; } | |
638 | ||
639 | virtual wxGridCellCoords MakeCoords(int thisDir, int otherDir) const | |
640 | { return wxGridCellCoords(otherDir, thisDir); } | |
641 | ||
642 | virtual int CalcScrolledPosition(wxGrid *grid, int pos) const | |
643 | { return grid->CalcScrolledPosition(wxPoint(0, pos)).y; } | |
644 | ||
645 | virtual int Select(const wxGridCellCoords& c) const { return c.GetCol(); } | |
646 | virtual int Select(const wxPoint& pt) const { return pt.y; } | |
647 | virtual int Select(const wxSize& sz) const { return sz.y; } | |
648 | virtual int Select(const wxRect& r) const { return r.y; } | |
649 | virtual int& Select(wxRect& r) const { return r.y; } | |
650 | virtual int& SelectSize(wxRect& r) const { return r.height; } | |
651 | virtual wxSize MakeSize(int first, int second) const | |
652 | { return wxSize(second, first); } | |
653 | virtual void Set(wxGridCellCoords& coords, int line) const | |
654 | { coords.SetCol(line); } | |
655 | ||
656 | virtual void DrawParallelLine(wxDC& dc, int start, int end, int pos) const | |
657 | { dc.DrawLine(pos, start, pos, end); } | |
658 | ||
659 | virtual int PosToLine(const wxGrid *grid, int pos, bool clip = false) const | |
660 | { return grid->XToCol(pos, clip); } | |
661 | virtual int GetLineStartPos(const wxGrid *grid, int line) const | |
662 | { return grid->GetColLeft(line); } | |
663 | virtual int GetLineEndPos(const wxGrid *grid, int line) const | |
664 | { return grid->GetColRight(line); } | |
665 | virtual int GetLineSize(const wxGrid *grid, int line) const | |
666 | { return grid->GetColWidth(line); } | |
667 | virtual const wxArrayInt& GetLineEnds(const wxGrid *grid) const | |
668 | { return grid->m_colRights; } | |
669 | virtual int GetDefaultLineSize(const wxGrid *grid) const | |
670 | { return grid->GetDefaultColSize(); } | |
671 | virtual int GetMinimalAcceptableLineSize(const wxGrid *grid) const | |
672 | { return grid->GetColMinimalAcceptableWidth(); } | |
673 | virtual int GetMinimalLineSize(const wxGrid *grid, int line) const | |
674 | { return grid->GetColMinimalWidth(line); } | |
675 | virtual void SetLineSize(wxGrid *grid, int line, int size) const | |
676 | { grid->SetColSize(line, size); } | |
a3ef8eb5 | 677 | virtual void SetDefaultLineSize(wxGrid *grid, int size, bool resizeExisting) const |
82edfbe7 | 678 | { grid->SetDefaultColSize(size, resizeExisting); } |
a3ef8eb5 VZ |
679 | |
680 | virtual int GetLineAt(const wxGrid *grid, int line) const | |
681 | { return grid->GetColAt(line); } | |
682 | ||
f71adb50 VZ |
683 | virtual int GetLineBefore(const wxGrid* grid, int line) const |
684 | { return grid->GetColAt(wxMax(0, grid->GetColPos(line) - 1)); } | |
685 | ||
a3ef8eb5 VZ |
686 | virtual wxWindow *GetHeaderWindow(wxGrid *grid) const |
687 | { return grid->GetGridColLabelWindow(); } | |
688 | virtual int GetHeaderWindowSize(wxGrid *grid) const | |
689 | { return grid->GetColLabelSize(); } | |
690 | }; | |
691 | ||
692 | // This class abstracts the difference between operations going forward | |
693 | // (down/right) and backward (up/left) and allows to use the same code for | |
694 | // functions which differ only in the direction of grid traversal | |
695 | // | |
696 | // Like wxGridOperations it's an ABC with two concrete subclasses below. Unlike | |
697 | // it, this is a normal object and not just a function dispatch table and has a | |
698 | // non-default ctor. | |
699 | // | |
700 | // Note: the explanation of this discrepancy is the existence of (very useful) | |
701 | // Dual() method in wxGridOperations which forces us to make wxGridOperations a | |
702 | // function dispatcher only. | |
703 | class wxGridDirectionOperations | |
704 | { | |
705 | public: | |
706 | // The oper parameter to ctor selects whether we work with rows or columns | |
707 | wxGridDirectionOperations(wxGrid *grid, const wxGridOperations& oper) | |
708 | : m_grid(grid), | |
709 | m_oper(oper) | |
710 | { | |
711 | } | |
712 | ||
713 | // Check if the component of this point in our direction is at the | |
714 | // boundary, i.e. is the first/last row/column | |
715 | virtual bool IsAtBoundary(const wxGridCellCoords& coords) const = 0; | |
716 | ||
717 | // Increment the component of this point in our direction | |
718 | virtual void Advance(wxGridCellCoords& coords) const = 0; | |
719 | ||
720 | // Find the line at the given distance, in pixels, away from this one | |
721 | // (this uses clipping, i.e. anything after the last line is counted as the | |
722 | // last one and anything before the first one as 0) | |
723 | virtual int MoveByPixelDistance(int line, int distance) const = 0; | |
724 | ||
725 | // This class is never used polymorphically but give it a virtual dtor | |
726 | // anyhow to suppress g++ complaints about it | |
727 | virtual ~wxGridDirectionOperations() { } | |
728 | ||
729 | protected: | |
730 | wxGrid * const m_grid; | |
731 | const wxGridOperations& m_oper; | |
732 | }; | |
733 | ||
734 | class wxGridBackwardOperations : public wxGridDirectionOperations | |
735 | { | |
736 | public: | |
737 | wxGridBackwardOperations(wxGrid *grid, const wxGridOperations& oper) | |
738 | : wxGridDirectionOperations(grid, oper) | |
739 | { | |
740 | } | |
741 | ||
742 | virtual bool IsAtBoundary(const wxGridCellCoords& coords) const | |
743 | { | |
744 | wxASSERT_MSG( m_oper.Select(coords) >= 0, "invalid row/column" ); | |
745 | ||
746 | return m_oper.Select(coords) == 0; | |
747 | } | |
748 | ||
749 | virtual void Advance(wxGridCellCoords& coords) const | |
750 | { | |
751 | wxASSERT( !IsAtBoundary(coords) ); | |
752 | ||
753 | m_oper.Set(coords, m_oper.Select(coords) - 1); | |
754 | } | |
755 | ||
756 | virtual int MoveByPixelDistance(int line, int distance) const | |
757 | { | |
758 | int pos = m_oper.GetLineStartPos(m_grid, line); | |
759 | return m_oper.PosToLine(m_grid, pos - distance + 1, true); | |
760 | } | |
761 | }; | |
762 | ||
763 | class wxGridForwardOperations : public wxGridDirectionOperations | |
764 | { | |
765 | public: | |
766 | wxGridForwardOperations(wxGrid *grid, const wxGridOperations& oper) | |
767 | : wxGridDirectionOperations(grid, oper), | |
768 | m_numLines(oper.GetNumberOfLines(grid)) | |
769 | { | |
770 | } | |
771 | ||
772 | virtual bool IsAtBoundary(const wxGridCellCoords& coords) const | |
773 | { | |
774 | wxASSERT_MSG( m_oper.Select(coords) < m_numLines, "invalid row/column" ); | |
775 | ||
776 | return m_oper.Select(coords) == m_numLines - 1; | |
777 | } | |
778 | ||
779 | virtual void Advance(wxGridCellCoords& coords) const | |
780 | { | |
781 | wxASSERT( !IsAtBoundary(coords) ); | |
782 | ||
783 | m_oper.Set(coords, m_oper.Select(coords) + 1); | |
784 | } | |
785 | ||
786 | virtual int MoveByPixelDistance(int line, int distance) const | |
787 | { | |
788 | int pos = m_oper.GetLineStartPos(m_grid, line); | |
789 | return m_oper.PosToLine(m_grid, pos + distance, true); | |
790 | } | |
791 | ||
792 | private: | |
793 | const int m_numLines; | |
794 | }; | |
795 | ||
a3ef8eb5 VZ |
796 | // ---------------------------------------------------------------------------- |
797 | // data structures used for the data type registry | |
798 | // ---------------------------------------------------------------------------- | |
799 | ||
800 | struct wxGridDataTypeInfo | |
801 | { | |
802 | wxGridDataTypeInfo(const wxString& typeName, | |
803 | wxGridCellRenderer* renderer, | |
804 | wxGridCellEditor* editor) | |
805 | : m_typeName(typeName), m_renderer(renderer), m_editor(editor) | |
806 | {} | |
807 | ||
808 | ~wxGridDataTypeInfo() | |
809 | { | |
810 | wxSafeDecRef(m_renderer); | |
811 | wxSafeDecRef(m_editor); | |
812 | } | |
813 | ||
814 | wxString m_typeName; | |
815 | wxGridCellRenderer* m_renderer; | |
816 | wxGridCellEditor* m_editor; | |
817 | ||
818 | wxDECLARE_NO_COPY_CLASS(wxGridDataTypeInfo); | |
819 | }; | |
820 | ||
821 | ||
822 | WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridDataTypeInfo*, wxGridDataTypeInfoArray, | |
823 | class WXDLLIMPEXP_ADV); | |
824 | ||
825 | ||
826 | class WXDLLIMPEXP_ADV wxGridTypeRegistry | |
827 | { | |
828 | public: | |
829 | wxGridTypeRegistry() {} | |
830 | ~wxGridTypeRegistry(); | |
831 | ||
832 | void RegisterDataType(const wxString& typeName, | |
833 | wxGridCellRenderer* renderer, | |
834 | wxGridCellEditor* editor); | |
835 | ||
836 | // find one of already registered data types | |
837 | int FindRegisteredDataType(const wxString& typeName); | |
838 | ||
839 | // try to FindRegisteredDataType(), if this fails and typeName is one of | |
840 | // standard typenames, register it and return its index | |
841 | int FindDataType(const wxString& typeName); | |
842 | ||
843 | // try to FindDataType(), if it fails see if it is not one of already | |
844 | // registered data types with some params in which case clone the | |
845 | // registered data type and set params for it | |
846 | int FindOrCloneDataType(const wxString& typeName); | |
847 | ||
848 | wxGridCellRenderer* GetRenderer(int index); | |
849 | wxGridCellEditor* GetEditor(int index); | |
850 | ||
851 | private: | |
852 | wxGridDataTypeInfoArray m_typeinfo; | |
853 | }; | |
854 | ||
855 | #endif // wxUSE_GRID | |
856 | #endif // _WX_GENERIC_GRID_PRIVATE_H_ |