1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 #include <sfx2/tabdlg.hxx>
26 /// a collection class for all details a driver needs
27 class ODriversSettings
31 /** Creates the detail page for ado
33 static std::unique_ptr
<SfxTabPage
> CreateDbase( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* _rAttrSet
);
35 /** Creates the detail page for ado
37 static std::unique_ptr
<SfxTabPage
> CreateAdo( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* _rAttrSet
);
39 /** Creates the detail page for ODBC
41 static std::unique_ptr
<SfxTabPage
> CreateODBC( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* _rAttrSet
);
43 /** Creates the detail page for user
45 static std::unique_ptr
<SfxTabPage
> CreateUser( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* _rAttrSet
);
47 /** Creates the detail page for MySQLODBC
49 static std::unique_ptr
<SfxTabPage
> CreateMySQLODBC( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* _rAttrSet
);
51 /** Creates the detail page for MySQLJDBC
53 static std::unique_ptr
<SfxTabPage
> CreateMySQLJDBC( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* _rAttrSet
);
55 /** Creates the detail page for MySQLNATIVE
57 static std::unique_ptr
<SfxTabPage
> CreateMySQLNATIVE( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* _rAttrSet
);
59 /** Creates the detail page for Oracle JDBC
61 static std::unique_ptr
<SfxTabPage
> CreateOracleJDBC( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* _rAttrSet
);
63 /** Creates the detail page for LDAP
65 static std::unique_ptr
<SfxTabPage
> CreateLDAP( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* _rAttrSet
);
67 /// Creates the detail page for Text
68 static std::unique_ptr
<SfxTabPage
> CreateText( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* _rAttrSet
);
70 /// creates the GeneratedValues page
71 static std::unique_ptr
<SfxTabPage
> CreateGeneratedValuesPage( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* _rAttrSet
);
73 /// creates the "Special Settings" page of the "Advanced Settings" dialog
74 static std::unique_ptr
<SfxTabPage
> CreateSpecialSettingsPage( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* _rAttrSet
);
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */