]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmlwin.cpp
OS/2 updates for statusbar processing and easier VA debugging
[wxWidgets.git] / src / html / htmlwin.cpp
index a0fd8ace9ffebbcab364948ed220c5dddc07be72..9316bf7019d87b2e09eec15118eba7a5112f83c0 100644 (file)
@@ -387,6 +387,11 @@ bool wxHtmlWindow::HistoryBack()
     return TRUE;
 }
 
+bool wxHtmlWindow::HistoryCanBack()
+{
+    if (m_HistoryPos < 1) return FALSE;
+    return TRUE ;
+}
 
 
 bool wxHtmlWindow::HistoryForward()
@@ -413,6 +418,12 @@ bool wxHtmlWindow::HistoryForward()
     return TRUE;
 }
 
+bool wxHtmlWindow::HistoryCanForward()
+{
+    if (m_HistoryPos == -1) return FALSE;
+    if (m_HistoryPos >= (int)m_History.GetCount() - 1)return FALSE;
+    return TRUE ;
+}
 
 
 void wxHtmlWindow::HistoryClear()