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 : #undef SC_DLLIMPLEMENTATION
21 :
22 : #include "scdlgfact.hxx"
23 : #include "corodlg.hxx"
24 : #include "condformatmgr.hxx"
25 : #include "dapitype.hxx"
26 : #include "dapidata.hxx"
27 : #include "datafdlg.hxx"
28 : #include "delcodlg.hxx"
29 : #include "delcldlg.hxx"
30 : #include "dpgroupdlg.hxx"
31 : #include "filldlg.hxx"
32 : #include "groupdlg.hxx"
33 : #include "linkarea.hxx"
34 : #include "lbseldlg.hxx"
35 : #include "inscldlg.hxx"
36 : #include "instbdlg.hxx"
37 : #include "inscodlg.hxx"
38 : #include "mtrindlg.hxx"
39 : #include "mvtabdlg.hxx"
40 : #include "namecrea.hxx"
41 : #include "namepast.hxx"
42 : #include "pfiltdlg.hxx"
43 : #include "pvfundlg.hxx"
44 : #include "shtabdlg.hxx"
45 : #include "scendlg.hxx"
46 : #include "scuiasciiopt.hxx"
47 : #include "scuiautofmt.hxx"
48 : #include "scuiimoptdlg.hxx"
49 : #include "sortdlg.hxx"
50 : #include "strindlg.hxx"
51 : #include "tabbgcolordlg.hxx"
52 : #include "textimportoptions.hxx"
53 : #include <sal/types.h>
54 :
55 : namespace scui
56 : {
57 : static ScAbstractDialogFactory_Impl* pFactory=NULL;
58 0 : ScAbstractDialogFactory_Impl* GetFactory()
59 : {
60 0 : if ( !pFactory )
61 0 : pFactory = new ScAbstractDialogFactory_Impl;
62 : //if ( !pSwResMgr)
63 : // ScDialogsResMgr::GetResMgr();
64 0 : return pFactory;
65 : }
66 : }
67 :
68 : extern "C"
69 : {
70 0 : SAL_DLLPUBLIC_EXPORT ScAbstractDialogFactory* ScCreateDialogFactory()
71 : {
72 0 : return ::scui::GetFactory();
73 : }
74 0 : }
75 :
76 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|