delay a few things on startup, such as setting the visibility mode, which ensures...
[personal-kdebase.git] / apps / konqueror / src / konqprivate_export.h
blob2dec78bb2c3f6b724c8244d2dbc341b27bb0228b
1 /* This file is part of the KDE project
2 Copyright (C) 2007 David Faure <faure@kde.org>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #ifndef KONQPRIVATE_EXPORT_H
21 #define KONQPRIVATE_EXPORT_H
23 /* needed for KDE_EXPORT and KDE_IMPORT macros */
24 #include <kdemacros.h>
26 /* Classes from the Konqueror application, which are exported only for unit tests */
27 #ifdef COMPILING_TESTS
28 # ifndef KONQ_TESTS_EXPORT
29 # if defined(MAKE_KDEINIT_KONQUEROR_LIB) || defined(MAKE_KDED_KONQY_PRELOADER_LIB)
30 /* We are building this library */
31 # define KONQ_TESTS_EXPORT KDE_EXPORT
32 # else
33 /* We are using this library */
34 # define KONQ_TESTS_EXPORT KDE_IMPORT
35 # endif
36 # endif
37 #else /* not compiling tests */
38 # define KONQ_TESTS_EXPORT
39 #endif
41 /* Classes from the libkonquerorprivate library */
42 #ifndef KONQUERORPRIVATE_EXPORT
43 # if defined(MAKE_KONQUERORPRIVATE_LIB)
44 /* We are building this library */
45 # define KONQUERORPRIVATE_EXPORT KDE_EXPORT
46 # else
47 /* We are using this library */
48 # define KONQUERORPRIVATE_EXPORT KDE_IMPORT
49 # endif
50 #endif
52 #ifndef KONQUERORPRIVATE_EXPORT_DEPRECATED
53 # define KONQUERORPRIVATE_EXPORT_DEPRECATED KDE_DEPRECATED KONQUERORPRIVATE_EXPORT
54 #endif
56 #endif