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