1 ///////////////////////////////////////////////////////////////////////////
2 // Name: generic/gridctrl.cpp
3 // Purpose: wxGrid controls
4 // Author: Paul Gammans, Roger Gammans
8 // Copyright: (c) The Computer Surgery (paul@compsurg.co.uk)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma interface "gridctrl.h"
16 #include "wx/wxprec.h"
22 #include "wx/generic/gridctrl.h"
23 #include "wx/tokenzr.h"
25 // ----------------------------------------------------------------------------
26 // wxGridCellDateTimeRenderer
27 // ----------------------------------------------------------------------------
29 // Enables a grid cell to display a formated date and or time
31 wxGridCellDateTimeRenderer::wxGridCellDateTimeRenderer(wxString outformat
, wxString informat
)
34 m_oformat
= outformat
;
35 m_tz
= wxDateTime::Local
;
36 m_dateDef
= wxDefaultDateTime
;
39 wxGridCellRenderer
*wxGridCellDateTimeRenderer::Clone() const
41 wxGridCellDateTimeRenderer
*renderer
= new wxGridCellDateTimeRenderer
;
42 renderer
->m_iformat
= m_iformat
;
43 renderer
->m_oformat
= m_oformat
;
44 renderer
->m_dateDef
= m_dateDef
;
45 renderer
->m_tz
= m_tz
;
50 wxString
wxGridCellDateTimeRenderer::GetString(wxGrid
& grid
, int row
, int col
)
52 wxGridTableBase
*table
= grid
.GetTable();
54 bool hasDatetime
= FALSE
;
57 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_DATETIME
) )
59 void * tempval
= table
->GetValueAsCustom(row
, col
,wxGRID_VALUE_DATETIME
);
62 val
= *((wxDateTime
*)tempval
);
64 delete (wxDateTime
*)tempval
;
71 text
= table
->GetValue(row
, col
);
72 hasDatetime
= (val
.ParseFormat( text
, m_iformat
, m_dateDef
) != (wxChar
*)NULL
) ;
76 text
= val
.Format(m_oformat
, m_tz
);
78 //If we faild to parse string just show what we where given?
82 void wxGridCellDateTimeRenderer::Draw(wxGrid
& grid
,
85 const wxRect
& rectCell
,
89 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
91 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
93 // draw the text right aligned by default
95 attr
.GetAlignment(&hAlign
, &vAlign
);
98 wxRect rect
= rectCell
;
101 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
104 wxSize
wxGridCellDateTimeRenderer::GetBestSize(wxGrid
& grid
,
105 wxGridCellAttr
& attr
,
109 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
112 void wxGridCellDateTimeRenderer::SetParameters(const wxString
& params
){
117 // ----------------------------------------------------------------------------
118 // wxGridCellChoiceNumberRenderer
119 // ----------------------------------------------------------------------------
120 // Renders a number as a textual equivalent.
121 // eg data in cell is 0,1,2 ... n the cell could be rendered as "John","Fred"..."Bob"
124 wxGridCellEnumRenderer::wxGridCellEnumRenderer(const wxString
& choices
)
127 SetParameters(choices
);
130 wxGridCellRenderer
*wxGridCellEnumRenderer::Clone() const
132 wxGridCellEnumRenderer
*renderer
= new wxGridCellEnumRenderer
;
133 renderer
->m_choices
= m_choices
;
137 wxString
wxGridCellEnumRenderer::GetString(wxGrid
& grid
, int row
, int col
)
139 wxGridTableBase
*table
= grid
.GetTable();
141 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
143 int choiceno
= table
->GetValueAsLong(row
, col
);
144 text
.Printf(_T("%s"), m_choices
[ choiceno
].c_str() );
148 text
= table
->GetValue(row
, col
);
152 //If we faild to parse string just show what we where given?
156 void wxGridCellEnumRenderer::Draw(wxGrid
& grid
,
157 wxGridCellAttr
& attr
,
159 const wxRect
& rectCell
,
163 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
165 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
167 // draw the text right aligned by default
169 attr
.GetAlignment(&hAlign
, &vAlign
);
172 wxRect rect
= rectCell
;
175 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
178 wxSize
wxGridCellEnumRenderer::GetBestSize(wxGrid
& grid
,
179 wxGridCellAttr
& attr
,
183 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
186 void wxGridCellEnumRenderer::SetParameters(const wxString
& params
)
196 wxStringTokenizer
tk(params
, _T(','));
197 while ( tk
.HasMoreTokens() )
199 m_choices
.Add(tk
.GetNextToken());
203 // ----------------------------------------------------------------------------
204 // wxGridCellEnumEditor
205 // ----------------------------------------------------------------------------
206 // A cell editor which displays an enum number as a textual equivalent.
207 // eg data in cell is 0,1,2 ... n the cell could be displayed as "John","Fred"..."Bob"
208 // in the combo choice box
210 wxGridCellEnumEditor::wxGridCellEnumEditor(const wxString
& choices
)
211 : wxGridCellChoiceEditor()
214 SetParameters(choices
);
217 wxGridCellEditor
*wxGridCellEnumEditor::Clone() const
219 wxGridCellEnumEditor
*editor
= new wxGridCellEnumEditor();
220 editor
->m_startint
= m_startint
;
224 void wxGridCellEnumEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
226 wxASSERT_MSG(m_control
,
227 wxT("The wxGridCellEnumEditor must be Created first!"));
229 wxGridTableBase
*table
= grid
->GetTable();
231 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
233 m_startint
= table
->GetValueAsLong(row
, col
);
237 wxString startValue
= table
->GetValue(row
, col
);
238 if (startValue
.IsNumber() && !startValue
.IsEmpty())
240 startValue
.ToLong(&m_startint
);
248 Combo()->SetSelection(m_startint
);
249 Combo()->SetInsertionPointEnd();
254 bool wxGridCellEnumEditor::EndEdit(int row
, int col
, wxGrid
* grid
)
256 int pos
= Combo()->GetSelection();
257 bool changed
= (pos
!= m_startint
);
260 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_NUMBER
))
261 grid
->GetTable()->SetValueAsLong(row
, col
, pos
);
263 grid
->GetTable()->SetValue(row
, col
,wxString::Format("%i",pos
));
271 wxGridCellAutoWrapStringEditor::Create(wxWindow
* parent
,
273 wxEvtHandler
* evtHandler
)
275 m_control
= new wxTextCtrl(parent
, id
, wxEmptyString
,
276 wxDefaultPosition
, wxDefaultSize
,
277 wxTE_MULTILINE
| wxTE_RICH
);
280 wxGridCellEditor::Create(parent
, id
, evtHandler
);
284 wxGridCellAutoWrapStringRenderer::Draw(wxGrid
& grid
,
285 wxGridCellAttr
& attr
,
287 const wxRect
& rectCell
,
292 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
294 // now we only have to draw the text
295 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
297 int horizAlign
, vertAlign
;
298 attr
.GetAlignment(&horizAlign
, &vertAlign
);
300 wxRect rect
= rectCell
;
303 grid
.DrawTextRectangle(dc
, GetTextLines(grid
,dc
,attr
,rect
,row
,col
),
304 rect
, horizAlign
, vertAlign
);
309 wxGridCellAutoWrapStringRenderer::GetTextLines(wxGrid
& grid
,
311 wxGridCellAttr
& attr
,
315 wxString data
= grid
.GetCellValue(row
, col
);
318 dc
.SetFont(attr
.GetFont());
320 //Taken from wxGrid again!
321 wxCoord x
= 0, y
= 0, curr_x
= 0;
322 wxCoord max_x
= rect
.GetWidth();
324 dc
.SetFont(attr
.GetFont());
325 wxStringTokenizer
tk(data
, _T(" \n\t\r"));
326 wxString
thisline("");
328 while ( tk
.HasMoreTokens() )
330 wxString tok
= tk
.GetNextToken();
331 //FIXME: this causes us to print an extra unnecesary
332 // space at the end of the line. But it
333 // is invisible , simplifies the size calculation
334 // and ensures tokens are seperated in the display
337 dc
.GetTextExtent(tok
, &x
, &y
);
338 if ( curr_x
+ x
> max_x
) {
339 lines
.Add( wxString(thisline
) );
349 lines
.Add( wxString(thisline
) );
356 wxGridCellAutoWrapStringRenderer::GetBestSize(wxGrid
& grid
,
357 wxGridCellAttr
& attr
,
361 int x
,y
, height
, width
= grid
.GetColSize(col
) -10;
362 int count
= 250; //Limit iterations..
364 wxRect
rect(0,0,width
,10);
366 // M is a nice large character 'y' gives descender!.
367 dc
.GetTextExtent("My", &x
, &y
);
372 rect
.SetWidth(width
);
373 height
= y
*( GetTextLines(grid
,dc
,attr
,rect
,row
,col
).GetCount());
375 // Search for a shape no taller than the golden ratio.
376 } while (count
&& (width
< (height
*1.68)) );
379 return wxSize(width
,height
);