summaryrefslogtreecommitdiff
path: root/extensions/source/bibliography/toolbar.hxx
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2000-11-20 11:23:38 +0000
committerOliver Specht <os@openoffice.org>2000-11-20 11:23:38 +0000
commite3df8bccc696556d15bd145510d452228648d07d (patch)
treec59e57a4fd84a62d4dac555bbe774288a7cf3970 /extensions/source/bibliography/toolbar.hxx
parente3b88a0886a551fbb82991daa72358ccc56b7b74 (diff)
data source dialog revived - dialogs can be called via toolbox button
Diffstat (limited to 'extensions/source/bibliography/toolbar.hxx')
-rw-r--r--extensions/source/bibliography/toolbar.hxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/extensions/source/bibliography/toolbar.hxx b/extensions/source/bibliography/toolbar.hxx
index 6b6ecda68931..06fe9492d758 100644
--- a/extensions/source/bibliography/toolbar.hxx
+++ b/extensions/source/bibliography/toolbar.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: toolbar.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: os $ $Date: 2000-11-14 15:10:26 $
+ * last change: $Author: os $ $Date: 2000-11-20 12:23:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -98,7 +98,7 @@
#include <cppuhelper/implbase1.hxx> // helper for implementations
#endif
-
+class BibDataManager;
class BibToolBar;
class BibToolBarListener: public cppu::WeakImplHelper1 < ::com::sun::star::frame::XStatusListener>
@@ -191,6 +191,8 @@ class BibToolBar: public ToolBox
sal_uInt16 nMenuId;
sal_uInt16 nSelMenuItem;
rtl::OUString aQueryField;
+
+ BibDataManager* pDatMan;
DECL_LINK( SelHdl, ListBox* );
DECL_LINK( SendSelHdl, Timer* );
DECL_LINK( MenuHdl, Timer* );
@@ -226,6 +228,8 @@ class BibToolBar: public ToolBox
void statusChanged(const ::com::sun::star::frame::FeatureStateEvent& Event)
throw( ::com::sun::star::uno::RuntimeException );
+
+ void SetDatMan(BibDataManager& rDatMan) {pDatMan = &rDatMan;}
};