summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/dsselect.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-08-02 14:48:24 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-08-02 14:48:24 +0000
commit270cf6b2cc0a200cdd91edaaa533abc6c1727619 (patch)
tree1cd9792fde05d4f9a79efd79deec757dcabf28f0 /dbaccess/source/ui/dlg/dsselect.hxx
parenta0371f6cbf3eb76626afdc2cd1debbfb8669bba9 (diff)
INTEGRATION: CWS insight01 (1.4.64); FILE MERGED
2004/03/15 12:24:55 oj 1.4.64.1: #111075# ongoing work
Diffstat (limited to 'dbaccess/source/ui/dlg/dsselect.hxx')
-rw-r--r--dbaccess/source/ui/dlg/dsselect.hxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/dbaccess/source/ui/dlg/dsselect.hxx b/dbaccess/source/ui/dlg/dsselect.hxx
index 7faba091ae08..963d1c1c11fe 100644
--- a/dbaccess/source/ui/dlg/dsselect.hxx
+++ b/dbaccess/source/ui/dlg/dsselect.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dsselect.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: hr $ $Date: 2003-03-19 17:52:24 $
+ * last change: $Author: hr $ $Date: 2004-08-02 15:48:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -87,6 +87,7 @@
#include "commontypes.hxx"
#endif
+class SfxItemSet;
//.........................................................................
namespace dbaui
{
@@ -104,9 +105,11 @@ protected:
CancelButton m_aCancel;
HelpButton m_aHelp;
PushButton m_aManageDatasources;
+ PushButton m_aCreateAdabasDB;
+ SfxItemSet* m_pOutputSet;
public:
- ODatasourceSelectDialog(Window* _pParent, const StringBag& _rDatasources, DATASOURCE_TYPE _eType);
+ ODatasourceSelectDialog(Window* _pParent, const StringBag& _rDatasources, DATASOURCE_TYPE _eType,SfxItemSet* _pOutputSet = NULL);
inline String GetSelected() const { return m_aDatasource.GetSelectEntry();}
void Select( const String& _rEntry ) { m_aDatasource.SelectEntry(_rEntry); }
@@ -114,6 +117,7 @@ public:
protected:
DECL_LINK( ListDblClickHdl, ListBox * );
DECL_LINK( ManageClickHdl, PushButton * );
+ DECL_LINK( CreateDBClickHdl, PushButton * );
void fillListBox(const StringBag& _rDatasources);
};