Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / framework / source / register / registertemp.cxx
blob35add0a5ef3136f0d2df89f2fe68e2d0e4f0c060
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #include <macros/registration.hxx>
22 /*=================================================================================================================
23 Add new include and new register info to for new services.
25 Example:
27 #include <service1.hxx>
28 #include <service2.hxx>
30 COMPONENTGETFACTORY ( IFFACTORIE( Service1 )
31 else
32 IFFACTORIE( Service2 )
34 =================================================================================================================*/
35 #include <services/mediatypedetectionhelper.hxx>
36 #include <dispatch/mailtodispatcher.hxx>
37 #include <dispatch/oxt_handler.hxx>
38 #include <dispatch/popupmenudispatcher.hxx>
39 #include <dispatch/servicehandler.hxx>
40 #include <dispatch/dispatchdisabler.hxx>
41 #include <framework/dispatchhelper.hxx>
42 #include <recording/dispatchrecorder.hxx>
43 #include <recording/dispatchrecordersupplier.hxx>
44 #include <services/uriabbreviation.hxx>
45 #include <uielement/fontmenucontroller.hxx>
46 #include <uielement/fontsizemenucontroller.hxx>
47 #include <uielement/footermenucontroller.hxx>
48 #include <uielement/headermenucontroller.hxx>
49 #include <uielement/langselectionmenucontroller.hxx>
50 #include <uielement/macrosmenucontroller.hxx>
51 #include <uielement/newmenucontroller.hxx>
52 #include <uielement/toolbarmodemenucontroller.hxx>
53 #include <uielement/toolbarsmenucontroller.hxx>
55 COMPONENTGETFACTORY ( fwl,
56 IFFACTORY( ::framework::MediaTypeDetectionHelper )
57 IFFACTORY( ::framework::MailToDispatcher ) else
58 IFFACTORY( ::framework::ServiceHandler ) else
59 IFFACTORY( ::framework::PopupMenuDispatcher ) else
60 IFFACTORY( ::framework::DispatchHelper ) else
61 IFFACTORY( ::framework::DispatchDisabler ) else
62 IFFACTORY( ::framework::DispatchRecorder ) else
63 IFFACTORY( ::framework::DispatchRecorderSupplier ) else
64 IFFACTORY( ::framework::ToolbarModeMenuController ) else
65 IFFACTORY( ::framework::ToolbarsMenuController ) else
66 IFFACTORY( ::framework::FontMenuController ) else
67 IFFACTORY( ::framework::MacrosMenuController ) else
68 IFFACTORY( ::framework::NewMenuController ) else
69 IFFACTORY( ::framework::FontSizeMenuController ) else
70 IFFACTORY( ::framework::UriAbbreviation ) else
71 IFFACTORY( ::framework::FooterMenuController ) else
72 IFFACTORY( ::framework::HeaderMenuController ) else
73 IFFACTORY( ::framework::LanguageSelectionMenuController ) else
74 IFFACTORY( ::framework::Oxt_Handler )
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */