1 | /****************************************************************************
|
---|
2 | ** $Id: qgif.h 2 2005-11-16 15:49:26Z dmik $
|
---|
3 | **
|
---|
4 | ** To enable built-in reading of GIF images in Qt, change the definition
|
---|
5 | ** below to "#define QT_BUILTIN_GIF_READER 1".
|
---|
6 | **
|
---|
7 | ** To disable built-in reading of GIF images in Qt, change the definition
|
---|
8 | ** below to "#define QT_BUILTIN_GIF_READER 0".
|
---|
9 | **
|
---|
10 | ** WARNING:
|
---|
11 | ** A separate license from Unisys may be required to use the gif
|
---|
12 | ** reader. See http://www.unisys.com/about__unisys/lzw/
|
---|
13 | ** for information from Unisys
|
---|
14 | **
|
---|
15 | ** Copyright (C) 1992-2002 Trolltech AS. All rights reserved.
|
---|
16 | **
|
---|
17 | ** This file is part of the kernel module of the Qt GUI Toolkit.
|
---|
18 | **
|
---|
19 | ** This file may be distributed under the terms of the Q Public License
|
---|
20 | ** as defined by Trolltech AS of Norway and appearing in the file
|
---|
21 | ** LICENSE.QPL included in the packaging of this file.
|
---|
22 | **
|
---|
23 | ** This file may be distributed and/or modified under the terms of the
|
---|
24 | ** GNU General Public License version 2 as published by the Free Software
|
---|
25 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
26 | ** packaging of this file.
|
---|
27 | **
|
---|
28 | ** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
|
---|
29 | ** licenses may use this file in accordance with the Qt Commercial License
|
---|
30 | ** Agreement provided with the Software.
|
---|
31 | **
|
---|
32 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
---|
33 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
---|
34 | **
|
---|
35 | ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
|
---|
36 | ** information about Qt Commercial License Agreements.
|
---|
37 | ** See http://www.trolltech.com/qpl/ for QPL licensing information.
|
---|
38 | ** See http://www.trolltech.com/gpl/ for GPL licensing information.
|
---|
39 | **
|
---|
40 | ** Contact info@trolltech.com if any conditions of this licensing are
|
---|
41 | ** not clear to you.
|
---|
42 | **
|
---|
43 | **********************************************************************/
|
---|
44 |
|
---|
45 | #ifndef QGIF_H
|
---|
46 | #define QGIF_H
|
---|
47 |
|
---|
48 | #ifndef QT_H
|
---|
49 | #include "qglobal.h"
|
---|
50 | #endif // QT_H
|
---|
51 |
|
---|
52 | #ifndef QT_BUILTIN_GIF_READER
|
---|
53 | #define QT_BUILTIN_GIF_READER 0
|
---|
54 | #endif
|
---|
55 |
|
---|
56 | bool qt_builtin_gif_reader();
|
---|
57 |
|
---|
58 | #endif // QGIF_H
|
---|