]> git.saurik.com Git - wxWidgets.git/blame - src/generic/grid.cpp
removed the fudge from GetViewRect(), it isn't needed
[wxWidgets.git] / src / generic / grid.cpp
Content-type: text/html ]> git.saurik.com Git - wxWidgets.git/blame - src/generic/grid.cpp


500 - Internal Server Error

Malformed UTF-8 character (fatal) at /usr/lib/x86_64-linux-gnu/perl5/5.40/HTML/Entities.pm line 485, <$fd> line 9121.
CommitLineData
2796cce3 1///////////////////////////////////////////////////////////////////////////
d16c04bb 2// Name: generic/grid.cpp
f85afd4e
MB
3// Purpose: wxGrid and related classes
4// Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
97a9929e 5// Modified by: Robin Dunn, Vadim Zeitlin
f85afd4e
MB
6// Created: 1/08/1999
7// RCS-ID: $Id$
8// Copyright: (c) Michael Bedward (mbedward@ozemail.com.au)
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
758cbedf
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
14f355c2 20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
f85afd4e
MB
21 #pragma implementation "grid.h"
22#endif
23
f6bcfd97 24// For compilers that support precompilatixon, includes "wx/wx.h".
4d85bcd1
JS
25#include "wx/wxprec.h"
26
27#include "wx/defs.h"
f85afd4e
MB
28
29#ifdef __BORLANDC__
30 #pragma hdrstop
31#endif
32
27b92ca4
VZ
33#if wxUSE_GRID
34
f85afd4e
MB
35#ifndef WX_PRECOMP
36 #include "wx/utils.h"
37 #include "wx/dcclient.h"
38 #include "wx/settings.h"
39 #include "wx/log.h"
508011ce
VZ
40 #include "wx/textctrl.h"
41 #include "wx/checkbox.h"
4ee5fc9c 42 #include "wx/combobox.h"
816be743 43 #include "wx/valtext.h"
f85afd4e
MB
44#endif
45
cb5df486 46#include "wx/textfile.h"
816be743 47#include "wx/spinctrl.h"
c4608a8a 48#include "wx/tokenzr.h"
6d004f67 49
07296f0b 50#include "wx/grid.h"
b5808881 51#include "wx/generic/gridsel.h"
07296f0b 52
0b7e6e7d
SN
53#if defined(__WXMOTIF__)
54 #define WXUNUSED_MOTIF(identifier) WXUNUSED(identifier)
c78b3acd 55#else
0b7e6e7d 56 #define WXUNUSED_MOTIF(identifier) identifier
c78b3acd
SN
57#endif
58
59#if defined(__WXGTK__)
60 #define WXUNUSED_GTK(identifier) WXUNUSED(identifier)
61#else
62 #define WXUNUSED_GTK(identifier) identifier
63#endif
64
3f8e5072
JS
65// Required for wxIs... functions
66#include <ctype.h>
67
b99be8fb 68// ----------------------------------------------------------------------------
758cbedf 69// array classes
b99be8fb
VZ
70// ----------------------------------------------------------------------------
71
160ba750
VS
72WX_DEFINE_ARRAY_WITH_DECL_NO_PTR(wxGridCellAttr *, wxArrayAttrs,
73 class WXDLLIMPEXP_ADV);
758cbedf 74
b99be8fb
VZ
75struct wxGridCellWithAttr
76{
2e9a6788
VZ
77 wxGridCellWithAttr(int row, int col, wxGridCellAttr *attr_)
78 : coords(row, col), attr(attr_)
b99be8fb
VZ
79 {
80 }
81
2e9a6788
VZ
82 ~wxGridCellWithAttr()
83 {
84 attr->DecRef();
85 }
86
b99be8fb 87 wxGridCellCoords coords;
2e9a6788 88 wxGridCellAttr *attr;
22f3361e
VZ
89
90// Cannot do this:
91// DECLARE_NO_COPY_CLASS(wxGridCellWithAttr)
92// without rewriting the macros, which require a public copy constructor.
b99be8fb
VZ
93};
94
160ba750
VS
95WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellWithAttr, wxGridCellWithAttrArray,
96 class WXDLLIMPEXP_ADV);
b99be8fb
VZ
97
98#include "wx/arrimpl.cpp"
99
100WX_DEFINE_OBJARRAY(wxGridCellCoordsArray)
101WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray)
102
0f442030
RR
103// ----------------------------------------------------------------------------
104// events
105// ----------------------------------------------------------------------------
106
2e4df4bf
VZ
107DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_CLICK)
108DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_CLICK)
109DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_DCLICK)
110DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_DCLICK)
111DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_CLICK)
112DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_CLICK)
113DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_DCLICK)
114DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_DCLICK)
115DEFINE_EVENT_TYPE(wxEVT_GRID_ROW_SIZE)
116DEFINE_EVENT_TYPE(wxEVT_GRID_COL_SIZE)
117DEFINE_EVENT_TYPE(wxEVT_GRID_RANGE_SELECT)
118DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_CHANGE)
119DEFINE_EVENT_TYPE(wxEVT_GRID_SELECT_CELL)
120DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_SHOWN)
121DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_HIDDEN)
bf7945ce 122DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_CREATED)
0f442030 123
b99be8fb
VZ
124// ----------------------------------------------------------------------------
125// private classes
126// ----------------------------------------------------------------------------
127
12f190b0 128class WXDLLIMPEXP_ADV wxGridRowLabelWindow : public wxWindow
b99be8fb
VZ
129{
130public:
131 wxGridRowLabelWindow() { m_owner = (wxGrid *)NULL; }
132 wxGridRowLabelWindow( wxGrid *parent, wxWindowID id,
133 const wxPoint &pos, const wxSize &size );
134
135private:
136 wxGrid *m_owner;
137
138 void OnPaint( wxPaintEvent& event );
139 void OnMouseEvent( wxMouseEvent& event );
b51c3f27 140 void OnMouseWheel( wxMouseEvent& event );
b99be8fb 141 void OnKeyDown( wxKeyEvent& event );
f6bcfd97 142 void OnKeyUp( wxKeyEvent& );
b99be8fb
VZ
143
144 DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow)
145 DECLARE_EVENT_TABLE()
22f3361e 146 DECLARE_NO_COPY_CLASS(wxGridRowLabelWindow)
b99be8fb
VZ
147};
148
149
12f190b0 150class WXDLLIMPEXP_ADV wxGridColLabelWindow : public wxWindow
b99be8fb
VZ
151{
152public:
153 wxGridColLabelWindow() { m_owner = (wxGrid *)NULL; }
154 wxGridColLabelWindow( wxGrid *parent, wxWindowID id,
155 const wxPoint &pos, const wxSize &size );
156
157private:
158 wxGrid *m_owner;
159
160 void OnPaint( wxPaintEvent &event );
161 void OnMouseEvent( wxMouseEvent& event );
b51c3f27 162 void OnMouseWheel( wxMouseEvent& event );
b99be8fb 163 void OnKeyDown( wxKeyEvent& event );
f6bcfd97 164 void OnKeyUp( wxKeyEvent& );
b99be8fb
VZ
165
166 DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow)
167 DECLARE_EVENT_TABLE()
22f3361e 168 DECLARE_NO_COPY_CLASS(wxGridColLabelWindow)
b99be8fb
VZ
169};
170
171
12f190b0 172class WXDLLIMPEXP_ADV wxGridCornerLabelWindow : public wxWindow
b99be8fb
VZ
173{
174public:
175 wxGridCornerLabelWindow() { m_owner = (wxGrid *)NULL; }
176 wxGridCornerLabelWindow( wxGrid *parent, wxWindowID id,
177 const wxPoint &pos, const wxSize &size );
178
179private:
180 wxGrid *m_owner;
181
182 void OnMouseEvent( wxMouseEvent& event );
b51c3f27 183 void OnMouseWheel( wxMouseEvent& event );
b99be8fb 184 void OnKeyDown( wxKeyEvent& event );
f6bcfd97 185 void OnKeyUp( wxKeyEvent& );
b99be8fb
VZ
186 void OnPaint( wxPaintEvent& event );
187
188 DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow)
189 DECLARE_EVENT_TABLE()
22f3361e 190 DECLARE_NO_COPY_CLASS(wxGridCornerLabelWindow)
b99be8fb
VZ
191};
192
12f190b0 193class WXDLLIMPEXP_ADV wxGridWindow : public wxWindow
b99be8fb
VZ
194{
195public:
196 wxGridWindow()
197 {
198 m_owner = (wxGrid *)NULL;
199 m_rowLabelWin = (wxGridRowLabelWindow *)NULL;
200 m_colLabelWin = (wxGridColLabelWindow *)NULL;
201 }
202
203 wxGridWindow( wxGrid *parent,
204 wxGridRowLabelWindow *rowLblWin,
205 wxGridColLabelWindow *colLblWin,
206 wxWindowID id, const wxPoint &pos, const wxSize &size );
207 ~wxGridWindow();
208
209 void ScrollWindow( int dx, int dy, const wxRect *rect );
210
b819b854
JS
211 wxGrid* GetOwner() { return m_owner; }
212
b99be8fb
VZ
213private:
214 wxGrid *m_owner;
215 wxGridRowLabelWindow *m_rowLabelWin;
216 wxGridColLabelWindow *m_colLabelWin;
217
218 void OnPaint( wxPaintEvent &event );
b51c3f27 219 void OnMouseWheel( wxMouseEvent& event );
b99be8fb
VZ
220 void OnMouseEvent( wxMouseEvent& event );
221 void OnKeyDown( wxKeyEvent& );
f6bcfd97 222 void OnKeyUp( wxKeyEvent& );
2796cce3
RD
223 void OnEraseBackground( wxEraseEvent& );
224
b99be8fb
VZ
225
226 DECLARE_DYNAMIC_CLASS(wxGridWindow)
227 DECLARE_EVENT_TABLE()
22f3361e 228 DECLARE_NO_COPY_CLASS(wxGridWindow)
b99be8fb
VZ
229};
230
2796cce3
RD
231
232
233class wxGridCellEditorEvtHandler : public wxEvtHandler
234{
235public:
236 wxGridCellEditorEvtHandler()
237 : m_grid(0), m_editor(0)
238 { }
239 wxGridCellEditorEvtHandler(wxGrid* grid, wxGridCellEditor* editor)
240 : m_grid(grid), m_editor(editor)
241 { }
242
243 void OnKeyDown(wxKeyEvent& event);
fb0de762 244 void OnChar(wxKeyEvent& event);
2796cce3
RD
245
246private:
247 wxGrid* m_grid;
248 wxGridCellEditor* m_editor;
249 DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler)
250 DECLARE_EVENT_TABLE()
22f3361e 251 DECLARE_NO_COPY_CLASS(wxGridCellEditorEvtHandler)
2796cce3
RD
252};
253
254
255IMPLEMENT_DYNAMIC_CLASS( wxGridCellEditorEvtHandler, wxEvtHandler )
256BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler, wxEvtHandler )
257 EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown )
fb0de762 258 EVT_CHAR( wxGridCellEditorEvtHandler::OnChar )
2796cce3
RD
259END_EVENT_TABLE()
260
261
262
758cbedf 263// ----------------------------------------------------------------------------
b99be8fb 264// the internal data representation used by wxGridCellAttrProvider
758cbedf
VZ
265// ----------------------------------------------------------------------------
266
267// this class stores attributes set for cells
12f190b0 268class WXDLLIMPEXP_ADV wxGridCellAttrData
b99be8fb
VZ
269{
270public:
2e9a6788 271 void SetAttr(wxGridCellAttr *attr, int row, int col);
b99be8fb 272 wxGridCellAttr *GetAttr(int row, int col) const;
4d60017a
SN
273 void UpdateAttrRows( size_t pos, int numRows );
274 void UpdateAttrCols( size_t pos, int numCols );
b99be8fb
VZ
275
276private:
277 // searches for the attr for given cell, returns wxNOT_FOUND if not found
278 int FindIndex(int row, int col) const;
279
280 wxGridCellWithAttrArray m_attrs;
281};
282
758cbedf 283// this class stores attributes set for rows or columns
12f190b0 284class WXDLLIMPEXP_ADV wxGridRowOrColAttrData
758cbedf
VZ
285{
286public:
ee6694a7
VZ
287 // empty ctor to suppress warnings
288 wxGridRowOrColAttrData() { }
758cbedf
VZ
289 ~wxGridRowOrColAttrData();
290
291 void SetAttr(wxGridCellAttr *attr, int rowOrCol);
292 wxGridCellAttr *GetAttr(int rowOrCol) const;
4d60017a 293 void UpdateAttrRowsOrCols( size_t pos, int numRowsOrCols );
758cbedf
VZ
294
295private:
296 wxArrayInt m_rowsOrCols;
297 wxArrayAttrs m_attrs;
298};
299
300// NB: this is just a wrapper around 3 objects: one which stores cell
301// attributes, and 2 others for row/col ones
12f190b0 302class WXDLLIMPEXP_ADV wxGridCellAttrProviderData
758cbedf
VZ
303{
304public:
305 wxGridCellAttrData m_cellAttrs;
306 wxGridRowOrColAttrData m_rowAttrs,
307 m_colAttrs;
308};
309
f2d76237
RD
310
311// ----------------------------------------------------------------------------
312// data structures used for the data type registry
313// ----------------------------------------------------------------------------
314
b94ae1ea
VZ
315struct wxGridDataTypeInfo
316{
f2d76237
RD
317 wxGridDataTypeInfo(const wxString& typeName,
318 wxGridCellRenderer* renderer,
319 wxGridCellEditor* editor)
320 : m_typeName(typeName), m_renderer(renderer), m_editor(editor)
321 { }
322
39bcce60
VZ
323 ~wxGridDataTypeInfo()
324 {
325 wxSafeDecRef(m_renderer);
326 wxSafeDecRef(m_editor);
327 }
f2d76237
RD
328
329 wxString m_typeName;
330 wxGridCellRenderer* m_renderer;
331 wxGridCellEditor* m_editor;
22f3361e
VZ
332
333 DECLARE_NO_COPY_CLASS(wxGridDataTypeInfo)
f2d76237
RD
334};
335
336
160ba750
VS
337WX_DEFINE_ARRAY_WITH_DECL_NO_PTR(wxGridDataTypeInfo*, wxGridDataTypeInfoArray,
338 class WXDLLIMPEXP_ADV);
f2d76237
RD
339
340
12f190b0 341class WXDLLIMPEXP_ADV wxGridTypeRegistry
b94ae1ea 342{
f2d76237 343public:
c78b3acd 344 wxGridTypeRegistry() {}
f2d76237 345 ~wxGridTypeRegistry();
b94ae1ea 346
f2d76237
RD
347 void RegisterDataType(const wxString& typeName,
348 wxGridCellRenderer* renderer,
349 wxGridCellEditor* editor);
c4608a8a
VZ
350
351 // find one of already registered data types
352 int FindRegisteredDataType(const wxString& typeName);
353
354 // try to FindRegisteredDataType(), if this fails and typeName is one of
355 // standard typenames, register it and return its index
f2d76237 356 int FindDataType(const wxString& typeName);
c4608a8a
VZ
357
358 // try to FindDataType(), if it fails see if it is not one of already
359 // registered data types with some params in which case clone the
360 // registered data type and set params for it
361 int FindOrCloneDataType(const wxString& typeName);
362
f2d76237
RD
363 wxGridCellRenderer* GetRenderer(int index);
364 wxGridCellEditor* GetEditor(int index);
365
366private:
367 wxGridDataTypeInfoArray m_typeinfo;
368};
369
b99be8fb
VZ
370// ----------------------------------------------------------------------------
371// conditional compilation
372// ----------------------------------------------------------------------------
373
9496deb5
MB
374#ifndef WXGRID_DRAW_LINES
375#define WXGRID_DRAW_LINES 1
796df70a
SN
376#endif
377
0a976765
VZ
378// ----------------------------------------------------------------------------
379// globals
380// ----------------------------------------------------------------------------
381
382//#define DEBUG_ATTR_CACHE
383#ifdef DEBUG_ATTR_CACHE
384 static size_t gs_nAttrCacheHits = 0;
385 static size_t gs_nAttrCacheMisses = 0;
386#endif // DEBUG_ATTR_CACHE
f85afd4e 387
43947979
VZ
388// ----------------------------------------------------------------------------
389// constants
390// ----------------------------------------------------------------------------
391
f85afd4e
MB
392wxGridCellCoords wxGridNoCellCoords( -1, -1 );
393wxRect wxGridNoCellRect( -1, -1, -1, -1 );
394
f0102d2a 395// scroll line size
faec5a43
SN
396// TODO: this doesn't work at all, grid cells have different sizes and approx
397// calculations don't work as because of the size mismatch scrollbars
398// sometimes fail to be shown when they should be or vice versa
b51c3f27
RD
399//
400// The scroll bars may be a little flakey once in a while, but that is
401// surely much less horrible than having scroll lines of only 1!!!
402// -- Robin
97a9929e
VZ
403//
404// Well, it's still seriously broken so it might be better but needs
405// fixing anyhow
406// -- Vadim
407static const size_t GRID_SCROLL_LINE_X = 15; // 1;
408static const size_t GRID_SCROLL_LINE_Y = GRID_SCROLL_LINE_X;
f85afd4e 409
43947979
VZ
410// the size of hash tables used a bit everywhere (the max number of elements
411// in these hash tables is the number of rows/columns)
412static const int GRID_HASH_SIZE = 100;
413
97a9929e
VZ
414// ----------------------------------------------------------------------------
415// private functions
416// ----------------------------------------------------------------------------
417
d0eb7e56 418static inline int GetScrollX(int x)
97a9929e
VZ
419{
420 return (x + GRID_SCROLL_LINE_X - 1) / GRID_SCROLL_LINE_X;
421}
422
d0eb7e56 423static inline int GetScrollY(int y)
97a9929e
VZ
424{
425 return (y + GRID_SCROLL_LINE_Y - 1) / GRID_SCROLL_LINE_Y;
426}
427
ab79958a
VZ
428// ============================================================================
429// implementation
430// ============================================================================
431
2796cce3
RD
432// ----------------------------------------------------------------------------
433// wxGridCellEditor
434// ----------------------------------------------------------------------------
435
436wxGridCellEditor::wxGridCellEditor()
437{
438 m_control = NULL;
1bd71df9 439 m_attr = NULL;
2796cce3
RD
440}
441
442
443wxGridCellEditor::~wxGridCellEditor()
444{
445 Destroy();
446}
447
508011ce
VZ
448void wxGridCellEditor::Create(wxWindow* WXUNUSED(parent),
449 wxWindowID WXUNUSED(id),
450 wxEvtHandler* evtHandler)
451{
189d0213 452 if ( evtHandler )
508011ce
VZ
453 m_control->PushEventHandler(evtHandler);
454}
2796cce3 455
189d0213
VZ
456void wxGridCellEditor::PaintBackground(const wxRect& rectCell,
457 wxGridCellAttr *attr)
458{
459 // erase the background because we might not fill the cell
460 wxClientDC dc(m_control->GetParent());
b819b854
JS
461 wxGridWindow* gridWindow = wxDynamicCast(m_control->GetParent(), wxGridWindow);
462 if (gridWindow)
463 gridWindow->GetOwner()->PrepareDC(dc);
ef5df12b 464
189d0213
VZ
465 dc.SetPen(*wxTRANSPARENT_PEN);
466 dc.SetBrush(wxBrush(attr->GetBackgroundColour(), wxSOLID));
467 dc.DrawRectangle(rectCell);
468
469 // redraw the control we just painted over
470 m_control->Refresh();
471}
472
2796cce3
RD
473void wxGridCellEditor::Destroy()
474{
508011ce
VZ
475 if (m_control)
476 {
b94ae1ea
VZ
477 m_control->PopEventHandler(TRUE /* delete it*/);
478
2796cce3
RD
479 m_control->Destroy();
480 m_control = NULL;
481 }
482}
483
3da93aae 484void wxGridCellEditor::Show(bool show, wxGridCellAttr *attr)
2796cce3
RD
485{
486 wxASSERT_MSG(m_control,
487 wxT("The wxGridCellEditor must be Created first!"));
488 m_control->Show(show);
3da93aae
VZ
489
490 if ( show )
491 {
492 // set the colours/fonts if we have any
493 if ( attr )
494 {
f2d76237
RD
495 m_colFgOld = m_control->GetForegroundColour();
496 m_control->SetForegroundColour(attr->GetTextColour());
3da93aae 497
f2d76237
RD
498 m_colBgOld = m_control->GetBackgroundColour();
499 m_control->SetBackgroundColour(attr->GetBackgroundColour());
3da93aae 500
f2d76237
RD
501 m_fontOld = m_control->GetFont();
502 m_control->SetFont(attr->GetFont());
3da93aae
VZ
503
504 // can't do anything more in the base class version, the other
505 // attributes may only be used by the derived classes
506 }
507 }
508 else
509 {
510 // restore the standard colours fonts
511 if ( m_colFgOld.Ok() )
512 {
513 m_control->SetForegroundColour(m_colFgOld);
514 m_colFgOld = wxNullColour;
515 }
516
517 if ( m_colBgOld.Ok() )
518 {
519 m_control->SetBackgroundColour(m_colBgOld);
520 m_colBgOld = wxNullColour;
521 }
522
523 if ( m_fontOld.Ok() )
524 {
525 m_control->SetFont(m_fontOld);
526 m_fontOld = wxNullFont;
527 }
528 }
2796cce3
RD
529}
530
531void wxGridCellEditor::SetSize(const wxRect& rect)
532{
533 wxASSERT_MSG(m_control,
534 wxT("The wxGridCellEditor must be Created first!"));
28a77bc4 535 m_control->SetSize(rect, wxSIZE_ALLOW_MINUS_ONE);
2796cce3
RD
536}
537
538void wxGridCellEditor::HandleReturn(wxKeyEvent& event)
539{
540 event.Skip();
541}
542
f6bcfd97
BP
543bool wxGridCellEditor::IsAcceptedKey(wxKeyEvent& event)
544{
545 // accept the simple key presses, not anything with Ctrl/Alt/Meta
a4f7bf58 546 return !(event.ControlDown() || event.AltDown());
f6bcfd97 547}
2796cce3 548
2c9a89e0
RD
549void wxGridCellEditor::StartingKey(wxKeyEvent& event)
550{
e195a54c
VZ
551 event.Skip();
552}
2c9a89e0 553
e195a54c
VZ
554void wxGridCellEditor::StartingClick()
555{
b54ba671 556}
2c9a89e0 557
3a8c693a
VZ
558#if wxUSE_TEXTCTRL
559
b54ba671
VZ
560// ----------------------------------------------------------------------------
561// wxGridCellTextEditor
562// ----------------------------------------------------------------------------
2c9a89e0 563
2796cce3
RD
564wxGridCellTextEditor::wxGridCellTextEditor()
565{
c4608a8a 566 m_maxChars = 0;
2796cce3
RD
567}
568
569void wxGridCellTextEditor::Create(wxWindow* parent,
570 wxWindowID id,
2796cce3
RD
571 wxEvtHandler* evtHandler)
572{
508011ce 573 m_control = new wxTextCtrl(parent, id, wxEmptyString,
2c9a89e0 574 wxDefaultPosition, wxDefaultSize
2796cce3 575#if defined(__WXMSW__)
aaae069f 576 , wxTE_PROCESS_TAB | wxTE_AUTO_SCROLL
2796cce3 577#endif
508011ce 578 );
2796cce3 579
46a5010a
RD
580 // set max length allowed in the textctrl, if the parameter was set
581 if (m_maxChars != 0)
582 {
583 ((wxTextCtrl*)m_control)->SetMaxLength(m_maxChars);
584 }
c4608a8a 585
508011ce 586 wxGridCellEditor::Create(parent, id, evtHandler);
2796cce3
RD
587}
588
189d0213
VZ
589void wxGridCellTextEditor::PaintBackground(const wxRect& WXUNUSED(rectCell),
590 wxGridCellAttr * WXUNUSED(attr))
591{
592 // as we fill the entire client area, don't do anything here to minimize
593 // flicker
594}
2796cce3 595
99306db2
VZ
596void wxGridCellTextEditor::SetSize(const wxRect& rectOrig)
597{
598 wxRect rect(rectOrig);
599
600 // Make the edit control large enough to allow for internal
601 // margins
602 //
603 // TODO: remove this if the text ctrl sizing is improved esp. for
604 // unix
605 //
606#if defined(__WXGTK__)
b0e282b3
RR
607 if (rect.x != 0)
608 {
609 rect.x += 1;
610 rect.y += 1;
611 rect.width -= 1;
612 rect.height -= 1;
613 }
99306db2 614#else // !GTK
cb105ad4 615 int extra_x = ( rect.x > 2 )? 2 : 1;
84912ef8
RD
616
617// MB: treat MSW separately here otherwise the caret doesn't show
618// when the editor is in the first row.
a0948e27
MB
619#if defined(__WXMSW__)
620 int extra_y = 2;
621#else
cb105ad4 622 int extra_y = ( rect.y > 2 )? 2 : 1;
a0948e27
MB
623#endif // MSW
624
99306db2 625#if defined(__WXMOTIF__)
cb105ad4
SN
626 extra_x *= 2;
627 extra_y *= 2;
99306db2 628#endif
cb105ad4
SN
629 rect.SetLeft( wxMax(0, rect.x - extra_x) );
630 rect.SetTop( wxMax(0, rect.y - extra_y) );
631 rect.SetRight( rect.GetRight() + 2*extra_x );
632 rect.SetBottom( rect.GetBottom() + 2*extra_y );
99306db2
VZ
633#endif // GTK/!GTK
634
635 wxGridCellEditor::SetSize(rect);
636}
637
3da93aae 638void wxGridCellTextEditor::BeginEdit(int row, int col, wxGrid* grid)
2796cce3
RD
639{
640 wxASSERT_MSG(m_control,
641 wxT("The wxGridCellEditor must be Created first!"));
642
643 m_startValue = grid->GetTable()->GetValue(row, col);
816be743
VZ
644
645 DoBeginEdit(m_startValue);
646}
647
648void wxGridCellTextEditor::DoBeginEdit(const wxString& startValue)
649{
650 Text()->SetValue(startValue);
b54ba671 651 Text()->SetInsertionPointEnd();
505f70de 652 Text()->SetSelection(-1,-1);
b54ba671 653 Text()->SetFocus();
2796cce3
RD
654}
655
3324d5f5 656bool wxGridCellTextEditor::EndEdit(int row, int col,
3da93aae 657 wxGrid* grid)
2796cce3
RD
658{
659 wxASSERT_MSG(m_control,
660 wxT("The wxGridCellEditor must be Created first!"));
661
662 bool changed = FALSE;
b54ba671 663 wxString value = Text()->GetValue();
2796cce3
RD
664 if (value != m_startValue)
665 changed = TRUE;
666
667 if (changed)
668 grid->GetTable()->SetValue(row, col, value);
2c9a89e0 669
3da93aae 670 m_startValue = wxEmptyString;
b54ba671 671 Text()->SetValue(m_startValue);
2796cce3
RD
672
673 return changed;
674}
675
676
677void wxGridCellTextEditor::Reset()
678{
679 wxASSERT_MSG(m_control,
680 wxT("The wxGridCellEditor must be Created first!"));
681
816be743
VZ
682 DoReset(m_startValue);
683}
684
685void wxGridCellTextEditor::DoReset(const wxString& startValue)
686{
687 Text()->SetValue(startValue);
b54ba671 688 Text()->SetInsertionPointEnd();
2796cce3
RD
689}
690
f6bcfd97
BP
691bool wxGridCellTextEditor::IsAcceptedKey(wxKeyEvent& event)
692{
693 if ( wxGridCellEditor::IsAcceptedKey(event) )
694 {
695 int keycode = event.GetKeyCode();
696 switch ( keycode )
697 {
698 case WXK_NUMPAD0:
699 case WXK_NUMPAD1:
700 case WXK_NUMPAD2:
701 case WXK_NUMPAD3:
702 case WXK_NUMPAD4:
703 case WXK_NUMPAD5:
704 case WXK_NUMPAD6:
705 case WXK_NUMPAD7:
706 case WXK_NUMPAD8:
707 case WXK_NUMPAD9:
708 case WXK_MULTIPLY:
709 case WXK_NUMPAD_MULTIPLY:
710 case WXK_ADD:
711 case WXK_NUMPAD_ADD:
712 case WXK_SUBTRACT:
713 case WXK_NUMPAD_SUBTRACT:
714 case WXK_DECIMAL:
715 case WXK_NUMPAD_DECIMAL:
716 case WXK_DIVIDE:
717 case WXK_NUMPAD_DIVIDE:
718 return TRUE;
719
720 default:
721 // accept 8 bit chars too if isprint() agrees
1c193821 722 if ( (keycode < 255) && (wxIsprint(keycode)) )
f6bcfd97
BP
723 return TRUE;
724 }
725 }
726
727 return FALSE;
728}
729
2c9a89e0
RD
730void wxGridCellTextEditor::StartingKey(wxKeyEvent& event)
731{
94af7d45 732 if ( !Text()->EmulateKeyPress(event) )
f6bcfd97
BP
733 {
734 event.Skip();
735 }
b54ba671 736}
2c9a89e0 737
c78b3acd 738void wxGridCellTextEditor::HandleReturn( wxKeyEvent&
0b7e6e7d 739 WXUNUSED_GTK(WXUNUSED_MOTIF(event)) )
2796cce3
RD
740{
741#if defined(__WXMOTIF__) || defined(__WXGTK__)
742 // wxMotif needs a little extra help...
6fc0f38f 743 size_t pos = (size_t)( Text()->GetInsertionPoint() );
b54ba671 744 wxString s( Text()->GetValue() );
8dd8f875 745 s = s.Left(pos) + wxT("\n") + s.Mid(pos);
b54ba671
VZ
746 Text()->SetValue(s);
747 Text()->SetInsertionPoint( pos );
2796cce3
RD
748#else
749 // the other ports can handle a Return key press
750 //
751 event.Skip();
752#endif
753}
754
c4608a8a
VZ
755void wxGridCellTextEditor::SetParameters(const wxString& params)
756{
757 if ( !params )
758 {
759 // reset to default
760 m_maxChars = 0;
761 }
762 else
763 {
764 long tmp;
765 if ( !params.ToLong(&tmp) )
766 {
f6bcfd97 767 wxLogDebug(_T("Invalid wxGridCellTextEditor parameter string '%s' ignored"), params.c_str());
c4608a8a
VZ
768 }
769 else
770 {
771 m_maxChars = (size_t)tmp;
772 }
773 }
774}
775
73145b0e
JS
776// return the value in the text control
777wxString wxGridCellTextEditor::GetValue() const
778{
779 return Text()->GetValue();
780}
781
816be743
VZ
782// ----------------------------------------------------------------------------
783// wxGridCellNumberEditor
784// ----------------------------------------------------------------------------
785
786wxGridCellNumberEditor::wxGridCellNumberEditor(int min, int max)
787{
788 m_min = min;
789 m_max = max;
790}
791
792void wxGridCellNumberEditor::Create(wxWindow* parent,
793 wxWindowID id,
794 wxEvtHandler* evtHandler)
795{
796 if ( HasRange() )
797 {
798 // create a spin ctrl
799 m_control = new wxSpinCtrl(parent, -1, wxEmptyString,
800 wxDefaultPosition, wxDefaultSize,
801 wxSP_ARROW_KEYS,
802 m_min, m_max);
803
804 wxGridCellEditor::Create(parent, id, evtHandler);
805 }
806 else
807 {
808 // just a text control
809 wxGridCellTextEditor::Create(parent, id, evtHandler);
810
811#if wxUSE_VALIDATORS
85bc0351 812 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC));
816be743
VZ
813#endif // wxUSE_VALIDATORS
814 }
815}
816
817void wxGridCellNumberEditor::BeginEdit(int row, int col, wxGrid* grid)
818{
819 // first get the value
820 wxGridTableBase *table = grid->GetTable();
821 if ( table->CanGetValueAs(row, col, wxGRID_VALUE_NUMBER) )
822 {
823 m_valueOld = table->GetValueAsLong(row, col);
824 }
825 else
826 {
8a60ff0a 827 m_valueOld = 0;
a5777624 828 wxString sValue = table->GetValue(row, col);
8a60ff0a 829 if (! sValue.ToLong(&m_valueOld) && ! sValue.IsEmpty())
a5777624
RD
830 {
831 wxFAIL_MSG( _T("this cell doesn't have numeric value") );
832 return;
833 }
816be743
VZ
834 }
835
836 if ( HasRange() )
837 {
4a64bee4 838 Spin()->SetValue((int)m_valueOld);
f6bcfd97 839 Spin()->SetFocus();
816be743
VZ
840 }
841 else
842 {
843 DoBeginEdit(GetString());
844 }
845}
846
3324d5f5 847bool wxGridCellNumberEditor::EndEdit(int row, int col,
816be743
VZ
848 wxGrid* grid)
849{
850 bool changed;
8a60ff0a
RD
851 long value = 0;
852 wxString text;
816be743
VZ
853
854 if ( HasRange() )
855 {
856 value = Spin()->GetValue();
857 changed = value != m_valueOld;
8a60ff0a
RD
858 if (changed)
859 text = wxString::Format(wxT("%ld"), value);
816be743
VZ
860 }
861 else
862 {
8a60ff0a
RD
863 text = Text()->GetValue();
864 changed = (text.IsEmpty() || text.ToLong(&value)) && (value != m_valueOld);
816be743
VZ
865 }
866
867 if ( changed )
868 {
a5777624
RD
869 if (grid->GetTable()->CanSetValueAs(row, col, wxGRID_VALUE_NUMBER))
870 grid->GetTable()->SetValueAsLong(row, col, value);
871 else
8a60ff0a 872 grid->GetTable()->SetValue(row, col, text);
816be743
VZ
873 }
874
875 return changed;
876}
877
878void wxGridCellNumberEditor::Reset()
879{
880 if ( HasRange() )
881 {
4a64bee4 882 Spin()->SetValue((int)m_valueOld);
816be743
VZ
883 }
884 else
885 {
886 DoReset(GetString());
887 }
888}
889
f6bcfd97
BP
890bool wxGridCellNumberEditor::IsAcceptedKey(wxKeyEvent& event)
891{
892 if ( wxGridCellEditor::IsAcceptedKey(event) )
893 {
894 int keycode = event.GetKeyCode();
895 switch ( keycode )
896 {
897 case WXK_NUMPAD0:
898 case WXK_NUMPAD1:
899 case WXK_NUMPAD2:
900 case WXK_NUMPAD3:
901 case WXK_NUMPAD4:
902 case WXK_NUMPAD5:
903 case WXK_NUMPAD6:
904 case WXK_NUMPAD7:
905 case WXK_NUMPAD8:
906 case WXK_NUMPAD9:
907 case WXK_ADD:
908 case WXK_NUMPAD_ADD:
909 case WXK_SUBTRACT:
910 case WXK_NUMPAD_SUBTRACT:
911 case WXK_UP:
912 case WXK_DOWN:
913 return TRUE;
914
915 default:
4676948b 916 if ( (keycode < 128) && wxIsdigit(keycode) )
f6bcfd97
BP
917 return TRUE;
918 }
919 }
920
921 return FALSE;
922}
923
816be743
VZ
924void wxGridCellNumberEditor::StartingKey(wxKeyEvent& event)
925{
926 if ( !HasRange() )
927 {
12a3f227 928 int keycode = event.GetKeyCode();
4676948b 929 if ( wxIsdigit(keycode) || keycode == '+' || keycode == '-'
85d8c319
JS
930 || keycode == WXK_NUMPAD0
931 || keycode == WXK_NUMPAD1
932 || keycode == WXK_NUMPAD2
933 || keycode == WXK_NUMPAD3
934 || keycode == WXK_NUMPAD4
935 || keycode == WXK_NUMPAD5
936 || keycode == WXK_NUMPAD6
937 || keycode == WXK_NUMPAD7
938 || keycode == WXK_NUMPAD8
939 || keycode == WXK_NUMPAD9
940 || keycode == WXK_ADD
941 || keycode == WXK_NUMPAD_ADD
942 || keycode == WXK_SUBTRACT
943 || keycode == WXK_NUMPAD_SUBTRACT)
816be743
VZ
944 {
945 wxGridCellTextEditor::StartingKey(event);
946
947 // skip Skip() below
948 return;
949 }
950 }
951
952 event.Skip();
953}
9c4ba614 954
c4608a8a
VZ
955void wxGridCellNumberEditor::SetParameters(const wxString& params)
956{
957 if ( !params )
958 {
959 // reset to default
960 m_min =
961 m_max = -1;
962 }
963 else
964 {
965 long tmp;
966 if ( params.BeforeFirst(_T(',')).ToLong(&tmp) )
967 {
968 m_min = (int)tmp;
969
970 if ( params.AfterFirst(_T(',')).ToLong(&tmp) )
971 {
972 m_max = (int)tmp;
973
974 // skip the error message below
975 return;
976 }
977 }
978
f6bcfd97 979 wxLogDebug(_T("Invalid wxGridCellNumberEditor parameter string '%s' ignored"), params.c_str());
c4608a8a
VZ
980 }
981}
982
73145b0e
JS
983// return the value in the spin control if it is there (the text control otherwise)
984wxString wxGridCellNumberEditor::GetValue() const
985{
986 wxString s;
987
988 if( HasRange() )
989 {
14ac4f3c 990 long value = Spin()->GetValue();
73145b0e
JS
991 s.Printf(wxT("%ld"), value);
992 }
993 else
994 {
995 s = Text()->GetValue();
996 }
997 return s;
998}
999
816be743
VZ
1000// ----------------------------------------------------------------------------
1001// wxGridCellFloatEditor
1002// ----------------------------------------------------------------------------
1003
f6bcfd97
BP
1004wxGridCellFloatEditor::wxGridCellFloatEditor(int width, int precision)
1005{
1006 m_width = width;
1007 m_precision = precision;
1008}
1009
816be743
VZ
1010void wxGridCellFloatEditor::Create(wxWindow* parent,
1011 wxWindowID id,
1012 wxEvtHandler* evtHandler)
1013{
1014 wxGridCellTextEditor::Create(parent, id, evtHandler);
1015
1016#if wxUSE_VALIDATORS
85bc0351 1017 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC));
816be743
VZ
1018#endif // wxUSE_VALIDATORS
1019}
1020
1021void wxGridCellFloatEditor::BeginEdit(int row, int col, wxGrid* grid)
1022{
1023 // first get the value
1024 wxGridTableBase *table = grid->GetTable();
1025 if ( table->CanGetValueAs(row, col, wxGRID_VALUE_FLOAT) )
1026 {
1027 m_valueOld = table->GetValueAsDouble(row, col);
1028 }
1029 else
1030 {
8a60ff0a 1031 m_valueOld = 0.0;
a5777624 1032 wxString sValue = table->GetValue(row, col);
8a60ff0a 1033 if (! sValue.ToDouble(&m_valueOld) && ! sValue.IsEmpty())
a5777624
RD
1034 {
1035 wxFAIL_MSG( _T("this cell doesn't have float value") );
1036 return;
1037 }
816be743
VZ
1038 }
1039
1040 DoBeginEdit(GetString());
1041}
1042
3324d5f5 1043bool wxGridCellFloatEditor::EndEdit(int row, int col,
816be743
VZ
1044 wxGrid* grid)
1045{
8a60ff0a
RD
1046 double value = 0.0;
1047 wxString text(Text()->GetValue());
1048
1049 if ( (text.IsEmpty() || text.ToDouble(&value)) && (value != m_valueOld) )
816be743 1050 {
a5777624
RD
1051 if (grid->GetTable()->CanSetValueAs(row, col, wxGRID_VALUE_FLOAT))
1052 grid->GetTable()->SetValueAsDouble(row, col, value);
1053 else
8a60ff0a 1054 grid->GetTable()->SetValue(row, col, text);
816be743
VZ
1055
1056 return TRUE;
1057 }
ae31cc57 1058 return FALSE;
816be743
VZ
1059}
1060
1061void wxGridCellFloatEditor::Reset()
1062{
1063 DoReset(GetString());
1064}
1065
1066void wxGridCellFloatEditor::StartingKey(wxKeyEvent& event)
1067{
12a3f227 1068 int keycode = event.GetKeyCode();
4676948b 1069 if ( wxIsdigit(keycode) || keycode == '+' || keycode == '-' || keycode == '.'
85d8c319
JS
1070 || keycode == WXK_NUMPAD0
1071 || keycode == WXK_NUMPAD1
1072 || keycode == WXK_NUMPAD2
1073 || keycode == WXK_NUMPAD3
1074 || keycode == WXK_NUMPAD4
1075 || keycode == WXK_NUMPAD5
1076 || keycode == WXK_NUMPAD6
1077 || keycode == WXK_NUMPAD7
1078 || keycode == WXK_NUMPAD8
1079 || keycode == WXK_NUMPAD9
1080 || keycode == WXK_ADD
1081 || keycode == WXK_NUMPAD_ADD
1082 || keycode == WXK_SUBTRACT
1083 || keycode == WXK_NUMPAD_SUBTRACT)
816be743
VZ
1084 {
1085 wxGridCellTextEditor::StartingKey(event);
1086
1087 // skip Skip() below
1088 return;
1089 }
1090
1091 event.Skip();
1092}
1093
f6bcfd97
BP
1094void wxGridCellFloatEditor::SetParameters(const wxString& params)
1095{
1096 if ( !params )
1097 {
1098 // reset to default
1099 m_width =
1100 m_precision = -1;
1101 }
1102 else
1103 {
1104 long tmp;
1105 if ( params.BeforeFirst(_T(',')).ToLong(&tmp) )
1106 {
1107 m_width = (int)tmp;
1108
1109 if ( params.AfterFirst(_T(',')).ToLong(&tmp) )
1110 {
1111 m_precision = (int)tmp;
1112
1113 // skip the error message below
1114 return;
1115 }
1116 }
1117
1118 wxLogDebug(_T("Invalid wxGridCellFloatEditor parameter string '%s' ignored"), params.c_str());
1119 }
1120}
1121
1122wxString wxGridCellFloatEditor::GetString() const
1123{
1124 wxString fmt;
1125 if ( m_width == -1 )
1126 {
1127 // default width/precision
ec53826c 1128 fmt = _T("%f");
f6bcfd97
BP
1129 }
1130 else if ( m_precision == -1 )
1131 {
1132 // default precision
ec53826c 1133 fmt.Printf(_T("%%%d.f"), m_width);
f6bcfd97
BP
1134 }
1135 else
1136 {
ec53826c 1137 fmt.Printf(_T("%%%d.%df"), m_width, m_precision);
f6bcfd97
BP
1138 }
1139
1140 return wxString::Format(fmt, m_valueOld);
1141}
1142
1143bool wxGridCellFloatEditor::IsAcceptedKey(wxKeyEvent& event)
1144{
1145 if ( wxGridCellEditor::IsAcceptedKey(event) )
1146 {
1147 int keycode = event.GetKeyCode();
1148 switch ( keycode )
1149 {
1150 case WXK_NUMPAD0:
1151 case WXK_NUMPAD1:
1152 case WXK_NUMPAD2:
1153 case WXK_NUMPAD3:
1154 case WXK_NUMPAD4:
1155 case WXK_NUMPAD5:
1156 case WXK_NUMPAD6:
1157 case WXK_NUMPAD7:
1158 case WXK_NUMPAD8:
1159 case WXK_NUMPAD9:
1160 case WXK_ADD:
1161 case WXK_NUMPAD_ADD:
1162 case WXK_SUBTRACT:
1163 case WXK_NUMPAD_SUBTRACT:
1164 case WXK_DECIMAL:
1165 case WXK_NUMPAD_DECIMAL:
1166 return TRUE;
1167
1168 default:
1169 // additionally accept 'e' as in '1e+6'
1170 if ( (keycode < 128) &&
4676948b 1171 (wxIsdigit(keycode) || tolower(keycode) == 'e') )
f6bcfd97
BP
1172 return TRUE;
1173 }
1174 }
1175
1176 return FALSE;
1177}
1178
3a8c693a
VZ
1179#endif // wxUSE_TEXTCTRL
1180
1181#if wxUSE_CHECKBOX
1182
508011ce
VZ
1183// ----------------------------------------------------------------------------
1184// wxGridCellBoolEditor
1185// ----------------------------------------------------------------------------
1186
1187void wxGridCellBoolEditor::Create(wxWindow* parent,
1188 wxWindowID id,
1189 wxEvtHandler* evtHandler)
1190{
1191 m_control = new wxCheckBox(parent, id, wxEmptyString,
1192 wxDefaultPosition, wxDefaultSize,
1193 wxNO_BORDER);
1194
1195 wxGridCellEditor::Create(parent, id, evtHandler);
1196}
1197
1198void wxGridCellBoolEditor::SetSize(const wxRect& r)
1199{
b94ae1ea
VZ
1200 bool resize = FALSE;
1201 wxSize size = m_control->GetSize();
1202 wxCoord minSize = wxMin(r.width, r.height);
1203
1204 // check if the checkbox is not too big/small for this cell
1205 wxSize sizeBest = m_control->GetBestSize();
1206 if ( !(size == sizeBest) )
1207 {
1208 // reset to default size if it had been made smaller
1209 size = sizeBest;
1210
1211 resize = TRUE;
1212 }
1213
1214 if ( size.x >= minSize || size.y >= minSize )
1215 {
1216 // leave 1 pixel margin
1217 size.x = size.y = minSize - 2;
1218
1219 resize = TRUE;
1220 }
1221
1222 if ( resize )
1223 {
1224 m_control->SetSize(size);
1225 }
1226
508011ce 1227 // position it in the centre of the rectangle (TODO: support alignment?)
508011ce 1228
b94ae1ea 1229#if defined(__WXGTK__) || defined (__WXMOTIF__)
508011ce
VZ
1230 // the checkbox without label still has some space to the right in wxGTK,
1231 // so shift it to the right
b94ae1ea
VZ
1232 size.x -= 8;
1233#elif defined(__WXMSW__)
a95e38c0
VZ
1234 // here too, but in other way
1235 size.x += 1;
b94ae1ea
VZ
1236 size.y -= 2;
1237#endif
508011ce 1238
1bd71df9
JS
1239 int hAlign = wxALIGN_CENTRE;
1240 int vAlign = wxALIGN_CENTRE;
1241 if (GetCellAttr())
1242 GetCellAttr()->GetAlignment(& hAlign, & vAlign);
52d6f640 1243
1bd71df9
JS
1244 int x = 0, y = 0;
1245 if (hAlign == wxALIGN_LEFT)
1246 {
1247 x = r.x + 2;
1248#ifdef __WXMSW__
1249 x += 2;
52d6f640 1250#endif
1bd71df9
JS
1251 y = r.y + r.height/2 - size.y/2;
1252 }
1253 else if (hAlign == wxALIGN_RIGHT)
1254 {
1255 x = r.x + r.width - size.x - 2;
1256 y = r.y + r.height/2 - size.y/2;
1257 }
1258 else if (hAlign == wxALIGN_CENTRE)
1259 {
1260 x = r.x + r.width/2 - size.x/2;
1261 y = r.y + r.height/2 - size.y/2;
1262 }
52d6f640 1263
1bd71df9 1264 m_control->Move(x, y);
508011ce
VZ
1265}
1266
1267void wxGridCellBoolEditor::Show(bool show, wxGridCellAttr *attr)
1268{
99306db2
VZ
1269 m_control->Show(show);
1270
189d0213 1271 if ( show )
508011ce 1272 {
189d0213
VZ
1273 wxColour colBg = attr ? attr->GetBackgroundColour() : *wxLIGHT_GREY;
1274 CBox()->SetBackgroundColour(colBg);
508011ce 1275 }
508011ce
VZ
1276}
1277
1278void wxGridCellBoolEditor::BeginEdit(int row, int col, wxGrid* grid)
1279{
1280 wxASSERT_MSG(m_control,
1281 wxT("The wxGridCellEditor must be Created first!"));
1282
28a77bc4 1283 if (grid->GetTable()->CanGetValueAs(row, col, wxGRID_VALUE_BOOL))
f2d76237
RD
1284 m_startValue = grid->GetTable()->GetValueAsBool(row, col);
1285 else
695a3263
MB
1286 {
1287 wxString cellval( grid->GetTable()->GetValue(row, col) );
8dd8f875 1288 m_startValue = !( !cellval || (cellval == wxT("0")) );
695a3263 1289 }
508011ce
VZ
1290 CBox()->SetValue(m_startValue);
1291 CBox()->SetFocus();
1292}
1293
1294bool wxGridCellBoolEditor::EndEdit(int row, int col,
508011ce
VZ
1295 wxGrid* grid)
1296{
1297 wxASSERT_MSG(m_control,
1298 wxT("The wxGridCellEditor must be Created first!"));
1299
1300 bool changed = FALSE;
1301 bool value = CBox()->GetValue();
1302 if ( value != m_startValue )
1303 changed = TRUE;
1304
1305 if ( changed )
1306 {
28a77bc4 1307 if (grid->GetTable()->CanGetValueAs(row, col, wxGRID_VALUE_BOOL))
f2d76237
RD
1308 grid->GetTable()->SetValueAsBool(row, col, value);
1309 else
1310 grid->GetTable()->SetValue(row, col, value ? _T("1") : wxEmptyString);
508011ce
VZ
1311 }
1312
1313 return changed;
1314}
1315
1316void wxGridCellBoolEditor::Reset()
1317{
1318 wxASSERT_MSG(m_control,
1319 wxT("The wxGridCellEditor must be Created first!"));
1320
1321 CBox()->SetValue(m_startValue);
1322}
1323
e195a54c 1324void wxGridCellBoolEditor::StartingClick()
508011ce 1325{
e195a54c 1326 CBox()->SetValue(!CBox()->GetValue());
508011ce
VZ
1327}
1328
f6bcfd97
BP
1329bool wxGridCellBoolEditor::IsAcceptedKey(wxKeyEvent& event)
1330{
1331 if ( wxGridCellEditor::IsAcceptedKey(event) )
1332 {
1333 int keycode = event.GetKeyCode();
1334 switch ( keycode )
1335 {
1336 case WXK_MULTIPLY:
1337 case WXK_NUMPAD_MULTIPLY:
1338 case WXK_ADD:
1339 case WXK_NUMPAD_ADD:
1340 case WXK_SUBTRACT:
1341 case WXK_NUMPAD_SUBTRACT:
1342 case WXK_SPACE:
1343 case '+':
1344 case '-':
1345 return TRUE;
1346 }
1347 }
1348
1349 return FALSE;
1350}
04418332 1351
73145b0e
JS
1352// return the value as "1" for true and the empty string for false
1353wxString wxGridCellBoolEditor::GetValue() const
1354{
1355 bool bSet = CBox()->GetValue();
04418332 1356 return bSet ? _T("1") : wxEmptyString;
73145b0e 1357}
f6bcfd97 1358
3a8c693a
VZ
1359#endif // wxUSE_CHECKBOX
1360
1361#if wxUSE_COMBOBOX
1362
4ee5fc9c
VZ
1363// ----------------------------------------------------------------------------
1364// wxGridCellChoiceEditor
1365// ----------------------------------------------------------------------------
1366
7db33cc3
MB
1367wxGridCellChoiceEditor::wxGridCellChoiceEditor(const wxArrayString& choices,
1368 bool allowOthers)
1369 : m_choices(choices),
1370 m_allowOthers(allowOthers) { }
1371
4ee5fc9c 1372wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count,
f6bcfd97 1373 const wxString choices[],
4ee5fc9c
VZ
1374 bool allowOthers)
1375 : m_allowOthers(allowOthers)
1376{
c4608a8a 1377 if ( count )
4ee5fc9c 1378 {
c4608a8a
VZ
1379 m_choices.Alloc(count);
1380 for ( size_t n = 0; n < count; n++ )
1381 {
1382 m_choices.Add(choices[n]);
1383 }
4ee5fc9c
VZ
1384 }
1385}
1386
c4608a8a
VZ
1387wxGridCellEditor *wxGridCellChoiceEditor::Clone() const
1388{
1389 wxGridCellChoiceEditor *editor = new wxGridCellChoiceEditor;
1390 editor->m_allowOthers = m_allowOthers;
1391 editor->m_choices = m_choices;
1392
1393 return editor;
1394}
1395
4ee5fc9c
VZ
1396void wxGridCellChoiceEditor::Create(wxWindow* parent,
1397 wxWindowID id,
1398 wxEvtHandler* evtHandler)
1399{
1400 size_t count = m_choices.GetCount();
1401 wxString *choices = new wxString[count];
1402 for ( size_t n = 0; n < count; n++ )
1403 {
1404 choices[n] = m_choices[n];
1405 }
1406
1407 m_control = new wxComboBox(parent, id, wxEmptyString,
1408 wxDefaultPosition, wxDefaultSize,
1409 count, choices,
1410 m_allowOthers ? 0 : wxCB_READONLY);
1411
1412 delete [] choices;
1413
1414 wxGridCellEditor::Create(parent, id, evtHandler);
1415}
1416
a5777624
RD
1417void wxGridCellChoiceEditor::PaintBackground(const wxRect& rectCell,
1418 wxGridCellAttr * attr)
4ee5fc9c
VZ
1419{
1420 // as we fill the entire client area, don't do anything here to minimize
1421 // flicker
a5777624
RD
1422
1423 // TODO: It doesn't actually fill the client area since the height of a
1424 // combo always defaults to the standard... Until someone has time to
1425 // figure out the right rectangle to paint, just do it the normal way...
1426 wxGridCellEditor::PaintBackground(rectCell, attr);
4ee5fc9c
VZ
1427}
1428
1429void wxGridCellChoiceEditor::BeginEdit(int row, int col, wxGrid* grid)
1430{
1431 wxASSERT_MSG(m_control,
1432 wxT("The wxGridCellEditor must be Created first!"));
1433
1434 m_startValue = grid->GetTable()->GetValue(row, col);
1435
2b5f62a0
VZ
1436 if (m_allowOthers)
1437 Combo()->SetValue(m_startValue);
1438 else
28a77bc4 1439 {
2b5f62a0
VZ
1440 // find the right position, or default to the first if not found
1441 int pos = Combo()->FindString(m_startValue);
1442 if (pos == -1)
1443 pos = 0;
1444 Combo()->SetSelection(pos);
28a77bc4 1445 }
4ee5fc9c
VZ
1446 Combo()->SetInsertionPointEnd();
1447 Combo()->SetFocus();
1448}
1449
28a77bc4 1450bool wxGridCellChoiceEditor::EndEdit(int row, int col,
4ee5fc9c
VZ
1451 wxGrid* grid)
1452{
1453 wxString value = Combo()->GetValue();
1454 bool changed = value != m_startValue;
1455
1456 if ( changed )
1457 grid->GetTable()->SetValue(row, col, value);
1458
1459 m_startValue = wxEmptyString;
2b5f62a0
VZ
1460 if (m_allowOthers)
1461 Combo()->SetValue(m_startValue);
1462 else
1463 Combo()->SetSelection(0);
4ee5fc9c
VZ
1464
1465 return changed;
1466}
1467
1468void wxGridCellChoiceEditor::Reset()
1469{
1470 Combo()->SetValue(m_startValue);
1471 Combo()->SetInsertionPointEnd();
1472}
1473
c4608a8a
VZ
1474void wxGridCellChoiceEditor::SetParameters(const wxString& params)
1475{
1476 if ( !params )
1477 {
1478 // what can we do?
1479 return;
1480 }
1481
1482 m_choices.Empty();
1483
1484 wxStringTokenizer tk(params, _T(','));
1485 while ( tk.HasMoreTokens() )
1486 {
1487 m_choices.Add(tk.GetNextToken());
1488 }
1489}
1490
73145b0e
JS
1491// return the value in the text control
1492wxString wxGridCellChoiceEditor::GetValue() const
1493{
1494 return Combo()->GetValue();
1495}
04418332 1496
3a8c693a
VZ
1497#endif // wxUSE_COMBOBOX
1498
508011ce
VZ
1499// ----------------------------------------------------------------------------
1500// wxGridCellEditorEvtHandler
1501// ----------------------------------------------------------------------------
2796cce3
RD
1502
1503void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent& event)
1504{
12a3f227 1505 switch ( event.GetKeyCode() )
2796cce3
RD
1506 {
1507 case WXK_ESCAPE:
1508 m_editor->Reset();
b54ba671 1509 m_grid->DisableCellEditControl();
2796cce3
RD
1510 break;
1511
2c9a89e0 1512 case WXK_TAB:
b51c3f27 1513 m_grid->GetEventHandler()->ProcessEvent( event );
9b4aede2
RD
1514 break;
1515
2796cce3 1516 case WXK_RETURN:
faec5a43
SN
1517 case WXK_NUMPAD_ENTER:
1518 if (!m_grid->GetEventHandler()->ProcessEvent(event))
2796cce3
RD
1519 m_editor->HandleReturn(event);
1520 break;
1521
2796cce3
RD
1522
1523 default:
1524 event.Skip();
1525 }
1526}
1527
fb0de762
RD
1528void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent& event)
1529{
12a3f227 1530 switch ( event.GetKeyCode() )
fb0de762
RD
1531 {
1532 case WXK_ESCAPE:
1533 case WXK_TAB:
1534 case WXK_RETURN:
a4f7bf58 1535 case WXK_NUMPAD_ENTER:
fb0de762
RD
1536 break;
1537
1538 default:
1539 event.Skip();
1540 }
1541}
1542
c4608a8a
VZ
1543// ----------------------------------------------------------------------------
1544// wxGridCellWorker is an (almost) empty common base class for
1545// wxGridCellRenderer and wxGridCellEditor managing ref counting
1546// ----------------------------------------------------------------------------
1547
1548void wxGridCellWorker::SetParameters(const wxString& WXUNUSED(params))
1549{
1550 // nothing to do
1551}
1552
1553wxGridCellWorker::~wxGridCellWorker()
1554{
1555}
1556
508011ce
VZ
1557// ============================================================================
1558// renderer classes
1559// ============================================================================
1560
ab79958a
VZ
1561// ----------------------------------------------------------------------------
1562// wxGridCellRenderer
1563// ----------------------------------------------------------------------------
1564
1565void wxGridCellRenderer::Draw(wxGrid& grid,
2796cce3 1566 wxGridCellAttr& attr,
ab79958a
VZ
1567 wxDC& dc,
1568 const wxRect& rect,
c78b3acd 1569 int WXUNUSED(row), int WXUNUSED(col),
ab79958a
VZ
1570 bool isSelected)
1571{
1572 dc.SetBackgroundMode( wxSOLID );
1573
04418332 1574 // grey out fields if the grid is disabled
73145b0e 1575 if( grid.IsEnabled() )
ab79958a 1576 {
73145b0e
JS
1577 if ( isSelected )
1578 {
1579 dc.SetBrush( wxBrush(grid.GetSelectionBackground(), wxSOLID) );
1580 }
1581 else
1582 {
1583 dc.SetBrush( wxBrush(attr.GetBackgroundColour(), wxSOLID) );
1584 }
52d6f640 1585 }
ab79958a
VZ
1586 else
1587 {
73145b0e 1588 dc.SetBrush(wxBrush(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_BTNFACE), wxSOLID));
ab79958a
VZ
1589 }
1590
1591 dc.SetPen( *wxTRANSPARENT_PEN );
ab79958a
VZ
1592 dc.DrawRectangle(rect);
1593}
1594
508011ce
VZ
1595// ----------------------------------------------------------------------------
1596// wxGridCellStringRenderer
1597// ----------------------------------------------------------------------------
1598
816be743
VZ
1599void wxGridCellStringRenderer::SetTextColoursAndFont(wxGrid& grid,
1600 wxGridCellAttr& attr,
1601 wxDC& dc,
1602 bool isSelected)
ab79958a 1603{
ab79958a
VZ
1604 dc.SetBackgroundMode( wxTRANSPARENT );
1605
283b7808
VZ
1606 // TODO some special colours for attr.IsReadOnly() case?
1607
04418332 1608 // different coloured text when the grid is disabled
73145b0e 1609 if( grid.IsEnabled() )
ab79958a 1610 {
73145b0e
JS
1611 if ( isSelected )
1612 {
1613 dc.SetTextBackground( grid.GetSelectionBackground() );
1614 dc.SetTextForeground( grid.GetSelectionForeground() );
1615 }
1616 else
1617 {
1618 dc.SetTextBackground( attr.GetBackgroundColour() );
1619 dc.SetTextForeground( attr.GetTextColour() );
1620 }
ab79958a
VZ
1621 }
1622 else
1623 {
73145b0e
JS
1624 dc.SetTextBackground(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_BTNFACE));
1625 dc.SetTextForeground(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_GRAYTEXT));
ab79958a 1626 }
816be743 1627
2796cce3 1628 dc.SetFont( attr.GetFont() );
816be743
VZ
1629}
1630
65e4e78e
VZ
1631wxSize wxGridCellStringRenderer::DoGetBestSize(wxGridCellAttr& attr,
1632 wxDC& dc,
1633 const wxString& text)
1634{
f6bcfd97 1635 wxCoord x = 0, y = 0, max_x = 0;
65e4e78e 1636 dc.SetFont(attr.GetFont());
f6bcfd97
BP
1637 wxStringTokenizer tk(text, _T('\n'));
1638 while ( tk.HasMoreTokens() )
1639 {
1640 dc.GetTextExtent(tk.GetNextToken(), &x, &y);
1641 max_x = wxMax(max_x, x);
1642 }
1643
1644 y *= 1 + text.Freq(wxT('\n')); // multiply by the number of lines.
65e4e78e 1645
f6bcfd97 1646 return wxSize(max_x, y);
65e4e78e
VZ
1647}
1648
1649wxSize wxGridCellStringRenderer::GetBestSize(wxGrid& grid,
1650 wxGridCellAttr& attr,
1651 wxDC& dc,
1652 int row, int col)
1653{
1654 return DoGetBestSize(attr, dc, grid.GetCellValue(row, col));
1655}
1656
816be743
VZ
1657void wxGridCellStringRenderer::Draw(wxGrid& grid,
1658 wxGridCellAttr& attr,
1659 wxDC& dc,
1660 const wxRect& rectCell,
1661 int row, int col,
1662 bool isSelected)
1663{
27f35b66 1664 wxRect rect = rectCell;
dc1f566f
SN
1665 rect.Inflate(-1);
1666
1667 // erase only this cells background, overflow cells should have been erased
1668 wxGridCellRenderer::Draw(grid, attr, dc, rectCell, row, col, isSelected);
1669
1670 int hAlign, vAlign;
1671 attr.GetAlignment(&hAlign, &vAlign);
27f35b66 1672
39b80349
SN
1673 int overflowCols = 0;
1674
27f35b66
SN
1675 if (attr.GetOverflow())
1676 {
1677 int cols = grid.GetNumberCols();
1678 int best_width = GetBestSize(grid,attr,dc,row,col).GetWidth();
1679 int cell_rows, cell_cols;
1680 attr.GetSize( &cell_rows, &cell_cols ); // shouldn't get here if <=0
1681 if ((best_width > rectCell.width) && (col < cols) && grid.GetTable())
1682 {
1683 int i, c_cols, c_rows;
1684 for (i = col+cell_cols; i < cols; i++)
1685 {
2b5f62a0 1686 bool is_empty = TRUE;
39b80349 1687 for (int j=row; j<row+cell_rows; j++)
27f35b66 1688 {
39b80349 1689 // check w/ anchor cell for multicell block
ef4d6ce8 1690 grid.GetCellSize(j, i, &c_rows, &c_cols);
39b80349 1691 if (c_rows > 0) c_rows = 0;
ef4d6ce8 1692 if (!grid.GetTable()->IsEmptyCell(j+c_rows, i))
39b80349 1693 {
2b5f62a0 1694 is_empty = FALSE;
ef4d6ce8 1695 break;
39b80349 1696 }
27f35b66 1697 }
39b80349
SN
1698 if (is_empty)
1699 rect.width += grid.GetColSize(i);
dc1f566f
SN
1700 else
1701 {
1702 i--;
1703 break;
1704 }
39b80349 1705 if (rect.width >= best_width) break;
2b5f62a0 1706 }
39b80349 1707 overflowCols = i - col - cell_cols + 1;
2b5f62a0 1708 if (overflowCols >= cols) overflowCols = cols - 1;
39b80349 1709 }
27f35b66 1710
dc1f566f
SN
1711 if (overflowCols > 0) // redraw overflow cells w/ proper hilight
1712 {
39b80349 1713 hAlign = wxALIGN_LEFT; // if oveflowed then it's left aligned
2b5f62a0 1714 wxRect clip = rect;
39b80349 1715 clip.x += rectCell.width;
dc1f566f
SN
1716 // draw each overflow cell individually
1717 int col_end = col+cell_cols+overflowCols;
1718 if (col_end >= grid.GetNumberCols())
2b5f62a0 1719 col_end = grid.GetNumberCols() - 1;
dc1f566f
SN
1720 for (int i = col+cell_cols; i <= col_end; i++)
1721 {
dc1f566f
SN
1722 clip.width = grid.GetColSize(i) - 1;
1723 dc.DestroyClippingRegion();
1724 dc.SetClippingRegion(clip);
39b80349
SN
1725
1726 SetTextColoursAndFont(grid, attr, dc,
2b5f62a0 1727 grid.IsInSelection(row,i));
39b80349 1728
dc1f566f 1729 grid.DrawTextRectangle(dc, grid.GetCellValue(row, col),
2b5f62a0 1730 rect, hAlign, vAlign);
39b80349 1731 clip.x += grid.GetColSize(i) - 1;
dc1f566f 1732 }
ab79958a 1733
39b80349 1734 rect = rectCell;
2b5f62a0 1735 rect.Inflate(-1);
dc1f566f 1736 rect.width++;
39b80349 1737 dc.DestroyClippingRegion();
dc1f566f 1738 }
39b80349 1739 }
ab79958a 1740
dc1f566f
SN
1741 // now we only have to draw the text
1742 SetTextColoursAndFont(grid, attr, dc, isSelected);
39b80349 1743
ab79958a
VZ
1744 grid.DrawTextRectangle(dc, grid.GetCellValue(row, col),
1745 rect, hAlign, vAlign);
1746}
1747
65e4e78e
VZ
1748// ----------------------------------------------------------------------------
1749// wxGridCellNumberRenderer
1750// ----------------------------------------------------------------------------
1751
1752wxString wxGridCellNumberRenderer::GetString(wxGrid& grid, int row, int col)
1753{
1754 wxGridTableBase *table = grid.GetTable();
1755 wxString text;
1756 if ( table->CanGetValueAs(row, col, wxGRID_VALUE_NUMBER) )
1757 {
1758 text.Printf(_T("%ld"), table->GetValueAsLong(row, col));
1759 }
9c4ba614
VZ
1760 else
1761 {
1762 text = table->GetValue(row, col);
1763 }
65e4e78e
VZ
1764
1765 return text;
1766}
1767
816be743
VZ
1768void wxGridCellNumberRenderer::Draw(wxGrid& grid,
1769 wxGridCellAttr& attr,
1770 wxDC& dc,
1771 const wxRect& rectCell,
1772 int row, int col,
1773 bool isSelected)
1774{
1775 wxGridCellRenderer::Draw(grid, attr, dc, rectCell, row, col, isSelected);
1776
1777 SetTextColoursAndFont(grid, attr, dc, isSelected);
1778
1779 // draw the text right aligned by default
1780 int hAlign, vAlign;
1781 attr.GetAlignment(&hAlign, &vAlign);
4c7277db 1782 hAlign = wxALIGN_RIGHT;
816be743
VZ
1783
1784 wxRect rect = rectCell;
1785 rect.Inflate(-1);
1786
65e4e78e
VZ
1787 grid.DrawTextRectangle(dc, GetString(grid, row, col), rect, hAlign, vAlign);
1788}
816be743 1789
65e4e78e
VZ
1790wxSize wxGridCellNumberRenderer::GetBestSize(wxGrid& grid,
1791 wxGridCellAttr& attr,
1792 wxDC& dc,
1793 int row, int col)
1794{
1795 return DoGetBestSize(attr, dc, GetString(grid, row, col));
816be743
VZ
1796}
1797
1798// ----------------------------------------------------------------------------
1799// wxGridCellFloatRenderer
1800// ----------------------------------------------------------------------------
1801
1802wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width, int precision)
1803{
1804 SetWidth(width);
1805 SetPrecision(precision);
1806}
1807
e72b4213
VZ
1808wxGridCellRenderer *wxGridCellFloatRenderer::Clone() const
1809{
1810 wxGridCellFloatRenderer *renderer = new wxGridCellFloatRenderer;
1811 renderer->m_width = m_width;
1812 renderer->m_precision = m_precision;
1813 renderer->m_format = m_format;
1814
1815 return renderer;
1816}
1817
65e4e78e
VZ
1818wxString wxGridCellFloatRenderer::GetString(wxGrid& grid, int row, int col)
1819{
1820 wxGridTableBase *table = grid.GetTable();
0b190b0f
VZ
1821
1822 bool hasDouble;
1823 double val;
65e4e78e
VZ
1824 wxString text;
1825 if ( table->CanGetValueAs(row, col, wxGRID_VALUE_FLOAT) )
1826 {
0b190b0f
VZ
1827 val = table->GetValueAsDouble(row, col);
1828 hasDouble = TRUE;
65e4e78e 1829 }
9c4ba614
VZ
1830 else
1831 {
1832 text = table->GetValue(row, col);
0b190b0f 1833 hasDouble = text.ToDouble(&val);
9c4ba614 1834 }
65e4e78e 1835
0b190b0f
VZ
1836 if ( hasDouble )
1837 {
1838 if ( !m_format )
1839 {
1840 if ( m_width == -1 )
1841 {
19d7140e
VZ
1842 if ( m_precision == -1 )
1843 {
2b5f62a0
VZ
1844 // default width/precision
1845 m_format = _T("%f");
1846 }
19d7140e
VZ
1847 else
1848 {
1849 m_format.Printf(_T("%%.%df"), m_precision);
1850 }
0b190b0f
VZ
1851 }
1852 else if ( m_precision == -1 )
1853 {
1854 // default precision
1855 m_format.Printf(_T("%%%d.f"), m_width);
1856 }
1857 else
1858 {
1859 m_format.Printf(_T("%%%d.%df"), m_width, m_precision);
1860 }
1861 }
1862
1863 text.Printf(m_format, val);
19d7140e 1864
0b190b0f
VZ
1865 }
1866 //else: text already contains the string
1867
65e4e78e
VZ
1868 return text;
1869}
1870
816be743
VZ
1871void wxGridCellFloatRenderer::Draw(wxGrid& grid,
1872 wxGridCellAttr& attr,
1873 wxDC& dc,
1874 const wxRect& rectCell,
1875 int row, int col,
1876 bool isSelected)
1877{
1878 wxGridCellRenderer::Draw(grid, attr, dc, rectCell, row, col, isSelected);
1879
1880 SetTextColoursAndFont(grid, attr, dc, isSelected);
1881
1882 // draw the text right aligned by default
1883 int hAlign, vAlign;
1884 attr.GetAlignment(&hAlign, &vAlign);
4c7277db 1885 hAlign = wxALIGN_RIGHT;
816be743
VZ
1886
1887 wxRect rect = rectCell;
1888 rect.Inflate(-1);
1889
65e4e78e
VZ
1890 grid.DrawTextRectangle(dc, GetString(grid, row, col), rect, hAlign, vAlign);
1891}
816be743 1892
65e4e78e
VZ
1893wxSize wxGridCellFloatRenderer::GetBestSize(wxGrid& grid,
1894 wxGridCellAttr& attr,
1895 wxDC& dc,
1896 int row, int col)
1897{
1898 return DoGetBestSize(attr, dc, GetString(grid, row, col));
816be743
VZ
1899}
1900
0b190b0f
VZ
1901void wxGridCellFloatRenderer::SetParameters(const wxString& params)
1902{
0b190b0f
VZ
1903 if ( !params )
1904 {
1905 // reset to defaults
1906 SetWidth(-1);
1907 SetPrecision(-1);
1908 }
1909 else
1910 {
1911 wxString tmp = params.BeforeFirst(_T(','));
1912 if ( !!tmp )
1913 {
1914 long width;
19d7140e 1915 if ( tmp.ToLong(&width) )
0b190b0f 1916 {
19d7140e 1917 SetWidth((int)width);
0b190b0f
VZ
1918 }
1919 else
1920 {
19d7140e
VZ
1921 wxLogDebug(_T("Invalid wxGridCellFloatRenderer width parameter string '%s ignored"), params.c_str());
1922 }
0b190b0f 1923
19d7140e 1924 }
0b190b0f
VZ
1925 tmp = params.AfterFirst(_T(','));
1926 if ( !!tmp )
1927 {
1928 long precision;
19d7140e 1929 if ( tmp.ToLong(&precision) )
0b190b0f 1930 {
19d7140e 1931 SetPrecision((int)precision);
0b190b0f
VZ
1932 }
1933 else
1934 {
19d7140e 1935 wxLogDebug(_T("Invalid wxGridCellFloatRenderer precision parameter string '%s ignored"), params.c_str());
0b190b0f
VZ
1936 }
1937
0b190b0f
VZ
1938 }
1939 }
1940}
1941
19d7140e 1942
508011ce
VZ
1943// ----------------------------------------------------------------------------
1944// wxGridCellBoolRenderer
1945// ----------------------------------------------------------------------------
1946
65e4e78e 1947wxSize wxGridCellBoolRenderer::ms_sizeCheckMark;
508011ce 1948
b94ae1ea
VZ
1949// FIXME these checkbox size calculations are really ugly...
1950
65e4e78e 1951// between checkmark and box
a95e38c0 1952static const wxCoord wxGRID_CHECKMARK_MARGIN = 2;
508011ce 1953
65e4e78e
VZ
1954wxSize wxGridCellBoolRenderer::GetBestSize(wxGrid& grid,
1955 wxGridCellAttr& WXUNUSED(attr),
1956 wxDC& WXUNUSED(dc),
1957 int WXUNUSED(row),
1958 int WXUNUSED(col))
1959{
1960 // compute it only once (no locks for MT safeness in GUI thread...)
1961 if ( !ms_sizeCheckMark.x )
297da4ba 1962 {
65e4e78e
VZ
1963 // get checkbox size
1964 wxCoord checkSize = 0;
297da4ba
VZ
1965 wxCheckBox *checkbox = new wxCheckBox(&grid, -1, wxEmptyString);
1966 wxSize size = checkbox->GetBestSize();
a95e38c0 1967 checkSize = size.y + 2*wxGRID_CHECKMARK_MARGIN;
297da4ba 1968
65e4e78e 1969 // FIXME wxGTK::wxCheckBox::GetBestSize() gives "wrong" result
69d8f612 1970#if defined(__WXGTK__) || defined(__WXMOTIF__)
65e4e78e 1971 checkSize -= size.y / 2;
297da4ba
VZ
1972#endif
1973
1974 delete checkbox;
65e4e78e
VZ
1975
1976 ms_sizeCheckMark.x = ms_sizeCheckMark.y = checkSize;
297da4ba
VZ
1977 }
1978
65e4e78e
VZ
1979 return ms_sizeCheckMark;
1980}
1981
1982void wxGridCellBoolRenderer::Draw(wxGrid& grid,
1983 wxGridCellAttr& attr,
1984 wxDC& dc,
1985 const wxRect& rect,
1986 int row, int col,
1987 bool isSelected)
1988{
1989 wxGridCellRenderer::Draw(grid, attr, dc, rect, row, col, isSelected);
1990
297da4ba 1991 // draw a check mark in the centre (ignoring alignment - TODO)
65e4e78e 1992 wxSize size = GetBestSize(grid, attr, dc, row, col);
b94ae1ea
VZ
1993
1994 // don't draw outside the cell
1995 wxCoord minSize = wxMin(rect.width, rect.height);
1996 if ( size.x >= minSize || size.y >= minSize )
1997 {
1998 // and even leave (at least) 1 pixel margin
1999 size.x = size.y = minSize - 2;
2000 }
2001
2002 // draw a border around checkmark
1bd71df9
JS
2003 int vAlign, hAlign;
2004 attr.GetAlignment(& hAlign, &vAlign);
52d6f640 2005
a95e38c0 2006 wxRect rectBorder;
1bd71df9
JS
2007 if (hAlign == wxALIGN_CENTRE)
2008 {
2009 rectBorder.x = rect.x + rect.width/2 - size.x/2;
2010 rectBorder.y = rect.y + rect.height/2 - size.y/2;
2011 rectBorder.width = size.x;
2012 rectBorder.height = size.y;
2013 }
2014 else if (hAlign == wxALIGN_LEFT)
2015 {
2016 rectBorder.x = rect.x + 2;
2017 rectBorder.y = rect.y + rect.height/2 - size.y/2;
2018 rectBorder.width = size.x;
52d6f640 2019 rectBorder.height = size.y;
1bd71df9
JS
2020 }
2021 else if (hAlign == wxALIGN_RIGHT)
2022 {
2023 rectBorder.x = rect.x + rect.width - size.x - 2;
2024 rectBorder.y = rect.y + rect.height/2 - size.y/2;
2025 rectBorder.width = size.x;
52d6f640 2026 rectBorder.height = size.y;
1bd71df9 2027 }
b94ae1ea 2028
f2d76237 2029 bool value;
b94ae1ea 2030 if ( grid.GetTable()->CanGetValueAs(row, col, wxGRID_VALUE_BOOL) )
f2d76237
RD
2031 value = grid.GetTable()->GetValueAsBool(row, col);
2032 else
695a3263
MB
2033 {
2034 wxString cellval( grid.GetTable()->GetValue(row, col) );
8dd8f875 2035 value = !( !cellval || (cellval == wxT("0")) );
695a3263 2036 }
f2d76237
RD
2037
2038 if ( value )
508011ce 2039 {
a95e38c0
VZ
2040 wxRect rectMark = rectBorder;
2041#ifdef __WXMSW__
2042 // MSW DrawCheckMark() is weird (and should probably be changed...)
2043 rectMark.Inflate(-wxGRID_CHECKMARK_MARGIN/2);
2044 rectMark.x++;
2045 rectMark.y++;
2046#else // !MSW
2047 rectMark.Inflate(-wxGRID_CHECKMARK_MARGIN);
2048#endif // MSW/!MSW
2049
508011ce
VZ
2050 dc.SetTextForeground(attr.GetTextColour());
2051 dc.DrawCheckMark(rectMark);
2052 }
a95e38c0
VZ
2053
2054 dc.SetBrush(*wxTRANSPARENT_BRUSH);
2055 dc.SetPen(wxPen(attr.GetTextColour(), 1, wxSOLID));
2056 dc.DrawRectangle(rectBorder);
508011ce
VZ
2057}
2058
2796cce3
RD
2059// ----------------------------------------------------------------------------
2060// wxGridCellAttr
2061// ----------------------------------------------------------------------------
2062
1df4050d
VZ
2063void wxGridCellAttr::Init(wxGridCellAttr *attrDefault)
2064{
2065 m_nRef = 1;
2066
2067 m_isReadOnly = Unset;
2068
2069 m_renderer = NULL;
2070 m_editor = NULL;
2071
2072 m_attrkind = wxGridCellAttr::Cell;
2073
27f35b66 2074 m_sizeRows = m_sizeCols = 1;
b63fce94 2075 m_overflow = UnsetOverflow;
27f35b66 2076
1df4050d
VZ
2077 SetDefAttr(attrDefault);
2078}
2079
39bcce60 2080wxGridCellAttr *wxGridCellAttr::Clone() const
a68c1246 2081{
1df4050d
VZ
2082 wxGridCellAttr *attr = new wxGridCellAttr(m_defGridAttr);
2083
a68c1246
VZ
2084 if ( HasTextColour() )
2085 attr->SetTextColour(GetTextColour());
2086 if ( HasBackgroundColour() )
2087 attr->SetBackgroundColour(GetBackgroundColour());
2088 if ( HasFont() )
2089 attr->SetFont(GetFont());
2090 if ( HasAlignment() )
2091 attr->SetAlignment(m_hAlign, m_vAlign);
2092
27f35b66
SN
2093 attr->SetSize( m_sizeRows, m_sizeCols );
2094
a68c1246
VZ
2095 if ( m_renderer )
2096 {
2097 attr->SetRenderer(m_renderer);
39bcce60 2098 m_renderer->IncRef();
a68c1246
VZ
2099 }
2100 if ( m_editor )
2101 {
2102 attr->SetEditor(m_editor);
39bcce60 2103 m_editor->IncRef();
a68c1246
VZ
2104 }
2105
2106 if ( IsReadOnly() )
2107 attr->SetReadOnly();
2108
19d7140e
VZ
2109 attr->SetKind( m_attrkind );
2110
a68c1246
VZ
2111 return attr;
2112}
2113
19d7140e
VZ
2114void wxGridCellAttr::MergeWith(wxGridCellAttr *mergefrom)
2115{
2116 if ( !HasTextColour() && mergefrom->HasTextColour() )
2117 SetTextColour(mergefrom->GetTextColour());
2118 if ( !HasBackgroundColour() && mergefrom->HasBackgroundColour() )
2119 SetBackgroundColour(mergefrom->GetBackgroundColour());
2120 if ( !HasFont() && mergefrom->HasFont() )
2121 SetFont(mergefrom->GetFont());
7e48d7d9 2122 if ( !HasAlignment() && mergefrom->HasAlignment() ){
19d7140e
VZ
2123 int hAlign, vAlign;
2124 mergefrom->GetAlignment( &hAlign, &vAlign);
2125 SetAlignment(hAlign, vAlign);
2126 }
2127
27f35b66
SN
2128 mergefrom->GetSize( &m_sizeRows, &m_sizeCols );
2129
19d7140e
VZ
2130 // Directly access member functions as GetRender/Editor don't just return
2131 // m_renderer/m_editor
2132 //
2133 // Maybe add support for merge of Render and Editor?
2134 if (!HasRenderer() && mergefrom->HasRenderer() )
bf7945ce 2135 {
19d7140e
VZ
2136 m_renderer = mergefrom->m_renderer;
2137 m_renderer->IncRef();
2138 }
2139 if ( !HasEditor() && mergefrom->HasEditor() )
2140 {
2141 m_editor = mergefrom->m_editor;
2142 m_editor->IncRef();
2143 }
2144 if ( !HasReadWriteMode() && mergefrom->HasReadWriteMode() )
2145 SetReadOnly(mergefrom->IsReadOnly());
2146
ef5df12b 2147 if (!HasOverflowMode() && mergefrom->HasOverflowMode() )
ff699386 2148 SetOverflow(mergefrom->GetOverflow());
ef5df12b 2149
19d7140e
VZ
2150 SetDefAttr(mergefrom->m_defGridAttr);
2151}
2152
27f35b66
SN
2153void wxGridCellAttr::SetSize(int num_rows, int num_cols)
2154{
2155 // The size of a cell is normally 1,1
2156
2157 // If this cell is larger (2,2) then this is the top left cell
2158 // the other cells that will be covered (lower right cells) must be
2159 // set to negative or zero values such that
2160 // row + num_rows of the covered cell points to the larger cell (this cell)
2161 // same goes for the col + num_cols.
2162
2163 // Size of 0,0 is NOT valid, neither is <=0 and any positive value
2164
2165 wxASSERT_MSG( (!((num_rows>0)&&(num_cols<=0)) ||
2166 !((num_rows<=0)&&(num_cols>0)) ||
2167 !((num_rows==0)&&(num_cols==0))),
2168 wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values"));
2169
2170 m_sizeRows = num_rows;
2171 m_sizeCols = num_cols;
2172}
2173
2796cce3
RD
2174const wxColour& wxGridCellAttr::GetTextColour() const
2175{
2176 if (HasTextColour())
508011ce 2177 {
2796cce3 2178 return m_colText;
508011ce 2179 }
0926b2fc 2180 else if (m_defGridAttr && m_defGridAttr != this)
508011ce 2181 {
2796cce3 2182 return m_defGridAttr->GetTextColour();
508011ce
VZ
2183 }
2184 else
2185 {
2796cce3
RD
2186 wxFAIL_MSG(wxT("Missing default cell attribute"));
2187 return wxNullColour;
2188 }
2189}
2190
2191
2192const wxColour& wxGridCellAttr::GetBackgroundColour() const
2193{
2194 if (HasBackgroundColour())
2195 return m_colBack;
0926b2fc 2196 else if (m_defGridAttr && m_defGridAttr != this)
2796cce3 2197 return m_defGridAttr->GetBackgroundColour();
508011ce
VZ
2198 else
2199 {
2796cce3
RD
2200 wxFAIL_MSG(wxT("Missing default cell attribute"));
2201 return wxNullColour;
2202 }
2203}
2204
2205
2206const wxFont& wxGridCellAttr::GetFont() const
2207{
2208 if (HasFont())
2209 return m_font;
0926b2fc 2210 else if (m_defGridAttr && m_defGridAttr != this)
2796cce3 2211 return m_defGridAttr->GetFont();
508011ce
VZ
2212 else
2213 {
2796cce3
RD
2214 wxFAIL_MSG(wxT("Missing default cell attribute"));
2215 return wxNullFont;
2216 }
2217}
2218
2219
2220void wxGridCellAttr::GetAlignment(int *hAlign, int *vAlign) const
2221{
508011ce
VZ
2222 if (HasAlignment())
2223 {
2796cce3
RD
2224 if ( hAlign ) *hAlign = m_hAlign;
2225 if ( vAlign ) *vAlign = m_vAlign;
2226 }
0926b2fc 2227 else if (m_defGridAttr && m_defGridAttr != this)
2796cce3 2228 m_defGridAttr->GetAlignment(hAlign, vAlign);
508011ce
VZ
2229 else
2230 {
2796cce3
RD
2231 wxFAIL_MSG(wxT("Missing default cell attribute"));
2232 }
2233}
2234
27f35b66
SN
2235void wxGridCellAttr::GetSize( int *num_rows, int *num_cols ) const
2236{
2237 if ( num_rows ) *num_rows = m_sizeRows;
2238 if ( num_cols ) *num_cols = m_sizeCols;
2239}
2796cce3 2240
f2d76237 2241// GetRenderer and GetEditor use a slightly different decision path about
28a77bc4
RD
2242// which attribute to use. If a non-default attr object has one then it is
2243// used, otherwise the default editor or renderer is fetched from the grid and
2244// used. It should be the default for the data type of the cell. If it is
2245// NULL (because the table has a type that the grid does not have in its
2246// registry,) then the grid's default editor or renderer is used.
2247
2248wxGridCellRenderer* wxGridCellAttr::GetRenderer(wxGrid* grid, int row, int col) const
2249{
3cf883a2 2250 wxGridCellRenderer *renderer;
28a77bc4 2251
3cf883a2 2252 if ( m_renderer && this != m_defGridAttr )
0b190b0f 2253 {
3cf883a2
VZ
2254 // use the cells renderer if it has one
2255 renderer = m_renderer;
2256 renderer->IncRef();
0b190b0f 2257 }
3cf883a2 2258 else // no non default cell renderer
0b190b0f 2259 {
3cf883a2
VZ
2260 // get default renderer for the data type
2261 if ( grid )
2262 {
2263 // GetDefaultRendererForCell() will do IncRef() for us
2264 renderer = grid->GetDefaultRendererForCell(row, col);
2265 }
2266 else
2267 {
2268 renderer = NULL;
2269 }
0b190b0f 2270
3cf883a2
VZ
2271 if ( !renderer )
2272 {
0926b2fc 2273 if (m_defGridAttr && this != m_defGridAttr )
3cf883a2
VZ
2274 {
2275 // if we still don't have one then use the grid default
2276 // (no need for IncRef() here neither)
2277 renderer = m_defGridAttr->GetRenderer(NULL, 0, 0);
2278 }
2279 else // default grid attr
2280 {
2281 // use m_renderer which we had decided not to use initially
2282 renderer = m_renderer;
2283 if ( renderer )
2284 renderer->IncRef();
2285 }
2286 }
0b190b0f 2287 }
28a77bc4 2288
3cf883a2
VZ
2289 // we're supposed to always find something
2290 wxASSERT_MSG(renderer, wxT("Missing default cell renderer"));
28a77bc4
RD
2291
2292 return renderer;
2796cce3
RD
2293}
2294
3cf883a2 2295// same as above, except for s/renderer/editor/g
28a77bc4 2296wxGridCellEditor* wxGridCellAttr::GetEditor(wxGrid* grid, int row, int col) const
07296f0b 2297{
3cf883a2 2298 wxGridCellEditor *editor;
0b190b0f 2299
3cf883a2 2300 if ( m_editor && this != m_defGridAttr )
0b190b0f 2301 {
3cf883a2
VZ
2302 // use the cells editor if it has one
2303 editor = m_editor;
2304 editor->IncRef();
0b190b0f 2305 }
3cf883a2 2306 else // no non default cell editor
0b190b0f 2307 {
3cf883a2
VZ
2308 // get default editor for the data type
2309 if ( grid )
2310 {
2311 // GetDefaultEditorForCell() will do IncRef() for us
2312 editor = grid->GetDefaultEditorForCell(row, col);
2313 }
2314 else
2315 {
2316 editor = NULL;
2317 }
2318
2319 if ( !editor )
2320 {
0926b2fc 2321 if ( m_defGridAttr && this != m_defGridAttr )
3cf883a2
VZ
2322 {
2323 // if we still don't have one then use the grid default
2324 // (no need for IncRef() here neither)
2325 editor = m_defGridAttr->GetEditor(NULL, 0, 0);
2326 }
2327 else // default grid attr
2328 {
2329 // use m_editor which we had decided not to use initially
2330 editor = m_editor;
2331 if ( editor )
2332 editor->IncRef();
2333 }
2334 }
0b190b0f 2335 }
28a77bc4 2336
3cf883a2
VZ
2337 // we're supposed to always find something
2338 wxASSERT_MSG(editor, wxT("Missing default cell editor"));
2339
28a77bc4 2340 return editor;
07296f0b
RD
2341}
2342
b99be8fb 2343// ----------------------------------------------------------------------------
758cbedf 2344// wxGridCellAttrData
b99be8fb
VZ
2345// ----------------------------------------------------------------------------
2346
758cbedf 2347void wxGridCellAttrData::SetAttr(wxGridCellAttr *attr, int row, int col)
b99be8fb
VZ
2348{
2349 int n = FindIndex(row, col);
2350 if ( n == wxNOT_FOUND )
2351 {
2352 // add the attribute
2353 m_attrs.Add(new wxGridCellWithAttr(row, col, attr));
2354 }
2355 else
2356 {
6f36917b
VZ
2357 // free the old attribute
2358 m_attrs[(size_t)n].attr->DecRef();
2359
b99be8fb
VZ
2360 if ( attr )
2361 {
2362 // change the attribute
2e9a6788 2363 m_attrs[(size_t)n].attr = attr;
b99be8fb
VZ
2364 }
2365 else
2366 {
2367 // remove this attribute
2368 m_attrs.RemoveAt((size_t)n);
2369 }
2370 }
b99be8fb
VZ
2371}
2372
758cbedf 2373wxGridCellAttr *wxGridCellAttrData::GetAttr(int row, int col) const
b99be8fb
VZ
2374{
2375 wxGridCellAttr *attr = (wxGridCellAttr *)NULL;
2376
2377 int n = FindIndex(row, col);
2378 if ( n != wxNOT_FOUND )
2379 {
2e9a6788
VZ
2380 attr = m_attrs[(size_t)n].attr;
2381 attr->IncRef();
b99be8fb
VZ
2382 }
2383
2384 return attr;
2385}
2386
4d60017a
SN
2387void wxGridCellAttrData::UpdateAttrRows( size_t pos, int numRows )
2388{
2389 size_t count = m_attrs.GetCount();
2390 for ( size_t n = 0; n < count; n++ )
2391 {
2392 wxGridCellCoords& coords = m_attrs[n].coords;
d1c0b4f9
VZ
2393 wxCoord row = coords.GetRow();
2394 if ((size_t)row >= pos)
2395 {
2396 if (numRows > 0)
2397 {
2398 // If rows inserted, include row counter where necessary
2399 coords.SetRow(row + numRows);
2400 }
2401 else if (numRows < 0)
2402 {
2403 // If rows deleted ...
2404 if ((size_t)row >= pos - numRows)
2405 {
2406 // ...either decrement row counter (if row still exists)...
2407 coords.SetRow(row + numRows);
2408 }
2409 else
2410 {
2411 // ...or remove the attribute
2412 m_attrs.RemoveAt((size_t)n);
2413 n--; count--;
2414 }
2415 }
4d60017a
SN
2416 }
2417 }
2418}
2419
2420void wxGridCellAttrData::UpdateAttrCols( size_t pos, int numCols )
2421{
2422 size_t count = m_attrs.GetCount();
2423 for ( size_t n = 0; n < count; n++ )
2424 {
2425 wxGridCellCoords& coords = m_attrs[n].coords;
d1c0b4f9
VZ
2426 wxCoord col = coords.GetCol();
2427 if ( (size_t)col >= pos )
2428 {
2429 if ( numCols > 0 )
2430 {
2431 // If rows inserted, include row counter where necessary
2432 coords.SetCol(col + numCols);
2433 }
2434 else if (numCols < 0)
2435 {
2436 // If rows deleted ...
2437 if ((size_t)col >= pos - numCols)
2438 {
2439 // ...either decrement row counter (if row still exists)...
2440 coords.SetCol(col + numCols);
2441 }
2442 else
2443 {
2444 // ...or remove the attribute
2445 m_attrs.RemoveAt((size_t)n);
2446 n--; count--;
2447 }
2448 }
4d60017a
SN
2449 }
2450 }
2451}
2452
758cbedf 2453int wxGridCellAttrData::FindIndex(int row, int col) const
b99be8fb
VZ
2454{
2455 size_t count = m_attrs.GetCount();
2456 for ( size_t n = 0; n < count; n++ )
2457 {
2458 const wxGridCellCoords& coords = m_attrs[n].coords;
2459 if ( (coords.GetRow() == row) && (coords.GetCol() == col) )
2460 {
2461 return n;
2462 }
2463 }
2464
2465 return wxNOT_FOUND;
2466}
2467
758cbedf
VZ
2468// ----------------------------------------------------------------------------
2469// wxGridRowOrColAttrData
2470// ----------------------------------------------------------------------------
2471
2472wxGridRowOrColAttrData::~wxGridRowOrColAttrData()
2473{
2474 size_t count = m_attrs.Count();
2475 for ( size_t n = 0; n < count; n++ )
2476 {
2477 m_attrs[n]->DecRef();
2478 }
2479}
2480
2481wxGridCellAttr *wxGridRowOrColAttrData::GetAttr(int rowOrCol) const
2482{
2483 wxGridCellAttr *attr = (wxGridCellAttr *)NULL;
2484
2485 int n = m_rowsOrCols.Index(rowOrCol);
2486 if ( n != wxNOT_FOUND )
2487 {
2488 attr = m_attrs[(size_t)n];
2489 attr->IncRef();
2490 }
2491
2492 return attr;
2493}
2494
2495void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr *attr, int rowOrCol)
2496{
a95e38c0
VZ
2497 int i = m_rowsOrCols.Index(rowOrCol);
2498 if ( i == wxNOT_FOUND )
758cbedf
VZ
2499 {
2500 // add the attribute
2501 m_rowsOrCols.Add(rowOrCol);
2502 m_attrs.Add(attr);
2503 }
2504 else
2505 {
a95e38c0 2506 size_t n = (size_t)i;
758cbedf
VZ
2507 if ( attr )
2508 {
2509 // change the attribute
a95e38c0
VZ
2510 m_attrs[n]->DecRef();
2511 m_attrs[n] = attr;
758cbedf
VZ
2512 }
2513 else
2514 {
2515 // remove this attribute
a95e38c0
VZ
2516 m_attrs[n]->DecRef();
2517 m_rowsOrCols.RemoveAt(n);
2518 m_attrs.RemoveAt(n);
758cbedf
VZ
2519 }
2520 }
2521}
2522
4d60017a
SN
2523void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos, int numRowsOrCols )
2524{
2525 size_t count = m_attrs.GetCount();
2526 for ( size_t n = 0; n < count; n++ )
2527 {
2528 int & rowOrCol = m_rowsOrCols[n];
d1c0b4f9
VZ
2529 if ( (size_t)rowOrCol >= pos )
2530 {
2531 if ( numRowsOrCols > 0 )
2532 {
2533 // If rows inserted, include row counter where necessary
2534 rowOrCol += numRowsOrCols;
2535 }
2536 else if ( numRowsOrCols < 0)
2537 {
2538 // If rows deleted, either decrement row counter (if row still exists)
2539 if ((size_t)rowOrCol >= pos - numRowsOrCols)
2540 rowOrCol += numRowsOrCols;
2541 else
2542 {
2543 m_rowsOrCols.RemoveAt((size_t)n);
2544 m_attrs.RemoveAt((size_t)n);
2545 n--; count--;
2546 }
2547 }
4d60017a
SN
2548 }
2549 }
2550}
2551
b99be8fb
VZ
2552// ----------------------------------------------------------------------------
2553// wxGridCellAttrProvider
2554// ----------------------------------------------------------------------------
2555
2556wxGridCellAttrProvider::wxGridCellAttrProvider()
2557{
2558 m_data = (wxGridCellAttrProviderData *)NULL;
2559}
2560
2561wxGridCellAttrProvider::~wxGridCellAttrProvider()
2562{
2563 delete m_data;
2564}
2565
2566void wxGridCellAttrProvider::InitData()
2567{
2568 m_data = new wxGridCellAttrProviderData;
2569}
2570
19d7140e
VZ
2571wxGridCellAttr *wxGridCellAttrProvider::GetAttr(int row, int col,
2572 wxGridCellAttr::wxAttrKind kind ) const
b99be8fb 2573{
758cbedf
VZ
2574 wxGridCellAttr *attr = (wxGridCellAttr *)NULL;
2575 if ( m_data )
2576 {
19d7140e 2577 switch(kind)
758cbedf 2578 {
19d7140e
VZ
2579 case (wxGridCellAttr::Any):
2580 //Get cached merge attributes.
2581 // Currenlty not used as no cache implemented as not mutiable
2582 // attr = m_data->m_mergeAttr.GetAttr(row, col);
2583 if(!attr)
2584 {
2585 //Basicaly implement old version.
2586 //Also check merge cache, so we don't have to re-merge every time..
2587 wxGridCellAttr *attrcell = (wxGridCellAttr *)NULL,
2588 *attrrow = (wxGridCellAttr *)NULL,
bf7945ce
RD
2589 *attrcol = (wxGridCellAttr *)NULL;
2590
19d7140e
VZ
2591 attrcell = m_data->m_cellAttrs.GetAttr(row, col);
2592 attrcol = m_data->m_colAttrs.GetAttr(col);
2593 attrrow = m_data->m_rowAttrs.GetAttr(row);
2594
bf7945ce 2595 if((attrcell != attrrow) && (attrrow !=attrcol) && (attrcell != attrcol)){
19d7140e
VZ
2596 // Two or move are non NULL
2597 attr = new wxGridCellAttr;
2598 attr->SetKind(wxGridCellAttr::Merged);
2599
bf7945ce 2600 //Order important..
19d7140e
VZ
2601 if(attrcell){
2602 attr->MergeWith(attrcell);
2603 attrcell->DecRef();
2604 }
2605 if(attrcol){
2606 attr->MergeWith(attrcol);
2607 attrcol->DecRef();
2608 }
2609 if(attrrow){
2610 attr->MergeWith(attrrow);
2611 attrrow->DecRef();
2612 }
2613 //store merge attr if cache implemented
2614 //attr->IncRef();
2615 //m_data->m_mergeAttr.SetAttr(attr, row, col);
2616 }
2617 else
758cbedf 2618 {
19d7140e
VZ
2619 // one or none is non null return it or null.
2620 if(attrrow) attr = attrrow;
2621 if(attrcol) attr = attrcol;
bf7945ce 2622 if(attrcell) attr = attrcell;
19d7140e
VZ
2623 }
2624 }
2625 break;
2626 case (wxGridCellAttr::Cell):
2627 attr = m_data->m_cellAttrs.GetAttr(row, col);
2628 break;
2629 case (wxGridCellAttr::Col):
2630 attr = m_data->m_colAttrs.GetAttr(col);
2631 break;
2632 case (wxGridCellAttr::Row):
758cbedf 2633 attr = m_data->m_rowAttrs.GetAttr(row);
19d7140e
VZ
2634 break;
2635 default:
2636 // unused as yet...
2637 // (wxGridCellAttr::Default):
2638 // (wxGridCellAttr::Merged):
2639 break;
758cbedf
VZ
2640 }
2641 }
758cbedf 2642 return attr;
b99be8fb
VZ
2643}
2644
2e9a6788 2645void wxGridCellAttrProvider::SetAttr(wxGridCellAttr *attr,
b99be8fb
VZ
2646 int row, int col)
2647{
2648 if ( !m_data )
2649 InitData();
2650
758cbedf
VZ
2651 m_data->m_cellAttrs.SetAttr(attr, row, col);
2652}
2653
2654void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr *attr, int row)
2655{
2656 if ( !m_data )
2657 InitData();
2658
2659 m_data->m_rowAttrs.SetAttr(attr, row);
2660}
2661
2662void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr *attr, int col)
2663{
2664 if ( !m_data )
2665 InitData();
2666
2667 m_data->m_colAttrs.SetAttr(attr, col);
b99be8fb
VZ
2668}
2669
4d60017a
SN
2670void wxGridCellAttrProvider::UpdateAttrRows( size_t pos, int numRows )
2671{
2672 if ( m_data )
2673 {
2674 m_data->m_cellAttrs.UpdateAttrRows( pos, numRows );
2675
d1c0b4f9 2676 m_data->m_rowAttrs.UpdateAttrRowsOrCols( pos, numRows );
4d60017a
SN
2677 }
2678}
2679
2680void wxGridCellAttrProvider::UpdateAttrCols( size_t pos, int numCols )
2681{
2682 if ( m_data )
2683 {
2684 m_data->m_cellAttrs.UpdateAttrCols( pos, numCols );
2685
d1c0b4f9 2686 m_data->m_colAttrs.UpdateAttrRowsOrCols( pos, numCols );
4d60017a
SN
2687 }
2688}
2689
f2d76237
RD
2690// ----------------------------------------------------------------------------
2691// wxGridTypeRegistry
2692// ----------------------------------------------------------------------------
2693
2694wxGridTypeRegistry::~wxGridTypeRegistry()
2695{
b94ae1ea
VZ
2696 size_t count = m_typeinfo.Count();
2697 for ( size_t i = 0; i < count; i++ )
f2d76237
RD
2698 delete m_typeinfo[i];
2699}
2700
2701
2702void wxGridTypeRegistry::RegisterDataType(const wxString& typeName,
2703 wxGridCellRenderer* renderer,
2704 wxGridCellEditor* editor)
2705{
f2d76237
RD
2706 wxGridDataTypeInfo* info = new wxGridDataTypeInfo(typeName, renderer, editor);
2707
2708 // is it already registered?
c4608a8a 2709 int loc = FindRegisteredDataType(typeName);
39bcce60
VZ
2710 if ( loc != wxNOT_FOUND )
2711 {
f2d76237
RD
2712 delete m_typeinfo[loc];
2713 m_typeinfo[loc] = info;
2714 }
39bcce60
VZ
2715 else
2716 {
f2d76237
RD
2717 m_typeinfo.Add(info);
2718 }
2719}
2720
c4608a8a
VZ
2721int wxGridTypeRegistry::FindRegisteredDataType(const wxString& typeName)
2722{
2723 size_t count = m_typeinfo.GetCount();
2724 for ( size_t i = 0; i < count; i++ )
2725 {
2726 if ( typeName == m_typeinfo[i]->m_typeName )
2727 {
2728 return i;
2729 }
2730 }
2731
2732 return wxNOT_FOUND;
2733}
2734
f2d76237
RD
2735int wxGridTypeRegistry::FindDataType(const wxString& typeName)
2736{
c4608a8a
VZ
2737 int index = FindRegisteredDataType(typeName);
2738 if ( index == wxNOT_FOUND )
2739 {
2740 // check whether this is one of the standard ones, in which case
2741 // register it "on the fly"
3a8c693a 2742#if wxUSE_TEXTCTRL
c4608a8a
VZ
2743 if ( typeName == wxGRID_VALUE_STRING )
2744 {
2745 RegisterDataType(wxGRID_VALUE_STRING,
2746 new wxGridCellStringRenderer,
2747 new wxGridCellTextEditor);
3a8c693a
VZ
2748 } else
2749#endif // wxUSE_TEXTCTRL
2750#if wxUSE_CHECKBOX
2751 if ( typeName == wxGRID_VALUE_BOOL )
c4608a8a
VZ
2752 {
2753 RegisterDataType(wxGRID_VALUE_BOOL,
2754 new wxGridCellBoolRenderer,
2755 new wxGridCellBoolEditor);
3a8c693a
VZ
2756 } else
2757#endif // wxUSE_CHECKBOX
2758#if wxUSE_TEXTCTRL
2759 if ( typeName == wxGRID_VALUE_NUMBER )
c4608a8a
VZ
2760 {
2761 RegisterDataType(wxGRID_VALUE_NUMBER,
2762 new wxGridCellNumberRenderer,
2763 new wxGridCellNumberEditor);
2764 }
2765 else if ( typeName == wxGRID_VALUE_FLOAT )
2766 {
2767 RegisterDataType(wxGRID_VALUE_FLOAT,
2768 new wxGridCellFloatRenderer,
2769 new wxGridCellFloatEditor);
3a8c693a
VZ
2770 } else
2771#endif // wxUSE_TEXTCTRL
2772#if wxUSE_COMBOBOX
2773 if ( typeName == wxGRID_VALUE_CHOICE )
c4608a8a
VZ
2774 {
2775 RegisterDataType(wxGRID_VALUE_CHOICE,
2776 new wxGridCellStringRenderer,
2777 new wxGridCellChoiceEditor);
3a8c693a
VZ
2778 } else
2779#endif // wxUSE_COMBOBOX
c4608a8a
VZ
2780 {
2781 return wxNOT_FOUND;
2782 }
f2d76237 2783
c4608a8a
VZ
2784 // we get here only if just added the entry for this type, so return
2785 // the last index
2786 index = m_typeinfo.GetCount() - 1;
2787 }
2788
2789 return index;
2790}
2791
2792int wxGridTypeRegistry::FindOrCloneDataType(const wxString& typeName)
2793{
2794 int index = FindDataType(typeName);
2795 if ( index == wxNOT_FOUND )
2796 {
2797 // the first part of the typename is the "real" type, anything after ':'
2798 // are the parameters for the renderer
2799 index = FindDataType(typeName.BeforeFirst(_T(':')));
2800 if ( index == wxNOT_FOUND )
2801 {
2802 return wxNOT_FOUND;
f2d76237 2803 }
c4608a8a
VZ
2804
2805 wxGridCellRenderer *renderer = GetRenderer(index);
2806 wxGridCellRenderer *rendererOld = renderer;
2807 renderer = renderer->Clone();
2808 rendererOld->DecRef();
2809
2810 wxGridCellEditor *editor = GetEditor(index);
2811 wxGridCellEditor *editorOld = editor;
2812 editor = editor->Clone();
2813 editorOld->DecRef();
2814
2815 // do it even if there are no parameters to reset them to defaults
2816 wxString params = typeName.AfterFirst(_T(':'));
2817 renderer->SetParameters(params);
2818 editor->SetParameters(params);
2819
2820 // register the new typename
c4608a8a
VZ
2821 RegisterDataType(typeName, renderer, editor);
2822
2823 // we just registered it, it's the last one
2824 index = m_typeinfo.GetCount() - 1;
f2d76237
RD
2825 }
2826
c4608a8a 2827 return index;
f2d76237
RD
2828}
2829
2830wxGridCellRenderer* wxGridTypeRegistry::GetRenderer(int index)
2831{
2832 wxGridCellRenderer* renderer = m_typeinfo[index]->m_renderer;
faec5a43
SN
2833 if (renderer)
2834 renderer->IncRef();
f2d76237
RD
2835 return renderer;
2836}
2837
0b190b0f 2838wxGridCellEditor* wxGridTypeRegistry::GetEditor(int index)
f2d76237
RD
2839{
2840 wxGridCellEditor* editor = m_typeinfo[index]->m_editor;
faec5a43
SN
2841 if (editor)
2842 editor->IncRef();
f2d76237
RD
2843 return editor;
2844}
2845
758cbedf
VZ
2846// ----------------------------------------------------------------------------
2847// wxGridTableBase
2848// ----------------------------------------------------------------------------
2849
f85afd4e
MB
2850IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase, wxObject )
2851
2852
2853wxGridTableBase::wxGridTableBase()
f85afd4e
MB
2854{
2855 m_view = (wxGrid *) NULL;
b99be8fb 2856 m_attrProvider = (wxGridCellAttrProvider *) NULL;
f85afd4e
MB
2857}
2858
2859wxGridTableBase::~wxGridTableBase()
2860{
b99be8fb
VZ
2861 delete m_attrProvider;
2862}
2863
2864void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider *attrProvider)
2865{
2866 delete m_attrProvider;
2867 m_attrProvider = attrProvider;
f85afd4e
MB
2868}
2869
f2d76237
RD
2870bool wxGridTableBase::CanHaveAttributes()
2871{
2872 if ( ! GetAttrProvider() )
2873 {
2874 // use the default attr provider by default
2875 SetAttrProvider(new wxGridCellAttrProvider);
2876 }
2877 return TRUE;
2878}
2879
19d7140e 2880wxGridCellAttr *wxGridTableBase::GetAttr(int row, int col, wxGridCellAttr::wxAttrKind kind)
b99be8fb
VZ
2881{
2882 if ( m_attrProvider )
19d7140e 2883 return m_attrProvider->GetAttr(row, col, kind);
b99be8fb
VZ
2884 else
2885 return (wxGridCellAttr *)NULL;
2886}
2887
758cbedf 2888void wxGridTableBase::SetAttr(wxGridCellAttr* attr, int row, int col)
b99be8fb
VZ
2889{
2890 if ( m_attrProvider )
2891 {
19d7140e 2892 attr->SetKind(wxGridCellAttr::Cell);
b99be8fb
VZ
2893 m_attrProvider->SetAttr(attr, row, col);
2894 }
2895 else
2896 {
2897 // as we take ownership of the pointer and don't store it, we must
2898 // free it now
39bcce60 2899 wxSafeDecRef(attr);
b99be8fb
VZ
2900 }
2901}
2902
758cbedf
VZ
2903void wxGridTableBase::SetRowAttr(wxGridCellAttr *attr, int row)
2904{
2905 if ( m_attrProvider )
2906 {
19d7140e 2907 attr->SetKind(wxGridCellAttr::Row);
758cbedf
VZ
2908 m_attrProvider->SetRowAttr(attr, row);
2909 }
2910 else
2911 {
2912 // as we take ownership of the pointer and don't store it, we must
2913 // free it now
39bcce60 2914 wxSafeDecRef(attr);
758cbedf
VZ
2915 }
2916}
2917
2918void wxGridTableBase::SetColAttr(wxGridCellAttr *attr, int col)
2919{
2920 if ( m_attrProvider )
2921 {
19d7140e 2922 attr->SetKind(wxGridCellAttr::Col);
758cbedf
VZ
2923 m_attrProvider->SetColAttr(attr, col);
2924 }
2925 else
2926 {
2927 // as we take ownership of the pointer and don't store it, we must
2928 // free it now
39bcce60 2929 wxSafeDecRef(attr);
758cbedf
VZ
2930 }
2931}
2932
aa5e1f75
SN
2933bool wxGridTableBase::InsertRows( size_t WXUNUSED(pos),
2934 size_t WXUNUSED(numRows) )
f85afd4e 2935{
f6bcfd97 2936 wxFAIL_MSG( wxT("Called grid table class function InsertRows\nbut your derived table class does not override this function") );
8f177c8e 2937
f85afd4e
MB
2938 return FALSE;
2939}
2940
aa5e1f75 2941bool wxGridTableBase::AppendRows( size_t WXUNUSED(numRows) )
f85afd4e 2942{
f6bcfd97 2943 wxFAIL_MSG( wxT("Called grid table class function AppendRows\nbut your derived table class does not override this function"));
8f177c8e 2944
f85afd4e
MB
2945 return FALSE;
2946}
2947
aa5e1f75
SN
2948bool wxGridTableBase::DeleteRows( size_t WXUNUSED(pos),
2949 size_t WXUNUSED(numRows) )
f85afd4e 2950{
f6bcfd97 2951 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\nbut your derived table class does not override this function"));
8f177c8e 2952
f85afd4e
MB
2953 return FALSE;
2954}
2955
aa5e1f75
SN
2956bool wxGridTableBase::InsertCols( size_t WXUNUSED(pos),
2957 size_t WXUNUSED(numCols) )
f85afd4e 2958{
f6bcfd97 2959 wxFAIL_MSG( wxT("Called grid table class function InsertCols\nbut your derived table class does not override this function"));
8f177c8e 2960
f85afd4e
MB
2961 return FALSE;
2962}
2963
aa5e1f75 2964bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols) )
f85afd4e 2965{
f6bcfd97 2966 wxFAIL_MSG(wxT("Called grid table class function AppendCols\nbut your derived table class does not override this function"));
8f177c8e 2967
f85afd4e
MB
2968 return FALSE;
2969}
2970
aa5e1f75
SN
2971bool wxGridTableBase::DeleteCols( size_t WXUNUSED(pos),
2972 size_t WXUNUSED(numCols) )
f85afd4e 2973{
f6bcfd97 2974 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\nbut your derived table class does not override this function"));
8f177c8e 2975
f85afd4e
MB
2976 return FALSE;
2977}
2978
2979
2980wxString wxGridTableBase::GetRowLabelValue( int row )
2981{
2982 wxString s;
f2d76237
RD
2983 s << row + 1; // RD: Starting the rows at zero confuses users, no matter
2984 // how much it makes sense to us geeks.
f85afd4e
MB
2985 return s;
2986}
2987
2988wxString wxGridTableBase::GetColLabelValue( int col )
2989{
2990 // default col labels are:
2991 // cols 0 to 25 : A-Z
2992 // cols 26 to 675 : AA-ZZ
2993 // etc.
2994
2995 wxString s;
2996 unsigned int i, n;
2997 for ( n = 1; ; n++ )
2998 {
f0102d2a 2999 s += (_T('A') + (wxChar)( col%26 ));
f85afd4e
MB
3000 col = col/26 - 1;
3001 if ( col < 0 ) break;
3002 }
3003
3004 // reverse the string...
3005 wxString s2;
3006 for ( i = 0; i < n; i++ )
3007 {
3008 s2 += s[n-i-1];
3009 }
3010
3011 return s2;
3012}
3013
3014
f2d76237
RD
3015wxString wxGridTableBase::GetTypeName( int WXUNUSED(row), int WXUNUSED(col) )
3016{
816be743 3017 return wxGRID_VALUE_STRING;
f2d76237
RD
3018}
3019
3020bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row), int WXUNUSED(col),
3021 const wxString& typeName )
3022{
816be743 3023 return typeName == wxGRID_VALUE_STRING;
f2d76237
RD
3024}
3025
3026bool wxGridTableBase::CanSetValueAs( int row, int col, const wxString& typeName )
3027{
3028 return CanGetValueAs(row, col, typeName);
3029}
3030
3031long wxGridTableBase::GetValueAsLong( int WXUNUSED(row), int WXUNUSED(col) )
3032{
3033 return 0;
3034}
3035
3036double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row), int WXUNUSED(col) )
3037{
3038 return 0.0;
3039}
3040
3041bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row), int WXUNUSED(col) )
3042{
3043 return FALSE;
3044}
3045
3046void wxGridTableBase::SetValueAsLong( int WXUNUSED(row), int WXUNUSED(col),
3047 long WXUNUSED(value) )
3048{
3049}
3050
3051void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row), int WXUNUSED(col),
3052 double WXUNUSED(value) )
3053{
3054}
3055
3056void wxGridTableBase::SetValueAsBool( int WXUNUSED(row), int WXUNUSED(col),
3057 bool WXUNUSED(value) )
3058{
3059}
3060
3061
3062void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row), int WXUNUSED(col),
3063 const wxString& WXUNUSED(typeName) )
3064{
3065 return NULL;
3066}
3067
3068void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row), int WXUNUSED(col),
3069 const wxString& WXUNUSED(typeName),
3070 void* WXUNUSED(value) )
3071{
3072}
3073
f85afd4e
MB
3074//////////////////////////////////////////////////////////////////////
3075//
3076// Message class for the grid table to send requests and notifications
3077// to the grid view
3078//
3079
3080wxGridTableMessage::wxGridTableMessage()
3081{
3082 m_table = (wxGridTableBase *) NULL;
3083 m_id = -1;
3084 m_comInt1 = -1;
3085 m_comInt2 = -1;
3086}
3087
3088wxGridTableMessage::wxGridTableMessage( wxGridTableBase *table, int id,
3089 int commandInt1, int commandInt2 )
3090{
3091 m_table = table;
3092 m_id = id;
3093 m_comInt1 = commandInt1;
3094 m_comInt2 = commandInt2;
3095}
3096
3097
3098
3099//////////////////////////////////////////////////////////////////////
3100//
3101// A basic grid table for string data. An object of this class will
3102// created by wxGrid if you don't specify an alternative table class.
3103//
3104
223d09f6 3105WX_DEFINE_OBJARRAY(wxGridStringArray)
f85afd4e
MB
3106
3107IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable, wxGridTableBase )
3108
3109wxGridStringTable::wxGridStringTable()
3110 : wxGridTableBase()
3111{
3112}
3113
3114wxGridStringTable::wxGridStringTable( int numRows, int numCols )
3115 : wxGridTableBase()
3116{
f85afd4e
MB
3117 m_data.Alloc( numRows );
3118
3119 wxArrayString sa;
3120 sa.Alloc( numCols );
27f35b66 3121 sa.Add( wxEmptyString, numCols );
8f177c8e 3122
27f35b66 3123 m_data.Add( sa, numRows );
f85afd4e
MB
3124}
3125
3126wxGridStringTable::~wxGridStringTable()
3127{
3128}
3129
e32352cf 3130int wxGridStringTable::GetNumberRows()
f85afd4e
MB
3131{
3132 return m_data.GetCount();
3133}
3134
e32352cf 3135int wxGridStringTable::GetNumberCols()
f85afd4e
MB
3136{
3137 if ( m_data.GetCount() > 0 )
3138 return m_data[0].GetCount();
3139 else
3140 return 0;
3141}
3142
3143wxString wxGridStringTable::GetValue( int row, int col )
3144{
3e13956a
RD
3145 wxCHECK_MSG( (row < GetNumberRows()) && (col < GetNumberCols()),
3146 wxEmptyString,
3147 _T("invalid row or column index in wxGridStringTable") );
af547d51 3148
f85afd4e
MB
3149 return m_data[row][col];
3150}
3151
f2d76237 3152void wxGridStringTable::SetValue( int row, int col, const wxString& value )
f85afd4e 3153{
3e13956a
RD
3154 wxCHECK_RET( (row < GetNumberRows()) && (col < GetNumberCols()),
3155 _T("invalid row or column index in wxGridStringTable") );
af547d51 3156
f2d76237 3157 m_data[row][col] = value;
f85afd4e
MB
3158}
3159
3160bool wxGridStringTable::IsEmptyCell( int row, int col )
3161{
3e13956a
RD
3162 wxCHECK_MSG( (row < GetNumberRows()) && (col < GetNumberCols()),
3163 true,
af547d51
VZ
3164 _T("invalid row or column index in wxGridStringTable") );
3165
f85afd4e
MB
3166 return (m_data[row][col] == wxEmptyString);
3167}
3168
f85afd4e
MB
3169void wxGridStringTable::Clear()
3170{
3171 int row, col;
3172 int numRows, numCols;
8f177c8e 3173
f85afd4e
MB
3174 numRows = m_data.GetCount();
3175 if ( numRows > 0 )
3176 {
3177 numCols = m_data[0].GetCount();
3178
3179 for ( row = 0; row < numRows; row++ )
3180 {
3181 for ( col = 0; col < numCols; col++ )
3182 {
3183 m_data[row][col] = wxEmptyString;
3184 }
3185 }
3186 }
3187}
3188
3189
3190bool wxGridStringTable::InsertRows( size_t pos, size_t numRows )
3191{
f85afd4e 3192 size_t curNumRows = m_data.GetCount();
f6bcfd97
BP
3193 size_t curNumCols = ( curNumRows > 0 ? m_data[0].GetCount() :
3194 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
8f177c8e 3195
f85afd4e
MB
3196 if ( pos >= curNumRows )
3197 {
3198 return AppendRows( numRows );
3199 }
8f177c8e 3200
f85afd4e
MB
3201 wxArrayString sa;
3202 sa.Alloc( curNumCols );
27f35b66
SN
3203 sa.Add( wxEmptyString, curNumCols );
3204 m_data.Insert( sa, pos, numRows );
f85afd4e
MB
3205 if ( GetView() )
3206 {
3207 wxGridTableMessage msg( this,
3208 wxGRIDTABLE_NOTIFY_ROWS_INSERTED,
3209 pos,
3210 numRows );
8f177c8e 3211
f85afd4e
MB
3212 GetView()->ProcessTableMessage( msg );
3213 }
3214
3215 return TRUE;
3216}
3217
3218bool wxGridStringTable::AppendRows( size_t numRows )
3219{
f85afd4e 3220 size_t curNumRows = m_data.GetCount();
f6bcfd97
BP
3221 size_t curNumCols = ( curNumRows > 0 ? m_data[0].GetCount() :
3222 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
8f177c8e 3223
f85afd4e
MB
3224 wxArrayString sa;
3225 if ( curNumCols > 0 )
3226 {
3227 sa.Alloc( curNumCols );
27f35b66 3228 sa.Add( wxEmptyString, curNumCols );
f85afd4e 3229 }
8f177c8e 3230
27f35b66 3231 m_data.Add( sa, numRows );
f85afd4e
MB
3232
3233 if ( GetView() )
3234 {
3235 wxGridTableMessage msg( this,
3236 wxGRIDTABLE_NOTIFY_ROWS_APPENDED,
3237 numRows );
8f177c8e 3238
f85afd4e
MB
3239 GetView()->ProcessTableMessage( msg );
3240 }
3241
8f177c8e 3242 return TRUE;
f85afd4e
MB
3243}
3244
3245bool wxGridStringTable::DeleteRows( size_t pos, size_t numRows )
3246{
f85afd4e 3247 size_t curNumRows = m_data.GetCount();
8f177c8e 3248
f85afd4e
MB
3249 if ( pos >= curNumRows )
3250 {
e91d2033
VZ
3251 wxFAIL_MSG( wxString::Format
3252 (
3253 wxT("Called wxGridStringTable::DeleteRows(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu rows"),
3254 (unsigned long)pos,
3255 (unsigned long)numRows,
3256 (unsigned long)curNumRows
3257 ) );
3258
f85afd4e
MB
3259 return FALSE;
3260 }
3261
3262 if ( numRows > curNumRows - pos )
3263 {
3264 numRows = curNumRows - pos;
3265 }
8f177c8e 3266
f85afd4e
MB
3267 if ( numRows >= curNumRows )
3268 {
d57ad377 3269 m_data.Clear();
f85afd4e
MB
3270 }
3271 else
3272 {
27f35b66 3273 m_data.RemoveAt( pos, numRows );
f85afd4e 3274 }
f85afd4e
MB
3275 if ( GetView() )
3276 {
3277 wxGridTableMessage msg( this,
3278 wxGRIDTABLE_NOTIFY_ROWS_DELETED,
3279 pos,
3280 numRows );
8f177c8e 3281
f85afd4e
MB
3282 GetView()->ProcessTableMessage( msg );
3283 }
3284
8f177c8e 3285 return TRUE;
f85afd4e
MB
3286}
3287
3288bool wxGridStringTable::InsertCols( size_t pos, size_t numCols )
3289{
3290 size_t row, col;
3291
3292 size_t curNumRows = m_data.GetCount();
f6bcfd97
BP
3293 size_t curNumCols = ( curNumRows > 0 ? m_data[0].GetCount() :
3294 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
8f177c8e 3295
f85afd4e
MB
3296 if ( pos >= curNumCols )
3297 {
3298 return AppendCols( numCols );
3299 }
3300
3301 for ( row = 0; row < curNumRows; row++ )
3302 {
3303 for ( col = pos; col < pos + numCols; col++ )
3304 {
3305 m_data[row].Insert( wxEmptyString, col );
3306 }
3307 }
f85afd4e
MB
3308 if ( GetView() )
3309 {
3310 wxGridTableMessage msg( this,
3311 wxGRIDTABLE_NOTIFY_COLS_INSERTED,
3312 pos,
3313 numCols );
8f177c8e 3314
f85afd4e
MB
3315 GetView()->ProcessTableMessage( msg );
3316 }
3317
3318 return TRUE;
3319}
3320
3321bool wxGridStringTable::AppendCols( size_t numCols )
3322{
27f35b66 3323 size_t row;
f85afd4e
MB
3324
3325 size_t curNumRows = m_data.GetCount();
f6bcfd97 3326#if 0
f85afd4e
MB
3327 if ( !curNumRows )
3328 {
3329 // TODO: something better than this ?
3330 //
f6bcfd97 3331 wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\nCall AppendRows() first") );
f85afd4e
MB
3332 return FALSE;
3333 }
f6bcfd97 3334#endif
8f177c8e 3335
f85afd4e
MB
3336 for ( row = 0; row < curNumRows; row++ )
3337 {
27f35b66 3338 m_data[row].Add( wxEmptyString, numCols );
f85afd4e
MB
3339 }
3340
3341 if ( GetView() )
3342 {
3343 wxGridTableMessage msg( this,
3344 wxGRIDTABLE_NOTIFY_COLS_APPENDED,
3345 numCols );
8f177c8e 3346
f85afd4e
MB
3347 GetView()->ProcessTableMessage( msg );
3348 }
3349
3350 return TRUE;
3351}
3352
3353bool wxGridStringTable::DeleteCols( size_t pos, size_t numCols )
3354{
27f35b66 3355 size_t row;
f85afd4e
MB
3356
3357 size_t curNumRows = m_data.GetCount();
f6bcfd97
BP
3358 size_t curNumCols = ( curNumRows > 0 ? m_data[0].GetCount() :
3359 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
8f177c8e 3360
f85afd4e
MB
3361 if ( pos >= curNumCols )
3362 {
e91d2033
VZ
3363 wxFAIL_MSG( wxString::Format
3364 (
3365 wxT("Called wxGridStringTable::DeleteCols(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu cols"),
3366 (unsigned long)pos,
3367 (unsigned long)numCols,
3368 (unsigned long)curNumCols
3369 ) );
8f177c8e 3370 return FALSE;
f85afd4e
MB
3371 }
3372
3373 if ( numCols > curNumCols - pos )
3374 {
8f177c8e 3375 numCols = curNumCols - pos;
f85afd4e
MB
3376 }
3377
3378 for ( row = 0; row < curNumRows; row++ )
3379 {
3380 if ( numCols >= curNumCols )
3381 {
dcdce64e 3382 m_data[row].Clear();
f85afd4e
MB
3383 }
3384 else
3385 {
27f35b66 3386 m_data[row].RemoveAt( pos, numCols );
f85afd4e
MB
3387 }
3388 }
f85afd4e
MB
3389 if ( GetView() )
3390 {
3391 wxGridTableMessage msg( this,
3392 wxGRIDTABLE_NOTIFY_COLS_DELETED,
3393 pos,
3394 numCols );
8f177c8e 3395
f85afd4e
MB
3396 GetView()->ProcessTableMessage( msg );
3397 }
3398
8f177c8e 3399 return TRUE;
f85afd4e
MB
3400}
3401
3402wxString wxGridStringTable::GetRowLabelValue( int row )
3403{
3404 if ( row > (int)(m_rowLabels.GetCount()) - 1 )
3405 {
3406 // using default label
3407 //
3408 return wxGridTableBase::GetRowLabelValue( row );
3409 }
3410 else
3411 {
3412 return m_rowLabels[ row ];
3413 }
3414}
3415
3416wxString wxGridStringTable::GetColLabelValue( int col )
3417{
3418 if ( col > (int)(m_colLabels.GetCount()) - 1 )
3419 {
3420 // using default label
3421 //
3422 return wxGridTableBase::GetColLabelValue( col );
3423 }
3424 else
3425 {
3426 return m_colLabels[ col ];
3427 }
3428}
3429
3430void wxGridStringTable::SetRowLabelValue( int row, const wxString& value )
3431{
3432 if ( row > (int)(m_rowLabels.GetCount()) - 1 )
3433 {
3434 int n = m_rowLabels.GetCount();
3435 int i;
3436 for ( i = n; i <= row; i++ )
3437 {
3438 m_rowLabels.Add( wxGridTableBase::GetRowLabelValue(i) );
3439 }
3440 }
3441
3442 m_rowLabels[row] = value;
3443}
3444
3445void wxGridStringTable::SetColLabelValue( int col, const wxString& value )
3446{
3447 if ( col > (int)(m_colLabels.GetCount()) - 1 )
3448 {
3449 int n = m_colLabels.GetCount();
3450 int i;
3451 for ( i = n; i <= col; i++ )
3452 {
3453 m_colLabels.Add( wxGridTableBase::GetColLabelValue(i) );
3454 }
3455 }
3456
3457 m_colLabels[col] = value;
3458}
3459
3460
3461
f85afd4e 3462//////////////////////////////////////////////////////////////////////
2d66e025
MB
3463//////////////////////////////////////////////////////////////////////
3464
3465IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow, wxWindow )
3466
3467BEGIN_EVENT_TABLE( wxGridRowLabelWindow, wxWindow )
3468 EVT_PAINT( wxGridRowLabelWindow::OnPaint )
b51c3f27 3469 EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel)
2d66e025
MB
3470 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent )
3471 EVT_KEY_DOWN( wxGridRowLabelWindow::OnKeyDown )
f6bcfd97 3472 EVT_KEY_UP( wxGridRowLabelWindow::OnKeyUp )
2d66e025
MB
3473END_EVENT_TABLE()
3474
60ff3b99
VZ
3475wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid *parent,
3476 wxWindowID id,
2d66e025 3477 const wxPoint &pos, const wxSize &size )
0bbeb42d 3478 : wxWindow( parent, id, pos, size, wxWANTS_CHARS|wxBORDER_NONE )
2d66e025
MB
3479{
3480 m_owner = parent;
3481}
3482
aa5e1f75 3483void wxGridRowLabelWindow::OnPaint( wxPaintEvent& WXUNUSED(event) )
2d66e025
MB
3484{
3485 wxPaintDC dc(this);
3486
3487 // NO - don't do this because it will set both the x and y origin
3488 // coords to match the parent scrolled window and we just want to
3489 // set the y coord - MB
3490 //
3491 // m_owner->PrepareDC( dc );
60ff3b99 3492
790ad94f 3493 int x, y;
2d66e025
MB
3494 m_owner->CalcUnscrolledPosition( 0, 0, &x, &y );
3495 dc.SetDeviceOrigin( 0, -y );
60ff3b99 3496
d10f4bf9
VZ
3497 wxArrayInt rows = m_owner->CalcRowLabelsExposed( GetUpdateRegion() );
3498 m_owner->DrawRowLabels( dc , rows );
2d66e025
MB
3499}
3500
3501
3502void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent& event )
3503{
3504 m_owner->ProcessRowLabelMouseEvent( event );
3505}
3506
3507
b51c3f27
RD
3508void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent& event )
3509{
3510 m_owner->GetEventHandler()->ProcessEvent(event);
3511}
3512
3513
2d66e025
MB
3514// This seems to be required for wxMotif otherwise the mouse
3515// cursor must be in the cell edit control to get key events
3516//
3517void wxGridRowLabelWindow::OnKeyDown( wxKeyEvent& event )
3518{
ffdd3c98 3519 if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) event.Skip();
2d66e025
MB
3520}
3521
f6bcfd97
BP
3522void wxGridRowLabelWindow::OnKeyUp( wxKeyEvent& event )
3523{
ffdd3c98 3524 if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) event.Skip();
f6bcfd97
BP
3525}
3526
2d66e025
MB
3527
3528
3529//////////////////////////////////////////////////////////////////////
3530
3531IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow, wxWindow )
3532
3533BEGIN_EVENT_TABLE( wxGridColLabelWindow, wxWindow )
3534 EVT_PAINT( wxGridColLabelWindow::OnPaint )
b51c3f27 3535 EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel)
2d66e025
MB
3536 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent )
3537 EVT_KEY_DOWN( wxGridColLabelWindow::OnKeyDown )
f6bcfd97 3538 EVT_KEY_UP( wxGridColLabelWindow::OnKeyUp )
2d66e025
MB
3539END_EVENT_TABLE()
3540
60ff3b99
VZ
3541wxGridColLabelWindow::wxGridColLabelWindow( wxGrid *parent,
3542 wxWindowID id,
2d66e025 3543 const wxPoint &pos, const wxSize &size )
0bbeb42d 3544 : wxWindow( parent, id, pos, size, wxWANTS_CHARS|wxBORDER_NONE )
2d66e025
MB
3545{
3546 m_owner = parent;
3547}
3548
aa5e1f75 3549void wxGridColLabelWindow::OnPaint( wxPaintEvent& WXUNUSED(event) )
2d66e025
MB
3550{
3551 wxPaintDC dc(this);
3552
3553 // NO - don't do this because it will set both the x and y origin
3554 // coords to match the parent scrolled window and we just want to
3555 // set the x coord - MB
3556 //
3557 // m_owner->PrepareDC( dc );
60ff3b99 3558
790ad94f 3559 int x, y;
2d66e025
MB
3560 m_owner->CalcUnscrolledPosition( 0, 0, &x, &y );
3561 dc.SetDeviceOrigin( -x, 0 );
3562
d10f4bf9
VZ
3563 wxArrayInt cols = m_owner->CalcColLabelsExposed( GetUpdateRegion() );
3564 m_owner->DrawColLabels( dc , cols );
2d66e025
MB
3565}
3566
3567
3568void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent& event )
3569{
3570 m_owner->ProcessColLabelMouseEvent( event );
3571}
3572
b51c3f27
RD
3573void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent& event )
3574{
3575 m_owner->GetEventHandler()->ProcessEvent(event);
3576}
3577
2d66e025
MB
3578
3579// This seems to be required for wxMotif otherwise the mouse
3580// cursor must be in the cell edit control to get key events
3581//
3582void wxGridColLabelWindow::OnKeyDown( wxKeyEvent& event )
3583{
ffdd3c98 3584 if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) event.Skip();
2d66e025
MB
3585}
3586
f6bcfd97
BP
3587void wxGridColLabelWindow::OnKeyUp( wxKeyEvent& event )
3588{
ffdd3c98 3589 if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) event.Skip();
f6bcfd97
BP
3590}
3591
2d66e025
MB
3592
3593
3594//////////////////////////////////////////////////////////////////////
3595
3596IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow, wxWindow )
3597
3598BEGIN_EVENT_TABLE( wxGridCornerLabelWindow, wxWindow )
b51c3f27 3599 EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel)
2d66e025 3600 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent )
d2fdd8d2 3601 EVT_PAINT( wxGridCornerLabelWindow::OnPaint)
2d66e025 3602 EVT_KEY_DOWN( wxGridCornerLabelWindow::OnKeyDown )
f6bcfd97 3603 EVT_KEY_UP( wxGridCornerLabelWindow::OnKeyUp )
2d66e025
MB
3604END_EVENT_TABLE()
3605
60ff3b99
VZ
3606wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid *parent,
3607 wxWindowID id,
2d66e025 3608 const wxPoint &pos, const wxSize &size )
0bbeb42d 3609 : wxWindow( parent, id, pos, size, wxWANTS_CHARS|wxBORDER_NONE )
2d66e025
MB
3610{
3611 m_owner = parent;
3612}
3613
d2fdd8d2
RR
3614void wxGridCornerLabelWindow::OnPaint( wxPaintEvent& WXUNUSED(event) )
3615{
3616 wxPaintDC dc(this);
b99be8fb 3617
d2fdd8d2
RR
3618 int client_height = 0;
3619 int client_width = 0;
3620 GetClientSize( &client_width, &client_height );
b99be8fb 3621
73145b0e 3622 dc.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW),1, wxSOLID) );
d2fdd8d2
RR
3623 dc.DrawLine( client_width-1, client_height-1, client_width-1, 0 );
3624 dc.DrawLine( client_width-1, client_height-1, 0, client_height-1 );
d2fdd8d2
RR
3625 dc.DrawLine( 0, 0, client_width, 0 );
3626 dc.DrawLine( 0, 0, 0, client_height );
73145b0e
JS
3627
3628 dc.SetPen( *wxWHITE_PEN );
3629 dc.DrawLine( 1, 1, client_width-1, 1 );
3630 dc.DrawLine( 1, 1, 1, client_height-1 );
d2fdd8d2
RR
3631}
3632
2d66e025
MB
3633
3634void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent& event )
3635{
3636 m_owner->ProcessCornerLabelMouseEvent( event );
3637}
3638
3639
b51c3f27
RD
3640void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent& event )
3641{
3642 m_owner->GetEventHandler()->ProcessEvent(event);
3643}
3644
2d66e025
MB
3645// This seems to be required for wxMotif otherwise the mouse
3646// cursor must be in the cell edit control to get key events
3647//
3648void wxGridCornerLabelWindow::OnKeyDown( wxKeyEvent& event )
3649{
ffdd3c98 3650 if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) event.Skip();
2d66e025
MB
3651}
3652
f6bcfd97
BP
3653void wxGridCornerLabelWindow::OnKeyUp( wxKeyEvent& event )
3654{
ffdd3c98 3655 if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) event.Skip();
f6bcfd97
BP
3656}
3657
2d66e025
MB
3658
3659
f85afd4e
MB
3660//////////////////////////////////////////////////////////////////////
3661
59ddac01 3662IMPLEMENT_DYNAMIC_CLASS( wxGridWindow, wxWindow )
2d66e025 3663
59ddac01 3664BEGIN_EVENT_TABLE( wxGridWindow, wxWindow )
2d66e025 3665 EVT_PAINT( wxGridWindow::OnPaint )
b51c3f27 3666 EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel)
2d66e025
MB
3667 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent )
3668 EVT_KEY_DOWN( wxGridWindow::OnKeyDown )
f6bcfd97 3669 EVT_KEY_UP( wxGridWindow::OnKeyUp )
2796cce3 3670 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground )
2d66e025
MB
3671END_EVENT_TABLE()
3672
60ff3b99
VZ
3673wxGridWindow::wxGridWindow( wxGrid *parent,
3674 wxGridRowLabelWindow *rowLblWin,
2d66e025 3675 wxGridColLabelWindow *colLblWin,
04418332
VZ
3676 wxWindowID id,
3677 const wxPoint &pos,
3678 const wxSize &size )
0bbeb42d 3679 : wxWindow( parent, id, pos, size, wxWANTS_CHARS | wxBORDER_NONE | wxCLIP_CHILDREN,
04418332 3680 wxT("grid window") )
73145b0e 3681
2d66e025
MB
3682{
3683 m_owner = parent;
3684 m_rowLabelWin = rowLblWin;
3685 m_colLabelWin = colLblWin;
edb89f7e 3686 SetBackgroundColour(_T("WHITE"));
2d66e025
MB
3687}
3688
3689
3690wxGridWindow::~wxGridWindow()
3691{
3692}
3693
3694
3695void wxGridWindow::OnPaint( wxPaintEvent &WXUNUSED(event) )
3696{
3697 wxPaintDC dc( this );
3698 m_owner->PrepareDC( dc );
796df70a 3699 wxRegion reg = GetUpdateRegion();
d10f4bf9
VZ
3700 wxGridCellCoordsArray DirtyCells = m_owner->CalcCellsExposed( reg );
3701 m_owner->DrawGridCellArea( dc , DirtyCells);
9496deb5 3702#if WXGRID_DRAW_LINES
796df70a
SN
3703 m_owner->DrawAllGridLines( dc, reg );
3704#endif
a5777624 3705 m_owner->DrawGridSpace( dc );
d10f4bf9 3706 m_owner->DrawHighlight( dc , DirtyCells );
2d66e025
MB
3707}
3708
3709
3710void wxGridWindow::ScrollWindow( int dx, int dy, const wxRect *rect )
3711{
59ddac01 3712 wxWindow::ScrollWindow( dx, dy, rect );
2d66e025
MB
3713 m_rowLabelWin->ScrollWindow( 0, dy, rect );
3714 m_colLabelWin->ScrollWindow( dx, 0, rect );
3715}
3716
3717
3718void wxGridWindow::OnMouseEvent( wxMouseEvent& event )
3719{
3720 m_owner->ProcessGridCellMouseEvent( event );
3721}
3722
b51c3f27
RD
3723void wxGridWindow::OnMouseWheel( wxMouseEvent& event )
3724{
3725 m_owner->GetEventHandler()->ProcessEvent(event);
3726}
2d66e025 3727
f6bcfd97 3728// This seems to be required for wxMotif/wxGTK otherwise the mouse
2d66e025
MB
3729// cursor must be in the cell edit control to get key events
3730//
3731void wxGridWindow::OnKeyDown( wxKeyEvent& event )
3732{
ffdd3c98 3733 if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) event.Skip();
2d66e025 3734}
f85afd4e 3735
f6bcfd97
BP
3736void wxGridWindow::OnKeyUp( wxKeyEvent& event )
3737{
ffdd3c98 3738 if ( !m_owner->GetEventHandler()->ProcessEvent( event ) ) event.Skip();
f6bcfd97 3739}
7c8a8ad5 3740
aa5e1f75 3741void wxGridWindow::OnEraseBackground( wxEraseEvent& WXUNUSED(event) )
8dd4f536 3742{
8dd4f536 3743}
025562fe 3744
2d66e025
MB
3745
3746//////////////////////////////////////////////////////////////////////
3747
33188aa4
SN
3748// Internal Helper function for computing row or column from some
3749// (unscrolled) coordinate value, using either
70e8d961 3750// m_defaultRowHeight/m_defaultColWidth or binary search on array
33188aa4
SN
3751// of m_rowBottoms/m_ColRights to speed up the search!
3752
3753// Internal helper macros for simpler use of that function
3754
3755static int CoordToRowOrCol(int coord, int defaultDist, int minDist,
64e15340 3756 const wxArrayInt& BorderArray, int nMax,
a967f048 3757 bool clipToMinMax);
33188aa4
SN
3758
3759#define internalXToCol(x) CoordToRowOrCol(x, m_defaultColWidth, \
b8d24d4e 3760 m_minAcceptableColWidth, \
64e15340 3761 m_colRights, m_numCols, TRUE)
33188aa4 3762#define internalYToRow(y) CoordToRowOrCol(y, m_defaultRowHeight, \
b8d24d4e 3763 m_minAcceptableRowHeight, \
64e15340 3764 m_rowBottoms, m_numRows, TRUE)
33188aa4 3765/////////////////////////////////////////////////////////////////////
07296f0b 3766
b0a877ec 3767#if wxUSE_EXTENDED_RTTI
73c36334
JS
3768WX_DEFINE_FLAGS( wxGridStyle )
3769
3ff066a4 3770wxBEGIN_FLAGS( wxGridStyle )
73c36334
JS
3771 // new style border flags, we put them first to
3772 // use them for streaming out
3ff066a4
SC
3773 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
3774 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
3775 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
3776 wxFLAGS_MEMBER(wxBORDER_RAISED)
3777 wxFLAGS_MEMBER(wxBORDER_STATIC)
3778 wxFLAGS_MEMBER(wxBORDER_NONE)
73c36334
JS
3779
3780 // old style border flags
3ff066a4
SC
3781 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
3782 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
3783 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
3784 wxFLAGS_MEMBER(wxRAISED_BORDER)
3785 wxFLAGS_MEMBER(wxSTATIC_BORDER)
3786 wxFLAGS_MEMBER(wxNO_BORDER)
73c36334
JS
3787
3788 // standard window styles
3ff066a4
SC
3789 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
3790 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
3791 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
3792 wxFLAGS_MEMBER(wxWANTS_CHARS)
3793 wxFLAGS_MEMBER(wxNO_FULL_REPAINT_ON_RESIZE)
3794 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
3795 wxFLAGS_MEMBER(wxVSCROLL)
3796 wxFLAGS_MEMBER(wxHSCROLL)
73c36334 3797
3ff066a4 3798wxEND_FLAGS( wxGridStyle )
73c36334 3799
b0a877ec
SC
3800IMPLEMENT_DYNAMIC_CLASS_XTI(wxGrid, wxScrolledWindow,"wx/grid.h")
3801
3ff066a4
SC
3802wxBEGIN_PROPERTIES_TABLE(wxGrid)
3803 wxHIDE_PROPERTY( Children )
3804 wxPROPERTY_FLAGS( WindowStyle , wxGridStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
3805wxEND_PROPERTIES_TABLE()
b0a877ec 3806
3ff066a4
SC
3807wxBEGIN_HANDLERS_TABLE(wxGrid)
3808wxEND_HANDLERS_TABLE()
b0a877ec 3809
3ff066a4 3810wxCONSTRUCTOR_5( wxGrid , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle )
b0a877ec
SC
3811
3812/*
3813