• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/text/

Lines Matching refs:RichTextFrame

336  * RichTextFrame is used to demonstrate rich text behaviour
339 class RichTextFrame: public wxFrame
342 RichTextFrame(wxWindow* parent, const wxString& title);
1478 RichTextFrame* frame = new RichTextFrame(this, _T("Rich Text Editor"));
1512 * RichTextFrame is used to demonstrate rich text behaviour
1530 BEGIN_EVENT_TABLE(RichTextFrame, wxFrame)
1531 EVT_IDLE(RichTextFrame::OnIdle)
1532 EVT_MENU(RICHTEXT_CLOSE, RichTextFrame::OnClose)
1533 EVT_MENU(RICHTEXT_LEFT_ALIGN, RichTextFrame::OnLeftAlign)
1534 EVT_MENU(RICHTEXT_RIGHT_ALIGN, RichTextFrame::OnRightAlign)
1535 EVT_MENU(RICHTEXT_CENTRE, RichTextFrame::OnCentre)
1536 EVT_MENU(RICHTEXT_JUSTIFY, RichTextFrame::OnJustify)
1537 EVT_MENU(RICHTEXT_CHANGE_FONT, RichTextFrame::OnChangeFont)
1538 EVT_MENU(RICHTEXT_CHANGE_TEXT_COLOUR, RichTextFrame::OnChangeTextColour)
1539 EVT_MENU(RICHTEXT_CHANGE_BACKGROUND_COLOUR, RichTextFrame::OnChangeBackgroundColour)
1540 EVT_MENU(RICHTEXT_LEFT_INDENT, RichTextFrame::OnLeftIndent)
1541 EVT_MENU(RICHTEXT_RIGHT_INDENT, RichTextFrame::OnRightIndent)
1542 EVT_MENU(RICHTEXT_TAB_STOPS, RichTextFrame::OnTabStops)
1545 RichTextFrame::RichTextFrame(wxWindow* parent, const wxString& title):
1593 void RichTextFrame::OnClose(wxCommandEvent& WXUNUSED(event))
1598 void RichTextFrame::OnLeftAlign(wxCommandEvent& WXUNUSED(event))
1610 void RichTextFrame::OnRightAlign(wxCommandEvent& WXUNUSED(event))
1622 void RichTextFrame::OnJustify(wxCommandEvent& WXUNUSED(event))
1634 void RichTextFrame::OnCentre(wxCommandEvent& WXUNUSED(event))
1646 void RichTextFrame::OnChangeFont(wxCommandEvent& WXUNUSED(event))
1668 void RichTextFrame::OnChangeTextColour(wxCommandEvent& WXUNUSED(event))
1697 void RichTextFrame::OnChangeBackgroundColour(wxCommandEvent& WXUNUSED(event))
1726 void RichTextFrame::OnLeftIndent(wxCommandEvent& WXUNUSED(event))
1750 void RichTextFrame::OnRightIndent(wxCommandEvent& WXUNUSED(event))
1774 void RichTextFrame::OnTabStops(wxCommandEvent& WXUNUSED(event))
1803 void RichTextFrame::OnIdle(wxIdleEvent& WXUNUSED(event))