summaryrefslogtreecommitdiffstats
path: root/lib/kofficecore/kofficeversion.h
blob: 890223308c6a8d0fc4f5cb080fcc2ee4f8b7e27a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* This file is part of the KOffice libraries
    Copyright (c) 2003 David Faure <faure@kde.org>
    Copyright (c) 2003 Lukas Tinkl <lukas@kde.org>
    Copyright (c) 2004 Nicolas Goutte <goutte@kde.org>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef _KOFFICE_VERSION_H_
#define _KOFFICE_VERSION_H_

// Remmber to synchronize the version number with the file(s):
// - koffice/configure.in.in
//
// NOT synchronized are:
// - karbon/karbon_aboutdata.h
//

#define KOFFICE_VERSION_STRING "1.6.3"
#define KOFFICE_VERSION_MAJOR 1
#define KOFFICE_VERSION_MINOR 6
#define KOFFICE_VERSION_RELEASE 3
#define KOFFICE_MAKE_VERSION( a,b,c ) (((a) << 16) | ((b) << 8) | (c))

#define KOFFICE_VERSION \
  KOFFICE_MAKE_VERSION(KOFFICE_VERSION_MAJOR,KOFFICE_VERSION_MINOR,KOFFICE_VERSION_RELEASE)

#define KOFFICE_IS_VERSION(a,b,c) ( KOFFICE_VERSION >= KOFFICE_MAKE_VERSION(a,b,c) )

/**
 * Namespace for general KOFFICE functions.
 */
namespace KOffice
{
    /**
     * Returns the encoded number of KOffice's version, see the KOFFICE_VERSION macro.
     * In contrary to that macro this function returns the number of the actually
     * installed KOffice version, not the number of the KOffice version that was
     * installed when the program was compiled.
     * @return the version number, encoded in a single uint
     * @since 1.3
     */
    unsigned int version();
    /**
     * Returns the major number of KOffice's version, e.g.
     * 1 for KOffice 1.2.3.
     * @return the major version number
     * @since 1.3
     */
    unsigned int versionMajor();
    /**
     * Returns the minor number of KOffice's version, e.g.
     * 2 for KOffice 1.2.3.
     * @return the minor version number
     * @since 1.3
     */
    unsigned int versionMinor();
    /**
     * Returns the release of KOffice's version, e.g.
     * 3 for KOffice 1.2.3.
     * @return the release number
     * @since 1.3
     */
    unsigned int versionRelease();
    /**
     * Returns the KOffice version as string, e.g. "1.2.3".
     * @return the KOffice version. You can keep the string forever
     * @since 1.3
     */
    const char *versionString();
}

#endif // _KOFFICE_VERSION_H_