]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.C
gettext support, fast_start option, scons all, mingw bug fix and some cleanup for...
[lyx.git] / src / BufferView.C
index aa4ff6fcb3713e5fd86192cb0ba858f94dd45de1..01cfc41d8eef8fbf3e737869f29d0133340a3e2b 100644 (file)
@@ -235,6 +235,36 @@ bool BufferView::dispatch(FuncRequest const & ev)
 }
 
 
+void BufferView::selectionRequested()
+{
+        pimpl_->selectionRequested();
+}
+
+
+void BufferView::selectionLost()
+{
+        pimpl_->selectionLost();
+}
+
+
+void BufferView::workAreaResize()
+{
+        pimpl_->workAreaResize();
+}
+
+
+void BufferView::workAreaKeyPress(LyXKeySymPtr key, key_modifier::state state)
+{
+        pimpl_->workAreaKeyPress(key, state);
+}
+
+
+bool BufferView::workAreaDispatch(FuncRequest const & ev)
+{
+        return pimpl_->workAreaDispatch(ev);
+}
+
+
 void BufferView::scroll(int lines)
 {
        pimpl_->scroll(lines);
@@ -374,13 +404,13 @@ void BufferView::putSelectionAt(DocIterator const & cur,
 
 
 bool const BufferView::repaintAll() const
-{ 
+{
        return pimpl_->repaintAll();
 }
 
-       
+
 void const BufferView::repaintAll(bool r) const
-{ 
+{
        pimpl_->repaintAll(r);
 }