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"
30 #include "wx/string.h"
31 #include "wx/generic/gridg.h"
32 #include "wx/settings.h"
34 // Set to zero to use no double-buffering
36 #define wxUSE_DOUBLE_BUFFERING 1
38 #define wxUSE_DOUBLE_BUFFERING 0
41 #define wxGRID_DRAG_NONE 0
42 #define wxGRID_DRAG_LEFT_RIGHT 1
43 #define wxGRID_DRAG_UP_DOWN 2
45 IMPLEMENT_DYNAMIC_CLASS(wxGenericGrid
, wxPanel
)
46 IMPLEMENT_DYNAMIC_CLASS(wxGridEvent
, wxEvent
)
48 BEGIN_EVENT_TABLE(wxGenericGrid
, wxPanel
)
49 EVT_SIZE(wxGenericGrid::OnSize
)
50 EVT_PAINT(wxGenericGrid::OnPaint
)
51 EVT_ERASE_BACKGROUND(wxGenericGrid::OnEraseBackground
)
52 EVT_MOUSE_EVENTS(wxGenericGrid::OnMouseEvent
)
53 EVT_TEXT(wxGRID_TEXT_CTRL
, wxGenericGrid::OnText
)
54 EVT_COMMAND_SCROLL(wxGRID_HSCROLL
, wxGenericGrid::OnGridScroll
)
55 EVT_COMMAND_SCROLL(wxGRID_VSCROLL
, wxGenericGrid::OnGridScroll
)
57 // default wxGridEvent handlers
58 EVT_GRID_SELECT_CELL(wxGenericGrid::_OnSelectCell
)
59 EVT_GRID_CREATE_CELL(wxGenericGrid::_OnCreateCell
)
60 EVT_GRID_CHANGE_LABELS(wxGenericGrid::_OnChangeLabels
)
61 EVT_GRID_CHANGE_SEL_LABEL(wxGenericGrid::_OnChangeSelectionLabel
)
62 EVT_GRID_CELL_CHANGE(wxGenericGrid::_OnCellChange
)
63 EVT_GRID_CELL_LCLICK(wxGenericGrid::_OnCellLeftClick
)
64 EVT_GRID_CELL_RCLICK(wxGenericGrid::_OnCellRightClick
)
65 EVT_GRID_LABEL_LCLICK(wxGenericGrid::_OnLabelLeftClick
)
66 EVT_GRID_LABEL_RCLICK(wxGenericGrid::_OnLabelRightClick
)
73 wxGenericGrid::wxGenericGrid(void)
76 m_hScrollBar
= (wxScrollBar
*) NULL
;
77 m_vScrollBar
= (wxScrollBar
*) NULL
;
78 m_cellTextColour
= *wxBLACK
;
79 m_cellBackgroundColour
= *wxWHITE
;
80 m_labelTextColour
= *wxBLACK
;
81 // m_labelBackgroundColour = *wxLIGHT_GREY;
82 m_labelBackgroundColour
= wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE
);
83 m_labelBackgroundBrush
= wxNullBrush
;
84 m_labelTextFont
= wxNullFont
;
85 m_cellTextFont
= wxNullFont
;
86 m_textItem
= (wxTextCtrl
*) NULL
;
87 m_currentRectVisible
= FALSE
;
89 #if defined(__WIN95__)
90 m_scrollWidth
= wxSystemSettings::GetSystemMetric(wxSYS_VSCROLL_X
);
91 #elif defined(__WXGTK__)
92 m_scrollWidth
= wxSystemSettings::GetSystemMetric(wxSYS_VSCROLL_X
);
96 m_dragStatus
= wxGRID_DRAG_NONE
;
98 m_dragStartPosition
= 0;
99 m_dragLastPosition
= 0;
100 m_divisionPen
= wxNullPen
;
101 m_leftOfSheet
= wxGRID_DEFAULT_SHEET_LEFT
;
102 m_topOfSheet
= wxGRID_DEFAULT_SHEET_TOP
;
103 m_cellHeight
= wxGRID_DEFAULT_CELL_HEIGHT
;
104 m_totalGridWidth
= 0;
105 m_totalGridHeight
= 0;
106 m_colWidths
= (short *) NULL
;
107 m_rowHeights
= (short *) NULL
;
108 m_verticalLabelWidth
= wxGRID_DEFAULT_VERTICAL_LABEL_WIDTH
;
109 m_horizontalLabelHeight
= wxGRID_DEFAULT_HORIZONAL_LABEL_HEIGHT
;
110 m_verticalLabelAlignment
= wxCENTRE
;
111 m_horizontalLabelAlignment
= wxCENTRE
;
112 m_editControlPosition
.x
= wxGRID_DEFAULT_EDIT_X
;
113 m_editControlPosition
.y
= wxGRID_DEFAULT_EDIT_Y
;
114 m_editControlPosition
.width
= wxGRID_DEFAULT_EDIT_WIDTH
;
115 m_editControlPosition
.height
= wxGRID_DEFAULT_EDIT_HEIGHT
;
120 m_editCreated
= FALSE
;
123 m_gridCells
= (wxGridCell
***) NULL
;
124 m_rowLabelCells
= (wxGridCell
**) NULL
;
125 m_colLabelCells
= (wxGridCell
**) NULL
;
126 m_textItem
= (wxTextCtrl
*) NULL
;
129 bool wxGenericGrid::Create(wxWindow
*parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
,
130 long style
, const wxString
& name
)
133 m_editingPanel
= (wxPanel
*) NULL
;
134 m_hScrollBar
= (wxScrollBar
*) NULL
;
135 m_vScrollBar
= (wxScrollBar
*) NULL
;
136 m_cellTextColour
= *wxBLACK
;
137 m_cellBackgroundColour
= *wxWHITE
;
138 m_labelTextColour
= *wxBLACK
;
139 // m_labelBackgroundColour = *wxLIGHT_GREY;
140 m_labelBackgroundColour
= wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE
);
141 m_labelBackgroundBrush
= wxNullBrush
;
142 m_labelTextFont
= * wxTheFontList
->FindOrCreateFont(10, wxSWISS
, wxNORMAL
, wxBOLD
);
143 m_cellTextFont
= * wxTheFontList
->FindOrCreateFont(10, wxSWISS
, wxNORMAL
, wxNORMAL
);
144 m_textItem
= (wxTextCtrl
*) NULL
;
145 m_currentRectVisible
= FALSE
;
147 #if defined(__WIN95__)
148 m_scrollWidth
= wxSystemSettings::GetSystemMetric(wxSYS_VSCROLL_X
);
149 #elif defined(__WXGTK__)
150 m_scrollWidth
= wxSystemSettings::GetSystemMetric(wxSYS_VSCROLL_X
);
154 m_dragStatus
= wxGRID_DRAG_NONE
;
156 m_dragStartPosition
= 0;
157 m_dragLastPosition
= 0;
158 m_divisionPen
= * wxThePenList
->FindOrCreatePen("LIGHT GREY", 1, wxSOLID
);
159 m_doubleBufferingBitmap
= (wxBitmap
*) NULL
;
161 if (!m_horizontalSashCursor
.Ok())
163 m_horizontalSashCursor
= wxCursor(wxCURSOR_SIZEWE
);
164 m_verticalSashCursor
= wxCursor(wxCURSOR_SIZENS
);
167 SetLabelBackgroundColour(m_labelBackgroundColour
);
169 m_leftOfSheet
= wxGRID_DEFAULT_SHEET_LEFT
;
170 m_topOfSheet
= wxGRID_DEFAULT_SHEET_TOP
;
171 m_cellHeight
= wxGRID_DEFAULT_CELL_HEIGHT
;
172 m_totalGridWidth
= 0;
173 m_totalGridHeight
= 0;
174 m_colWidths
= (short *) NULL
;
175 m_rowHeights
= (short *) NULL
;
177 m_verticalLabelWidth
= wxGRID_DEFAULT_VERTICAL_LABEL_WIDTH
;
178 m_horizontalLabelHeight
= wxGRID_DEFAULT_HORIZONAL_LABEL_HEIGHT
;
179 m_verticalLabelAlignment
= wxCENTRE
;
180 m_horizontalLabelAlignment
= wxCENTRE
;
181 m_editControlPosition
.x
= wxGRID_DEFAULT_EDIT_X
;
182 m_editControlPosition
.y
= wxGRID_DEFAULT_EDIT_Y
;
183 m_editControlPosition
.width
= wxGRID_DEFAULT_EDIT_WIDTH
;
184 m_editControlPosition
.height
= wxGRID_DEFAULT_EDIT_HEIGHT
;
192 /* Store the rect. coordinates for the current cell */
193 SetCurrentRect(m_wCursorRow
, m_wCursorColumn
);
195 m_editCreated
= FALSE
;
199 m_gridCells
= (wxGridCell
***) NULL
;
200 m_rowLabelCells
= (wxGridCell
**) NULL
;
201 m_colLabelCells
= (wxGridCell
**) NULL
;
202 m_textItem
= (wxTextCtrl
*) NULL
;
204 wxPanel::Create(parent
, id
, pos
, size
, style
, name
);
206 m_editingPanel
= new wxPanel(this);
208 m_textItem
= new wxTextCtrl(m_editingPanel
, wxGRID_TEXT_CTRL
, "",
209 wxPoint(m_editControlPosition
.x
, m_editControlPosition
.y
), wxSize(m_editControlPosition
.width
, -1),
211 m_textItem
->Show(TRUE
);
212 m_textItem
->SetFocus();
213 int controlW
, controlH
;
215 m_textItem
->GetSize(&controlW
, &controlH
);
216 m_editControlPosition
.height
= controlH
;
218 m_topOfSheet
= m_editControlPosition
.y
+ controlH
+ 2;
220 m_editCreated
= TRUE
;
222 m_hScrollBar
= new wxScrollBar(this, wxGRID_HSCROLL
, wxPoint(0, 0), wxSize(20, 100), wxHORIZONTAL
);
223 m_vScrollBar
= new wxScrollBar(this, wxGRID_VSCROLL
, wxPoint(0, 0), wxSize(100, 20), wxVERTICAL
);
225 // SetSize(pos.x, pos.y, size.x, size.y);
230 wxGenericGrid::~wxGenericGrid(void)
235 void wxGenericGrid::ClearGrid(void)
240 for (i
= 0; i
< m_totalRows
; i
++)
242 for (j
= 0; j
< m_totalCols
; j
++)
243 if (m_gridCells
[i
][j
])
244 delete m_gridCells
[i
][j
];
245 delete[] m_gridCells
[i
];
247 delete[] m_gridCells
;
248 m_gridCells
= (wxGridCell
***) NULL
;
251 delete[] m_colWidths
;
252 m_colWidths
= (short *) NULL
;
254 delete[] m_rowHeights
;
255 m_rowHeights
= (short *) NULL
;
259 for (i
= 0; i
< m_totalRows
; i
++)
260 delete m_rowLabelCells
[i
];
261 delete[] m_rowLabelCells
;
262 m_rowLabelCells
= (wxGridCell
**) NULL
;
266 for (i
= 0; i
< m_totalCols
; i
++)
267 delete m_colLabelCells
[i
];
268 delete[] m_colLabelCells
;
269 m_colLabelCells
= (wxGridCell
**) NULL
;
271 if (m_doubleBufferingBitmap
)
273 delete m_doubleBufferingBitmap
;
274 m_doubleBufferingBitmap
= (wxBitmap
*) NULL
;
278 bool wxGenericGrid::CreateGrid(int nRows
, int nCols
, wxString
**cellValues
, short *widths
,
279 short defaultWidth
, short defaultHeight
)
285 m_colWidths
= new short[nCols
];
286 m_rowHeights
= new short[nRows
];
287 for (i
= 0; i
< nCols
; i
++)
289 m_colWidths
[i
] = widths
[i
];
291 m_colWidths
[i
] = defaultWidth
;
292 for (i
= 0; i
< nRows
; i
++)
293 m_rowHeights
[i
] = defaultHeight
;
295 m_gridCells
= new wxGridCell
**[nRows
];
297 for (i
= 0; i
< nRows
; i
++)
298 m_gridCells
[i
] = new wxGridCell
*[nCols
];
300 for (i
= 0; i
< nRows
; i
++)
301 for (j
= 0; j
< nCols
; j
++)
304 //m_gridCells[i][j] = OnCreateCell();
305 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CREATE_CELL
, this, i
, j
);
306 GetEventHandler()->ProcessEvent(g_evt
);
307 m_gridCells
[i
][j
] = g_evt
.m_cell
;
308 m_gridCells
[i
][j
]->SetTextValue(cellValues
[i
][j
]);
311 m_gridCells
[i
][j
] = (wxGridCell
*) NULL
;
313 m_rowLabelCells
= new wxGridCell
*[nRows
];
314 for (i
= 0; i
< nRows
; i
++)
315 m_rowLabelCells
[i
] = new wxGridCell(this);
316 m_colLabelCells
= new wxGridCell
*[nCols
];
317 for (i
= 0; i
< nCols
; i
++)
318 m_colLabelCells
[i
] = new wxGridCell(this);
320 m_wCursorRow
= m_wCursorColumn
= 0;
321 SetCurrentRect(0, 0);
323 // Need to determine various dimensions
327 int objectSizeX
= m_totalCols
;
329 int viewLengthX
= m_totalCols
;
332 m_hScrollBar->SetViewLength(viewLengthX);
333 m_hScrollBar->SetObjectLength(objectSizeX);
334 m_hScrollBar->SetPageSize(pageSizeX);
336 m_hScrollBar
->SetScrollbar(m_hScrollBar
->GetThumbPosition(), pageSizeX
, objectSizeX
, viewLengthX
);
338 int objectSizeY
= m_totalRows
;
340 int viewLengthY
= m_totalRows
;
343 m_vScrollBar->SetViewLength(viewLengthY);
344 m_vScrollBar->SetObjectLength(objectSizeY);
345 m_vScrollBar->SetPageSize(pageSizeY);
348 m_vScrollBar
->SetScrollbar(m_vScrollBar
->GetThumbPosition(), pageSizeY
, objectSizeY
, viewLengthY
);
353 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CHANGE_LABELS
, this);
354 GetEventHandler()->ProcessEvent(g_evt
);
356 //OnChangeSelectionLabel();
357 wxGridEvent
g_evt2(GetId(), wxEVT_GRID_CHANGE_SEL_LABEL
, this);
358 GetEventHandler()->ProcessEvent(g_evt2
);
363 // Need to determine various dimensions
364 void wxGenericGrid::UpdateDimensions(void)
366 int canvasWidth
, canvasHeight
;
367 GetSize(&canvasWidth
, &canvasHeight
);
369 if (m_editCreated
&& m_editable
)
371 int controlW
, controlH
;
372 GetTextItem()->GetSize(&controlW
, &controlH
);
373 m_topOfSheet
= m_editControlPosition
.y
+ controlH
+ 2;
377 m_rightOfSheet
= m_leftOfSheet
+ m_verticalLabelWidth
;
379 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
381 if (m_rightOfSheet
> canvasWidth
)
384 m_rightOfSheet
+= m_colWidths
[i
];
386 m_bottomOfSheet
= m_topOfSheet
+ m_horizontalLabelHeight
;
387 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
389 if (m_bottomOfSheet
> canvasHeight
)
392 m_bottomOfSheet
+= m_rowHeights
[i
];
395 m_totalGridWidth
= m_leftOfSheet
+ m_verticalLabelWidth
;
396 for (i
= 0; i
< m_totalCols
; i
++)
398 m_totalGridWidth
+= m_colWidths
[i
];
400 m_totalGridHeight
= m_topOfSheet
+ m_horizontalLabelHeight
;
401 for (i
= 0; i
< m_totalRows
; i
++)
403 m_totalGridHeight
+= m_rowHeights
[i
];
407 wxGridCell
*wxGenericGrid::GetCell(int row
, int col
) const
410 return (wxGridCell
*) NULL
;
412 if ((row
>= m_totalRows
) || (col
>= m_totalCols
))
413 return (wxGridCell
*) NULL
;
415 wxGridCell
*cell
= m_gridCells
[row
][col
];
418 // m_gridCells[row][col] = OnCreateCell();
419 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CREATE_CELL
, (wxGenericGrid
*) this, row
, col
);
420 GetEventHandler()->ProcessEvent(g_evt
);
421 m_gridCells
[row
][col
] = g_evt
.m_cell
;
422 return m_gridCells
[row
][col
];
428 void wxGenericGrid::SetGridClippingRegion(wxDC
*dc
)
430 int m_scrollWidthHoriz
= 0;
431 int m_scrollWidthVert
= 0;
433 GetClientSize(&cw
, &ch
);
435 if (m_hScrollBar
&& m_hScrollBar
->IsShown())
436 m_scrollWidthHoriz
= m_scrollWidth
;
437 if (m_vScrollBar
&& m_vScrollBar
->IsShown())
438 m_scrollWidthVert
= m_scrollWidth
;
440 // Don't paint over the scrollbars
441 dc
->SetClippingRegion(m_leftOfSheet
, m_topOfSheet
,
442 cw
- m_scrollWidthVert
- m_leftOfSheet
, ch
- m_scrollWidthHoriz
- m_topOfSheet
);
445 void wxGenericGrid::OnPaint(wxPaintEvent
& WXUNUSED(event
))
448 GetClientSize(&w
, &h
);
450 bool useDoubleBuffering
= (bool) wxUSE_DOUBLE_BUFFERING
;
451 if (useDoubleBuffering
)
453 // Reuse the old bitmap if possible
455 if (!m_doubleBufferingBitmap
||
456 (m_doubleBufferingBitmap
->GetWidth() < w
|| m_doubleBufferingBitmap
->GetHeight() < h
))
458 if (m_doubleBufferingBitmap
)
459 delete m_doubleBufferingBitmap
;
460 m_doubleBufferingBitmap
= new wxBitmap(w
, h
);
462 if (!m_doubleBufferingBitmap
|| !m_doubleBufferingBitmap
->Ok())
464 // If we couldn't create a new bitmap, perhaps because resources were low,
465 // then don't complain, just don't double-buffer
466 if (m_doubleBufferingBitmap
)
467 delete m_doubleBufferingBitmap
;
468 m_doubleBufferingBitmap
= (wxBitmap
*) NULL
;
469 useDoubleBuffering
= FALSE
;
473 if (useDoubleBuffering
)
475 wxPaintDC
paintDC(this);
476 wxMemoryDC
dc(& paintDC
);
477 dc
.SelectObject(* m_doubleBufferingBitmap
);
481 int vertScrollBarWidth
= m_scrollWidth
;
482 int horizScrollBarHeight
= m_scrollWidth
;
483 if (m_vScrollBar
&& !m_vScrollBar
->IsShown())
484 vertScrollBarWidth
= 0;
485 if (m_hScrollBar
&& !m_hScrollBar
->IsShown())
486 horizScrollBarHeight
= 0;
488 paintDC
.Blit(m_leftOfSheet
, m_topOfSheet
, w
- vertScrollBarWidth
- m_leftOfSheet
, h
- horizScrollBarHeight
- m_topOfSheet
,
489 &dc
, m_leftOfSheet
, m_topOfSheet
, wxCOPY
);
491 dc
.SelectObject(wxNullBitmap
);
500 void wxGenericGrid::PaintGrid(wxDC
& dc
)
503 dc
.SetOptimization(FALSE
);
505 SetGridClippingRegion(& dc
);
507 DrawLabelAreas(& dc
);
509 DrawEditableArea(& dc
);
510 DrawColumnLabels(& dc
);
515 /* Hilight present cell */
516 SetCurrentRect(m_wCursorRow
, m_wCursorColumn
);
517 if (m_currentRectVisible
)
520 dc
.DestroyClippingRegion();
521 dc
.SetOptimization(TRUE
);
525 // Erase (some of) the background.
526 // Currently, a Windows-only optimisation.
527 void wxGenericGrid::OnEraseBackground(wxEraseEvent
& WXUNUSED(event
) )
531 dc
.SetOptimization(FALSE
);
534 GetClientSize(& w
, & h
);
535 dc
.SetBrush(*wxLIGHT_GREY_BRUSH
);
536 dc
.SetPen(*wxLIGHT_GREY_PEN
);
538 if (m_hScrollBar
&& m_hScrollBar
->IsShown() && m_vScrollBar
&& m_vScrollBar
->IsShown())
540 dc
.DrawRectangle(w
- m_scrollWidth
, h
- m_scrollWidth
, m_scrollWidth
, m_scrollWidth
);
543 dc
.SetOptimization(TRUE
);
548 void wxGenericGrid::DrawLabelAreas(wxDC
*dc
)
551 GetClientSize(&cw
, &ch
);
553 dc
->SetPen(*wxTRANSPARENT_PEN
);
554 // dc->SetBrush(*dc->GetBackground());
556 // Should blank out any area which isn't going to be painted over.
557 // dc->DrawRectangle(m_leftOfSheet, m_bottomOfSheet, cw - m_leftOfSheet, ch - m_bottomOfSheet);
558 // dc->DrawRectangle(m_rightOfSheet, m_topOfSheet, cw - m_rightOfSheet, ch - m_topOfSheet);
560 // Paint the label areas
561 dc
->SetBrush(m_labelBackgroundBrush
);
562 // dc->DrawRectangle(m_leftOfSheet, m_topOfSheet, m_rightOfSheet - m_leftOfSheet + 1, m_horizontalLabelHeight + 1);
563 dc
->DrawRectangle(m_leftOfSheet
, m_topOfSheet
, cw
-m_leftOfSheet
, m_horizontalLabelHeight
+ 1);
564 // dc->DrawRectangle(m_leftOfSheet, m_topOfSheet, m_verticalLabelWidth + 1, m_bottomOfSheet - m_topOfSheet + 1);
565 dc
->DrawRectangle(m_leftOfSheet
, m_topOfSheet
, m_verticalLabelWidth
+ 1, ch
-m_topOfSheet
);
568 void wxGenericGrid::DrawEditableArea(wxDC
*dc
)
571 GetClientSize(&cw
, &ch
);
573 dc
->SetPen(*wxTRANSPARENT_PEN
);
574 dc
->SetBrush(*wxTheBrushList
->FindOrCreateBrush(m_cellBackgroundColour
, wxSOLID
));
575 // dc->DrawRectangle(m_leftOfSheet+m_verticalLabelWidth, m_topOfSheet+m_horizontalLabelHeight,
576 // m_rightOfSheet-(m_leftOfSheet+m_verticalLabelWidth) + 1, m_bottomOfSheet - (m_topOfSheet+m_horizontalLabelHeight) + 1);
577 dc
->DrawRectangle(m_leftOfSheet
+m_verticalLabelWidth
, m_topOfSheet
+m_horizontalLabelHeight
,
578 cw
-(m_leftOfSheet
+m_verticalLabelWidth
), ch
- (m_topOfSheet
+m_horizontalLabelHeight
));
581 void wxGenericGrid::DrawGridLines(wxDC
*dc
)
584 GetClientSize(&cw
, &ch
);
588 if (m_divisionPen
.Ok())
590 dc
->SetPen(m_divisionPen
);
592 int heightCount
= m_topOfSheet
+ m_horizontalLabelHeight
;
594 // Draw horizontal grey lines for cells
595 for (i
= m_scrollPosY
; i
< (m_totalRows
+1); i
++)
597 if (heightCount
> ch
)
601 dc
->DrawLine(m_leftOfSheet
, heightCount
,
604 heightCount
+= m_rowHeights
[i
];
609 if (m_verticalLabelWidth
> 0)
611 dc
->SetPen(*wxBLACK_PEN
);
613 // Draw horizontal black lines for row labels
614 int heightCount
= m_topOfSheet
+ m_horizontalLabelHeight
;
615 for (i
= m_scrollPosY
; i
< (m_totalRows
+1); i
++)
617 if (heightCount
> ch
)
621 dc
->DrawLine(m_leftOfSheet
, heightCount
,
622 m_verticalLabelWidth
, heightCount
);
624 heightCount
+= m_rowHeights
[i
];
627 // Draw a black vertical line for row number cells
628 dc
->DrawLine(m_leftOfSheet
+ m_verticalLabelWidth
, m_topOfSheet
,
629 m_leftOfSheet
+ m_verticalLabelWidth
, ch
);
630 // First vertical line
631 dc
->DrawLine(m_leftOfSheet
, m_topOfSheet
, m_leftOfSheet
, ch
);
633 dc
->SetPen(*wxWHITE_PEN
);
635 // Draw highlights on row labels
636 heightCount
= m_topOfSheet
+ m_horizontalLabelHeight
;
637 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
639 if (heightCount
> ch
)
643 dc
->DrawLine(m_leftOfSheet
+1, heightCount
+1,
644 m_verticalLabelWidth
, heightCount
+1);
645 dc
->DrawLine(m_leftOfSheet
+1, heightCount
+1,
646 m_leftOfSheet
+1, heightCount
+ m_rowHeights
[i
] - 1);
647 heightCount
+= m_rowHeights
[i
];
650 // Last one - down to the floor.
651 dc
->DrawLine(m_leftOfSheet
+1, heightCount
+1,
652 m_verticalLabelWidth
, heightCount
+1);
653 dc
->DrawLine(m_leftOfSheet
+1, heightCount
+1,
654 m_leftOfSheet
+1, ch
);
658 if (m_divisionPen
.Ok())
660 dc
->SetPen(m_divisionPen
);
662 // Draw vertical grey lines for cells
663 int widthCount
= m_leftOfSheet
+ m_verticalLabelWidth
;
664 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
670 // Skip the first one
671 if (i
!= m_scrollPosX
)
673 dc
->DrawLine(widthCount
, m_topOfSheet
+ m_horizontalLabelHeight
,
674 widthCount
, m_bottomOfSheet
);
676 widthCount
+= m_colWidths
[i
];
680 dc
->DrawLine(widthCount
, m_topOfSheet
+ m_horizontalLabelHeight
,
681 widthCount
, m_bottomOfSheet
);
684 dc
->SetPen(*wxBLACK_PEN
);
686 // Draw two black horizontal lines for column number cells
688 m_leftOfSheet
, m_topOfSheet
,
690 dc
->DrawLine(m_leftOfSheet
, m_topOfSheet
+ m_horizontalLabelHeight
,
691 cw
, m_topOfSheet
+ m_horizontalLabelHeight
);
693 if (m_horizontalLabelHeight
> 0)
695 int widthCount
= m_leftOfSheet
+ m_verticalLabelWidth
;
697 // Draw black vertical lines for column number cells
698 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
704 dc
->DrawLine(widthCount
, m_topOfSheet
,
705 widthCount
, m_topOfSheet
+ m_horizontalLabelHeight
);
706 widthCount
+= m_colWidths
[i
];
711 dc
->DrawLine(widthCount
, m_topOfSheet
,
712 widthCount
, m_topOfSheet
+ m_horizontalLabelHeight
);
715 dc
->SetPen(*wxWHITE_PEN
);
716 widthCount
= m_leftOfSheet
+ m_verticalLabelWidth
;
718 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
724 dc
->DrawLine(widthCount
+1, m_topOfSheet
+1,
725 widthCount
+m_colWidths
[i
], m_topOfSheet
+1);
726 dc
->DrawLine(widthCount
+1, m_topOfSheet
+1,
727 widthCount
+1, m_topOfSheet
+m_horizontalLabelHeight
);
728 widthCount
+= m_colWidths
[i
];
731 // Last one - to the right side of the canvas.
732 dc
->DrawLine(widthCount
+1, m_topOfSheet
+1,
734 dc
->DrawLine(widthCount
+1, m_topOfSheet
+1,
735 widthCount
+1, m_topOfSheet
+m_horizontalLabelHeight
);
740 void wxGenericGrid::DrawColumnLabels(wxDC
*dc
)
743 GetClientSize(&cw
, &ch
);
745 if (m_horizontalLabelHeight
== 0)
751 // Draw letters for columns
752 rect
.y
= m_topOfSheet
+ 1;
753 rect
.height
= m_horizontalLabelHeight
- 1;
755 dc
->SetTextBackground(m_labelBackgroundColour
);
756 dc
->SetBackgroundMode(wxTRANSPARENT
);
757 // dc->SetTextForeground(m_labelTextColour);
759 int widthCount
= m_leftOfSheet
+ m_verticalLabelWidth
;
760 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
766 rect
.x
= 1 + widthCount
;
767 rect
.width
= m_colWidths
[i
];
768 DrawColumnLabel(dc
, &rect
, i
);
770 widthCount
+= m_colWidths
[i
];
775 void wxGenericGrid::DrawColumnLabel(wxDC
*dc
, wxRect
*rect
, int col
)
777 wxGridCell
*cell
= GetLabelCell(wxHORIZONTAL
, col
);
786 dc
->SetTextForeground(GetLabelTextColour());
787 dc
->SetFont(GetLabelTextFont());
788 if ( !cell
->GetTextValue().IsNull() )
789 DrawTextRect(dc
, cell
->GetTextValue(), &rect2
, GetLabelAlignment(wxHORIZONTAL
));
793 void wxGenericGrid::DrawRowLabels(wxDC
*dc
)
796 GetClientSize(&cw
, &ch
);
798 if (m_verticalLabelWidth
== 0)
804 // Draw numbers for rows
805 rect
.x
= m_leftOfSheet
;
806 rect
.width
= m_verticalLabelWidth
;
808 int heightCount
= m_topOfSheet
+ m_horizontalLabelHeight
;
810 dc
->SetTextBackground(m_labelBackgroundColour
);
811 dc
->SetBackgroundMode(wxTRANSPARENT
);
813 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
815 if (heightCount
> ch
)
819 rect
.y
= 1 + heightCount
;
820 rect
.height
= m_rowHeights
[i
];
821 DrawRowLabel(dc
, &rect
, i
);
823 heightCount
+= m_rowHeights
[i
];
828 void wxGenericGrid::DrawRowLabel(wxDC
*dc
, wxRect
*rect
, int row
)
830 wxGridCell
*cell
= GetLabelCell(wxVERTICAL
, row
);
839 dc
->SetTextForeground(GetLabelTextColour());
840 dc
->SetFont(GetLabelTextFont());
841 if ( !cell
->GetTextValue().IsNull() )
842 DrawTextRect(dc
, cell
->GetTextValue(), &rect2
, GetLabelAlignment(wxVERTICAL
));
846 void wxGenericGrid::DrawCells(wxDC
*dc
)
849 GetClientSize(&cw
, &ch
);
853 // Draw value corresponding to each cell
854 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
856 for (j
= m_scrollPosX
; j
< m_totalCols
; j
++)
858 SetCurrentRect(i
, j
, cw
, ch
);
859 if (m_currentRectVisible
)
861 DrawCellBackground(dc
, &m_currentRect
, i
, j
);
862 DrawCellValue(dc
, &m_currentRect
, i
, j
);
864 if (m_currentRect
.x
> cw
)
867 if (m_currentRect
.y
> ch
)
870 dc
->SetBackgroundMode(wxSOLID
);
871 dc
->SetPen(*wxBLACK_PEN
);
874 void wxGenericGrid::DrawCellBackground(wxDC
*dc
, wxRect
*rect
, int row
, int col
)
876 wxGridCell
*cell
= GetCell(row
, col
);
879 dc
->SetBrush(cell
->GetBackgroundBrush());
880 dc
->SetPen(*wxTRANSPARENT_PEN
);
882 #if 0 // In wxWin 2.0 the dc code is exact. RR.
884 dc
->DrawRectangle(rect
->x
+1, rect
->y
+1, rect
->width
-1, rect
->height
-1);
886 dc
->DrawRectangle(rect
->x
+1, rect
->y
+1, rect
->width
, rect
->height
);
890 dc
->DrawRectangle(rect
->x
+1, rect
->y
+1, rect
->width
-1, rect
->height
-1);
892 dc
->SetPen(*wxBLACK_PEN
);
896 void wxGenericGrid::DrawCellValue(wxDC
*dc
, wxRect
*rect
, int row
, int col
)
898 wxGridCell
*cell
= GetCell(row
, col
);
901 wxBitmap
*bitmap
= cell
->GetCellBitmap();
911 DrawBitmapRect(dc
, bitmap
, &rect2
, cell
->GetAlignment());
915 dc
->SetBackgroundMode(wxTRANSPARENT
);
916 dc
->SetTextForeground(cell
->GetTextColour());
917 dc
->SetFont(cell
->GetFont());
919 if ( !cell
->GetTextValue().IsNull() )
920 DrawTextRect(dc
, cell
->GetTextValue(), &rect2
, cell
->GetAlignment());
925 void wxGenericGrid::AdjustScrollbars(void)
928 GetClientSize(&cw
, &ch
);
930 // We find the view size by seeing how many rows/cols fit on
932 // BUT... this means that the scrollbar should be adjusted every time
933 // it's scrolled, as well as when sized, because with variable size rows/cols,
934 // the number of rows/col visible on the view differs according to what bit
935 // you're looking at. The object length is always the same, but the
936 // view length differs.
938 // Since this may not be known until the end of this function, we should probably call AdjustScrollbars
940 int vertScrollBarWidth
= m_scrollWidth
;
941 int horizScrollBarHeight
= m_scrollWidth
;
942 if (m_vScrollBar
&& !m_vScrollBar
->IsShown())
943 vertScrollBarWidth
= 0;
944 if (m_hScrollBar
&& !m_hScrollBar
->IsShown())
945 horizScrollBarHeight
= 0;
947 int noHorizSteps
= 0;
950 if (m_totalGridWidth
+ vertScrollBarWidth
<= cw
)
959 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
961 widthCount
+= m_colWidths
[i
];
962 // A partial bit doesn't count, we still have to scroll to see the
964 if (widthCount
+ m_leftOfSheet
+ m_verticalLabelWidth
> (cw
-vertScrollBarWidth
))
973 if (m_totalGridHeight
+ horizScrollBarHeight
<= ch
)
982 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
984 heightCount
+= m_rowHeights
[i
];
985 // A partial bit doesn't count, we still have to scroll to see the
987 if (heightCount
+ m_topOfSheet
+ m_horizontalLabelHeight
> (ch
-horizScrollBarHeight
))
996 if (m_totalGridWidth
+ vertScrollBarWidth
<= cw
)
999 m_hScrollBar
->Show(FALSE
);
1005 m_hScrollBar
->Show(TRUE
);
1008 if (m_totalGridHeight
+ horizScrollBarHeight
<= ch
)
1011 m_vScrollBar
->Show(FALSE
);
1017 m_vScrollBar
->Show(TRUE
);
1020 UpdateDimensions(); // Necessary in case m_scrollPosX/Y changed
1022 vertScrollBarWidth
= m_scrollWidth
;
1023 horizScrollBarHeight
= m_scrollWidth
;
1024 if (m_vScrollBar
&& !m_vScrollBar
->IsShown())
1025 vertScrollBarWidth
= 0;
1026 if (m_hScrollBar
&& !m_hScrollBar
->IsShown())
1027 horizScrollBarHeight
= 0;
1029 if (m_hScrollBar
&& m_hScrollBar
->IsShown())
1031 int nCols
= GetCols();
1032 m_hScrollBar
->SetScrollbar(m_hScrollBar
->GetThumbPosition(), wxMax(noHorizSteps
, 1), (noHorizSteps
== 0) ? 1 : nCols
, wxMax(noHorizSteps
, 1));
1035 m_hScrollBar->SetSize(m_leftOfSheet, ch - m_scrollWidth -2, // why -2 ? Robert.
1036 cw - vertScrollBarWidth - m_leftOfSheet, m_scrollWidth);
1038 m_hScrollBar
->SetSize(m_leftOfSheet
, ch
- m_scrollWidth
,
1039 cw
- vertScrollBarWidth
- m_leftOfSheet
, m_scrollWidth
);
1043 if (m_vScrollBar
&& m_vScrollBar
->IsShown())
1045 int nRows
= GetRows();
1047 m_vScrollBar
->SetScrollbar(m_vScrollBar
->GetThumbPosition(), wxMax(noVertSteps
, 1), (noVertSteps
== 0) ? 1 : nRows
, wxMax(noVertSteps
, 1));
1048 m_vScrollBar
->SetSize(cw
- m_scrollWidth
, m_topOfSheet
,
1049 m_scrollWidth
, ch
- m_topOfSheet
- horizScrollBarHeight
);
1053 void wxGenericGrid::OnSize(wxSizeEvent
& WXUNUSED(event
) )
1055 if (!m_vScrollBar
|| !m_hScrollBar
)
1061 GetClientSize(&cw
, &ch
);
1063 if (m_editCreated
&& m_editingPanel
&& GetTextItem() && GetTextItem()->IsShown())
1065 m_editingPanel
->SetSize(0, 0, cw
, m_editControlPosition
.height
+ m_editControlPosition
.y
+ 2);
1066 GetTextItem()->SetSize(m_editControlPosition
.x
, m_editControlPosition
.y
,
1067 cw
- 2*m_editControlPosition
.x
, m_editControlPosition
.height
);
1071 bool wxGenericGrid::CellHitTest(int x
, int y
, int *row
, int *col
)
1073 // Find the selected cell and call OnSelectCell
1074 if (x
>= (m_leftOfSheet
+ m_verticalLabelWidth
) && y
>= (m_topOfSheet
+ m_horizontalLabelHeight
) &&
1075 x
<= m_rightOfSheet
&& y
<= m_bottomOfSheet
)
1077 // Calculate the cell number from x and y
1078 x
-= (m_verticalLabelWidth
+ m_leftOfSheet
);
1079 y
-= (m_topOfSheet
+ m_horizontalLabelHeight
);
1083 // Now we need to do a hit test for which row we're on
1084 int currentHeight
= 0;
1085 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
1087 if (y
>= currentHeight
&& y
<= (currentHeight
+ m_rowHeights
[i
]))
1092 currentHeight
+= m_rowHeights
[i
];
1095 // Now we need to do a hit test for which column we're on
1096 int currentWidth
= 0;
1097 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
1099 if (x
>= currentWidth
&& x
<= (currentWidth
+ m_colWidths
[i
]))
1104 currentWidth
+= m_colWidths
[i
];
1111 bool wxGenericGrid::LabelSashHitTest(int x
, int y
, int *orientation
, int *rowOrCol
, int *startPos
)
1116 if (x
>= (m_leftOfSheet
+ m_verticalLabelWidth
) && y
>= m_topOfSheet
&&
1117 x
<= m_rightOfSheet
&& y
<= (m_topOfSheet
+ m_horizontalLabelHeight
))
1119 // We may be on a column label sash.
1120 int currentWidth
= m_leftOfSheet
+ m_verticalLabelWidth
;
1121 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
1123 if (x
>= (currentWidth
+ m_colWidths
[i
] - tolerance
) && x
<= (currentWidth
+ m_colWidths
[i
] + tolerance
))
1125 *orientation
= wxHORIZONTAL
;
1127 *startPos
= currentWidth
;
1130 currentWidth
+= m_colWidths
[i
];
1134 else if (x
>= m_leftOfSheet
&& y
>= (m_topOfSheet
+ m_horizontalLabelHeight
) &&
1135 x
<= (m_leftOfSheet
+ m_verticalLabelWidth
) && y
<= m_bottomOfSheet
)
1137 // We may be on a row label sash.
1138 int currentHeight
= m_topOfSheet
+ m_horizontalLabelHeight
;
1139 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
1141 if (y
>= (currentHeight
+ m_rowHeights
[i
] - tolerance
) && y
<= (currentHeight
+ m_rowHeights
[i
] + tolerance
))
1143 *orientation
= wxVERTICAL
;
1145 *startPos
= currentHeight
;
1148 currentHeight
+= m_rowHeights
[i
];
1155 bool wxGenericGrid::LabelHitTest(int x
, int y
, int *row
, int *col
)
1157 // Find the selected label
1158 if (x
>= m_leftOfSheet
&& y
>= m_topOfSheet
&&
1159 x
<= m_rightOfSheet
&& y
<= m_bottomOfSheet
)
1161 // Calculate the cell number from x and y
1167 // Now we need to do a hit test for which row we're on
1168 int currentHeight
= m_horizontalLabelHeight
;
1169 for (i
= m_scrollPosY
; i
< m_totalRows
; i
++)
1171 if (y
>= currentHeight
&& y
<= (currentHeight
+ m_rowHeights
[i
]))
1176 currentHeight
+= m_rowHeights
[i
];
1178 if (y
>= 0 && y
<= m_horizontalLabelHeight
)
1183 // Now we need to do a hit test for which column we're on
1184 int currentWidth
= m_verticalLabelWidth
;
1185 for (i
= m_scrollPosX
; i
< m_totalCols
; i
++)
1187 if (x
>= currentWidth
&& x
<= (currentWidth
+ m_colWidths
[i
]))
1192 currentWidth
+= m_colWidths
[i
];
1194 if (x
>= 0 && x
<= m_verticalLabelWidth
)
1199 if ((*col
== -1) || (*row
== -1))
1207 void wxGenericGrid::OnMouseEvent(wxMouseEvent
& ev
)
1211 wxClientDC
dc(this);
1215 if (CellHitTest((int)ev
.GetX(), (int)ev
.GetY(), &row
, &col
))
1217 OnSelectCellImplementation(& dc
, row
, col
);
1219 //OnCellLeftClick(row, col, (int)ev.GetX(), (int)ev.GetY(), ev.ControlDown(), ev.ShiftDown());
1220 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CELL_LCLICK
, this,
1221 row
, col
, (int)ev
.GetX(), (int)ev
.GetY(),
1222 ev
.ControlDown(), ev
.ShiftDown());
1223 GetEventHandler()->ProcessEvent(g_evt
);
1226 if (LabelHitTest((int)ev
.GetX(), (int)ev
.GetY(), &row
, &col
))
1228 //OnLabelLeftClick(row, col, (int)ev.GetX(), (int)ev.GetY(), ev.ControlDown(), ev.ShiftDown());
1229 wxGridEvent
g_evt(GetId(), wxEVT_GRID_LABEL_LCLICK
, this,
1230 row
, col
, (int)ev
.GetX(), (int)ev
.GetY(),
1231 ev
.ControlDown(), ev
.ShiftDown());
1232 GetEventHandler()->ProcessEvent(g_evt
);
1237 else if (ev
.Dragging() && ev
.LeftIsDown())
1239 switch (m_dragStatus
)
1241 case wxGRID_DRAG_NONE
:
1244 if (LabelSashHitTest((int)ev
.GetX(), (int)ev
.GetY(), &orientation
, &m_dragRowOrCol
, &m_dragStartPosition
))
1246 if (orientation
== wxHORIZONTAL
)
1248 m_dragStatus
= wxGRID_DRAG_LEFT_RIGHT
;
1249 SetCursor(m_horizontalSashCursor
);
1250 m_dragLastPosition
= (int)ev
.GetX();
1254 m_dragStatus
= wxGRID_DRAG_UP_DOWN
;
1255 SetCursor(m_verticalSashCursor
);
1256 m_dragLastPosition
= (int)ev
.GetY();
1258 wxClientDC
dc(this);
1260 dc
.SetLogicalFunction(wxINVERT
);
1261 if (orientation
== wxHORIZONTAL
)
1262 dc
.DrawLine((int)ev
.GetX(), m_topOfSheet
, (int)ev
.GetX(), m_bottomOfSheet
);
1264 dc
.DrawLine(m_leftOfSheet
, (int)ev
.GetY(), m_rightOfSheet
, (int)ev
.GetY());
1271 case wxGRID_DRAG_LEFT_RIGHT
:
1273 wxClientDC
dc(this);
1275 dc
.SetLogicalFunction(wxINVERT
);
1276 dc
.DrawLine(m_dragLastPosition
, m_topOfSheet
, m_dragLastPosition
, m_bottomOfSheet
);
1278 dc
.DrawLine((int)ev
.GetX(), m_topOfSheet
, (int)ev
.GetX(), m_bottomOfSheet
);
1281 m_dragLastPosition
= (int)ev
.GetX();
1282 SetCursor(m_horizontalSashCursor
);
1285 case wxGRID_DRAG_UP_DOWN
:
1287 wxClientDC
dc(this);
1289 dc
.SetLogicalFunction(wxINVERT
);
1290 dc
.DrawLine(m_leftOfSheet
, m_dragLastPosition
, m_rightOfSheet
, m_dragLastPosition
);
1292 dc
.DrawLine(m_leftOfSheet
, (int)ev
.GetY(), m_rightOfSheet
, (int)ev
.GetY());
1295 m_dragLastPosition
= (int)ev
.GetY();
1296 SetCursor(m_verticalSashCursor
);
1301 else if (ev
.Moving())
1303 int rowOrCol
, orientation
, startPos
;
1304 if (LabelSashHitTest((int)ev
.GetX(), (int)ev
.GetY(), &orientation
, &rowOrCol
, &startPos
))
1306 if (orientation
== wxHORIZONTAL
)
1307 SetCursor(m_horizontalSashCursor
);
1309 SetCursor(m_verticalSashCursor
);
1312 SetCursor(*wxSTANDARD_CURSOR
);
1314 else if (ev
.LeftUp())
1316 switch (m_dragStatus
)
1318 case wxGRID_DRAG_LEFT_RIGHT
:
1320 wxClientDC
dc(this);
1322 dc
.SetLogicalFunction(wxINVERT
);
1323 dc
.DrawLine(m_dragLastPosition
, m_topOfSheet
, m_dragLastPosition
, m_bottomOfSheet
);
1324 dc
.SetLogicalFunction(wxCOPY
);
1328 if (ev
.GetX() > m_dragStartPosition
)
1330 m_colWidths
[m_dragRowOrCol
] = (short)(ev
.GetX() - m_dragStartPosition
);
1335 SetCursor(*wxSTANDARD_CURSOR
);
1337 GetClientSize(&cw
, &ch
);
1342 case wxGRID_DRAG_UP_DOWN
:
1344 wxClientDC
dc(this);
1346 dc
.SetLogicalFunction(wxINVERT
);
1347 dc
.DrawLine(m_leftOfSheet
, m_dragLastPosition
, m_rightOfSheet
, m_dragLastPosition
);
1348 dc
.SetLogicalFunction(wxCOPY
);
1352 if (ev
.GetY() > m_dragStartPosition
)
1354 m_rowHeights
[m_dragRowOrCol
] = (short)(ev
.GetY() - m_dragStartPosition
);
1359 SetCursor(*wxSTANDARD_CURSOR
);
1363 m_dragStatus
= wxGRID_DRAG_NONE
;
1365 else if (ev
.RightDown())
1368 if (CellHitTest((int)ev
.GetX(), (int)ev
.GetY(), &row
, &col
))
1370 //OnCellRightClick(row, col, (int)ev.GetX(), (int)ev.GetY(), ev.ControlDown(), ev.ShiftDown());
1371 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CELL_RCLICK
, this,
1372 row
, col
, (int)ev
.GetX(), (int)ev
.GetY(),
1373 ev
.ControlDown(), ev
.ShiftDown());
1374 GetEventHandler()->ProcessEvent(g_evt
);
1377 if (LabelHitTest((int)ev
.GetX(), (int)ev
.GetY(), &row
, &col
))
1379 //OnLabelRightClick(row, col, (int)ev.GetX(), (int)ev.GetY(), ev.ControlDown(), ev.ShiftDown());
1380 wxGridEvent
g_evt(GetId(), wxEVT_GRID_LABEL_RCLICK
, this,
1381 row
, col
, (int)ev
.GetX(), (int)ev
.GetY(),
1382 ev
.ControlDown(), ev
.ShiftDown());
1383 GetEventHandler()->ProcessEvent(g_evt
);
1388 void wxGenericGrid::OnSelectCellImplementation(wxDC
*dc
, int row
, int col
)
1390 m_wCursorColumn
= col
;
1393 //OnChangeSelectionLabel();
1394 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CHANGE_SEL_LABEL
, this);
1395 GetEventHandler()->ProcessEvent(g_evt
);
1397 SetGridClippingRegion(dc
);
1399 // Remove the highlight from the old cell
1400 if (m_currentRectVisible
)
1403 // Highlight the new cell and copy its content to the edit control
1404 SetCurrentRect(m_wCursorRow
, m_wCursorColumn
);
1405 wxGridCell
*cell
= GetCell(m_wCursorRow
, m_wCursorColumn
);
1408 if ( cell
->GetTextValue().IsNull() )
1409 m_textItem
->SetValue("");
1411 m_textItem
->SetValue(cell
->GetTextValue());
1414 SetGridClippingRegion(dc
);
1416 // 1) Why isn't this needed for Windows??
1417 // Probably because of the SetValue?? JS.
1418 // 2) Arrrrrgh. This isn't needed anywhere,
1419 // of course. One hour of debugging... RR.
1421 // HighlightCell(dc);
1423 dc
->DestroyClippingRegion();
1425 //OnSelectCell(row, col);
1426 wxGridEvent
g_evt2(GetId(), wxEVT_GRID_SELECT_CELL
, this, row
, col
);
1427 GetEventHandler()->ProcessEvent(g_evt2
);
1430 wxGridCell
*wxGenericGrid::OnCreateCell(void)
1432 return new wxGridCell(this);
1435 void wxGenericGrid::OnChangeLabels(void)
1439 for (i
= 0; i
< m_totalRows
; i
++)
1441 sprintf(buf
, "%d", i
+1);
1442 SetLabelValue(wxVERTICAL
, buf
, i
);
1444 // A...Z,AA...ZZ,AAA...ZZZ, etc.
1445 for (i
= 0; i
< m_totalCols
; i
++)
1448 int noTimes
= (i
/26 + 1);
1449 int ch
= (i
% 26) + 65;
1451 for (j
= 0; j
< noTimes
; j
++)
1454 sprintf(buf2
, "%c", (char)ch
);
1457 SetLabelValue(wxHORIZONTAL
, buf
, i
);
1461 void wxGenericGrid::OnChangeSelectionLabel(void)
1466 wxString
rowLabel(GetLabelValue(wxVERTICAL
, GetCursorRow()));
1467 wxString
colLabel(GetLabelValue(wxHORIZONTAL
, GetCursorColumn()));
1469 wxString newLabel
= colLabel
+ rowLabel
;
1470 if ((newLabel
.Length() > 0) && (newLabel
.Length() <= 8) && GetTextItem())
1472 // GetTextItem()->SetLabel(newLabel);
1476 void wxGenericGrid::HighlightCell(wxDC
*dc
)
1478 dc
->SetLogicalFunction(wxINVERT
);
1481 dc
->DrawLine( m_currentRect
.x
+ 1,
1482 m_currentRect
.y
+ 1,
1483 m_currentRect
.x
+ m_currentRect
.width
- 1,
1484 m_currentRect
.y
+ 1);
1486 dc
->DrawLine( m_currentRect
.x
+ m_currentRect
.width
- 1,
1487 m_currentRect
.y
+ 1,
1488 m_currentRect
.x
+ m_currentRect
.width
- 1,
1489 m_currentRect
.y
+m_currentRect
.height
- 1 );
1491 dc
->DrawLine( m_currentRect
.x
+ m_currentRect
.width
- 1,
1492 m_currentRect
.y
+ m_currentRect
.height
- 1,
1493 m_currentRect
.x
+ 1,
1494 m_currentRect
.y
+ m_currentRect
.height
- 1);
1496 dc
->DrawLine( m_currentRect
.x
+ 1,
1497 m_currentRect
.y
+ m_currentRect
.height
- 1,
1498 m_currentRect
.x
+ 1,
1499 m_currentRect
.y
+ 1);
1501 dc
->SetLogicalFunction(wxCOPY
);
1504 void wxGenericGrid::DrawCellText(void)
1506 if (!m_currentRectVisible
)
1509 wxGridCell
*cell
= GetCell(GetCursorRow(), GetCursorColumn());
1513 static char szEdit
[300];
1515 wxClientDC
dc(this);
1518 SetGridClippingRegion(& dc
);
1520 dc
.SetBackgroundMode(wxTRANSPARENT
);
1521 dc
.SetBrush(cell
->GetBackgroundBrush());
1523 strcpy(szEdit
, m_textItem
->GetValue());
1526 rect
= m_currentRect
;
1532 DrawTextRect(& dc
, " ", &rect
, wxLEFT
);
1533 DrawTextRect(& dc
, szEdit
, &rect
, cell
->GetAlignment());
1535 dc
.DestroyClippingRegion();
1537 dc
.SetBackgroundMode(wxSOLID
);
1542 void wxGenericGrid::SetCurrentRect(int Row
, int Column
, int canvasW
, int canvasH
)
1544 int currentWidth
= m_leftOfSheet
+ m_verticalLabelWidth
;
1546 for (i
= m_scrollPosX
; i
< Column
; i
++)
1547 currentWidth
+= m_colWidths
[i
];
1549 int currentHeight
= m_topOfSheet
+ m_horizontalLabelHeight
;
1550 for (i
= m_scrollPosY
; i
< Row
; i
++)
1551 currentHeight
+= m_rowHeights
[i
];
1553 m_currentRect
.x
= currentWidth
;
1554 m_currentRect
.y
= currentHeight
;
1555 m_currentRect
.width
= m_colWidths
? (m_colWidths
[Column
]) : 0;
1556 m_currentRect
.height
= m_rowHeights
? (m_rowHeights
[Row
]) : 0;
1558 if (Row
< m_scrollPosY
|| Column
< m_scrollPosX
)
1559 m_currentRectVisible
= FALSE
;
1560 else if ((canvasW
!= -1 && canvasH
!= -1) && (m_currentRect
.x
> canvasW
|| m_currentRect
.y
> canvasH
))
1561 m_currentRectVisible
= FALSE
;
1562 else m_currentRectVisible
= TRUE
;
1565 static bool wxRectIntersection(wxRect
*rect1
, wxRect
*rect2
, wxRect
*rect3
)
1567 int x2_1
= rect1
->x
+ rect1
->width
;
1568 int y2_1
= rect1
->y
+ rect1
->height
;
1570 int x2_2
= rect2
->x
+ rect2
->width
;
1571 int y2_2
= rect2
->y
+ rect2
->height
;
1575 // Check for intersection
1576 if ((rect1
->x
> x2_2
) || (rect2
->x
> x2_1
) ||
1577 (rect1
->y
> y2_2
) || (rect2
->y
> y2_1
))
1580 rect3
->x
= rect3
->y
= rect3
->width
= rect3
->height
= 0;
1584 if (rect1
->x
> rect2
->x
)
1585 rect3
->x
= rect1
->x
;
1587 rect3
->x
= rect2
->x
;
1588 if (rect1
->y
> rect2
->y
)
1589 rect3
->y
= rect1
->y
;
1591 rect3
->y
= rect2
->y
;
1602 rect3
->width
= (int)(x2_3
- rect3
->x
);
1603 rect3
->height
= (int)(y2_3
- rect3
->y
);
1607 void wxGenericGrid::DrawTextRect(wxDC
*dc
, const wxString
& text
, wxRect
*rect
, int flag
)
1611 // Ultimately, this functionality should be built into wxWindows,
1612 // and optimized for each platform. E.g. on Windows, use DrawText
1613 // passing a clipping rectangle, so that the wxWindows clipping region
1614 // does not have to be used to implement this.
1616 // If we're already clipping, we need to find the intersection
1617 // between current clipping area and text clipping area.
1621 long clipX
, clipY
, clipW
, clipH
;
1622 dc
->GetClippingBox(&clipX
, &clipY
, &clipW
, &clipH
);
1623 clipRect
.x
= (int)clipX
; clipRect
.y
= (int)clipY
;
1624 clipRect
.width
= (int)clipW
; clipRect
.height
= (int)clipH
;
1626 bool alreadyClipping
= TRUE
;
1628 if (clipRect
.x
== 0 && clipRect
.y
== 0 && clipRect
.width
== 0 && clipRect
.height
== 0)
1630 alreadyClipping
= FALSE
;
1631 clipRect2
.x
= rect
->x
; clipRect2
.y
= rect
->y
;
1632 clipRect2
.width
= rect
->width
; clipRect2
.height
= rect
->height
;
1636 // Find intersection.
1637 if (!wxRectIntersection(rect
, &clipRect
, &clipRect2
))
1641 if (alreadyClipping
)
1642 dc
->DestroyClippingRegion();
1644 dc
->SetClippingRegion(clipRect2
.x
, clipRect2
.y
, clipRect2
.width
, clipRect2
.height
);
1645 long textWidth
, textHeight
;
1647 dc
->GetTextExtent(text
, &textWidth
, &textHeight
);
1655 x
= (rect
->x
+ rect
->width
- textWidth
- 1.0);
1656 y
= (rect
->y
+ (rect
->height
- textHeight
)/2.0);
1661 x
= (rect
->x
+ (rect
->width
- textWidth
)/2.0);
1662 y
= (rect
->y
+ (rect
->height
- textHeight
)/2.0);
1668 x
= (rect
->x
+ 1.0);
1669 y
= (rect
->y
+ (rect
->height
- textHeight
)/2.0);
1673 dc
->DrawText(text
, (long)x
, (long)y
);
1675 dc
->DestroyClippingRegion();
1677 // Restore old clipping
1678 if (alreadyClipping
)
1679 dc
->SetClippingRegion(clipRect
.x
, clipRect
.y
, clipRect
.width
, clipRect
.height
);
1684 void wxGenericGrid::DrawBitmapRect(wxDC
*dc
, wxBitmap
*bitmap
, wxRect
*rect
, int flag
)
1688 // Ultimately, this functionality should be built into wxWindows,
1689 // and optimized for each platform. E.g. on Windows, use DrawText
1690 // passing a clipping rectangle, so that the wxWindows clipping region
1691 // does not have to be used to implement this.
1693 // If we're already clipping, we need to find the intersection
1694 // between current clipping area and text clipping area.
1698 long clipX
, clipY
, clipW
, clipH
;
1699 dc
->GetClippingBox(&clipX
, &clipY
, &clipW
, &clipH
);
1700 clipRect
.x
= (int)clipX
; clipRect
.y
= (int)clipY
;
1701 clipRect
.width
= (int)clipW
; clipRect
.height
= (int)clipH
;
1703 bool alreadyClipping
= TRUE
;
1705 if (clipRect
.x
== 0 && clipRect
.y
== 0 && clipRect
.width
== 0 && clipRect
.height
== 0)
1707 alreadyClipping
= FALSE
;
1708 clipRect2
.x
= rect
->x
; clipRect2
.y
= rect
->y
;
1709 clipRect2
.width
= rect
->width
; clipRect2
.height
= rect
->height
;
1713 // Find intersection.
1714 if (!wxRectIntersection(rect
, &clipRect
, &clipRect2
))
1718 if (alreadyClipping
)
1719 dc
->DestroyClippingRegion();
1721 dc
->SetClippingRegion(clipRect2
.x
, clipRect2
.y
, clipRect2
.width
, clipRect2
.height
);
1722 float bitmapWidth
, bitmapHeight
;
1724 bitmapWidth
= bitmap
->GetWidth();
1725 bitmapHeight
= bitmap
->GetHeight();
1733 x
= (long)(rect
->x
+ rect
->width
- bitmapWidth
- 1);
1734 y
= (long)(rect
->y
+ (rect
->height
- bitmapHeight
)/2.0);
1739 x
= (long)(rect
->x
+ (rect
->width
- bitmapWidth
)/2.0);
1740 y
= (long)(rect
->y
+ (rect
->height
- bitmapHeight
)/2.0);
1746 x
= (long)(rect
->x
+ 1);
1747 y
= (long)(rect
->y
+ (rect
->height
- bitmapHeight
)/2.0);
1752 dcTemp
.SelectObject(*bitmap
);
1754 dc
->Blit( (long)x
, (long)y
, (long)bitmapWidth
, (long)bitmapHeight
, &dcTemp
, 0, 0);
1755 dcTemp
.SelectObject(wxNullBitmap
);
1757 dc
->DestroyClippingRegion();
1759 // Restore old clipping
1760 if (alreadyClipping
)
1761 dc
->SetClippingRegion(clipRect
.x
, clipRect
.y
, clipRect
.width
, clipRect
.height
);
1766 void wxGenericGrid::OnActivate(bool active
)
1770 // Edit control should always have the focus
1771 if (GetTextItem() && GetEditable())
1773 GetTextItem()->SetFocus();
1774 wxGridCell
*cell
= GetCell(GetCursorRow(), GetCursorColumn());
1776 GetTextItem()->SetValue(cell
->GetTextValue());
1781 void wxGenericGrid::SetCellValue(const wxString
& val
, int row
, int col
)
1783 wxGridCell
*cell
= GetCell(row
, col
);
1786 cell
->SetTextValue(val
);
1788 RefreshCell(row
, col
, TRUE
);
1792 void wxGenericGrid::RefreshCell(int row
, int col
, bool setText
)
1794 // Don't refresh within a pair of batch brackets
1795 if (GetBatchCount() > 0)
1799 GetClientSize(&cw
, &ch
);
1801 SetCurrentRect(row
, col
, cw
, ch
);
1802 if (m_currentRectVisible
)
1804 wxGridCell
*cell
= GetCell(row
, col
);
1806 bool currentPos
= FALSE
;
1807 if (row
== m_wCursorRow
&& col
== m_wCursorColumn
&& GetTextItem() && GetTextItem()->IsShown() && setText
)
1809 GetTextItem()->SetValue(cell
->GetTextValue());
1812 // Gets refreshed anyway in MSW
1817 wxClientDC
dc(this);
1819 DrawCellBackground(& dc
, &m_currentRect
, row
, col
);
1820 DrawCellValue(& dc
, &m_currentRect
, row
, col
);
1826 wxString
& wxGenericGrid::GetCellValue(int row
, int col
) const
1828 static wxString
emptyString("");
1830 wxGridCell
*cell
= GetCell(row
, col
);
1832 return cell
->GetTextValue();
1837 void wxGenericGrid::SetColumnWidth(int col
, int width
)
1839 if (col
<= m_totalCols
)
1840 m_colWidths
[col
] = width
;
1843 int wxGenericGrid::GetColumnWidth(int col
) const
1845 if (col
<= m_totalCols
)
1846 return m_colWidths
[col
];
1851 void wxGenericGrid::SetRowHeight(int row
, int height
)
1853 if (row
<= m_totalRows
)
1854 m_rowHeights
[row
] = height
;
1857 int wxGenericGrid::GetRowHeight(int row
) const
1859 if (row
<= m_totalRows
)
1860 return m_rowHeights
[row
];
1865 void wxGenericGrid::SetLabelSize(int orientation
, int sz
)
1867 if (orientation
== wxHORIZONTAL
)
1868 m_horizontalLabelHeight
= sz
;
1870 m_verticalLabelWidth
= sz
;
1872 SetCurrentRect(GetCursorRow(), GetCursorColumn());
1875 int wxGenericGrid::GetLabelSize(int orientation
) const
1877 if (orientation
== wxHORIZONTAL
)
1878 return m_horizontalLabelHeight
;
1880 return m_verticalLabelWidth
;
1883 wxGridCell
*wxGenericGrid::GetLabelCell(int orientation
, int pos
) const
1885 if (orientation
== wxHORIZONTAL
)
1887 if (m_colLabelCells
&& pos
< m_totalCols
)
1888 return m_colLabelCells
[pos
];
1890 return (wxGridCell
*) NULL
;
1894 if (m_rowLabelCells
&& pos
< m_totalRows
)
1895 return m_rowLabelCells
[pos
];
1897 return (wxGridCell
*) NULL
;
1901 void wxGenericGrid::SetLabelValue(int orientation
, const wxString
& val
, int pos
)
1903 wxGridCell
*cell
= GetLabelCell(orientation
, pos
);
1905 cell
->SetTextValue(val
);
1908 wxString
& wxGenericGrid::GetLabelValue(int orientation
, int pos
) const
1910 static wxString emptyString
= "";
1911 wxGridCell
*cell
= GetLabelCell(orientation
, pos
);
1913 return cell
->GetTextValue();
1918 void wxGenericGrid::SetLabelAlignment(int orientation
, int align
)
1920 if (orientation
== wxHORIZONTAL
)
1921 m_horizontalLabelAlignment
= align
;
1923 m_verticalLabelAlignment
= align
;
1925 SetCurrentRect(GetCursorRow(), GetCursorColumn());
1928 int wxGenericGrid::GetLabelAlignment(int orientation
) const
1930 if (orientation
== wxHORIZONTAL
)
1931 return m_horizontalLabelAlignment
;
1933 return m_verticalLabelAlignment
;
1936 void wxGenericGrid::SetLabelTextColour(const wxColour
& colour
)
1938 m_labelTextColour
= colour
;
1942 void wxGenericGrid::SetLabelBackgroundColour(const wxColour
& colour
)
1944 m_labelBackgroundColour
= colour
;
1945 m_labelBackgroundBrush
= * wxTheBrushList
->FindOrCreateBrush(m_labelBackgroundColour
, wxSOLID
);
1948 void wxGenericGrid::SetEditable(bool edit
)
1953 int controlW
, controlH
;
1954 m_textItem
->GetSize(&controlW
, &controlH
);
1955 m_editControlPosition
.height
= controlH
;
1957 m_topOfSheet
= m_editControlPosition
.x
+ controlH
+ 2;
1960 m_editingPanel
->Show(TRUE
);
1961 m_textItem
->Show(TRUE
);
1962 m_textItem
->SetFocus();
1970 m_textItem
->Show(FALSE
);
1971 m_editingPanel
->Show(FALSE
);
1975 SetCurrentRect(GetCursorRow(), GetCursorColumn());
1978 GetClientSize(&cw
, &ch
);
1983 int m_scrollWidth = 16;
1984 GetClientSize(&cw, &ch);
1987 m_vScrollBar->SetSize(cw - m_scrollWidth, m_topOfSheet,
1988 m_scrollWidth, ch - m_topOfSheet - m_scrollWidth);
1992 void wxGenericGrid::SetCellAlignment(int flag
, int row
, int col
)
1994 wxGridCell
*cell
= GetCell(row
, col
);
1996 cell
->SetAlignment(flag
);
1999 int wxGenericGrid::GetCellAlignment(int row
, int col
) const
2001 wxGridCell
*cell
= GetCell(row
, col
);
2003 return cell
->GetAlignment();
2005 return m_cellAlignment
;
2008 void wxGenericGrid::SetCellAlignment(int flag
)
2010 m_cellAlignment
= flag
;
2012 for (i
= 0; i
< GetRows(); i
++)
2013 for (j
= 0; j
< GetCols(); j
++)
2015 GetCell(i
, j
)->SetAlignment(flag
);
2018 int wxGenericGrid::GetCellAlignment(void) const
2020 return m_cellAlignment
;
2023 void wxGenericGrid::SetCellBackgroundColour(const wxColour
& col
)
2025 m_cellBackgroundColour
= col
;
2027 for (i
= 0; i
< GetRows(); i
++)
2028 for (j
= 0; j
< GetCols(); j
++)
2030 GetCell(i
, j
)->SetBackgroundColour(col
);
2033 void wxGenericGrid::SetCellBackgroundColour(const wxColour
& val
, int row
, int col
)
2035 wxGridCell
*cell
= GetCell(row
, col
);
2038 cell
->SetBackgroundColour(val
);
2039 RefreshCell(row
, col
);
2043 wxColour
& wxGenericGrid::GetCellBackgroundColour(int row
, int col
) const
2045 wxGridCell
*cell
= GetCell(row
, col
);
2047 return cell
->GetBackgroundColour();
2049 return (wxColour
&) m_cellBackgroundColour
;
2052 void wxGenericGrid::SetCellTextColour(const wxColour
& val
, int row
, int col
)
2054 wxGridCell
*cell
= GetCell(row
, col
);
2057 cell
->SetTextColour(val
);
2058 RefreshCell(row
, col
);
2062 void wxGenericGrid::SetCellTextFont(const wxFont
& fnt
, int row
, int col
)
2064 wxGridCell
*cell
= GetCell(row
, col
);
2068 RefreshCell(row
, col
);
2072 wxFont
& wxGenericGrid::GetCellTextFont(int row
, int col
) const
2074 wxGridCell
*cell
= GetCell(row
, col
);
2076 return (wxFont
&) cell
->GetFont();
2078 return (wxFont
&) m_cellTextFont
;
2081 wxColour
& wxGenericGrid::GetCellTextColour(int row
, int col
) const
2083 wxGridCell
*cell
= GetCell(row
, col
);
2085 return (wxColour
&) cell
->GetTextColour();
2087 return (wxColour
&) m_cellTextColour
;
2090 void wxGenericGrid::SetCellTextColour(const wxColour
& val
)
2092 m_cellTextColour
= val
;
2094 for (i
= 0; i
< GetRows(); i
++)
2095 for (j
= 0; j
< GetCols(); j
++)
2097 GetCell(i
, j
)->SetTextColour(val
);
2100 void wxGenericGrid::SetCellTextFont(const wxFont
& fnt
)
2102 m_cellTextFont
= fnt
;
2104 for (i
= 0; i
< GetRows(); i
++)
2105 for (j
= 0; j
< GetCols(); j
++)
2107 GetCell(i
, j
)->SetFont(fnt
);
2110 void wxGenericGrid::SetCellBitmap(wxBitmap
*bitmap
, int row
, int col
)
2112 wxGridCell
*cell
= GetCell(row
, col
);
2115 cell
->SetCellBitmap(bitmap
);
2116 RefreshCell(row
, col
);
2120 wxBitmap
*wxGenericGrid::GetCellBitmap(int row
, int col
) const
2122 wxGridCell
*cell
= GetCell(row
, col
);
2125 return cell
->GetCellBitmap();
2128 return (wxBitmap
*) NULL
;
2131 bool wxGenericGrid::InsertCols(int pos
, int n
, bool updateLabels
)
2133 if (pos
> m_totalCols
)
2137 return CreateGrid(1, n
);
2142 for (i
= 0; i
< m_totalRows
; i
++)
2144 wxGridCell
**cols
= m_gridCells
[i
];
2145 wxGridCell
**newCols
= new wxGridCell
*[m_totalCols
+ n
];
2146 for (j
= 0; j
< pos
; j
++)
2147 newCols
[j
] = cols
[j
];
2148 for (j
= pos
; j
< pos
+ n
; j
++)
2149 newCols
[j
] = new wxGridCell(this);
2150 for (j
= pos
+ n
; j
< m_totalCols
+ n
; j
++)
2151 newCols
[j
] = cols
[j
- n
];
2154 m_gridCells
[i
] = newCols
;
2158 short *newColWidths
= new short[m_totalCols
+ n
];
2159 for (j
= 0; j
< pos
; j
++)
2160 newColWidths
[j
] = m_colWidths
[j
];
2161 for (j
= pos
; j
< pos
+ n
; j
++)
2162 newColWidths
[j
] = wxGRID_DEFAULT_CELL_WIDTH
;
2163 for (j
= pos
+ n
; j
< m_totalCols
+ n
; j
++)
2164 newColWidths
[j
] = m_colWidths
[j
- n
];
2165 delete[] m_colWidths
;
2166 m_colWidths
= newColWidths
;
2169 wxGridCell
**newLabels
= new wxGridCell
*[m_totalCols
+ n
];
2170 for (j
= 0; j
< pos
; j
++)
2171 newLabels
[j
] = m_colLabelCells
[j
];
2172 for (j
= pos
; j
< pos
+ n
; j
++)
2173 newLabels
[j
] = new wxGridCell(this);
2174 for (j
= pos
+ n
; j
< m_totalCols
+ n
; j
++)
2175 newLabels
[j
] = m_colLabelCells
[j
- n
];
2177 delete[] m_colLabelCells
;
2178 m_colLabelCells
= newLabels
;
2184 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CHANGE_LABELS
, this);
2185 GetEventHandler()->ProcessEvent(g_evt
);
2194 bool wxGenericGrid::InsertRows(int pos
, int n
, bool updateLabels
)
2196 if (pos
> m_totalRows
)
2200 return CreateGrid(n
, 1);
2205 wxGridCell
***rows
= new wxGridCell
**[m_totalRows
+ n
];
2208 for (i
= 0; i
< pos
; i
++)
2209 rows
[i
] = m_gridCells
[i
];
2211 for (i
= pos
; i
< pos
+ n
; i
++)
2213 rows
[i
] = new wxGridCell
*[m_totalCols
];
2214 for (j
= 0; j
< m_totalCols
; j
++)
2215 rows
[i
][j
] = new wxGridCell(this);
2218 for (i
= pos
+ n
; i
< m_totalRows
+ n
; i
++)
2219 rows
[i
] = m_gridCells
[i
- n
];
2221 delete[] m_gridCells
;
2225 short *newRowHeights
= new short[m_totalRows
+ n
];
2226 for (i
= 0; i
< pos
; i
++)
2227 newRowHeights
[i
] = m_rowHeights
[i
];
2228 for (i
= pos
; i
< pos
+ n
; i
++)
2229 newRowHeights
[i
] = wxGRID_DEFAULT_CELL_HEIGHT
;
2230 for (i
= pos
+ n
; i
< m_totalRows
+ n
; i
++)
2231 newRowHeights
[i
] = m_rowHeights
[i
- n
];
2232 delete[] m_rowHeights
;
2233 m_rowHeights
= newRowHeights
;
2236 wxGridCell
**newLabels
= new wxGridCell
*[m_totalRows
+ n
];
2237 for (i
= 0; i
< pos
; i
++)
2238 newLabels
[i
] = m_rowLabelCells
[i
];
2239 for (i
= pos
; i
< pos
+ n
; i
++)
2240 newLabels
[i
] = new wxGridCell(this);
2241 for (i
= pos
+ n
; i
< m_totalRows
+ n
; i
++)
2242 newLabels
[i
] = m_rowLabelCells
[i
- n
];
2244 delete[] m_rowLabelCells
;
2245 m_rowLabelCells
= newLabels
;
2251 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CHANGE_LABELS
, this);
2252 GetEventHandler()->ProcessEvent(g_evt
);
2261 bool wxGenericGrid::AppendCols(int n
, bool updateLabels
)
2263 return InsertCols(GetCols(), n
, updateLabels
);
2266 bool wxGenericGrid::AppendRows(int n
, bool updateLabels
)
2268 return InsertRows(GetRows(), n
, updateLabels
);
2271 bool wxGenericGrid::DeleteRows(int pos
, int n
, bool updateLabels
)
2273 if (pos
> m_totalRows
)
2280 wxGridCell
***rows
= new wxGridCell
**[m_totalRows
- n
];
2283 for (i
= 0; i
< pos
; i
++)
2284 rows
[i
] = m_gridCells
[i
];
2286 for (i
= pos
+ n
; i
< m_totalRows
; i
++)
2287 rows
[i
-n
] = m_gridCells
[i
];
2289 delete[] m_gridCells
;
2293 short *newRowHeights
= new short[m_totalRows
- n
];
2294 for (i
= 0; i
< pos
; i
++)
2295 newRowHeights
[i
] = m_rowHeights
[i
];
2296 for (i
= pos
+ n
; i
< m_totalRows
; i
++)
2297 newRowHeights
[i
-n
] = m_rowHeights
[i
];
2298 delete[] m_rowHeights
;
2299 m_rowHeights
= newRowHeights
;
2302 wxGridCell
**newLabels
= new wxGridCell
*[m_totalRows
- n
];
2303 for (i
= 0; i
< pos
; i
++)
2304 newLabels
[i
] = m_rowLabelCells
[i
];
2305 for (i
= pos
+ n
; i
< m_totalRows
; i
++)
2306 newLabels
[i
-n
] = m_rowLabelCells
[i
];
2308 delete[] m_rowLabelCells
;
2309 m_rowLabelCells
= newLabels
;
2315 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CHANGE_LABELS
, this);
2316 GetEventHandler()->ProcessEvent(g_evt
);
2323 bool wxGenericGrid::DeleteCols(int pos
, int n
, bool updateLabels
)
2325 if (pos
+ n
> m_totalCols
)
2333 for (i
= 0; i
< m_totalRows
; i
++)
2335 wxGridCell
**cols
= m_gridCells
[i
];
2336 wxGridCell
**newCols
= new wxGridCell
*[m_totalCols
- n
];
2337 for (j
= 0; j
< pos
; j
++)
2338 newCols
[j
] = cols
[j
];
2339 for (j
= pos
; j
< pos
+ n
; j
++)
2341 for (j
= pos
+ n
; j
< m_totalCols
; j
++)
2342 newCols
[j
-n
] = cols
[j
];
2345 m_gridCells
[i
] = newCols
;
2349 short *newColWidths
= new short[m_totalCols
- n
];
2350 for (j
= 0; j
< pos
; j
++)
2351 newColWidths
[j
] = m_colWidths
[j
];
2352 for (j
= pos
+ n
; j
< m_totalCols
; j
++)
2353 newColWidths
[j
-n
] = m_colWidths
[j
];
2354 delete[] m_colWidths
;
2355 m_colWidths
= newColWidths
;
2358 wxGridCell
**newLabels
= new wxGridCell
*[m_totalCols
- n
];
2359 for (j
= 0; j
< pos
; j
++)
2360 newLabels
[j
] = m_colLabelCells
[j
];
2361 for (j
= pos
+ n
; j
< m_totalCols
; j
++)
2362 newLabels
[j
-n
] = m_colLabelCells
[j
];
2364 delete[] m_colLabelCells
;
2365 m_colLabelCells
= newLabels
;
2371 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CHANGE_LABELS
, this);
2372 GetEventHandler()->ProcessEvent(g_evt
);
2379 void wxGenericGrid::SetGridCursor(int row
, int col
)
2381 if (row
>= m_totalRows
|| col
>= m_totalCols
)
2384 if (row
== GetCursorRow() && col
== GetCursorColumn())
2387 wxClientDC
dc(this);
2390 SetGridClippingRegion(& dc
);
2392 if (m_currentRectVisible
)
2393 HighlightCell(& dc
);
2396 m_wCursorColumn
= col
;
2399 GetClientSize(&cw
, &ch
);
2401 SetCurrentRect(row
, col
, cw
, ch
);
2403 if (m_currentRectVisible
)
2404 HighlightCell(& dc
);
2406 dc
.DestroyClippingRegion();
2414 wxGridCell::wxGridCell(wxGenericGrid
*window
)
2416 cellBitmap
= (wxBitmap
*) NULL
;
2418 backgroundBrush
= wxNullBrush
;
2420 textColour
= window
->GetCellTextColour();
2422 textColour
.Set(0,0,0);
2424 backgroundColour
= window
->GetCellBackgroundColour();
2426 backgroundColour
.Set(255,255,255);
2429 font
= window
->GetCellTextFont();
2431 font
= * wxTheFontList
->FindOrCreateFont(12, wxSWISS
, wxNORMAL
, wxNORMAL
);
2433 SetBackgroundColour(backgroundColour
);
2436 alignment
= window
->GetCellAlignment();
2441 wxGridCell::~wxGridCell(void)
2445 void wxGridCell::SetBackgroundColour(const wxColour
& colour
)
2447 backgroundColour
= colour
;
2448 backgroundBrush
= * wxTheBrushList
->FindOrCreateBrush(backgroundColour
, wxSOLID
);
2451 void wxGenericGrid::OnText(wxCommandEvent
& WXUNUSED(ev
) )
2453 wxGenericGrid
*grid
= this;
2454 wxGridCell
*cell
= grid
->GetCell(grid
->GetCursorRow(), grid
->GetCursorColumn());
2455 if (cell
&& grid
->CurrentCellVisible())
2457 cell
->SetTextValue(grid
->GetTextItem()->GetValue());
2458 wxClientDC
dc(grid
);
2461 grid
->SetGridClippingRegion(& dc
);
2462 grid
->DrawCellBackground(& dc
, &grid
->GetCurrentRect(), grid
->GetCursorRow(), grid
->GetCursorColumn());
2463 grid
->DrawCellValue(& dc
, &grid
->GetCurrentRect(), grid
->GetCursorRow(), grid
->GetCursorColumn());
2464 grid
->HighlightCell(& dc
);
2465 dc
.DestroyClippingRegion();
2468 //grid->OnCellChange(grid->GetCursorRow(), grid->GetCursorColumn());
2469 wxGridEvent
g_evt(GetId(), wxEVT_GRID_CELL_CHANGE
, grid
,
2470 grid
->GetCursorRow(), grid
->GetCursorColumn());
2471 GetEventHandler()->ProcessEvent(g_evt
);
2473 // grid->DrawCellText();
2477 void wxGenericGrid::OnGridScroll(wxScrollEvent
& ev
)
2479 static bool inScroll
= FALSE
;
2485 wxGenericGrid
*win
= this;
2487 bool change
= FALSE
;
2489 if (ev
.GetEventObject() == win
->GetHorizScrollBar())
2491 change
= (ev
.GetPosition() != m_scrollPosX
);
2492 win
->SetScrollPosX(ev
.GetPosition());
2496 change
= (ev
.GetPosition() != m_scrollPosY
);
2497 win
->SetScrollPosY(ev
.GetPosition());
2500 win
->UpdateDimensions();
2502 win
->SetCurrentRect(win
->GetCursorRow(), win
->GetCursorColumn());
2504 // Because rows and columns can be arbitrary sizes,
2505 // the scrollbars will need to be adjusted to reflect the
2509 if (change
) win
->Refresh(FALSE
);
2515 //----------------------------------------------------------------------
2516 // Default wxGridEvent handlers
2517 // (just redirect to the pre-existing virtual methods)
2519 void wxGenericGrid::_OnSelectCell(wxGridEvent
& ev
)
2521 OnSelectCell(ev
.m_row
, ev
.m_col
);
2524 void wxGenericGrid::_OnCreateCell(wxGridEvent
& ev
)
2526 ev
.m_cell
= OnCreateCell();
2529 void wxGenericGrid::_OnChangeLabels(wxGridEvent
& WXUNUSED(ev
))
2534 void wxGenericGrid::_OnChangeSelectionLabel(wxGridEvent
& WXUNUSED(ev
))
2536 OnChangeSelectionLabel();
2539 void wxGenericGrid::_OnCellChange(wxGridEvent
& ev
)
2541 OnCellChange(ev
.m_row
, ev
.m_col
);
2544 void wxGenericGrid::_OnCellLeftClick(wxGridEvent
& ev
)
2546 OnCellLeftClick(ev
.m_row
, ev
.m_col
, ev
.m_x
, ev
.m_y
, ev
.m_control
, ev
.m_shift
);
2549 void wxGenericGrid::_OnCellRightClick(wxGridEvent
& ev
)
2551 OnCellRightClick(ev
.m_row
, ev
.m_col
, ev
.m_x
, ev
.m_y
, ev
.m_control
, ev
.m_shift
);
2554 void wxGenericGrid::_OnLabelLeftClick(wxGridEvent
& ev
)
2556 OnLabelLeftClick(ev
.m_row
, ev
.m_col
, ev
.m_x
, ev
.m_y
, ev
.m_control
, ev
.m_shift
);
2559 void wxGenericGrid::_OnLabelRightClick(wxGridEvent
& ev
)
2561 OnLabelRightClick(ev
.m_row
, ev
.m_col
, ev
.m_x
, ev
.m_y
, ev
.m_control
, ev
.m_shift
);