xref: /AOO41X/main/dbaccess/source/ui/inc/adtabdlg.hxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir #ifndef DBAUI_QYDLGTAB_HXX
28*cdf0e10cSrcweir #define DBAUI_QYDLGTAB_HXX
29*cdf0e10cSrcweir 
30*cdf0e10cSrcweir #ifndef _DIALOG_HXX //autogen
31*cdf0e10cSrcweir #include <vcl/dialog.hxx>
32*cdf0e10cSrcweir #endif
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir #ifndef _BUTTON_HXX //autogen
35*cdf0e10cSrcweir #include <vcl/button.hxx>
36*cdf0e10cSrcweir #endif
37*cdf0e10cSrcweir 
38*cdf0e10cSrcweir #ifndef _FIXED_HXX //autogen
39*cdf0e10cSrcweir #include <vcl/fixed.hxx>
40*cdf0e10cSrcweir #endif
41*cdf0e10cSrcweir 
42*cdf0e10cSrcweir #ifndef _COM_SUN_STAR_SDBC_XCONNECTION_HPP_
43*cdf0e10cSrcweir #include <com/sun/star/sdbc/XConnection.hpp>
44*cdf0e10cSrcweir #endif
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir #ifndef _LSTBOX_HXX //autogen
47*cdf0e10cSrcweir #include <vcl/lstbox.hxx>
48*cdf0e10cSrcweir #endif
49*cdf0e10cSrcweir #ifndef _SV_DIALOG_HXX
50*cdf0e10cSrcweir #include <vcl/dialog.hxx>
51*cdf0e10cSrcweir #endif
52*cdf0e10cSrcweir #ifndef _STRING_HXX //autogen
53*cdf0e10cSrcweir #include <tools/string.hxx>
54*cdf0e10cSrcweir #endif
55*cdf0e10cSrcweir 
56*cdf0e10cSrcweir #ifndef _DBAUI_TABLETREE_HXX_
57*cdf0e10cSrcweir #include "tabletree.hxx"
58*cdf0e10cSrcweir #endif
59*cdf0e10cSrcweir 
60*cdf0e10cSrcweir #include <memory>
61*cdf0e10cSrcweir 
62*cdf0e10cSrcweir namespace dbaui
63*cdf0e10cSrcweir {
64*cdf0e10cSrcweir 	//========================================================================
65*cdf0e10cSrcweir     /** unifies the access to a list of table/query objects
66*cdf0e10cSrcweir     */
67*cdf0e10cSrcweir     class TableObjectListFacade
68*cdf0e10cSrcweir     {
69*cdf0e10cSrcweir     public:
70*cdf0e10cSrcweir         virtual void    updateTableObjectList( bool _bAllowViews ) = 0;
71*cdf0e10cSrcweir         virtual String  getSelectedName( String& _out_rAliasName ) const = 0;
72*cdf0e10cSrcweir         virtual bool    isLeafSelected() const = 0;
73*cdf0e10cSrcweir 
74*cdf0e10cSrcweir         virtual ~TableObjectListFacade();
75*cdf0e10cSrcweir     };
76*cdf0e10cSrcweir 
77*cdf0e10cSrcweir 	//========================================================================
78*cdf0e10cSrcweir     class IAddTableDialogContext
79*cdf0e10cSrcweir     {
80*cdf0e10cSrcweir     public:
81*cdf0e10cSrcweir         virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >
82*cdf0e10cSrcweir                         getConnection() const = 0;
83*cdf0e10cSrcweir         virtual bool    allowViews() const = 0;
84*cdf0e10cSrcweir         virtual bool    allowQueries() const = 0;
85*cdf0e10cSrcweir         virtual bool    allowAddition() const = 0;
86*cdf0e10cSrcweir         virtual void    addTableWindow( const String& _rQualifiedTableName, const String& _rAliasName ) = 0;
87*cdf0e10cSrcweir         virtual void    onWindowClosing( const Window* _pWindow ) = 0;
88*cdf0e10cSrcweir     };
89*cdf0e10cSrcweir 
90*cdf0e10cSrcweir 	//========================================================================
91*cdf0e10cSrcweir 	class OAddTableDlg : public ModelessDialog
92*cdf0e10cSrcweir 	{
93*cdf0e10cSrcweir         RadioButton         m_aCaseTables;
94*cdf0e10cSrcweir         RadioButton         m_aCaseQueries;
95*cdf0e10cSrcweir 
96*cdf0e10cSrcweir 		OTableTreeListBox	m_aTableList;
97*cdf0e10cSrcweir         SvTreeListBox       m_aQueryList;
98*cdf0e10cSrcweir         ::std::auto_ptr< TableObjectListFacade >
99*cdf0e10cSrcweir                             m_pCurrentList;
100*cdf0e10cSrcweir 
101*cdf0e10cSrcweir 		PushButton			aAddButton;
102*cdf0e10cSrcweir 		CancelButton		aCloseButton;
103*cdf0e10cSrcweir 		HelpButton			aHelpButton;
104*cdf0e10cSrcweir 
105*cdf0e10cSrcweir         IAddTableDialogContext&
106*cdf0e10cSrcweir                             m_rContext;
107*cdf0e10cSrcweir 
108*cdf0e10cSrcweir 		DECL_LINK( AddClickHdl, Button* );
109*cdf0e10cSrcweir 		DECL_LINK( CloseClickHdl, Button* );
110*cdf0e10cSrcweir 		DECL_LINK( TableListDoubleClickHdl, void* );
111*cdf0e10cSrcweir 		DECL_LINK( TableListSelectHdl, void* );
112*cdf0e10cSrcweir         DECL_LINK( OnTypeSelected, void* );
113*cdf0e10cSrcweir 
114*cdf0e10cSrcweir 	public:
115*cdf0e10cSrcweir 		OAddTableDlg(
116*cdf0e10cSrcweir             Window* _pParent,
117*cdf0e10cSrcweir             IAddTableDialogContext& _rContext );
118*cdf0e10cSrcweir 		virtual ~OAddTableDlg();
119*cdf0e10cSrcweir 
120*cdf0e10cSrcweir 		void DetermineAddTable() { aAddButton.Enable( impl_isAddAllowed() ); }
121*cdf0e10cSrcweir 		void Update();
122*cdf0e10cSrcweir 
123*cdf0e10cSrcweir         static  String  getDialogTitleForContext(
124*cdf0e10cSrcweir             IAddTableDialogContext& _rContext );
125*cdf0e10cSrcweir 
126*cdf0e10cSrcweir     private:
127*cdf0e10cSrcweir 		virtual sal_Bool Close();
128*cdf0e10cSrcweir 
129*cdf0e10cSrcweir 		bool impl_isAddAllowed();
130*cdf0e10cSrcweir 		void impl_addTable();
131*cdf0e10cSrcweir 
132*cdf0e10cSrcweir         enum ObjectList
133*cdf0e10cSrcweir         {
134*cdf0e10cSrcweir             Tables,
135*cdf0e10cSrcweir             Queries
136*cdf0e10cSrcweir         };
137*cdf0e10cSrcweir         void impl_switchTo( ObjectList _eList );
138*cdf0e10cSrcweir 	};
139*cdf0e10cSrcweir }
140*cdf0e10cSrcweir #endif // DBAUI_QYDLGTAB_HXX
141