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 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
20 #include "wx/generic/gridctrl.h"
23 #include "wx/textctrl.h"
25 #include "wx/combobox.h"
28 #include "wx/tokenzr.h"
30 // ----------------------------------------------------------------------------
31 // wxGridCellDateTimeRenderer
32 // ----------------------------------------------------------------------------
36 // Enables a grid cell to display a formatted date and or time
38 wxGridCellDateTimeRenderer::wxGridCellDateTimeRenderer(const wxString
& outformat
, const wxString
& informat
)
41 m_oformat
= outformat
;
42 m_tz
= wxDateTime::Local
;
43 m_dateDef
= wxDefaultDateTime
;
46 wxGridCellRenderer
*wxGridCellDateTimeRenderer::Clone() const
48 wxGridCellDateTimeRenderer
*renderer
= new wxGridCellDateTimeRenderer
;
49 renderer
->m_iformat
= m_iformat
;
50 renderer
->m_oformat
= m_oformat
;
51 renderer
->m_dateDef
= m_dateDef
;
52 renderer
->m_tz
= m_tz
;
57 wxString
wxGridCellDateTimeRenderer::GetString(const wxGrid
& grid
, int row
, int col
)
59 wxGridTableBase
*table
= grid
.GetTable();
61 bool hasDatetime
= false;
64 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_DATETIME
) )
66 void * tempval
= table
->GetValueAsCustom(row
, col
,wxGRID_VALUE_DATETIME
);
70 val
= *((wxDateTime
*)tempval
);
72 delete (wxDateTime
*)tempval
;
79 text
= table
->GetValue(row
, col
);
80 const char * const end
= val
.ParseFormat(text
, m_iformat
, m_dateDef
);
81 hasDatetime
= end
&& !*end
;
85 text
= val
.Format(m_oformat
, m_tz
);
87 // If we failed to parse string just show what we where given?
91 void wxGridCellDateTimeRenderer::Draw(wxGrid
& grid
,
94 const wxRect
& rectCell
,
98 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
100 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
102 // draw the text right aligned by default
104 attr
.GetAlignment(&hAlign
, &vAlign
);
107 wxRect rect
= rectCell
;
110 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
113 wxSize
wxGridCellDateTimeRenderer::GetBestSize(wxGrid
& grid
,
114 wxGridCellAttr
& attr
,
118 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
121 void wxGridCellDateTimeRenderer::SetParameters(const wxString
& params
)
127 #endif // wxUSE_DATETIME
129 // ----------------------------------------------------------------------------
130 // wxGridCellChoiceNumberRenderer
131 // ----------------------------------------------------------------------------
132 // Renders a number as a textual equivalent.
133 // eg data in cell is 0,1,2 ... n the cell could be rendered as "John","Fred"..."Bob"
136 wxGridCellEnumRenderer::wxGridCellEnumRenderer(const wxString
& choices
)
138 if (!choices
.empty())
139 SetParameters(choices
);
142 wxGridCellRenderer
*wxGridCellEnumRenderer::Clone() const
144 wxGridCellEnumRenderer
*renderer
= new wxGridCellEnumRenderer
;
145 renderer
->m_choices
= m_choices
;
149 wxString
wxGridCellEnumRenderer::GetString(const wxGrid
& grid
, int row
, int col
)
151 wxGridTableBase
*table
= grid
.GetTable();
153 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
155 int choiceno
= table
->GetValueAsLong(row
, col
);
156 text
.Printf(_T("%s"), m_choices
[ choiceno
].c_str() );
160 text
= table
->GetValue(row
, col
);
164 //If we faild to parse string just show what we where given?
168 void wxGridCellEnumRenderer::Draw(wxGrid
& grid
,
169 wxGridCellAttr
& attr
,
171 const wxRect
& rectCell
,
175 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
177 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
179 // draw the text right aligned by default
181 attr
.GetAlignment(&hAlign
, &vAlign
);
184 wxRect rect
= rectCell
;
187 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
190 wxSize
wxGridCellEnumRenderer::GetBestSize(wxGrid
& grid
,
191 wxGridCellAttr
& attr
,
195 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
198 void wxGridCellEnumRenderer::SetParameters(const wxString
& params
)
208 wxStringTokenizer
tk(params
, _T(','));
209 while ( tk
.HasMoreTokens() )
211 m_choices
.Add(tk
.GetNextToken());
217 // ----------------------------------------------------------------------------
218 // wxGridCellEnumEditor
219 // ----------------------------------------------------------------------------
221 // A cell editor which displays an enum number as a textual equivalent. eg
222 // data in cell is 0,1,2 ... n the cell could be displayed as
223 // "John","Fred"..."Bob" in the combo choice box
225 wxGridCellEnumEditor::wxGridCellEnumEditor(const wxString
& choices
)
226 :wxGridCellChoiceEditor()
230 if (!choices
.empty())
231 SetParameters(choices
);
234 wxGridCellEditor
*wxGridCellEnumEditor::Clone() const
236 wxGridCellEnumEditor
*editor
= new wxGridCellEnumEditor();
237 editor
->m_startint
= m_startint
;
241 void wxGridCellEnumEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
243 wxASSERT_MSG(m_control
,
244 wxT("The wxGridCellEnumEditor must be Created first!"));
246 wxGridTableBase
*table
= grid
->GetTable();
248 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
250 m_startint
= table
->GetValueAsLong(row
, col
);
254 wxString startValue
= table
->GetValue(row
, col
);
255 if (startValue
.IsNumber() && !startValue
.empty())
257 startValue
.ToLong(&m_startint
);
265 Combo()->SetSelection(m_startint
);
266 Combo()->SetInsertionPointEnd();
271 bool wxGridCellEnumEditor::EndEdit(int row
, int col
, wxGrid
* grid
)
273 int pos
= Combo()->GetSelection();
274 bool changed
= (pos
!= m_startint
);
277 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_NUMBER
))
278 grid
->GetTable()->SetValueAsLong(row
, col
, pos
);
280 grid
->GetTable()->SetValue(row
, col
,wxString::Format(wxT("%i"),pos
));
286 #endif // wxUSE_COMBOBOX
288 // ----------------------------------------------------------------------------
289 // wxGridCellAutoWrapStringEditor
290 // ----------------------------------------------------------------------------
293 wxGridCellAutoWrapStringEditor::Create(wxWindow
* parent
,
295 wxEvtHandler
* evtHandler
)
297 wxGridCellTextEditor::DoCreate(parent
, id
, evtHandler
,
298 wxTE_MULTILINE
| wxTE_RICH
);
302 wxGridCellAutoWrapStringRenderer::Draw(wxGrid
& grid
,
303 wxGridCellAttr
& attr
,
305 const wxRect
& rectCell
,
310 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
312 // now we only have to draw the text
313 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
315 int horizAlign
, vertAlign
;
316 attr
.GetAlignment(&horizAlign
, &vertAlign
);
318 wxRect rect
= rectCell
;
321 grid
.DrawTextRectangle(dc
, GetTextLines(grid
,dc
,attr
,rect
,row
,col
),
322 rect
, horizAlign
, vertAlign
);
327 wxGridCellAutoWrapStringRenderer::GetTextLines(wxGrid
& grid
,
329 const wxGridCellAttr
& attr
,
333 wxString data
= grid
.GetCellValue(row
, col
);
336 dc
.SetFont(attr
.GetFont());
338 //Taken from wxGrid again!
339 wxCoord x
= 0, y
= 0, curr_x
= 0;
340 wxCoord max_x
= rect
.GetWidth();
342 dc
.SetFont(attr
.GetFont());
343 wxStringTokenizer
tk(data
, _T(" \n\t\r"));
344 wxString thisline
= wxEmptyString
;
346 while ( tk
.HasMoreTokens() )
348 wxString tok
= tk
.GetNextToken();
349 //FIXME: this causes us to print an extra unnecesary
350 // space at the end of the line. But it
351 // is invisible , simplifies the size calculation
352 // and ensures tokens are separated in the display
355 dc
.GetTextExtent(tok
, &x
, &y
);
356 if ( curr_x
+ x
> max_x
)
358 lines
.Add( wxString(thisline
) );
369 lines
.Add( wxString(thisline
) );
376 wxGridCellAutoWrapStringRenderer::GetBestSize(wxGrid
& grid
,
377 wxGridCellAttr
& attr
,
381 wxCoord x
,y
, height
, width
= grid
.GetColSize(col
) -20;
382 // for width, subtract 20 because ColSize includes a magin of 10 pixels
383 // that we do not want here and because we always start with an increment
384 // by 10 in the loop below.
385 int count
= 250; //Limit iterations..
387 wxRect
rect(0,0,width
,10);
389 // M is a nice large character 'y' gives descender!.
390 dc
.GetTextExtent(wxT("My"), &x
, &y
);
395 rect
.SetWidth(width
);
396 height
= y
* (wx_truncate_cast(wxCoord
, GetTextLines(grid
,dc
,attr
,rect
,row
,col
).GetCount()));
398 // Search for a shape no taller than the golden ratio.
399 } while (count
&& (width
< (height
*1.68)) );
402 return wxSize(width
,height
);