1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGenericGrid
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "gridg.h"
17 // For compilers that support precompilation, includes "wx/wx.h".
18 #include "wx/wxprec.h"
26 #include "wx/dcclient.h"
27 #include "wx/dcmemory.h"
28 #include "wx/textctrl.h"
33 #include "wx/string.h"
34 #include "wx/generic/gridg.h"
35 #include "wx/settings.h"
37 // Set to zero to use no double-buffering
39 #define wxUSE_DOUBLE_BUFFERING 1
41 #define wxUSE_DOUBLE_BUFFERING 0
44 #define wxGRID_DRAG_NONE 0
45 #define wxGRID_DRAG_LEFT_RIGHT 1
46 #define wxGRID_DRAG_UP_DOWN 2
48 IMPLEMENT_DYNAMIC_CLASS(wxGenericGrid
, wxPanel
)
49 IMPLEMENT_DYNAMIC_CLASS(wxGridEvent
, wxEvent
)
51 BEGIN_EVENT_TABLE(wxGenericGrid
, wxPanel
)
52 EVT_SIZE(wxGenericGrid::OnSize
)
53 EVT_PAINT(wxGenericGrid::OnPaint
)
54 EVT_ERASE_BACKGROUND(wxGenericGrid::OnEraseBackground
)
55 EVT_MOUSE_EVENTS(wxGenericGrid::OnMouseEvent
)
56 EVT_TEXT(wxGRID_TEXT_CTRL
, wxGenericGrid::OnText
)
57 EVT_COMMAND_SCROLL(wxGRID_HSCROLL
, wxGenericGrid::OnGridScroll
)
58 EVT_COMMAND_SCROLL(wxGRID_VSCROLL
, wxGenericGrid::OnGridScroll
)
60 // default wxGridEvent handlers
61 EVT_GRID_SELECT_CELL(wxGenericGrid::_OnSelectCell
)
62 EVT_GRID_CREATE_CELL(wxGenericGrid::_OnCreateCell
)
63 EVT_GRID_CHANGE_LABELS(wxGenericGrid::_OnChangeLabels
)
64 EVT_GRID_CHANGE_SEL_LABEL(wxGenericGrid::_OnChangeSelectionLabel
)
65 EVT_GRID_CELL_CHANGE(wxGenericGrid::_OnCellChange
)
66 EVT_GRID_CELL_LCLICK(wxGenericGrid::_OnCellLeftClick
)
67 EVT_GRID_CELL_RCLICK(wxGenericGrid::_OnCellRightClick
)
68 EVT_GRID_LABEL_LCLICK(wxGenericGrid::_OnLabelLeftClick
)
69 EVT_GRID_LABEL_RCLICK(wxGenericGrid::_OnLabelRightClick
)
76 wxGenericGrid::wxGenericGrid(void)
79 m_hScrollBar
= (wxScrollBar
*) NULL
;
80 m_vScrollBar
= (wxScrollBar
*) NULL
;
81 m_cellTextColour
= *wxBLACK
;
82 m_cellBackgroundColour
= *wxWHITE
;
83 m_labelTextColour
= *wxBLACK
;
84 // m_labelBackgroundColour = *wxLIGHT_GREY;
85 m_labelBackgroundColour
= wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE
);
86 m_labelBackgroundBrush
= wxNullBrush
;
87 m_labelTextFont
= wxNullFont
;
88 m_cellTextFont
= wxNullFont
;
89 m_textItem
= (wxTextCtrl
*) NULL
;
90 m_currentRectVisible
= FALSE
;
92 #if defined(__WIN95__)
93 m_scrollWidth
= wxSystemSettings::GetSystemMetric(wxSYS_VSCROLL_X
);
94 #elif defined(__WXGTK__)
95 m_scrollWidth
= wxSystemSettings::GetSystemMetric(wxSYS_VSCROLL_X
);
99 m_dragStatus
= wxGRID_DRAG_NONE
;
101 m_dragStartPosition
= 0;
102 m_dragLastPosition
= 0;
103 m_divisionPen
= wxNullPen
;
104 m_leftOfSheet
= wxGRID_DEFAULT_SHEET_LEFT
;
105 m_topOfSheet
= wxGRID_DEFAULT_SHEET_TOP
;
106 m_cellHeight
= wxGRID_DEFAULT_CELL_HEIGHT
;
107 m_totalGridWidth
= 0;
108 m_totalGridHeight
= 0;
109 m_colWidths
= (short *) NULL
;
110 m_rowHeights
= (short *) NULL
;
111 m_verticalLabelWidth
= wxGRID_DEFAULT_VERTICAL_LABEL_WIDTH
;
112 m_horizontalLabelHeight
= wxGRID_DEFAULT_HORIZONAL_LABEL_HEIGHT
;
113 m_verticalLabelAlignment
= wxCENTRE
;
114 m_horizontalLabelAlignment
= wxCENTRE
;
115 m_editControlPosition
.x
= wxGRID_DEFAULT_EDIT_X
;
116 m_editControlPosition
.y
= wxGRID_DEFAULT_EDIT_Y
;
117 m_editControlPosition
.width
= wxGRID_DEFAULT_EDIT_WIDTH
;
118 m_editControlPosition
.height
= wxGRID_DEFAULT_EDIT_HEIGHT
;
123 m_editCreated
= FALSE
;
126 m_gridCells
= (wxGridCell
***) NULL
;
127 m_rowLabelCells
= (wxGridCell
**) NULL
;
128 m_colLabelCells
= (wxGridCell
**) NULL
;
129 m_textItem
= (wxTextCtrl
*) NULL
;
132 bool wxGenericGrid::Create(wxWindow
*parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
,
133 long style
, const wxString
& name
)
136 m_editingPanel
= (wxPanel
*) NULL
;
137 m_hScrollBar
= (wxScrollBar
*) NULL
;
138 m_vScrollBar
= (wxScrollBar
*) NULL
;
139 m_cellTextColour
= *wxBLACK
;
140 m_cellBackgroundColour
= *wxWHITE
;
141 m_labelTextColour
= *wxBLACK
;
142 // m_labelBackgroundColour = *wxLIGHT_GREY;
143 m_labelBackgroundColour
= wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE
);
144 m_labelBackgroundBrush
= wxNullBrush
;
145 m_labelTextFont
= * wxTheFontList
->FindOrCreateFont(10, wxSWISS
, wxNORMAL
, wxBOLD
);
146 m_cellTextFont
= * wxTheFontList
->FindOrCreateFont(10, wxSWISS
, wxNORMAL
, wxNORMAL
);
147 m_textItem
= (wxTextCtrl
*) NULL
;
148 m_currentRectVisible
= FALSE
;
150 #if defined(__WIN95__)
151 m_scrollWidth
= wxSystemSettings::GetSystemMetric(wxSYS_VSCROLL_X
);
152 #elif defined(__WXGTK__)
153 m_scrollWidth
= wxSystemSettings::GetSystemMetric(wxSYS_VSCROLL_X
);
157 m_dragStatus
= wxGRID_DRAG_NONE
;
159 m_dragStartPosition
= 0;
160 m_dragLastPosition
= 0;
161 m_divisionPen
= * wxThePenList
->FindOrCreatePen("LIGHT GREY", 1, wxSOLID
);
162 m_doubleBufferingBitmap
= (wxBitmap
*) NULL
;
164 if (!m_horizontalSashCursor
.Ok())
166 m_horizontalSashCursor
= wxCursor(wxCURSOR_SIZEWE
);
167 m_verticalSashCursor
= wxCursor(wxCURSOR_SIZENS
);
170 SetLabelBackgroundColour(m_labelBackgroundColour
);
172 m_leftOfSheet
= wxGRID_DEFAULT_SHEET_LEFT
;
173 m_topOfSheet
= wxGRID_DEFAULT_SHEET_TOP
;
174 m_cellHeight
= wxGRID_DEFAULT_CELL_HEIGHT
;
175 m_totalGridWidth
= 0;
176 m_totalGridHeight
= 0;
177 m_colWidths
= (short *) NULL
;
178 m_rowHeights
= (short *) NULL
;
180 m_verticalLabelWidth
= wxGRID_DEFAULT_VERTICAL_LABEL_WIDTH
;
181 m_horizontalLabelHeight
= wxGRID_DEFAULT_HORIZONAL_LABEL_HEIGHT
;
182 m_verticalLabelAlignment
= wxCENTRE
;
183 m_horizontalLabelAlignment
= wxCENTRE
;
184 m_editControlPosition
.x
= wxGRID_DEFAULT_EDIT_X
;
185 m_editControlPosition
.y
= wxGRID_DEFAULT_EDIT_Y
;
186 m_editControlPosition
.width
= wxGRID_DEFAULT_EDIT_WIDTH
;
187 m_editControlPosition
.height
= wxGRID_DEFAULT_EDIT_HEIGHT
;
195 /* Store the rect. coordinates for the current cell */
196 SetCurrentRect(m_wCursorRow
, m_wCursorColumn
);
198 m_editCreated
= FALSE
;
202 m_gridCells
= (wxGridCell
***) NULL
;
203 m_rowLabelCells
= (wxGridCell
**) NULL
;
204 m_colLabelCells
= (wxGridCell
**) NULL
;
205 m_textItem
= (wxTextCtrl
*) NULL
;
207 wxPanel::Create(parent
, id
, pos
, size
, style
, name
);
209 m_editingPanel
= new wxPanel(this);
211 m_textItem
= new wxTextCtrl(m_editingPanel
, wxGRID_TEXT_CTRL
, "",
212 wxPoint(m_editControlPosition
.x
, m_editControlPosition
.y
), wxSize(m_editControlPosition
.width
, -1),
214 m_textItem
->Show(TRUE
);
215 m_textItem
->SetFocus();
216 int controlW
, controlH
;
218 m_textItem
->GetSize(&controlW
, &controlH
);
219 m_editControlPosition
.height
= controlH
;
221 m_topOfSheet
= m_editControlPosition
.y
+ controlH
+ 2;
223 m_editCreated
= TRUE
;
225 m_hScrollBar
= new wxScrollBar(this, wxGRID_HSCROLL
, wxPoint(0, 0), wxSize(20, 100), wxHORIZONTAL
);
226 m_vScrollBar
= new wxScrollBar(this, wxGRID_VSCROLL
, wxPoint(0, 0), wxSize(100, 20), wxVERTICAL
);
228 // SetSize(pos.x, pos.y, size.x, size.y);
233 wxGenericGrid::~wxGenericGrid(void)
238 void wxGenericGrid::ClearGrid(void)
243 for (i
= 0; i
< m_totalRows
; i
++)
245 for (j
= 0; j
< m_totalCols
; j
++)
246 if (m_gridCells
[i
][j
])
247 delete m_gridCells
[i
][j
];
248 delete[] m_gridCells
[i
];
250 delete[] m_gridCells
;
251 m_gridCells
= (wxGridCell
***) NULL
;
254 delete[] m_colWidths
;
255 m_colWidths
= (short *) NULL
;
257 delete[] m_rowHeights
;
258 m_rowHeights
= (short *) NULL
;
262 for (i
= 0; i
< m_totalRows
; i
++)
263 delete m_rowLabelCells
[i
];
264 delete[] m_rowLabelCells
;
265 m_rowLabelCells
= (wxGridCell
**) NULL
;
269 for (i
= 0; i
< m_totalCols
; i
++)
270 delete m_colLabelCells
[i
];
271 delete[] m_colLabelCells
;
272 m_colLabelCells
= (wxGridCell
**) NULL
;
274 if (m_doubleBufferingBitmap
)
276 delete m_doubleBufferingBitmap
;
277 m_doubleBufferingBitmap
= (wxBitmap
*) NULL
;
281 bool wxGenericGrid::CreateGrid(int nRows
, int nCols
, wxString
**cellValues
, short *widths
,
282 short defaultWidth
, short defaultHeight
)
288 m_colWidths
= new short[nCols
];
289 m_rowHeights
= new short[nRows
];
290 for (i
= 0; i
< nCols
; i
++)
292 m_colWidths
[i
] = widths
[i
];
294 m_colWidths
[i
] = defaultWidth
;
295 for (i
= 0; i
< nRows
; i
++)
296 m_rowHeights
[i
] = defaultHeight
;
298 m_gridCells
= new wxGridCell
**[nRows
];
300 for (i
= 0; i
< nRows
; i
++)
301 m_gridCells
[i
] = new wxGridCell
*[nCols
];
303 for (i
= 0; i
< nRows
; i
++)
304 for (j
= 0; j
< nCols
; j
++)
307 //m_gridCells[i][j] = OnCreateCell();
308 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CREATE_CELL
, this, i
, j
);
309 GetEventHandler()->ProcessEvent(g_evt
);
310 m_gridCells
[i
][j
] = g_evt
.m_cell
;
311 m_gridCells
[i
][j
]->SetTextValue(cellValues
[i
][j
]);
314 m_gridCells
[i
][j
] = (wxGridCell
*) NULL
;
316 m_rowLabelCells
= new wxGridCell
*[nRows
];
317 for (i
= 0; i
< nRows
; i
++)
318 m_rowLabelCells
[i
] = new wxGridCell(this);
319 m_colLabelCells
= new wxGridCell
*[nCols
];
320 for (i
= 0; i
< nCols
; i
++)
321 m_colLabelCells
[i
] = new wxGridCell(this);
323 m_wCursorRow
= m_wCursorColumn
= 0;
324 SetCurrentRect(0, 0);
326 // Need to determine various dimensions
330 int objectSizeX
= m_totalCols
;
332 int viewLengthX
= m_totalCols
;
335 m_hScrollBar->SetViewLength(viewLengthX);
336 m_hScrollBar->SetObjectLength(objectSizeX);
337 m_hScrollBar->SetPageSize(pageSizeX);
339 m_hScrollBar
->SetScrollbar(m_hScrollBar
->GetThumbPosition(), pageSizeX
, objectSizeX
, viewLengthX
);
341 int objectSizeY
= m_totalRows
;
343 int viewLengthY
= m_totalRows
;
346 m_vScrollBar->SetViewLength(viewLengthY);
347 m_vScrollBar->SetObjectLength(objectSizeY);
348 m_vScrollBar->SetPageSize(pageSizeY);
351 m_vScrollBar
->SetScrollbar(m_vScrollBar
->GetThumbPosition(), pageSizeY
, objectSizeY
, viewLengthY
);
356 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CHANGE_LABELS
, this);
357 GetEventHandler()->ProcessEvent(g_evt
);
359 //OnChangeSelectionLabel();
360 wxGridEvent
g_evt2(GetId(), wxEVT_GRID_CHANGE_SEL_LABEL
, this);
361 GetEventHandler()->ProcessEvent(g_evt2
);
366 // Need to determine various dimensions
367 void wxGenericGrid::UpdateDimensions(void)
369 int canvasWidth
, canvasHeight
;
370 GetSize(&canvasWidth
, &canvasHeight
);
372 if (m_editCreated
&& m_editable
)
374 int controlW
, controlH
;
375 GetTextItem()->GetSize(&controlW
, &controlH
);
376 m_topOfSheet
= m_editControlPosition
.y
+ controlH
+ 2;
380 m_rightOfSheet
= m_leftOfSheet
+ m_verticalLabelWidth
;
382 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
384 if (m_rightOfSheet
> canvasWidth
)
387 m_rightOfSheet
+= m_colWidths
[i
];
389 m_bottomOfSheet
= m_topOfSheet
+ m_horizontalLabelHeight
;
390 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
392 if (m_bottomOfSheet
> canvasHeight
)
395 m_bottomOfSheet
+= m_rowHeights
[i
];
398 m_totalGridWidth
= m_leftOfSheet
+ m_verticalLabelWidth
;
399 for (i
= 0; i
< m_totalCols
; i
++)
401 m_totalGridWidth
+= m_colWidths
[i
];
403 m_totalGridHeight
= m_topOfSheet
+ m_horizontalLabelHeight
;
404 for (i
= 0; i
< m_totalRows
; i
++)
406 m_totalGridHeight
+= m_rowHeights
[i
];
410 wxGridCell
*wxGenericGrid::GetCell(int row
, int col
) const
413 return (wxGridCell
*) NULL
;
415 if ((row
>= m_totalRows
) || (col
>= m_totalCols
))
416 return (wxGridCell
*) NULL
;
418 wxGridCell
*cell
= m_gridCells
[row
][col
];
421 // m_gridCells[row][col] = OnCreateCell();
422 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CREATE_CELL
, (wxGenericGrid
*) this, row
, col
);
423 GetEventHandler()->ProcessEvent(g_evt
);
424 m_gridCells
[row
][col
] = g_evt
.m_cell
;
425 return m_gridCells
[row
][col
];
431 void wxGenericGrid::SetGridClippingRegion(wxDC
*dc
)
433 int m_scrollWidthHoriz
= 0;
434 int m_scrollWidthVert
= 0;
436 GetClientSize(&cw
, &ch
);
438 if (m_hScrollBar
&& m_hScrollBar
->IsShown())
439 m_scrollWidthHoriz
= m_scrollWidth
;
440 if (m_vScrollBar
&& m_vScrollBar
->IsShown())
441 m_scrollWidthVert
= m_scrollWidth
;
443 // Don't paint over the scrollbars
444 dc
->SetClippingRegion(m_leftOfSheet
, m_topOfSheet
,
445 cw
- m_scrollWidthVert
- m_leftOfSheet
, ch
- m_scrollWidthHoriz
- m_topOfSheet
);
448 void wxGenericGrid::OnPaint(wxPaintEvent
& WXUNUSED(event
))
451 GetClientSize(&w
, &h
);
453 bool useDoubleBuffering
= (bool) wxUSE_DOUBLE_BUFFERING
;
454 if (useDoubleBuffering
)
456 // Reuse the old bitmap if possible
458 if (!m_doubleBufferingBitmap
||
459 (m_doubleBufferingBitmap
->GetWidth() < w
|| m_doubleBufferingBitmap
->GetHeight() < h
))
461 if (m_doubleBufferingBitmap
)
462 delete m_doubleBufferingBitmap
;
463 m_doubleBufferingBitmap
= new wxBitmap(w
, h
);
465 if (!m_doubleBufferingBitmap
|| !m_doubleBufferingBitmap
->Ok())
467 // If we couldn't create a new bitmap, perhaps because resources were low,
468 // then don't complain, just don't double-buffer
469 if (m_doubleBufferingBitmap
)
470 delete m_doubleBufferingBitmap
;
471 m_doubleBufferingBitmap
= (wxBitmap
*) NULL
;
472 useDoubleBuffering
= FALSE
;
476 if (useDoubleBuffering
)
478 wxPaintDC
paintDC(this);
479 wxMemoryDC
dc(& paintDC
);
480 dc
.SelectObject(* m_doubleBufferingBitmap
);
484 int vertScrollBarWidth
= m_scrollWidth
;
485 int horizScrollBarHeight
= m_scrollWidth
;
486 if (m_vScrollBar
&& !m_vScrollBar
->IsShown())
487 vertScrollBarWidth
= 0;
488 if (m_hScrollBar
&& !m_hScrollBar
->IsShown())
489 horizScrollBarHeight
= 0;
491 paintDC
.Blit(m_leftOfSheet
, m_topOfSheet
, w
- vertScrollBarWidth
- m_leftOfSheet
, h
- horizScrollBarHeight
- m_topOfSheet
,
492 &dc
, m_leftOfSheet
, m_topOfSheet
, wxCOPY
);
494 dc
.SelectObject(wxNullBitmap
);
503 void wxGenericGrid::PaintGrid(wxDC
& dc
)
506 dc
.SetOptimization(FALSE
);
508 SetGridClippingRegion(& dc
);
510 DrawLabelAreas(& dc
);
512 DrawEditableArea(& dc
);
513 DrawColumnLabels(& dc
);
518 /* Hilight present cell */
519 SetCurrentRect(m_wCursorRow
, m_wCursorColumn
);
520 if (m_currentRectVisible
)
523 dc
.DestroyClippingRegion();
524 dc
.SetOptimization(TRUE
);
528 // Erase (some of) the background.
529 // Currently, a Windows-only optimisation.
530 void wxGenericGrid::OnEraseBackground(wxEraseEvent
& WXUNUSED(event
) )
534 dc
.SetOptimization(FALSE
);
537 GetClientSize(& w
, & h
);
538 dc
.SetBrush(*wxLIGHT_GREY_BRUSH
);
539 dc
.SetPen(*wxLIGHT_GREY_PEN
);
541 if (m_hScrollBar
&& m_hScrollBar
->IsShown() && m_vScrollBar
&& m_vScrollBar
->IsShown())
543 dc
.DrawRectangle(w
- m_scrollWidth
, h
- m_scrollWidth
, m_scrollWidth
, m_scrollWidth
);
546 dc
.SetOptimization(TRUE
);
551 void wxGenericGrid::DrawLabelAreas(wxDC
*dc
)
554 GetClientSize(&cw
, &ch
);
556 dc
->SetPen(*wxTRANSPARENT_PEN
);
557 // dc->SetBrush(*dc->GetBackground());
559 // Should blank out any area which isn't going to be painted over.
560 // dc->DrawRectangle(m_leftOfSheet, m_bottomOfSheet, cw - m_leftOfSheet, ch - m_bottomOfSheet);
561 // dc->DrawRectangle(m_rightOfSheet, m_topOfSheet, cw - m_rightOfSheet, ch - m_topOfSheet);
563 // Paint the label areas
564 dc
->SetBrush(m_labelBackgroundBrush
);
565 // dc->DrawRectangle(m_leftOfSheet, m_topOfSheet, m_rightOfSheet - m_leftOfSheet + 1, m_horizontalLabelHeight + 1);
566 dc
->DrawRectangle(m_leftOfSheet
, m_topOfSheet
, cw
-m_leftOfSheet
, m_horizontalLabelHeight
+ 1);
567 // dc->DrawRectangle(m_leftOfSheet, m_topOfSheet, m_verticalLabelWidth + 1, m_bottomOfSheet - m_topOfSheet + 1);
568 dc
->DrawRectangle(m_leftOfSheet
, m_topOfSheet
, m_verticalLabelWidth
+ 1, ch
-m_topOfSheet
);
571 void wxGenericGrid::DrawEditableArea(wxDC
*dc
)
574 GetClientSize(&cw
, &ch
);
576 dc
->SetPen(*wxTRANSPARENT_PEN
);
577 dc
->SetBrush(*wxTheBrushList
->FindOrCreateBrush(m_cellBackgroundColour
, wxSOLID
));
578 // dc->DrawRectangle(m_leftOfSheet+m_verticalLabelWidth, m_topOfSheet+m_horizontalLabelHeight,
579 // m_rightOfSheet-(m_leftOfSheet+m_verticalLabelWidth) + 1, m_bottomOfSheet - (m_topOfSheet+m_horizontalLabelHeight) + 1);
580 dc
->DrawRectangle(m_leftOfSheet
+m_verticalLabelWidth
, m_topOfSheet
+m_horizontalLabelHeight
,
581 cw
-(m_leftOfSheet
+m_verticalLabelWidth
), ch
- (m_topOfSheet
+m_horizontalLabelHeight
));
584 void wxGenericGrid::DrawGridLines(wxDC
*dc
)
587 GetClientSize(&cw
, &ch
);
591 if (m_divisionPen
.Ok())
593 dc
->SetPen(m_divisionPen
);
595 int heightCount
= m_topOfSheet
+ m_horizontalLabelHeight
;
597 // Draw horizontal grey lines for cells
598 for (i
= m_scrollPosY
; i
< (m_totalRows
+1); i
++)
600 if (heightCount
> ch
)
604 dc
->DrawLine(m_leftOfSheet
, heightCount
,
607 heightCount
+= m_rowHeights
[i
];
612 if (m_verticalLabelWidth
> 0)
614 dc
->SetPen(*wxBLACK_PEN
);
616 // Draw horizontal black lines for row labels
617 int heightCount
= m_topOfSheet
+ m_horizontalLabelHeight
;
618 for (i
= m_scrollPosY
; i
< (m_totalRows
+1); i
++)
620 if (heightCount
> ch
)
624 dc
->DrawLine(m_leftOfSheet
, heightCount
,
625 m_verticalLabelWidth
, heightCount
);
627 heightCount
+= m_rowHeights
[i
];
630 // Draw a black vertical line for row number cells
631 dc
->DrawLine(m_leftOfSheet
+ m_verticalLabelWidth
, m_topOfSheet
,
632 m_leftOfSheet
+ m_verticalLabelWidth
, ch
);
633 // First vertical line
634 dc
->DrawLine(m_leftOfSheet
, m_topOfSheet
, m_leftOfSheet
, ch
);
636 dc
->SetPen(*wxWHITE_PEN
);
638 // Draw highlights on row labels
639 heightCount
= m_topOfSheet
+ m_horizontalLabelHeight
;
640 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
642 if (heightCount
> ch
)
646 dc
->DrawLine(m_leftOfSheet
+1, heightCount
+1,
647 m_verticalLabelWidth
, heightCount
+1);
648 dc
->DrawLine(m_leftOfSheet
+1, heightCount
+1,
649 m_leftOfSheet
+1, heightCount
+ m_rowHeights
[i
] - 1);
650 heightCount
+= m_rowHeights
[i
];
653 // Last one - down to the floor.
654 dc
->DrawLine(m_leftOfSheet
+1, heightCount
+1,
655 m_verticalLabelWidth
, heightCount
+1);
656 dc
->DrawLine(m_leftOfSheet
+1, heightCount
+1,
657 m_leftOfSheet
+1, ch
);
661 if (m_divisionPen
.Ok())
663 dc
->SetPen(m_divisionPen
);
665 // Draw vertical grey lines for cells
666 int widthCount
= m_leftOfSheet
+ m_verticalLabelWidth
;
667 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
673 // Skip the first one
674 if (i
!= m_scrollPosX
)
676 dc
->DrawLine(widthCount
, m_topOfSheet
+ m_horizontalLabelHeight
,
677 widthCount
, m_bottomOfSheet
);
679 widthCount
+= m_colWidths
[i
];
683 dc
->DrawLine(widthCount
, m_topOfSheet
+ m_horizontalLabelHeight
,
684 widthCount
, m_bottomOfSheet
);
687 dc
->SetPen(*wxBLACK_PEN
);
689 // Draw two black horizontal lines for column number cells
691 m_leftOfSheet
, m_topOfSheet
,
693 dc
->DrawLine(m_leftOfSheet
, m_topOfSheet
+ m_horizontalLabelHeight
,
694 cw
, m_topOfSheet
+ m_horizontalLabelHeight
);
696 if (m_horizontalLabelHeight
> 0)
698 int widthCount
= m_leftOfSheet
+ m_verticalLabelWidth
;
700 // Draw black vertical lines for column number cells
701 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
707 dc
->DrawLine(widthCount
, m_topOfSheet
,
708 widthCount
, m_topOfSheet
+ m_horizontalLabelHeight
);
709 widthCount
+= m_colWidths
[i
];
714 dc
->DrawLine(widthCount
, m_topOfSheet
,
715 widthCount
, m_topOfSheet
+ m_horizontalLabelHeight
);
718 dc
->SetPen(*wxWHITE_PEN
);
719 widthCount
= m_leftOfSheet
+ m_verticalLabelWidth
;
721 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
727 dc
->DrawLine(widthCount
+1, m_topOfSheet
+1,
728 widthCount
+m_colWidths
[i
], m_topOfSheet
+1);
729 dc
->DrawLine(widthCount
+1, m_topOfSheet
+1,
730 widthCount
+1, m_topOfSheet
+m_horizontalLabelHeight
);
731 widthCount
+= m_colWidths
[i
];
734 // Last one - to the right side of the canvas.
735 dc
->DrawLine(widthCount
+1, m_topOfSheet
+1,
737 dc
->DrawLine(widthCount
+1, m_topOfSheet
+1,
738 widthCount
+1, m_topOfSheet
+m_horizontalLabelHeight
);
743 void wxGenericGrid::DrawColumnLabels(wxDC
*dc
)
746 GetClientSize(&cw
, &ch
);
748 if (m_horizontalLabelHeight
== 0)
754 // Draw letters for columns
755 rect
.y
= m_topOfSheet
+ 1;
756 rect
.height
= m_horizontalLabelHeight
- 1;
758 dc
->SetTextBackground(m_labelBackgroundColour
);
759 dc
->SetBackgroundMode(wxTRANSPARENT
);
760 // dc->SetTextForeground(m_labelTextColour);
762 int widthCount
= m_leftOfSheet
+ m_verticalLabelWidth
;
763 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
769 rect
.x
= 1 + widthCount
;
770 rect
.width
= m_colWidths
[i
];
771 DrawColumnLabel(dc
, &rect
, i
);
773 widthCount
+= m_colWidths
[i
];
778 void wxGenericGrid::DrawColumnLabel(wxDC
*dc
, wxRect
*rect
, int col
)
780 wxGridCell
*cell
= GetLabelCell(wxHORIZONTAL
, col
);
789 dc
->SetTextForeground(GetLabelTextColour());
790 dc
->SetFont(GetLabelTextFont());
791 if ( !cell
->GetTextValue().IsNull() )
792 DrawTextRect(dc
, cell
->GetTextValue(), &rect2
, GetLabelAlignment(wxHORIZONTAL
));
796 void wxGenericGrid::DrawRowLabels(wxDC
*dc
)
799 GetClientSize(&cw
, &ch
);
801 if (m_verticalLabelWidth
== 0)
807 // Draw numbers for rows
808 rect
.x
= m_leftOfSheet
;
809 rect
.width
= m_verticalLabelWidth
;
811 int heightCount
= m_topOfSheet
+ m_horizontalLabelHeight
;
813 dc
->SetTextBackground(m_labelBackgroundColour
);
814 dc
->SetBackgroundMode(wxTRANSPARENT
);
816 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
818 if (heightCount
> ch
)
822 rect
.y
= 1 + heightCount
;
823 rect
.height
= m_rowHeights
[i
];
824 DrawRowLabel(dc
, &rect
, i
);
826 heightCount
+= m_rowHeights
[i
];
831 void wxGenericGrid::DrawRowLabel(wxDC
*dc
, wxRect
*rect
, int row
)
833 wxGridCell
*cell
= GetLabelCell(wxVERTICAL
, row
);
842 dc
->SetTextForeground(GetLabelTextColour());
843 dc
->SetFont(GetLabelTextFont());
844 if ( !cell
->GetTextValue().IsNull() )
845 DrawTextRect(dc
, cell
->GetTextValue(), &rect2
, GetLabelAlignment(wxVERTICAL
));
849 void wxGenericGrid::DrawCells(wxDC
*dc
)
852 GetClientSize(&cw
, &ch
);
856 // Draw value corresponding to each cell
857 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
859 for (j
= m_scrollPosX
; j
< m_totalCols
; j
++)
861 SetCurrentRect(i
, j
, cw
, ch
);
862 if (m_currentRectVisible
)
864 DrawCellBackground(dc
, &m_currentRect
, i
, j
);
865 DrawCellValue(dc
, &m_currentRect
, i
, j
);
867 if (m_currentRect
.x
> cw
)
870 if (m_currentRect
.y
> ch
)
873 dc
->SetBackgroundMode(wxSOLID
);
874 dc
->SetPen(*wxBLACK_PEN
);
877 void wxGenericGrid::DrawCellBackground(wxDC
*dc
, wxRect
*rect
, int row
, int col
)
879 wxGridCell
*cell
= GetCell(row
, col
);
882 dc
->SetBrush(cell
->GetBackgroundBrush());
883 dc
->SetPen(*wxTRANSPARENT_PEN
);
885 #if 0 // In wxWin 2.0 the dc code is exact. RR.
887 dc
->DrawRectangle(rect
->x
+1, rect
->y
+1, rect
->width
-1, rect
->height
-1);
889 dc
->DrawRectangle(rect
->x
+1, rect
->y
+1, rect
->width
, rect
->height
);
893 dc
->DrawRectangle(rect
->x
+1, rect
->y
+1, rect
->width
-1, rect
->height
-1);
895 dc
->SetPen(*wxBLACK_PEN
);
899 void wxGenericGrid::DrawCellValue(wxDC
*dc
, wxRect
*rect
, int row
, int col
)
901 wxGridCell
*cell
= GetCell(row
, col
);
904 wxBitmap
*bitmap
= cell
->GetCellBitmap();
914 DrawBitmapRect(dc
, bitmap
, &rect2
, cell
->GetAlignment());
918 dc
->SetBackgroundMode(wxTRANSPARENT
);
919 dc
->SetTextForeground(cell
->GetTextColour());
920 dc
->SetFont(cell
->GetFont());
922 if ( !cell
->GetTextValue().IsNull() )
923 DrawTextRect(dc
, cell
->GetTextValue(), &rect2
, cell
->GetAlignment());
928 void wxGenericGrid::AdjustScrollbars(void)
931 GetClientSize(&cw
, &ch
);
933 // We find the view size by seeing how many rows/cols fit on
935 // BUT... this means that the scrollbar should be adjusted every time
936 // it's scrolled, as well as when sized, because with variable size rows/cols,
937 // the number of rows/col visible on the view differs according to what bit
938 // you're looking at. The object length is always the same, but the
939 // view length differs.
941 // Since this may not be known until the end of this function, we should probably call AdjustScrollbars
943 int vertScrollBarWidth
= m_scrollWidth
;
944 int horizScrollBarHeight
= m_scrollWidth
;
945 if (m_vScrollBar
&& !m_vScrollBar
->IsShown())
946 vertScrollBarWidth
= 0;
947 if (m_hScrollBar
&& !m_hScrollBar
->IsShown())
948 horizScrollBarHeight
= 0;
950 int noHorizSteps
= 0;
953 if (m_totalGridWidth
+ vertScrollBarWidth
<= cw
)
962 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
964 widthCount
+= m_colWidths
[i
];
965 // A partial bit doesn't count, we still have to scroll to see the
967 if (widthCount
+ m_leftOfSheet
+ m_verticalLabelWidth
> (cw
-vertScrollBarWidth
))
976 if (m_totalGridHeight
+ horizScrollBarHeight
<= ch
)
985 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
987 heightCount
+= m_rowHeights
[i
];
988 // A partial bit doesn't count, we still have to scroll to see the
990 if (heightCount
+ m_topOfSheet
+ m_horizontalLabelHeight
> (ch
-horizScrollBarHeight
))
999 if (m_totalGridWidth
+ vertScrollBarWidth
<= cw
)
1002 m_hScrollBar
->Show(FALSE
);
1008 m_hScrollBar
->Show(TRUE
);
1011 if (m_totalGridHeight
+ horizScrollBarHeight
<= ch
)
1014 m_vScrollBar
->Show(FALSE
);
1020 m_vScrollBar
->Show(TRUE
);
1023 UpdateDimensions(); // Necessary in case m_scrollPosX/Y changed
1025 vertScrollBarWidth
= m_scrollWidth
;
1026 horizScrollBarHeight
= m_scrollWidth
;
1027 if (m_vScrollBar
&& !m_vScrollBar
->IsShown())
1028 vertScrollBarWidth
= 0;
1029 if (m_hScrollBar
&& !m_hScrollBar
->IsShown())
1030 horizScrollBarHeight
= 0;
1032 if (m_hScrollBar
&& m_hScrollBar
->IsShown())
1034 int nCols
= GetCols();
1035 m_hScrollBar
->SetScrollbar(m_hScrollBar
->GetThumbPosition(), wxMax(noHorizSteps
, 1), (noHorizSteps
== 0) ? 1 : nCols
, wxMax(noHorizSteps
, 1));
1038 m_hScrollBar->SetSize(m_leftOfSheet, ch - m_scrollWidth -2, // why -2 ? Robert.
1039 cw - vertScrollBarWidth - m_leftOfSheet, m_scrollWidth);
1041 m_hScrollBar
->SetSize(m_leftOfSheet
, ch
- m_scrollWidth
,
1042 cw
- vertScrollBarWidth
- m_leftOfSheet
, m_scrollWidth
);
1046 if (m_vScrollBar
&& m_vScrollBar
->IsShown())
1048 int nRows
= GetRows();
1050 m_vScrollBar
->SetScrollbar(m_vScrollBar
->GetThumbPosition(), wxMax(noVertSteps
, 1), (noVertSteps
== 0) ? 1 : nRows
, wxMax(noVertSteps
, 1));
1051 m_vScrollBar
->SetSize(cw
- m_scrollWidth
, m_topOfSheet
,
1052 m_scrollWidth
, ch
- m_topOfSheet
- horizScrollBarHeight
);
1056 void wxGenericGrid::OnSize(wxSizeEvent
& WXUNUSED(event
) )
1058 if (!m_vScrollBar
|| !m_hScrollBar
)
1064 GetClientSize(&cw
, &ch
);
1066 if (m_editCreated
&& m_editingPanel
&& GetTextItem() && GetTextItem()->IsShown())
1068 m_editingPanel
->SetSize(0, 0, cw
, m_editControlPosition
.height
+ m_editControlPosition
.y
+ 2);
1069 GetTextItem()->SetSize(m_editControlPosition
.x
, m_editControlPosition
.y
,
1070 cw
- 2*m_editControlPosition
.x
, m_editControlPosition
.height
);
1074 bool wxGenericGrid::CellHitTest(int x
, int y
, int *row
, int *col
)
1076 // Find the selected cell and call OnSelectCell
1077 if (x
>= (m_leftOfSheet
+ m_verticalLabelWidth
) && y
>= (m_topOfSheet
+ m_horizontalLabelHeight
) &&
1078 x
<= m_rightOfSheet
&& y
<= m_bottomOfSheet
)
1080 // Calculate the cell number from x and y
1081 x
-= (m_verticalLabelWidth
+ m_leftOfSheet
);
1082 y
-= (m_topOfSheet
+ m_horizontalLabelHeight
);
1086 // Now we need to do a hit test for which row we're on
1087 int currentHeight
= 0;
1088 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
1090 if (y
>= currentHeight
&& y
<= (currentHeight
+ m_rowHeights
[i
]))
1095 currentHeight
+= m_rowHeights
[i
];
1098 // Now we need to do a hit test for which column we're on
1099 int currentWidth
= 0;
1100 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
1102 if (x
>= currentWidth
&& x
<= (currentWidth
+ m_colWidths
[i
]))
1107 currentWidth
+= m_colWidths
[i
];
1114 bool wxGenericGrid::LabelSashHitTest(int x
, int y
, int *orientation
, int *rowOrCol
, int *startPos
)
1119 if (x
>= (m_leftOfSheet
+ m_verticalLabelWidth
) && y
>= m_topOfSheet
&&
1120 x
<= m_rightOfSheet
&& y
<= (m_topOfSheet
+ m_horizontalLabelHeight
))
1122 // We may be on a column label sash.
1123 int currentWidth
= m_leftOfSheet
+ m_verticalLabelWidth
;
1124 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
1126 if (x
>= (currentWidth
+ m_colWidths
[i
] - tolerance
) && x
<= (currentWidth
+ m_colWidths
[i
] + tolerance
))
1128 *orientation
= wxHORIZONTAL
;
1130 *startPos
= currentWidth
;
1133 currentWidth
+= m_colWidths
[i
];
1137 else if (x
>= m_leftOfSheet
&& y
>= (m_topOfSheet
+ m_horizontalLabelHeight
) &&
1138 x
<= (m_leftOfSheet
+ m_verticalLabelWidth
) && y
<= m_bottomOfSheet
)
1140 // We may be on a row label sash.
1141 int currentHeight
= m_topOfSheet
+ m_horizontalLabelHeight
;
1142 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
1144 if (y
>= (currentHeight
+ m_rowHeights
[i
] - tolerance
) && y
<= (currentHeight
+ m_rowHeights
[i
] + tolerance
))
1146 *orientation
= wxVERTICAL
;
1148 *startPos
= currentHeight
;
1151 currentHeight
+= m_rowHeights
[i
];
1158 bool wxGenericGrid::LabelHitTest(int x
, int y
, int *row
, int *col
)
1160 // Find the selected label
1161 if (x
>= m_leftOfSheet
&& y
>= m_topOfSheet
&&
1162 x
<= m_rightOfSheet
&& y
<= m_bottomOfSheet
)
1164 // Calculate the cell number from x and y
1170 // Now we need to do a hit test for which row we're on
1171 int currentHeight
= m_horizontalLabelHeight
;
1172 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
1174 if (y
>= currentHeight
&& y
<= (currentHeight
+ m_rowHeights
[i
]))
1179 currentHeight
+= m_rowHeights
[i
];
1181 if (y
>= 0 && y
<= m_horizontalLabelHeight
)
1186 // Now we need to do a hit test for which column we're on
1187 int currentWidth
= m_verticalLabelWidth
;
1188 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
1190 if (x
>= currentWidth
&& x
<= (currentWidth
+ m_colWidths
[i
]))
1195 currentWidth
+= m_colWidths
[i
];
1197 if (x
>= 0 && x
<= m_verticalLabelWidth
)
1202 if ((*col
== -1) || (*row
== -1))
1210 void wxGenericGrid::OnMouseEvent(wxMouseEvent
& ev
)
1214 wxClientDC
dc(this);
1218 if (CellHitTest((int)ev
.GetX(), (int)ev
.GetY(), &row
, &col
))
1220 OnSelectCellImplementation(& dc
, row
, col
);
1222 //OnCellLeftClick(row, col, (int)ev.GetX(), (int)ev.GetY(), ev.ControlDown(), ev.ShiftDown());
1223 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CELL_LCLICK
, this,
1224 row
, col
, (int)ev
.GetX(), (int)ev
.GetY(),
1225 ev
.ControlDown(), ev
.ShiftDown());
1226 GetEventHandler()->ProcessEvent(g_evt
);
1229 if (LabelHitTest((int)ev
.GetX(), (int)ev
.GetY(), &row
, &col
))
1231 //OnLabelLeftClick(row, col, (int)ev.GetX(), (int)ev.GetY(), ev.ControlDown(), ev.ShiftDown());
1232 wxGridEvent
g_evt(GetId(), wxEVT_GRID_LABEL_LCLICK
, this,
1233 row
, col
, (int)ev
.GetX(), (int)ev
.GetY(),
1234 ev
.ControlDown(), ev
.ShiftDown());
1235 GetEventHandler()->ProcessEvent(g_evt
);
1240 else if (ev
.Dragging() && ev
.LeftIsDown())
1242 switch (m_dragStatus
)
1244 case wxGRID_DRAG_NONE
:
1247 if (LabelSashHitTest((int)ev
.GetX(), (int)ev
.GetY(), &orientation
, &m_dragRowOrCol
, &m_dragStartPosition
))
1249 if (orientation
== wxHORIZONTAL
)
1251 m_dragStatus
= wxGRID_DRAG_LEFT_RIGHT
;
1252 SetCursor(m_horizontalSashCursor
);
1253 m_dragLastPosition
= (int)ev
.GetX();
1257 m_dragStatus
= wxGRID_DRAG_UP_DOWN
;
1258 SetCursor(m_verticalSashCursor
);
1259 m_dragLastPosition
= (int)ev
.GetY();
1261 wxClientDC
dc(this);
1263 dc
.SetLogicalFunction(wxINVERT
);
1264 if (orientation
== wxHORIZONTAL
)
1265 dc
.DrawLine((int)ev
.GetX(), m_topOfSheet
, (int)ev
.GetX(), m_bottomOfSheet
);
1267 dc
.DrawLine(m_leftOfSheet
, (int)ev
.GetY(), m_rightOfSheet
, (int)ev
.GetY());
1274 case wxGRID_DRAG_LEFT_RIGHT
:
1276 wxClientDC
dc(this);
1278 dc
.SetLogicalFunction(wxINVERT
);
1279 dc
.DrawLine(m_dragLastPosition
, m_topOfSheet
, m_dragLastPosition
, m_bottomOfSheet
);
1281 dc
.DrawLine((int)ev
.GetX(), m_topOfSheet
, (int)ev
.GetX(), m_bottomOfSheet
);
1284 m_dragLastPosition
= (int)ev
.GetX();
1285 SetCursor(m_horizontalSashCursor
);
1288 case wxGRID_DRAG_UP_DOWN
:
1290 wxClientDC
dc(this);
1292 dc
.SetLogicalFunction(wxINVERT
);
1293 dc
.DrawLine(m_leftOfSheet
, m_dragLastPosition
, m_rightOfSheet
, m_dragLastPosition
);
1295 dc
.DrawLine(m_leftOfSheet
, (int)ev
.GetY(), m_rightOfSheet
, (int)ev
.GetY());
1298 m_dragLastPosition
= (int)ev
.GetY();
1299 SetCursor(m_verticalSashCursor
);
1304 else if (ev
.Moving())
1306 int rowOrCol
, orientation
, startPos
;
1307 if (LabelSashHitTest((int)ev
.GetX(), (int)ev
.GetY(), &orientation
, &rowOrCol
, &startPos
))
1309 if (orientation
== wxHORIZONTAL
)
1310 SetCursor(m_horizontalSashCursor
);
1312 SetCursor(m_verticalSashCursor
);
1315 SetCursor(*wxSTANDARD_CURSOR
);
1317 else if (ev
.LeftUp())
1319 switch (m_dragStatus
)
1321 case wxGRID_DRAG_LEFT_RIGHT
:
1323 wxClientDC
dc(this);
1325 dc
.SetLogicalFunction(wxINVERT
);
1326 dc
.DrawLine(m_dragLastPosition
, m_topOfSheet
, m_dragLastPosition
, m_bottomOfSheet
);
1327 dc
.SetLogicalFunction(wxCOPY
);
1331 if (ev
.GetX() > m_dragStartPosition
)
1333 m_colWidths
[m_dragRowOrCol
] = (short)(ev
.GetX() - m_dragStartPosition
);
1338 SetCursor(*wxSTANDARD_CURSOR
);
1340 GetClientSize(&cw
, &ch
);
1345 case wxGRID_DRAG_UP_DOWN
:
1347 wxClientDC
dc(this);
1349 dc
.SetLogicalFunction(wxINVERT
);
1350 dc
.DrawLine(m_leftOfSheet
, m_dragLastPosition
, m_rightOfSheet
, m_dragLastPosition
);
1351 dc
.SetLogicalFunction(wxCOPY
);
1355 if (ev
.GetY() > m_dragStartPosition
)
1357 m_rowHeights
[m_dragRowOrCol
] = (short)(ev
.GetY() - m_dragStartPosition
);
1362 SetCursor(*wxSTANDARD_CURSOR
);
1366 m_dragStatus
= wxGRID_DRAG_NONE
;
1368 else if (ev
.RightDown())
1371 if (CellHitTest((int)ev
.GetX(), (int)ev
.GetY(), &row
, &col
))
1373 //OnCellRightClick(row, col, (int)ev.GetX(), (int)ev.GetY(), ev.ControlDown(), ev.ShiftDown());
1374 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CELL_RCLICK
, this,
1375 row
, col
, (int)ev
.GetX(), (int)ev
.GetY(),
1376 ev
.ControlDown(), ev
.ShiftDown());
1377 GetEventHandler()->ProcessEvent(g_evt
);
1380 if (LabelHitTest((int)ev
.GetX(), (int)ev
.GetY(), &row
, &col
))
1382 //OnLabelRightClick(row, col, (int)ev.GetX(), (int)ev.GetY(), ev.ControlDown(), ev.ShiftDown());
1383 wxGridEvent
g_evt(GetId(), wxEVT_GRID_LABEL_RCLICK
, this,
1384 row
, col
, (int)ev
.GetX(), (int)ev
.GetY(),
1385 ev
.ControlDown(), ev
.ShiftDown());
1386 GetEventHandler()->ProcessEvent(g_evt
);
1391 void wxGenericGrid::OnSelectCellImplementation(wxDC
*dc
, int row
, int col
)
1393 m_wCursorColumn
= col
;
1396 //OnChangeSelectionLabel();
1397 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CHANGE_SEL_LABEL
, this);
1398 GetEventHandler()->ProcessEvent(g_evt
);
1400 SetGridClippingRegion(dc
);
1402 // Remove the highlight from the old cell
1403 if (m_currentRectVisible
)
1406 // Highlight the new cell and copy its content to the edit control
1407 SetCurrentRect(m_wCursorRow
, m_wCursorColumn
);
1408 wxGridCell
*cell
= GetCell(m_wCursorRow
, m_wCursorColumn
);
1411 if ( cell
->GetTextValue().IsNull() )
1412 m_textItem
->SetValue("");
1414 m_textItem
->SetValue(cell
->GetTextValue());
1417 SetGridClippingRegion(dc
);
1419 // 1) Why isn't this needed for Windows??
1420 // Probably because of the SetValue?? JS.
1421 // 2) Arrrrrgh. This isn't needed anywhere,
1422 // of course. One hour of debugging... RR.
1423 // Put back for Motif only on advice of Michael Bedward
1428 dc
->DestroyClippingRegion();
1430 //OnSelectCell(row, col);
1431 wxGridEvent
g_evt2(GetId(), wxEVT_GRID_SELECT_CELL
, this, row
, col
);
1432 GetEventHandler()->ProcessEvent(g_evt2
);
1435 wxGridCell
*wxGenericGrid::OnCreateCell(void)
1437 return new wxGridCell(this);
1440 void wxGenericGrid::OnChangeLabels(void)
1444 for (i
= 0; i
< m_totalRows
; i
++)
1446 sprintf(buf
, "%d", i
+1);
1447 SetLabelValue(wxVERTICAL
, buf
, i
);
1449 // A...Z,AA...ZZ,AAA...ZZZ, etc.
1450 for (i
= 0; i
< m_totalCols
; i
++)
1453 int noTimes
= (i
/26 + 1);
1454 int ch
= (i
% 26) + 65;
1456 for (j
= 0; j
< noTimes
; j
++)
1459 sprintf(buf2
, "%c", (char)ch
);
1462 SetLabelValue(wxHORIZONTAL
, buf
, i
);
1466 void wxGenericGrid::OnChangeSelectionLabel(void)
1471 wxString
rowLabel(GetLabelValue(wxVERTICAL
, GetCursorRow()));
1472 wxString
colLabel(GetLabelValue(wxHORIZONTAL
, GetCursorColumn()));
1474 wxString newLabel
= colLabel
+ rowLabel
;
1475 if ((newLabel
.Length() > 0) && (newLabel
.Length() <= 8) && GetTextItem())
1477 // GetTextItem()->SetLabel(newLabel);
1481 void wxGenericGrid::HighlightCell(wxDC
*dc
)
1483 dc
->SetLogicalFunction(wxINVERT
);
1486 dc
->DrawLine( m_currentRect
.x
+ 1,
1487 m_currentRect
.y
+ 1,
1488 m_currentRect
.x
+ m_currentRect
.width
- 1,
1489 m_currentRect
.y
+ 1);
1491 dc
->DrawLine( m_currentRect
.x
+ m_currentRect
.width
- 1,
1492 m_currentRect
.y
+ 1,
1493 m_currentRect
.x
+ m_currentRect
.width
- 1,
1494 m_currentRect
.y
+m_currentRect
.height
- 1 );
1496 dc
->DrawLine( m_currentRect
.x
+ m_currentRect
.width
- 1,
1497 m_currentRect
.y
+ m_currentRect
.height
- 1,
1498 m_currentRect
.x
+ 1,
1499 m_currentRect
.y
+ m_currentRect
.height
- 1);
1501 dc
->DrawLine( m_currentRect
.x
+ 1,
1502 m_currentRect
.y
+ m_currentRect
.height
- 1,
1503 m_currentRect
.x
+ 1,
1504 m_currentRect
.y
+ 1);
1506 dc
->SetLogicalFunction(wxCOPY
);
1509 void wxGenericGrid::DrawCellText(void)
1511 if (!m_currentRectVisible
)
1514 wxGridCell
*cell
= GetCell(GetCursorRow(), GetCursorColumn());
1518 static wxChar szEdit
[300];
1520 wxClientDC
dc(this);
1523 SetGridClippingRegion(& dc
);
1525 dc
.SetBackgroundMode(wxTRANSPARENT
);
1526 dc
.SetBrush(cell
->GetBackgroundBrush());
1528 wxStrcpy(szEdit
, m_textItem
->GetValue());
1531 rect
= m_currentRect
;
1537 DrawTextRect(& dc
, _T(" "), &rect
, wxLEFT
);
1538 DrawTextRect(& dc
, szEdit
, &rect
, cell
->GetAlignment());
1540 dc
.DestroyClippingRegion();
1542 dc
.SetBackgroundMode(wxSOLID
);
1547 void wxGenericGrid::SetCurrentRect(int Row
, int Column
, int canvasW
, int canvasH
)
1549 int currentWidth
= m_leftOfSheet
+ m_verticalLabelWidth
;
1551 for (i
= m_scrollPosX
; i
< Column
; i
++)
1552 currentWidth
+= m_colWidths
[i
];
1554 int currentHeight
= m_topOfSheet
+ m_horizontalLabelHeight
;
1555 for (i
= m_scrollPosY
; i
< Row
; i
++)
1556 currentHeight
+= m_rowHeights
[i
];
1558 m_currentRect
.x
= currentWidth
;
1559 m_currentRect
.y
= currentHeight
;
1560 m_currentRect
.width
= m_colWidths
? (m_colWidths
[Column
]) : 0;
1561 m_currentRect
.height
= m_rowHeights
? (m_rowHeights
[Row
]) : 0;
1563 if (Row
< m_scrollPosY
|| Column
< m_scrollPosX
)
1564 m_currentRectVisible
= FALSE
;
1565 else if ((canvasW
!= -1 && canvasH
!= -1) && (m_currentRect
.x
> canvasW
|| m_currentRect
.y
> canvasH
))
1566 m_currentRectVisible
= FALSE
;
1567 else m_currentRectVisible
= TRUE
;
1570 static bool wxRectIntersection(wxRect
*rect1
, wxRect
*rect2
, wxRect
*rect3
)
1572 int x2_1
= rect1
->x
+ rect1
->width
;
1573 int y2_1
= rect1
->y
+ rect1
->height
;
1575 int x2_2
= rect2
->x
+ rect2
->width
;
1576 int y2_2
= rect2
->y
+ rect2
->height
;
1580 // Check for intersection
1581 if ((rect1
->x
> x2_2
) || (rect2
->x
> x2_1
) ||
1582 (rect1
->y
> y2_2
) || (rect2
->y
> y2_1
))
1585 rect3
->x
= rect3
->y
= rect3
->width
= rect3
->height
= 0;
1589 if (rect1
->x
> rect2
->x
)
1590 rect3
->x
= rect1
->x
;
1592 rect3
->x
= rect2
->x
;
1593 if (rect1
->y
> rect2
->y
)
1594 rect3
->y
= rect1
->y
;
1596 rect3
->y
= rect2
->y
;
1607 rect3
->width
= (int)(x2_3
- rect3
->x
);
1608 rect3
->height
= (int)(y2_3
- rect3
->y
);
1612 void wxGenericGrid::DrawTextRect(wxDC
*dc
, const wxString
& text
, wxRect
*rect
, int flag
)
1616 // Ultimately, this functionality should be built into wxWindows,
1617 // and optimized for each platform. E.g. on Windows, use DrawText
1618 // passing a clipping rectangle, so that the wxWindows clipping region
1619 // does not have to be used to implement this.
1621 // If we're already clipping, we need to find the intersection
1622 // between current clipping area and text clipping area.
1626 long clipX
, clipY
, clipW
, clipH
;
1627 dc
->GetClippingBox(&clipX
, &clipY
, &clipW
, &clipH
);
1628 clipRect
.x
= (int)clipX
; clipRect
.y
= (int)clipY
;
1629 clipRect
.width
= (int)clipW
; clipRect
.height
= (int)clipH
;
1631 bool alreadyClipping
= TRUE
;
1633 if (clipRect
.x
== 0 && clipRect
.y
== 0 && clipRect
.width
== 0 && clipRect
.height
== 0)
1635 alreadyClipping
= FALSE
;
1636 clipRect2
.x
= rect
->x
; clipRect2
.y
= rect
->y
;
1637 clipRect2
.width
= rect
->width
; clipRect2
.height
= rect
->height
;
1641 // Find intersection.
1642 if (!wxRectIntersection(rect
, &clipRect
, &clipRect2
))
1646 if (alreadyClipping
)
1647 dc
->DestroyClippingRegion();
1649 dc
->SetClippingRegion(clipRect2
.x
, clipRect2
.y
, clipRect2
.width
, clipRect2
.height
);
1650 long textWidth
, textHeight
;
1652 dc
->GetTextExtent(text
, &textWidth
, &textHeight
);
1660 x
= (rect
->x
+ rect
->width
- textWidth
- 1.0);
1661 y
= (rect
->y
+ (rect
->height
- textHeight
)/2.0);
1666 x
= (rect
->x
+ (rect
->width
- textWidth
)/2.0);
1667 y
= (rect
->y
+ (rect
->height
- textHeight
)/2.0);
1673 x
= (rect
->x
+ 1.0);
1674 y
= (rect
->y
+ (rect
->height
- textHeight
)/2.0);
1678 dc
->DrawText(text
, (long)x
, (long)y
);
1680 dc
->DestroyClippingRegion();
1682 // Restore old clipping
1683 if (alreadyClipping
)
1684 dc
->SetClippingRegion(clipRect
.x
, clipRect
.y
, clipRect
.width
, clipRect
.height
);
1689 void wxGenericGrid::DrawBitmapRect(wxDC
*dc
, wxBitmap
*bitmap
, wxRect
*rect
, int flag
)
1693 // Ultimately, this functionality should be built into wxWindows,
1694 // and optimized for each platform. E.g. on Windows, use DrawText
1695 // passing a clipping rectangle, so that the wxWindows clipping region
1696 // does not have to be used to implement this.
1698 // If we're already clipping, we need to find the intersection
1699 // between current clipping area and text clipping area.
1703 long clipX
, clipY
, clipW
, clipH
;
1704 dc
->GetClippingBox(&clipX
, &clipY
, &clipW
, &clipH
);
1705 clipRect
.x
= (int)clipX
; clipRect
.y
= (int)clipY
;
1706 clipRect
.width
= (int)clipW
; clipRect
.height
= (int)clipH
;
1708 bool alreadyClipping
= TRUE
;
1710 if (clipRect
.x
== 0 && clipRect
.y
== 0 && clipRect
.width
== 0 && clipRect
.height
== 0)
1712 alreadyClipping
= FALSE
;
1713 clipRect2
.x
= rect
->x
; clipRect2
.y
= rect
->y
;
1714 clipRect2
.width
= rect
->width
; clipRect2
.height
= rect
->height
;
1718 // Find intersection.
1719 if (!wxRectIntersection(rect
, &clipRect
, &clipRect2
))
1723 if (alreadyClipping
)
1724 dc
->DestroyClippingRegion();
1726 dc
->SetClippingRegion(clipRect2
.x
, clipRect2
.y
, clipRect2
.width
, clipRect2
.height
);
1727 float bitmapWidth
, bitmapHeight
;
1729 bitmapWidth
= bitmap
->GetWidth();
1730 bitmapHeight
= bitmap
->GetHeight();
1738 x
= (long)(rect
->x
+ rect
->width
- bitmapWidth
- 1);
1739 y
= (long)(rect
->y
+ (rect
->height
- bitmapHeight
)/2.0);
1744 x
= (long)(rect
->x
+ (rect
->width
- bitmapWidth
)/2.0);
1745 y
= (long)(rect
->y
+ (rect
->height
- bitmapHeight
)/2.0);
1751 x
= (long)(rect
->x
+ 1);
1752 y
= (long)(rect
->y
+ (rect
->height
- bitmapHeight
)/2.0);
1757 dcTemp
.SelectObject(*bitmap
);
1759 dc
->Blit( (long)x
, (long)y
, (long)bitmapWidth
, (long)bitmapHeight
, &dcTemp
, 0, 0);
1760 dcTemp
.SelectObject(wxNullBitmap
);
1762 dc
->DestroyClippingRegion();
1764 // Restore old clipping
1765 if (alreadyClipping
)
1766 dc
->SetClippingRegion(clipRect
.x
, clipRect
.y
, clipRect
.width
, clipRect
.height
);
1771 void wxGenericGrid::OnActivate(bool active
)
1775 // Edit control should always have the focus
1776 if (GetTextItem() && GetEditable())
1778 GetTextItem()->SetFocus();
1779 wxGridCell
*cell
= GetCell(GetCursorRow(), GetCursorColumn());
1781 GetTextItem()->SetValue(cell
->GetTextValue());
1786 void wxGenericGrid::SetCellValue(const wxString
& val
, int row
, int col
)
1788 wxGridCell
*cell
= GetCell(row
, col
);
1791 cell
->SetTextValue(val
);
1793 RefreshCell(row
, col
, TRUE
);
1797 void wxGenericGrid::RefreshCell(int row
, int col
, bool setText
)
1799 // Don't refresh within a pair of batch brackets
1800 if (GetBatchCount() > 0)
1804 GetClientSize(&cw
, &ch
);
1806 SetCurrentRect(row
, col
, cw
, ch
);
1807 if (m_currentRectVisible
)
1809 wxGridCell
*cell
= GetCell(row
, col
);
1811 bool currentPos
= FALSE
;
1812 if (row
== m_wCursorRow
&& col
== m_wCursorColumn
&& GetTextItem() && GetTextItem()->IsShown() && setText
)
1814 GetTextItem()->SetValue(cell
->GetTextValue());
1817 // Gets refreshed anyway in MSW
1822 wxClientDC
dc(this);
1824 DrawCellBackground(& dc
, &m_currentRect
, row
, col
);
1825 DrawCellValue(& dc
, &m_currentRect
, row
, col
);
1831 wxString
& wxGenericGrid::GetCellValue(int row
, int col
) const
1833 static wxString
emptyString("");
1835 wxGridCell
*cell
= GetCell(row
, col
);
1837 return cell
->GetTextValue();
1842 void wxGenericGrid::SetColumnWidth(int col
, int width
)
1844 if (col
<= m_totalCols
)
1845 m_colWidths
[col
] = width
;
1848 int wxGenericGrid::GetColumnWidth(int col
) const
1850 if (col
<= m_totalCols
)
1851 return m_colWidths
[col
];
1856 void wxGenericGrid::SetRowHeight(int row
, int height
)
1858 if (row
<= m_totalRows
)
1859 m_rowHeights
[row
] = height
;
1862 int wxGenericGrid::GetRowHeight(int row
) const
1864 if (row
<= m_totalRows
)
1865 return m_rowHeights
[row
];
1870 void wxGenericGrid::SetLabelSize(int orientation
, int sz
)
1872 if (orientation
== wxHORIZONTAL
)
1873 m_horizontalLabelHeight
= sz
;
1875 m_verticalLabelWidth
= sz
;
1877 SetCurrentRect(GetCursorRow(), GetCursorColumn());
1880 int wxGenericGrid::GetLabelSize(int orientation
) const
1882 if (orientation
== wxHORIZONTAL
)
1883 return m_horizontalLabelHeight
;
1885 return m_verticalLabelWidth
;
1888 wxGridCell
*wxGenericGrid::GetLabelCell(int orientation
, int pos
) const
1890 if (orientation
== wxHORIZONTAL
)
1892 if (m_colLabelCells
&& pos
< m_totalCols
)
1893 return m_colLabelCells
[pos
];
1895 return (wxGridCell
*) NULL
;
1899 if (m_rowLabelCells
&& pos
< m_totalRows
)
1900 return m_rowLabelCells
[pos
];
1902 return (wxGridCell
*) NULL
;
1906 void wxGenericGrid::SetLabelValue(int orientation
, const wxString
& val
, int pos
)
1908 wxGridCell
*cell
= GetLabelCell(orientation
, pos
);
1910 cell
->SetTextValue(val
);
1913 wxString
& wxGenericGrid::GetLabelValue(int orientation
, int pos
) const
1915 static wxString emptyString
= "";
1916 wxGridCell
*cell
= GetLabelCell(orientation
, pos
);
1918 return cell
->GetTextValue();
1923 void wxGenericGrid::SetLabelAlignment(int orientation
, int align
)
1925 if (orientation
== wxHORIZONTAL
)
1926 m_horizontalLabelAlignment
= align
;
1928 m_verticalLabelAlignment
= align
;
1930 SetCurrentRect(GetCursorRow(), GetCursorColumn());
1933 int wxGenericGrid::GetLabelAlignment(int orientation
) const
1935 if (orientation
== wxHORIZONTAL
)
1936 return m_horizontalLabelAlignment
;
1938 return m_verticalLabelAlignment
;
1941 void wxGenericGrid::SetLabelTextColour(const wxColour
& colour
)
1943 m_labelTextColour
= colour
;
1947 void wxGenericGrid::SetLabelBackgroundColour(const wxColour
& colour
)
1949 m_labelBackgroundColour
= colour
;
1950 m_labelBackgroundBrush
= * wxTheBrushList
->FindOrCreateBrush(m_labelBackgroundColour
, wxSOLID
);
1953 void wxGenericGrid::SetEditable(bool edit
)
1958 int controlW
, controlH
;
1959 m_textItem
->GetSize(&controlW
, &controlH
);
1960 m_editControlPosition
.height
= controlH
;
1962 m_topOfSheet
= m_editControlPosition
.x
+ controlH
+ 2;
1965 m_editingPanel
->Show(TRUE
);
1966 m_textItem
->Show(TRUE
);
1967 m_textItem
->SetFocus();
1975 m_textItem
->Show(FALSE
);
1976 m_editingPanel
->Show(FALSE
);
1980 SetCurrentRect(GetCursorRow(), GetCursorColumn());
1983 GetClientSize(&cw
, &ch
);
1988 int m_scrollWidth = 16;
1989 GetClientSize(&cw, &ch);
1992 m_vScrollBar->SetSize(cw - m_scrollWidth, m_topOfSheet,
1993 m_scrollWidth, ch - m_topOfSheet - m_scrollWidth);
1997 void wxGenericGrid::SetCellAlignment(int flag
, int row
, int col
)
1999 wxGridCell
*cell
= GetCell(row
, col
);
2001 cell
->SetAlignment(flag
);
2004 int wxGenericGrid::GetCellAlignment(int row
, int col
) const
2006 wxGridCell
*cell
= GetCell(row
, col
);
2008 return cell
->GetAlignment();
2010 return m_cellAlignment
;
2013 void wxGenericGrid::SetCellAlignment(int flag
)
2015 m_cellAlignment
= flag
;
2017 for (i
= 0; i
< GetRows(); i
++)
2018 for (j
= 0; j
< GetCols(); j
++)
2020 GetCell(i
, j
)->SetAlignment(flag
);
2023 int wxGenericGrid::GetCellAlignment(void) const
2025 return m_cellAlignment
;
2028 void wxGenericGrid::SetCellBackgroundColour(const wxColour
& col
)
2030 m_cellBackgroundColour
= col
;
2032 for (i
= 0; i
< GetRows(); i
++)
2033 for (j
= 0; j
< GetCols(); j
++)
2035 GetCell(i
, j
)->SetBackgroundColour(col
);
2038 void wxGenericGrid::SetCellBackgroundColour(const wxColour
& val
, int row
, int col
)
2040 wxGridCell
*cell
= GetCell(row
, col
);
2043 cell
->SetBackgroundColour(val
);
2044 RefreshCell(row
, col
);
2048 wxColour
& wxGenericGrid::GetCellBackgroundColour(int row
, int col
) const
2050 wxGridCell
*cell
= GetCell(row
, col
);
2052 return cell
->GetBackgroundColour();
2054 return (wxColour
&) m_cellBackgroundColour
;
2057 void wxGenericGrid::SetCellTextColour(const wxColour
& val
, int row
, int col
)
2059 wxGridCell
*cell
= GetCell(row
, col
);
2062 cell
->SetTextColour(val
);
2063 RefreshCell(row
, col
);
2067 void wxGenericGrid::SetCellTextFont(const wxFont
& fnt
, int row
, int col
)
2069 wxGridCell
*cell
= GetCell(row
, col
);
2073 RefreshCell(row
, col
);
2077 wxFont
& wxGenericGrid::GetCellTextFont(int row
, int col
) const
2079 wxGridCell
*cell
= GetCell(row
, col
);
2081 return (wxFont
&) cell
->GetFont();
2083 return (wxFont
&) m_cellTextFont
;
2086 wxColour
& wxGenericGrid::GetCellTextColour(int row
, int col
) const
2088 wxGridCell
*cell
= GetCell(row
, col
);
2090 return (wxColour
&) cell
->GetTextColour();
2092 return (wxColour
&) m_cellTextColour
;
2095 void wxGenericGrid::SetCellTextColour(const wxColour
& val
)
2097 m_cellTextColour
= val
;
2099 for (i
= 0; i
< GetRows(); i
++)
2100 for (j
= 0; j
< GetCols(); j
++)
2102 GetCell(i
, j
)->SetTextColour(val
);
2105 void wxGenericGrid::SetCellTextFont(const wxFont
& fnt
)
2107 m_cellTextFont
= fnt
;
2109 for (i
= 0; i
< GetRows(); i
++)
2110 for (j
= 0; j
< GetCols(); j
++)
2112 GetCell(i
, j
)->SetFont(fnt
);
2115 void wxGenericGrid::SetCellBitmap(wxBitmap
*bitmap
, int row
, int col
)
2117 wxGridCell
*cell
= GetCell(row
, col
);
2120 cell
->SetCellBitmap(bitmap
);
2121 RefreshCell(row
, col
);
2125 wxBitmap
*wxGenericGrid::GetCellBitmap(int row
, int col
) const
2127 wxGridCell
*cell
= GetCell(row
, col
);
2130 return cell
->GetCellBitmap();
2133 return (wxBitmap
*) NULL
;
2136 bool wxGenericGrid::InsertCols(int pos
, int n
, bool updateLabels
)
2138 if (pos
> m_totalCols
)
2142 return CreateGrid(1, n
);
2147 for (i
= 0; i
< m_totalRows
; i
++)
2149 wxGridCell
**cols
= m_gridCells
[i
];
2150 wxGridCell
**newCols
= new wxGridCell
*[m_totalCols
+ n
];
2151 for (j
= 0; j
< pos
; j
++)
2152 newCols
[j
] = cols
[j
];
2153 for (j
= pos
; j
< pos
+ n
; j
++)
2154 newCols
[j
] = new wxGridCell(this);
2155 for (j
= pos
+ n
; j
< m_totalCols
+ n
; j
++)
2156 newCols
[j
] = cols
[j
- n
];
2159 m_gridCells
[i
] = newCols
;
2163 short *newColWidths
= new short[m_totalCols
+ n
];
2164 for (j
= 0; j
< pos
; j
++)
2165 newColWidths
[j
] = m_colWidths
[j
];
2166 for (j
= pos
; j
< pos
+ n
; j
++)
2167 newColWidths
[j
] = wxGRID_DEFAULT_CELL_WIDTH
;
2168 for (j
= pos
+ n
; j
< m_totalCols
+ n
; j
++)
2169 newColWidths
[j
] = m_colWidths
[j
- n
];
2170 delete[] m_colWidths
;
2171 m_colWidths
= newColWidths
;
2174 wxGridCell
**newLabels
= new wxGridCell
*[m_totalCols
+ n
];
2175 for (j
= 0; j
< pos
; j
++)
2176 newLabels
[j
] = m_colLabelCells
[j
];
2177 for (j
= pos
; j
< pos
+ n
; j
++)
2178 newLabels
[j
] = new wxGridCell(this);
2179 for (j
= pos
+ n
; j
< m_totalCols
+ n
; j
++)
2180 newLabels
[j
] = m_colLabelCells
[j
- n
];
2182 delete[] m_colLabelCells
;
2183 m_colLabelCells
= newLabels
;
2189 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CHANGE_LABELS
, this);
2190 GetEventHandler()->ProcessEvent(g_evt
);
2199 bool wxGenericGrid::InsertRows(int pos
, int n
, bool updateLabels
)
2201 if (pos
> m_totalRows
)
2205 return CreateGrid(n
, 1);
2210 wxGridCell
***rows
= new wxGridCell
**[m_totalRows
+ n
];
2213 for (i
= 0; i
< pos
; i
++)
2214 rows
[i
] = m_gridCells
[i
];
2216 for (i
= pos
; i
< pos
+ n
; i
++)
2218 rows
[i
] = new wxGridCell
*[m_totalCols
];
2219 for (j
= 0; j
< m_totalCols
; j
++)
2220 rows
[i
][j
] = new wxGridCell(this);
2223 for (i
= pos
+ n
; i
< m_totalRows
+ n
; i
++)
2224 rows
[i
] = m_gridCells
[i
- n
];
2226 delete[] m_gridCells
;
2230 short *newRowHeights
= new short[m_totalRows
+ n
];
2231 for (i
= 0; i
< pos
; i
++)
2232 newRowHeights
[i
] = m_rowHeights
[i
];
2233 for (i
= pos
; i
< pos
+ n
; i
++)
2234 newRowHeights
[i
] = wxGRID_DEFAULT_CELL_HEIGHT
;
2235 for (i
= pos
+ n
; i
< m_totalRows
+ n
; i
++)
2236 newRowHeights
[i
] = m_rowHeights
[i
- n
];
2237 delete[] m_rowHeights
;
2238 m_rowHeights
= newRowHeights
;
2241 wxGridCell
**newLabels
= new wxGridCell
*[m_totalRows
+ n
];
2242 for (i
= 0; i
< pos
; i
++)
2243 newLabels
[i
] = m_rowLabelCells
[i
];
2244 for (i
= pos
; i
< pos
+ n
; i
++)
2245 newLabels
[i
] = new wxGridCell(this);
2246 for (i
= pos
+ n
; i
< m_totalRows
+ n
; i
++)
2247 newLabels
[i
] = m_rowLabelCells
[i
- n
];
2249 delete[] m_rowLabelCells
;
2250 m_rowLabelCells
= newLabels
;
2256 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CHANGE_LABELS
, this);
2257 GetEventHandler()->ProcessEvent(g_evt
);
2266 bool wxGenericGrid::AppendCols(int n
, bool updateLabels
)
2268 return InsertCols(GetCols(), n
, updateLabels
);
2271 bool wxGenericGrid::AppendRows(int n
, bool updateLabels
)
2273 return InsertRows(GetRows(), n
, updateLabels
);
2276 bool wxGenericGrid::DeleteRows(int pos
, int n
, bool updateLabels
)
2278 if (pos
> m_totalRows
)
2285 wxGridCell
***rows
= new wxGridCell
**[m_totalRows
- n
];
2288 for (i
= 0; i
< pos
; i
++)
2289 rows
[i
] = m_gridCells
[i
];
2291 for (i
= pos
+ n
; i
< m_totalRows
; i
++)
2292 rows
[i
-n
] = m_gridCells
[i
];
2294 delete[] m_gridCells
;
2298 short *newRowHeights
= new short[m_totalRows
- n
];
2299 for (i
= 0; i
< pos
; i
++)
2300 newRowHeights
[i
] = m_rowHeights
[i
];
2301 for (i
= pos
+ n
; i
< m_totalRows
; i
++)
2302 newRowHeights
[i
-n
] = m_rowHeights
[i
];
2303 delete[] m_rowHeights
;
2304 m_rowHeights
= newRowHeights
;
2307 wxGridCell
**newLabels
= new wxGridCell
*[m_totalRows
- n
];
2308 for (i
= 0; i
< pos
; i
++)
2309 newLabels
[i
] = m_rowLabelCells
[i
];
2310 for (i
= pos
+ n
; i
< m_totalRows
; i
++)
2311 newLabels
[i
-n
] = m_rowLabelCells
[i
];
2313 delete[] m_rowLabelCells
;
2314 m_rowLabelCells
= newLabels
;
2320 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CHANGE_LABELS
, this);
2321 GetEventHandler()->ProcessEvent(g_evt
);
2328 bool wxGenericGrid::DeleteCols(int pos
, int n
, bool updateLabels
)
2330 if (pos
+ n
> m_totalCols
)
2338 for (i
= 0; i
< m_totalRows
; i
++)
2340 wxGridCell
**cols
= m_gridCells
[i
];
2341 wxGridCell
**newCols
= new wxGridCell
*[m_totalCols
- n
];
2342 for (j
= 0; j
< pos
; j
++)
2343 newCols
[j
] = cols
[j
];
2344 for (j
= pos
; j
< pos
+ n
; j
++)
2346 for (j
= pos
+ n
; j
< m_totalCols
; j
++)
2347 newCols
[j
-n
] = cols
[j
];
2350 m_gridCells
[i
] = newCols
;
2354 short *newColWidths
= new short[m_totalCols
- n
];
2355 for (j
= 0; j
< pos
; j
++)
2356 newColWidths
[j
] = m_colWidths
[j
];
2357 for (j
= pos
+ n
; j
< m_totalCols
; j
++)
2358 newColWidths
[j
-n
] = m_colWidths
[j
];
2359 delete[] m_colWidths
;
2360 m_colWidths
= newColWidths
;
2363 wxGridCell
**newLabels
= new wxGridCell
*[m_totalCols
- n
];
2364 for (j
= 0; j
< pos
; j
++)
2365 newLabels
[j
] = m_colLabelCells
[j
];
2366 for (j
= pos
+ n
; j
< m_totalCols
; j
++)
2367 newLabels
[j
-n
] = m_colLabelCells
[j
];
2369 delete[] m_colLabelCells
;
2370 m_colLabelCells
= newLabels
;
2376 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CHANGE_LABELS
, this);
2377 GetEventHandler()->ProcessEvent(g_evt
);
2384 void wxGenericGrid::SetGridCursor(int row
, int col
)
2386 if (row
>= m_totalRows
|| col
>= m_totalCols
)
2389 if (row
== GetCursorRow() && col
== GetCursorColumn())
2392 wxClientDC
dc(this);
2395 SetGridClippingRegion(& dc
);
2397 if (m_currentRectVisible
)
2398 HighlightCell(& dc
);
2401 m_wCursorColumn
= col
;
2404 GetClientSize(&cw
, &ch
);
2406 SetCurrentRect(row
, col
, cw
, ch
);
2408 if (m_currentRectVisible
)
2409 HighlightCell(& dc
);
2411 dc
.DestroyClippingRegion();
2419 wxGridCell::wxGridCell(wxGenericGrid
*window
)
2421 cellBitmap
= (wxBitmap
*) NULL
;
2423 backgroundBrush
= wxNullBrush
;
2425 textColour
= window
->GetCellTextColour();
2427 textColour
.Set(0,0,0);
2429 backgroundColour
= window
->GetCellBackgroundColour();
2431 backgroundColour
.Set(255,255,255);
2434 font
= window
->GetCellTextFont();
2436 font
= * wxTheFontList
->FindOrCreateFont(12, wxSWISS
, wxNORMAL
, wxNORMAL
);
2438 SetBackgroundColour(backgroundColour
);
2441 alignment
= window
->GetCellAlignment();
2446 wxGridCell::~wxGridCell(void)
2450 void wxGridCell::SetBackgroundColour(const wxColour
& colour
)
2452 backgroundColour
= colour
;
2453 backgroundBrush
= * wxTheBrushList
->FindOrCreateBrush(backgroundColour
, wxSOLID
);
2456 void wxGenericGrid::OnText(wxCommandEvent
& WXUNUSED(ev
) )
2458 wxGenericGrid
*grid
= this;
2459 wxGridCell
*cell
= grid
->GetCell(grid
->GetCursorRow(), grid
->GetCursorColumn());
2460 if (cell
&& grid
->CurrentCellVisible())
2462 cell
->SetTextValue(grid
->GetTextItem()->GetValue());
2463 wxClientDC
dc(grid
);
2466 grid
->SetGridClippingRegion(& dc
);
2467 grid
->DrawCellBackground(& dc
, &grid
->GetCurrentRect(), grid
->GetCursorRow(), grid
->GetCursorColumn());
2468 grid
->DrawCellValue(& dc
, &grid
->GetCurrentRect(), grid
->GetCursorRow(), grid
->GetCursorColumn());
2469 grid
->HighlightCell(& dc
);
2470 dc
.DestroyClippingRegion();
2473 //grid->OnCellChange(grid->GetCursorRow(), grid->GetCursorColumn());
2474 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CELL_CHANGE
, grid
,
2475 grid
->GetCursorRow(), grid
->GetCursorColumn());
2476 GetEventHandler()->ProcessEvent(g_evt
);
2478 // grid->DrawCellText();
2482 void wxGenericGrid::OnGridScroll(wxScrollEvent
& ev
)
2484 static bool inScroll
= FALSE
;
2490 wxGenericGrid
*win
= this;
2492 bool change
= FALSE
;
2494 if (ev
.GetEventObject() == win
->GetHorizScrollBar())
2496 change
= (ev
.GetPosition() != m_scrollPosX
);
2497 win
->SetScrollPosX(ev
.GetPosition());
2501 change
= (ev
.GetPosition() != m_scrollPosY
);
2502 win
->SetScrollPosY(ev
.GetPosition());
2505 win
->UpdateDimensions();
2507 win
->SetCurrentRect(win
->GetCursorRow(), win
->GetCursorColumn());
2509 // Because rows and columns can be arbitrary sizes,
2510 // the scrollbars will need to be adjusted to reflect the
2514 if (change
) win
->Refresh(FALSE
);
2520 //----------------------------------------------------------------------
2521 // Default wxGridEvent handlers
2522 // (just redirect to the pre-existing virtual methods)
2524 void wxGenericGrid::_OnSelectCell(wxGridEvent
& ev
)
2526 OnSelectCell(ev
.m_row
, ev
.m_col
);
2529 void wxGenericGrid::_OnCreateCell(wxGridEvent
& ev
)
2531 ev
.m_cell
= OnCreateCell();
2534 void wxGenericGrid::_OnChangeLabels(wxGridEvent
& WXUNUSED(ev
))
2539 void wxGenericGrid::_OnChangeSelectionLabel(wxGridEvent
& WXUNUSED(ev
))
2541 OnChangeSelectionLabel();
2544 void wxGenericGrid::_OnCellChange(wxGridEvent
& ev
)
2546 OnCellChange(ev
.m_row
, ev
.m_col
);
2549 void wxGenericGrid::_OnCellLeftClick(wxGridEvent
& ev
)
2551 OnCellLeftClick(ev
.m_row
, ev
.m_col
, ev
.m_x
, ev
.m_y
, ev
.m_control
, ev
.m_shift
);
2554 void wxGenericGrid::_OnCellRightClick(wxGridEvent
& ev
)
2556 OnCellRightClick(ev
.m_row
, ev
.m_col
, ev
.m_x
, ev
.m_y
, ev
.m_control
, ev
.m_shift
);
2559 void wxGenericGrid::_OnLabelLeftClick(wxGridEvent
& ev
)
2561 OnLabelLeftClick(ev
.m_row
, ev
.m_col
, ev
.m_x
, ev
.m_y
, ev
.m_control
, ev
.m_shift
);
2564 void wxGenericGrid::_OnLabelRightClick(wxGridEvent
& ev
)
2566 OnLabelRightClick(ev
.m_row
, ev
.m_col
, ev
.m_x
, ev
.m_y
, ev
.m_control
, ev
.m_shift
);