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