+ void OnGetLine(wxCommandEvent& WXUNUSED(event))
+ {
+ long nLine = wxGetNumberFromUser(wxT("Which line would you like to get?"),
+ wxT("Enter which line you would like to get"),
+ wxT("Get a line from the tabbed multiline text control") );
+
+ wxMessageBox(m_panel->m_tab->GetLineText(nLine));
+ }
+
+ void OnGetLineLength(wxCommandEvent& WXUNUSED(event))
+ {
+ long nLine = wxGetNumberFromUser(wxT("Which line would you like to get?"),
+ wxT("Enter which line you would like to get"),
+ wxT("Get length of a line from the tabbed multiline text control") );
+
+ wxMessageBox(wxString::Format(wxT("Length of line %i is:%i"),
+ (int) nLine,
+ m_panel->m_tab->GetLineLength(nLine))
+ );
+ }
+