Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #ifndef INCLUDED_DBACCESS_SOURCE_UI_DLG_DETAILPAGES_HXX
21 : #define INCLUDED_DBACCESS_SOURCE_UI_DLG_DETAILPAGES_HXX
22 :
23 : #include "adminpages.hxx"
24 : #include "charsets.hxx"
25 : #include "charsetlistbox.hxx"
26 : #include <vcl/field.hxx>
27 : #include <vcl/fixed.hxx>
28 : #include <vcl/lstbox.hxx>
29 : #include <vcl/edit.hxx>
30 : #include <vcl/button.hxx>
31 : #include "TextConnectionHelper.hxx"
32 : #include "admincontrols.hxx"
33 :
34 : #include <svtools/dialogcontrolling.hxx>
35 :
36 : namespace dbaui
37 : {
38 : // OCommonBehaviourTabPage
39 : #define CBTP_NONE 0x00000000
40 : #define CBTP_USE_CHARSET 0x00000002
41 : #define CBTP_USE_OPTIONS 0x00000004
42 :
43 : /** eases the implementation of tab pages handling user/password and/or character
44 : set and/or generic options input
45 : <BR>
46 : The controls to be used have to be defined within the resource, as usual, but
47 : this class does all the handling necessary.
48 : */
49 : class OCommonBehaviourTabPage : public OGenericAdministrationPage
50 : {
51 : protected:
52 :
53 : VclPtr<FixedText> m_pOptionsLabel;
54 : VclPtr<Edit> m_pOptions;
55 :
56 : VclPtr<FixedText> m_pCharsetLabel;
57 : VclPtr<CharSetListBox> m_pCharset;
58 :
59 : VclPtr<CheckBox> m_pAutoRetrievingEnabled;
60 : VclPtr<FixedText> m_pAutoIncrementLabel;
61 : VclPtr<Edit> m_pAutoIncrement;
62 : VclPtr<FixedText> m_pAutoRetrievingLabel;
63 : VclPtr<Edit> m_pAutoRetrieving;
64 :
65 : sal_uInt32 m_nControlFlags;
66 :
67 : public:
68 : virtual bool FillItemSet (SfxItemSet* _rCoreAttrs) SAL_OVERRIDE;
69 :
70 : // nControlFlags is a combination of the CBTP_xxx-constants
71 : OCommonBehaviourTabPage(vcl::Window* pParent, const OString& rId, const OUString& rUIXMLDescription, const SfxItemSet& _rCoreAttrs, sal_uInt32 nControlFlags);
72 : protected:
73 :
74 : virtual ~OCommonBehaviourTabPage();
75 : virtual void dispose() SAL_OVERRIDE;
76 :
77 : // subclasses must override this, but it isn't pure virtual
78 : virtual void implInitControls(const SfxItemSet& _rSet, bool _bSaveValue) SAL_OVERRIDE;
79 :
80 : // <method>OGenericAdministrationPage::fillControls</method>
81 : virtual void fillControls(::std::vector< ISaveValueWrapper* >& _rControlList) SAL_OVERRIDE;
82 :
83 : // <method>OGenericAdministrationPage::fillWindows</method>
84 : virtual void fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList) SAL_OVERRIDE;
85 : };
86 :
87 : // ODbaseDetailsPage
88 : class ODbaseDetailsPage : public OCommonBehaviourTabPage
89 : {
90 : public:
91 : virtual bool FillItemSet ( SfxItemSet* _rCoreAttrs ) SAL_OVERRIDE;
92 :
93 : ODbaseDetailsPage(vcl::Window* pParent, const SfxItemSet& _rCoreAttrs);
94 : virtual ~ODbaseDetailsPage();
95 : virtual void dispose() SAL_OVERRIDE;
96 : private:
97 : VclPtr<CheckBox> m_pShowDeleted;
98 : VclPtr<FixedText> m_pFT_Message;
99 : VclPtr<PushButton> m_pIndexes;
100 :
101 : OUString m_sDsn;
102 :
103 : protected:
104 : virtual void implInitControls(const SfxItemSet& _rSet, bool _bSaveValue) SAL_OVERRIDE;
105 :
106 : private:
107 : DECL_LINK( OnButtonClicked, Button * );
108 : };
109 :
110 : // OAdoDetailsPage
111 0 : class OAdoDetailsPage : public OCommonBehaviourTabPage
112 : {
113 : public:
114 : OAdoDetailsPage( vcl::Window* pParent, const SfxItemSet& _rCoreAttrs );
115 : };
116 :
117 : // OOdbcDetailsPage
118 : class OOdbcDetailsPage : public OCommonBehaviourTabPage
119 : {
120 : public:
121 : virtual bool FillItemSet ( SfxItemSet* _rCoreAttrs ) SAL_OVERRIDE;
122 :
123 : OOdbcDetailsPage( vcl::Window* pParent, const SfxItemSet& _rCoreAttrs );
124 : virtual ~OOdbcDetailsPage();
125 : virtual void dispose() SAL_OVERRIDE;
126 : protected:
127 : virtual void implInitControls(const SfxItemSet& _rSet, bool _bSaveValue) SAL_OVERRIDE;
128 : private:
129 : VclPtr<CheckBox> m_pUseCatalog;
130 : };
131 :
132 : // OUserDriverDetailsPage
133 : class OUserDriverDetailsPage : public OCommonBehaviourTabPage
134 : {
135 : public:
136 : virtual bool FillItemSet ( SfxItemSet* _rCoreAttrs ) SAL_OVERRIDE;
137 :
138 : OUserDriverDetailsPage( vcl::Window* pParent, const SfxItemSet& _rCoreAttrs );
139 : virtual ~OUserDriverDetailsPage();
140 : virtual void dispose() SAL_OVERRIDE;
141 : protected:
142 : virtual void implInitControls(const SfxItemSet& _rSet, bool _bSaveValue) SAL_OVERRIDE;
143 : virtual void fillControls(::std::vector< ISaveValueWrapper* >& _rControlList) SAL_OVERRIDE;
144 : virtual void fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList) SAL_OVERRIDE;
145 : private:
146 : VclPtr<FixedText> m_pFTHostname;
147 : VclPtr<Edit> m_pEDHostname;
148 : VclPtr<FixedText> m_pPortNumber;
149 : VclPtr<NumericField> m_pNFPortNumber;
150 : VclPtr<CheckBox> m_pUseCatalog;
151 : };
152 :
153 : // OMySQLODBCDetailsPage
154 0 : class OMySQLODBCDetailsPage : public OCommonBehaviourTabPage
155 : {
156 : public:
157 : OMySQLODBCDetailsPage( vcl::Window* pParent, const SfxItemSet& _rCoreAttrs );
158 : };
159 :
160 : // OGeneralSpecialJDBCDetailsPage
161 : class OGeneralSpecialJDBCDetailsPage : public OCommonBehaviourTabPage
162 : {
163 : public:
164 : OGeneralSpecialJDBCDetailsPage( vcl::Window* pParent
165 : , const SfxItemSet& _rCoreAttrs
166 : , sal_uInt16 _nPortId
167 : , bool bShowSocket = true
168 : );
169 : virtual ~OGeneralSpecialJDBCDetailsPage();
170 : virtual void dispose() SAL_OVERRIDE;
171 :
172 : protected:
173 :
174 : virtual bool FillItemSet( SfxItemSet* _rCoreAttrs ) SAL_OVERRIDE;
175 : virtual void implInitControls(const SfxItemSet& _rSet, bool _bSaveValue) SAL_OVERRIDE;
176 :
177 : DECL_LINK(OnTestJavaClickHdl,PushButton*);
178 : DECL_LINK(OnEditModified,Edit*);
179 :
180 : VclPtr<Edit> m_pEDHostname;
181 : VclPtr<NumericField> m_pNFPortNumber;
182 : VclPtr<FixedText> m_pFTSocket;
183 : VclPtr<Edit> m_pEDSocket;
184 :
185 : VclPtr<FixedText> m_pFTDriverClass;
186 : VclPtr<Edit> m_pEDDriverClass;
187 : VclPtr<PushButton> m_pTestJavaDriver;
188 :
189 : OUString m_sDefaultJdbcDriverName;
190 : sal_uInt16 m_nPortId;
191 : bool m_bUseClass;
192 : };
193 :
194 : // MySQLNativePage
195 : class MySQLNativePage : public OCommonBehaviourTabPage
196 : {
197 : public:
198 : MySQLNativePage( vcl::Window* pParent,
199 : const SfxItemSet& _rCoreAttrs );
200 : virtual ~MySQLNativePage();
201 : virtual void dispose() SAL_OVERRIDE;
202 :
203 : private:
204 : VclPtr<FixedText> m_pSeparator1;
205 : VclPtr<MySQLNativeSettings> m_aMySQLSettings;
206 :
207 : VclPtr<FixedText> m_pSeparator2;
208 : VclPtr<FixedText> m_pUserNameLabel;
209 : VclPtr<Edit> m_pUserName;
210 : VclPtr<CheckBox> m_pPasswordRequired;
211 :
212 : protected:
213 : virtual bool FillItemSet( SfxItemSet* _rCoreAttrs ) SAL_OVERRIDE;
214 : virtual void implInitControls(const SfxItemSet& _rSet, bool _bSaveValue) SAL_OVERRIDE;
215 : virtual void fillControls(::std::vector< ISaveValueWrapper* >& _rControlList) SAL_OVERRIDE;
216 : virtual void fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList) SAL_OVERRIDE;
217 : };
218 :
219 : // OOdbcDetailsPage
220 : class OLDAPDetailsPage : public OCommonBehaviourTabPage
221 : {
222 : public:
223 : virtual bool FillItemSet ( SfxItemSet* _rCoreAttrs ) SAL_OVERRIDE;
224 :
225 : OLDAPDetailsPage( vcl::Window* pParent, const SfxItemSet& _rCoreAttrs );
226 : virtual ~OLDAPDetailsPage();
227 : virtual void dispose() SAL_OVERRIDE;
228 : protected:
229 : virtual void implInitControls(const SfxItemSet& _rSet, bool _bSaveValue) SAL_OVERRIDE;
230 : private:
231 : VclPtr<Edit> m_pETBaseDN;
232 : VclPtr<CheckBox> m_pCBUseSSL;
233 : VclPtr<NumericField> m_pNFPortNumber;
234 : VclPtr<NumericField> m_pNFRowCount;
235 :
236 : sal_Int32 m_iSSLPort;
237 : sal_Int32 m_iNormalPort;
238 : DECL_LINK( OnCheckBoxClick, CheckBox * );
239 : };
240 :
241 : // OMozillaDetailsPage Detail page for Mozilla and Thunderbird addressbook
242 : class OMozillaDetailsPage : public OCommonBehaviourTabPage
243 : {
244 : public:
245 : OMozillaDetailsPage( vcl::Window* pParent, const SfxItemSet& _rCoreAttrs );
246 : };
247 :
248 : // OTextDetailsPage
249 : class OTextDetailsPage : public OCommonBehaviourTabPage
250 : {
251 : public:
252 : virtual bool FillItemSet ( SfxItemSet* _rCoreAttrs ) SAL_OVERRIDE;
253 :
254 : OTextDetailsPage( vcl::Window* pParent, const SfxItemSet& _rCoreAttrs );
255 : VclPtr<OTextConnectionHelper> m_pTextConnectionHelper;
256 :
257 : protected:
258 : virtual ~OTextDetailsPage();
259 : virtual void dispose() SAL_OVERRIDE;
260 : virtual bool prepareLeave() SAL_OVERRIDE;
261 :
262 : virtual void implInitControls(const SfxItemSet& _rSet, bool _bSaveValue) SAL_OVERRIDE;
263 : virtual void fillControls(::std::vector< ISaveValueWrapper* >& _rControlList) SAL_OVERRIDE;
264 : virtual void fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList) SAL_OVERRIDE;
265 :
266 : private:
267 : };
268 :
269 : } // namespace dbaui
270 :
271 : #endif // INCLUDED_DBACCESS_SOURCE_UI_DLG_DETAILPAGES_HXX
272 :
273 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|