+ void OnScrollLineDown(wxCommandEvent& event)
+ {
+ if ( !m_panel->m_textrich->LineDown() )
+ wxLogMessage(_T("Already at the bottom"));
+ }
+
+ void OnScrollLineUp(wxCommandEvent& event)
+ {
+ if ( !m_panel->m_textrich->LineUp() )
+ wxLogMessage(_T("Already at the top"));
+ }
+
+ void OnScrollPageDown(wxCommandEvent& event)
+ {
+ if ( !m_panel->m_textrich->PageDown() )
+ wxLogMessage(_T("Already at the bottom"));
+ }
+
+ void OnScrollPageUp(wxCommandEvent& event)
+ {
+ if ( !m_panel->m_textrich->PageUp() )
+ wxLogMessage(_T("Already at the top"));
+ }
+