#include "wx/colordlg.h"
#include "wx/fontdlg.h"
+#include "wx/numdlg.h"
//----------------------------------------------------------------------
// class definitions
{
public:
MyPanel(wxFrame *frame, int x, int y, int w, int h);
- virtual ~MyPanel()
- {
+ virtual ~MyPanel()
+ {
#if wxUSE_LOG
- delete wxLog::SetActiveTarget(m_logOld);
+ delete wxLog::SetActiveTarget(m_logOld);
#endif // wxUSE_LOG
}
wxLogMessage(_T("Already at the top"));
}
+ 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))
+ );
+ }
+
#if wxUSE_LOG
void OnLogClear(wxCommandEvent& event);
#endif // wxUSE_LOG
TEXT_LINE_UP,
TEXT_PAGE_DOWN,
TEXT_PAGE_UP,
+
+ TEXT_GET_LINE,
+ TEXT_GET_LINELENGTH,
+
TEXT_REMOVE,
TEXT_REPLACE,
TEXT_SELECT,
menuText->Append(TEXT_LINE_DOWN, _T("Scroll text one line down"));
menuText->Append(TEXT_LINE_UP, _T("Scroll text one line up"));
menuText->Append(TEXT_PAGE_DOWN, _T("Scroll text one page down"));
- menuText->Append(TEXT_PAGE_DOWN, _T("Scroll text one page up"));
+ menuText->Append(TEXT_PAGE_UP, _T("Scroll text one page up"));
+ menuText->AppendSeparator();
+ menuText->Append(TEXT_GET_LINE, _T("Get the text of a line of the tabbed multiline"));
+ menuText->Append(TEXT_GET_LINELENGTH, _T("Get the length of a line of the tabbed multiline"));
menu_bar->Append(menuText, _T("Te&xt"));
#if wxUSE_LOG
EVT_MENU(TEXT_PAGE_DOWN, MyFrame::OnScrollPageDown)
EVT_MENU(TEXT_PAGE_UP, MyFrame::OnScrollPageUp)
+ EVT_MENU(TEXT_GET_LINE, MyFrame::OnGetLine)
+ EVT_MENU(TEXT_GET_LINELENGTH, MyFrame::OnGetLineLength)
+
EVT_MENU(TEXT_SET, MyFrame::OnSetText)
EVT_IDLE(MyFrame::OnIdle)
wxTextAttr attr;
attr.SetFont(font);
-
+
long start, end;
m_textCtrl->GetSelection(& start, & end);
m_textCtrl->SetStyle(start, end, attr);
data.SetChooseFull(true);
for (int i = 0; i < 16; i++)
{
- wxColour colour(i*16, i*16, i*16);
+ wxColour colour((unsigned char)(i*16), (unsigned char)(i*16), (unsigned char)(i*16));
data.SetCustomColour(i, colour);
}
wxTextAttr attr;
attr.SetTextColour(col);
-
+
long start, end;
m_textCtrl->GetSelection(& start, & end);
m_textCtrl->SetStyle(start, end, attr);
data.SetChooseFull(true);
for (int i = 0; i < 16; i++)
{
- wxColour colour(i*16, i*16, i*16);
+ wxColour colour((unsigned char)(i*16), (unsigned char)(i*16), (unsigned char)(i*16));
data.SetCustomColour(i, colour);
}
wxTextAttr attr;
attr.SetBackgroundColour(col);
-
+
long start, end;
m_textCtrl->GetSelection(& start, & end);
m_textCtrl->SetStyle(start, end, attr);
wxTextAttr attr;
attr.SetLeftIndent(indent);
-
+
long start, end;
m_textCtrl->GetSelection(& start, & end);
m_textCtrl->SetStyle(start, end, attr);
wxTextAttr attr;
attr.SetRightIndent(indent);
-
+
long start, end;
m_textCtrl->GetSelection(& start, & end);
m_textCtrl->SetStyle(start, end, attr);
(const wxChar*) facename,
attr.GetTextColour().Red(), attr.GetTextColour().Green(), attr.GetTextColour().Blue(),
(const wxChar*) alignment);
+
+ if (attr.HasFont())
+ {
+ if (attr.GetFont().GetWeight() == wxBOLD)
+ msg += wxT(" BOLD");
+ else if (attr.GetFont().GetWeight() == wxNORMAL)
+ msg += wxT(" NORMAL");
+
+ if (attr.GetFont().GetStyle() == wxITALIC)
+ msg += wxT(" ITALIC");
+
+ if (attr.GetFont().GetUnderlined())
+ msg += wxT(" UNDERLINED");
+ }
+
SetStatusText(msg);
}
#endif // wxUSE_STATUSBAR