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