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 : #include "sfx2/basedlgs.hxx"
21 : #include "cuigaldlg.hxx"
22 : #include "hlmarkwn.hxx"
23 : #include "srchxtra.hxx"
24 : #include "cuisrchdlg.hxx"
25 : #include "transfrm.hxx"
26 : #include "labdlg.hxx"
27 : #include "cuitbxform.hxx"
28 : #include "optdict.hxx"
29 : #include "dlgname.hxx"
30 : #include "cuiimapwnd.hxx"
31 : #include "multipat.hxx"
32 : #include "cuifmsearch.hxx"
33 : #include "cuigrfflt.hxx"
34 : #include "cuitabarea.hxx"
35 : #include "insdlg.hxx"
36 : #include "pastedlg.hxx"
37 : #include "linkdlg.hxx"
38 : #include "postdlg.hxx"
39 : #include "passwdomdlg.hxx"
40 : #include "cuihyperdlg.hxx"
41 : #include "selector.hxx"
42 : #include "SpellDialog.hxx"
43 : #include "zoom.hxx"
44 : #include "showcols.hxx"
45 : #include "hyphen.hxx"
46 : #include "thesdlg.hxx"
47 : #include "hangulhanjadlg.hxx"
48 : #include "dstribut.hxx"
49 : #include "dlgfact.hxx"
50 : #include "sal/types.h"
51 :
52 : namespace cui
53 : {
54 : static AbstractDialogFactory_Impl* pFactory=NULL;
55 0 : AbstractDialogFactory_Impl* GetFactory()
56 : {
57 0 : if ( !pFactory )
58 0 : pFactory = new AbstractDialogFactory_Impl;
59 0 : return pFactory;
60 : }
61 : }
62 :
63 : extern "C"
64 : {
65 0 : SAL_DLLPUBLIC_EXPORT VclAbstractDialogFactory* CreateDialogFactory()
66 : {
67 0 : return ::cui::GetFactory();
68 : }
69 0 : }
70 :
71 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|