qfeatures.h 16.9 KB
Newer Older
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
**
** Global feature selection
**
** Created : 000417
**
** Copyright (C) 2000 Trolltech AS.  All rights reserved.
**
** This file is part of the tools module of the Qt GUI Toolkit.
**
** This file may be distributed under the terms of the Q Public License
** as defined by Trolltech AS of Norway and appearing in the file
** LICENSE.QPL included in the packaging of this file.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
** licenses may use this file in accordance with the Qt Commercial License
** Agreement provided with the Software.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
**   information about Qt Commercial License Agreements.
** See http://www.trolltech.com/qpl/ for QPL licensing information.
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/

#ifndef QFEATURES_H
#define QFEATURES_H

/*! \page features....html
    ...
*/

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
// Qt ships with a number of pre-defined configurations. If none suit
// your needs, define QCONFIG_LOCAL and create a "qconfig-local.h" file.
//
// Note that disabling some features will produce a libqt that is not
// compatible with other libqt builds. Such modifications are only
// supported on Qt/Embedded where reducing the library size is important
// and where the application-suite is often a fixed set.
//
#if defined(QCONFIG_LOCAL)
#include <qconfig-local.h>
#elif defined(QCONFIG_MINIMAL)
#include <qconfig-minimal.h>
#elif defined(QCONFIG_SMALL)
#include <qconfig-small.h>
#elif defined(QCONFIG_MEDIUM)
#include <qconfig-medium.h>
#elif defined(QCONFIG_LARGE)
#include <qconfig-large.h>
#else // everything...
64
#include <qconfig.h>
65
#endif
66 67 68 69 70 71 72 73


// Data structures
/*!
    QStringList
*/
//#define QT_NO_STRINGLIST

74 75 76 77 78 79 80
#if defined(QT_NO_IMAGE_SMOOTHSCALE)
/*!
    QIconSet
*/
# define QT_NO_ICONSET
#endif

81 82 83 84 85 86 87 88
// File I/O
#if defined(QT_NO_STRINGLIST)
    /*!
	QDir
    */
# define QT_NO_DIR
#endif

89 90 91 92 93
/*!
  Palettes
*/
//#define QT_NO_PALETTE

94 95 96 97 98 99 100 101 102
/*!
    QTextStream
*/
//#define QT_NO_TEXTSTREAM
/*!
    QDataStream
*/
//#define QT_NO_DATASTREAM

103 104 105 106 107 108
/*!
  Dynamic module linking
*/
//#define QT_NO_PLUGIN


109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
// Images
/*!
    BMP image I/O
    <p>The Windows Bitmap (BMP) image format is common on MS-Windows.
    <p>This is an uncompressed image format
    offering few advantages over PNG or JPEG.
*/
#if defined(QT_NO_DATASTREAM)
# define QT_NO_IMAGEIO_BMP
#endif
/*!
    PPM image I/O
    <p>The Portable PixMap (PPM) image format is common on Unix.
    <p>This is an uncompressed image format
    offering few advantages over PNG or JPEG.
*/
//#define QT_NO_IMAGEIO_PPM
/*!
    XBM image I/O
    <p>The X11 BitMap (XBM) image format is common on X11.
    <p>This is an uncompressed monochrome image format.
    Qt uses this format for some internal images (eg. mouse cursors).
*/
//#define QT_NO_IMAGEIO_XBM
/*!
    XPM image I/O
    <p>The X11 PixMap (XPM) image format is common on X11.
    <p>This is an uncompressed image format.
    XPM images have the small advantage that they can be trivially
    included in source files as they are C code.
    Qt uses this format for some internal images (eg. QMessageBox icons).
*/
#if defined(QT_NO_TEXTSTREAM)
# define QT_NO_IMAGEIO_XPM
#endif
/*!
    PNG image I/O
    <p>The Portable Network Graphics (PNG) is a compressed image format.
    <p>See <a href=http://www.libpng.org/pub/png/>The PNG Home Site</a> for
    details of the format.
*/
//#define QT_NO_IMAGEIO_PNG
/*!
    MNG image I/O
    <p>The Multiple-image Network Graphics (MNG) is a compressed animation format.
    <p>See <a href=http://www.libpng.org/pub/mng/>The MNG Home Site</a> for
    details of the format.
*/
//#define QT_NO_IMAGEIO_MNG
/*!
    JPEG image I/O
    <p>The Joint Photographic Experts Group (JPEG) is a compressed lossy image format that gives high compression
	for real-world and photo-realistic images.
*/
//#define QT_NO_IMAGEIO_JPEG

/*!
    Asynchronous I/O
    <p>Allows push-driven data processing.
*/
//#define QT_NO_ASYNC_IO
/*!
    Asynchronous image I/O
    <p>Allows push-driven images.
*/
//#define QT_NO_ASYNC_IMAGE_IO
#if defined(QT_NO_ASYNC_IO) || defined(QT_NO_ASYNC_IMAGE_IO)
    /*!
	Animated images
	<p>This includes animated GIFs.
	<p><b>Note: this currently also requires <tt>QT_BUILTIN_GIF_READER</tt> to
	be defined when building Qt.</b>
    */
# define QT_NO_MOVIE
#endif

// Fonts
/*!
    TrueType font files
    <p>Scalable font format common on MS-Windows and becoming common on Unix.
    <p>Only supported on Qt/Embedded.
*/
//#define QT_NO_TRUETYPE
/*!
    BDF font files
    <p>The Bitmap Distribution Format (BDF) font file format, common
	on Unix.
    <p>Only supported on Qt/Embedded.
*/
#if defined(QT_NO_TEXTSTREAM) || defined(QT_NO_STRINGLIST)
# define QT_NO_BDF
#endif
/*!
    QFontDatabase
*/
#if defined(QT_NO_STRINGLIST)
# define QT_NO_FONTDATABASE
#endif

// Internationalization

/*!
    QObject::tr()
*/
#if defined(QT_NO_DATASTREAM)
# define QT_NO_TRANSLATION
#endif

/*!
    QTextCodec class and subclasses
*/
//#define QT_NO_TEXTCODEC

#if defined(QT_NO_TEXTCODEC)
    /*!
	QTextCodec classes
	<p>This includes some large conversion tables.
    */
# define QT_NO_CODECS
#endif
#if defined(QT_LITE_UNICODE)
    /*!
	Unicode property tables
	<p>These include some large tables.
    */
# define QT_NO_UNICODETABLES
#endif

/*!
    MIME
*/
#if defined(QT_NO_DIR)
# define QT_NO_MIME
#endif
243
#if defined(QT_NO_MIME) || defined(QT_NO_TEXTSTREAM) || defined(QT_NO_DRAWUTIL) || defined(QT_NO_IMAGE_SMOOTHSCALE)
244 245 246 247 248 249
    /*!
	RichText (HTML) display
    */
# define QT_NO_RICHTEXT
#endif

250 251 252 253
/*!
  XML
*/
#if defined(QT_NO_STRINGLIST) || defined(QT_NO_TEXTSTREAM) || defined(QT_NO_TEXTCODEC)
254 255 256
# define QT_NO_XML
#endif

257 258 259 260
/*!
  Document Object Model
*/
#if defined(QT_NO_XML) || defined(QT_NO_MIME)
261 262 263 264 265
# define QT_NO_DOM
#endif

// Sound
/*!
266
    Playing sounds
267 268 269 270 271 272
*/
//#define QT_NO_SOUND

/*!
    Properties
*/
273
#if defined(QT_NO_STRINGLIST) || defined(QT_NO_ICONSET)
274 275 276
# define QT_NO_PROPERTIES
#endif

277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314


// Networking

/*!
  Network support
*/
//#define QT_NO_NETWORK

#if defined(QT_NO_NETWORK) || defined(QT_NO_STRINGLIST) || defined(QT_NO_TEXTSTREAM)
   /*!
     DNS
   */
# define QT_NO_DNS
#endif
/*!
    Network file access
*/
#if defined(QT_NO_NETWORK) || defined(QT_NO_DIR) || defined(QT_NO_STRINGLIST)
# define QT_NO_NETWORKPROTOCOL
#endif
#if defined(QT_NO_NETWORKPROTOCOL) || defined(QT_NO_DNS)
    /*!
	FTP file access
    */
# define QT_NO_NETWORKPROTOCOL_FTP
    /*!
	HTTP file access
    */
# define QT_NO_NETWORKPROTOCOL_HTTP
#endif

/*!
  External process invocation.
*/
//#define QT_NO_PROCESS


315
// Qt/Embedded-specific
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335

#if defined(QT_NO_NETWORK)
    /*!
      Multi-process support.
    */
# define QT_NO_QWS_MULTIPROCESS
#endif

#if defined(QT_NO_QWS_MULTIPROCESS) || defined(QT_NO_DATASTREAM)
    /*!
      Palmtop Communication Protocol
    */
# define QT_NO_COP
#endif

/*!
    Console keyboard support
*/
//#define QT_NO_QWS_KEYBOARD

336 337 338
/*!
    Visible cursor
*/
339 340 341 342
#if defined(QT_NO_CURSOR)
# define QT_NO_QWS_CURSOR
#endif

343 344 345 346 347 348 349
/*!
    Alpha-blended cursor
*/
//#define QT_NO_QWS_ALPHA_CURSOR
/*!
    Mach64 acceleration
*/
350
//#define QT_NO_QWS_MACH64
351 352 353
/*!
    Voodoo3 acceleration
*/
354
//#define QT_NO_QWS_VOODOO3
355 356 357
/*!
    Matrox MGA acceleration (Millennium/Millennium II/Mystique/G200/G400)
*/
358
//#define QT_NO_QWS_MATROX
359 360 361
/*!
    Virtual frame buffer
*/
362
                                        
363
//#define QT_NO_QWS_VFB
364 365 366 367
/*!
    Transformed frame buffer
*/
//#define QT_NO_QWS_TRANSFORMED
368
#if defined(QT_NO_NETWORK)
369 370 371
/*!
    Remote frame buffer (VNC)
*/
372 373 374 375
# ifndef QT_NO_QWS_VNC
#  define QT_NO_QWS_VNC
# endif
#endif
376 377 378 379
/*!
    1-bit monochrome
*/
//#define QT_NO_QWS_DEPTH_1
380 381 382 383
/*!
    4-bit greyscale
*/
//#define QT_NO_QWS_DEPTH_4
384 385 386
/*!
    4-bit VGA
*/
387 388 389 390 391 392
//#define QT_NO_QWS_VGA_16
/*!
    SVGALib Support
    Not implemented yet
*/
#define QT_NO_QWS_SVGALIB
393 394 395 396 397 398 399 400 401
/*!
    8-bit grayscale
*/
#define QT_NO_QWS_DEPTH_8GRAYSCALE
/*!
    8-bit color
*/
//#define QT_NO_QWS_DEPTH_8
/*!
402
    15 or 16-bit color (define QT_QWS_DEPTH16_RGB as 555 for 15-bit)
403 404
*/
//#define QT_NO_QWS_DEPTH_16
405 406 407 408
/*!
    24-bit color
*/
//#define QT_NO_QWS_DEPTH_24
409 410 411 412 413 414
/*!
    32-bit color
*/
//#define QT_NO_QWS_DEPTH_32

/*!
415
    Window Manager
416 417 418
*/
//#define QT_NO_QWS_MANAGER

419 420 421 422 423 424 425 426 427 428 429 430
/*!
    Window Manager Styles
*/
#define QT_NO_QWS_KDE2_WM_STYLE
#if defined( QT_NO_QWS_MANAGER ) || defined( QT_NO_IMAGEIO_XPM )
# define QT_NO_QWS_AQUA_WM_STYLE
# define QT_NO_QWS_BEOS_WM_STYLE
# define QT_NO_QWS_KDE_WM_STYLE
# define QT_NO_QWS_QPE_WM_STYLE
# define QT_NO_QWS_WINDOWS_WM_STYLE
#endif

431 432 433
/*!
    Saving of fonts
*/
434
//#define QT_NO_QWS_SAVEFONTS
435 436 437 438 439 440 441 442 443 444 445 446 447

/*!
    Favour code size over graphics speed
    <p>Smaller, slower code will be used for drawing operations.
    <p>Only supported on Qt/Embedded.
*/
//#define QT_NO_QWS_GFX_SPEED

/*!
    Qt/Embedded window system properties.
*/
//#define QT_NO_QWS_PROPERTIES

448 449 450 451
#if defined(QT_NO_QWS_PROPERTIES) || defined(QT_NO_MIME)
    /*!
      Cut and paste
    */
452 453 454 455 456 457 458 459 460 461
# define QT_NO_CLIPBOARD
#endif

#if defined(QT_NO_MIME) || defined(QT_NO_QWS_PROPERTIES)
    /*!
	Drag and drop
    */
# define QT_NO_DRAGANDDROP
#endif

462 463 464 465 466 467 468
#if defined(QT_NO_PROPERTIES)
    /*!
	SQL
    */
# define QT_NO_SQL
#endif

469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
#if defined(QT_NO_CLIPBOARD) || defined(QT_NO_MIME) || defined(_WS_QWS_)
    /*!
	Cut and paste of complex data types (non-text)
	Not yet implemented for QWS. 
    */
# define QT_NO_MIMECLIPBOARD
#endif


/*!
    Drawing utility functions
*/
//#define QT_NO_DRAWUTIL
/*!
    TrueColor QImage
*/
//#define QT_NO_IMAGE_TRUECOLOR
/*!
    Smooth QImage scaling
*/
//#define QT_NO_IMAGE_SMOOTHSCALE
/*!
    Image file text strings
*/
#if defined(QT_NO_STRINGLIST)
# define QT_NO_IMAGE_TEXT
#endif

#if defined(QT_NO_IMAGE_TRUECOLOR)
    /*!
	16-bit QImage
    */
# define QT_NO_IMAGE_16_BIT
#endif
/*!
504
    Cursors
505
*/
506
//#define QT_NO_CURSOR
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538

// Painting
/*!
    Named colors
*/
//#define QT_NO_COLORNAMES
/*!
    Scaling and rotation
*/
//#define QT_NO_TRANSFORMATIONS

/*!
    Printing
*/
#if defined(QT_NO_TEXTSTREAM)
# define QT_NO_PRINTER
#endif

/*!
    QPicture
*/
#if defined(QT_NO_DATASTREAM)
# define QT_NO_PICTURE
#endif

// Layout
/*!
    Automatic widget layout
*/
//#define QT_NO_LAYOUT

// Widgets
539
#if defined(QT_NO_DRAWUTIL) || defined(QT_NO_PALETTE)
540 541 542
/*!
    QStyle
*/
543 544
# define QT_NO_STYLE
#endif
545 546 547


/*!
548
  Dialogs
549 550 551
*/
//#define QT_NO_DIALOG
/*!
552
  Semi-modal dialogs
553 554 555
*/
//#define QT_NO_SEMIMODAL
/*!
556
  Framed widgets
557 558 559
*/
//#define QT_NO_FRAME

560 561 562 563
/*!
  Special widget effects (fading, scrolling)
*/
//#define QT_NO_EFFECTS
564

565 566 567 568 569

/*!
  QLabel
*/
#ifdef QT_NO_FRAME
570
# define QT_NO_LABEL
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
#endif

/*!
  Toolbars
*/
#ifdef QT_NO_LAYOUT
# define QT_NO_TOOLBAR
#endif

/*!
  Buttons
*/
#if defined(QT_NO_BUTTON) || defined(QT_NO_STYLE)
/*!
  Check-boxes
*/
# define QT_NO_CHECKBOX
/*!
  Radio-buttons
*/
# define QT_NO_RADIOBUTTON
#endif
#if defined(QT_NO_BUTTON) || defined(QT_NO_TOOLBAR) || defined(QT_NO_ICONSET)
/*!
  Tool-buttons
*/
# define QT_NO_TOOLBUTTON
#endif
/*!
  Grid layout widgets
*/
#ifdef QT_NO_FRAME
# define QT_NO_GRID
#endif
/*!
  Group boxes
*/
#ifdef QT_NO_FRAME
# define QT_NO_GROUPBOX
#endif
#if defined(QT_NO_GROUPBOX)
/*!
  Button groups
*/
# define QT_NO_BUTTONGROUP
/*!
  Horizontal group boxes
*/
# define QT_NO_HGROUPBOX
#endif
#if defined(QT_NO_HGROUPBOX)
/*!
  Vertical group boxes
*/
# define QT_NO_VGROUPBOX
#endif
#if defined(QT_NO_BUTTONGROUP)
/*!
  Horizontal button groups
*/
#  define QT_NO_HBUTTONGROUP
#endif
#if defined(QT_NO_HBUTTONGROUP)
/*!
  Vertical button groups
*/
#   define QT_NO_VBUTTONGROUP
#endif
/*!
  Horizonal box layout widgets
*/
#ifdef QT_NO_FRAME
# define QT_NO_HBOX
#endif
#if defined(QT_NO_HBOX)
/*!
  Vertical box layout widgets
*/
# define QT_NO_VBOX
#endif
/*!
  Single-line edits
*/
#if defined(QT_NO_PALETTE)
655 656
# define QT_NO_LINEEDIT
#endif
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789
#if defined(QT_NO_TOOLBAR)
/*!
  Main-windows
*/
# define QT_NO_MAINWINDOW
#endif
#if defined(QT_NO_ICONSET)
/*!
  Menu-like widgets
*/
# define QT_NO_MENUDATA
#endif
#if defined(QT_NO_MENUDATA)
/*!
  Popup-menus
*/
# define QT_NO_POPUPMENU
/*!
  Menu bars
*/
# define QT_NO_MENUBAR
#endif
#if defined(QT_NO_BUTTON) || defined(QT_NO_ICONSET) || defined(QT_NO_POPUPMENU)
/*!
  Push-buttons
*/
# define QT_NO_PUSHBUTTON
#endif
/*!
  Progress bars
*/
#ifdef QT_NO_FRAME
# define QT_NO_PROGRESSBAR
#endif
/*!
  Range-control widgets
*/
//#define QT_NO_RANGECONTROL
#if defined(QT_NO_RANGECONTROL) || defined(QT_NO_STYLE)
/*!
  Scroll bars
*/
# define QT_NO_SCROLLBAR
/*!
  Sliders
*/
# define QT_NO_SLIDER
/*!
  Spin boxes
*/
# define QT_NO_SPINBOX
/*!
  Dials
*/
# define QT_NO_DIAL
#endif


#if defined(QT_NO_SCROLLBAR) || defined(QT_NO_FRAME)
/*!
  Scrollable view widgets
*/
# define QT_NO_SCROLLVIEW
#endif
#if defined(QT_NO_SCROLLVIEW)
/*!
    QCanvas
*/
# define QT_NO_CANVAS
/*!
    QIconView
*/
# define QT_NO_ICONVIEW
#endif

#if defined(QT_NO_SCROLLBAR)
/*!
  Table-like widgets
*/
# define QT_NO_TABLEVIEW
#endif
#if defined(QT_NO_TABLEVIEW)
/*!
  Multi-line edits
*/
# define QT_NO_MULTILINEEDIT
#endif

/*!
  Splitters
*/
#ifdef QT_NO_FRAME
# define QT_NO_SPLITTER
#endif
/*!
  Status bars
*/
#ifdef QT_NO_LAYOUT
# define QT_NO_STATUSBAR
#endif
/*!
  Tab-bars
*/
#if defined(QT_NO_ICONSET)
# define QT_NO_TABBAR
#endif
#if defined(QT_NO_TABBAR)
/*!
  Tab widgets
*/
# define QT_NO_TABWIDGET
#endif
/*!
  Tool tips
*/
#if defined( QT_NO_LABEL ) || defined( QT_NO_PALETTE )
# define QT_NO_TOOLTIP
#endif
/*!
  Input validators
*/
//#define QT_NO_VALIDATOR
/*!
  "What's this" help
*/
#if defined( QT_NO_TOOLTIP )
# define QT_NO_WHATSTHIS
#endif
/*!
  Widget stacks
*/
#ifdef QT_NO_FRAME
# define QT_NO_WIDGETSTACK
790
#endif
791 792

#if defined(QT_NO_RICHTEXT) || defined(QT_NO_SCROLLVIEW)
793 794 795 796 797
    /*!
	QTextView
    */
# define QT_NO_TEXTVIEW
#endif
798

799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
#if defined(QT_NO_TEXTVIEW)
    /*!
	QTextBrowser
    */
# define QT_NO_TEXTBROWSER
#endif

#if defined(QT_NO_STYLE)
    /*!
	Windows style
    */
# define QT_NO_STYLE_WINDOWS
    /*!
	Motif style
    */
# define QT_NO_STYLE_MOTIF
#endif

#if defined(QT_NO_STYLE_MOTIF)
818 819 820
    /*!
	Motif-plus style
    */
821 822 823 824
# define QT_NO_STYLE_MOTIFPLUS
#endif


825
#if defined(QT_NO_SCROLLVIEW) || defined(QT_NO_STRINGLIST)
826 827 828 829 830 831
    /*!
	QListBox
    */
# define QT_NO_LISTBOX
#endif

832 833 834 835
/*!
    QAccel
*/
//#define QT_NO_ACCEL
836

837 838 839 840
/*!
    QSizeGrip
*/
#ifdef QT_NO_PALETTE
841
# define QT_NO_SIZEGRIP
842 843 844 845 846
#endif
/*!
    QHeader
*/
#ifdef QT_NO_ICONSET
847
# define QT_NO_HEADER
848 849 850 851 852
#endif
/*!
    QWorkSpace
*/
#ifdef QT_NO_FRAME
853
# define QT_NO_WORKSPACE
854 855 856 857 858
#endif
/*!
    QLCDNumber
*/
#ifdef QT_NO_FRAME
859
# define QT_NO_LCDNUMBER
860 861 862 863 864 865 866
#endif
/*!
    QAction
*/
//#define QT_NO_ACTION

#if defined(QT_NO_HEADER)
867 868 869 870 871
    /*!
	QTable
    */
# define QT_NO_TABLE
#endif
872 873

#if defined(QT_NO_LISTBOX)
874 875 876 877 878
    /*!
	QComboBox
    */
# define QT_NO_COMBOBOX
#endif    
879 880

#if defined(QT_NO_HEADER) || defined(QT_NO_SCROLLVIEW)
881 882 883 884 885 886 887 888 889 890 891 892 893
    /*!
	QListView
    */
# define QT_NO_LISTVIEW
#endif

#if defined(QT_NO_STYLE_WINDOWS)
    /*!
	Compact Windows style
    */
# define QT_NO_STYLE_COMPACT
#endif

894
#if defined(QT_NO_STYLE_MOTIF) || defined(QT_NO_TRANSFORMATIONS)
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
    /*!
	CDE style
    */
# define QT_NO_STYLE_CDE
    /*!
	SGI style
    */
# define QT_NO_STYLE_SGI
#endif
#if defined(QT_NO_STYLE_WINDOWS)
    /*!
	Platinum style
    */
# define QT_NO_STYLE_PLATINUM
#endif

911 912 913 914
/*!
    QColorDialog
*/
#if defined(QT_NO_LAYOUT) || defined(QT_NO_LABEL) || defined(QT_NO_PUSHBUTTON) || defined(QT_NO_DIALOG)
915
# define QT_NO_COLORDIALOG
916 917 918 919 920
#endif
#if defined(QT_NO_DIALOG)
/*!
    QMessageBox
*/
921
# define QT_NO_MESSAGEBOX
922 923 924 925 926 927 928 929 930 931 932 933
#endif
#if defined(QT_NO_DIALOG) || defined(QT_NO_TABBAR)
/*!
    QTabDialog
*/
#define QT_NO_TABDIALOG
#endif

#if defined(QT_NO_DIALOG)
/*!
    QWizard
*/
934 935 936
# define QT_NO_WIZARD
#endif

937
#if defined(QT_NO_DIALOG) || defined(QT_NO_LISTVIEW) || defined(QT_NO_NETWORKPROTOCOL) || defined(QT_NO_COMBOBOX) || defined(QT_NO_DIR) || defined(QT_NO_MESSAGEBOX) || defined(QT_NO_SEMIMODAL)
938 939 940 941 942 943
    /*!
	QFileDialog
    */
# define QT_NO_FILEDIALOG
#endif

944
#if defined(QT_NO_DIALOG) || defined(QT_NO_FONTDATABASE) || defined(QT_NO_COMBOBOX)
945 946 947 948 949 950
    /*!
	QFontDialog
    */
# define QT_NO_FONTDIALOG
#endif

951
#if defined(QT_NO_DIALOG) || defined(QT_NO_LISTVIEW) || defined(QT_NO_PRINTER) || defined(QT_NO_COMBOBOX) || defined(QT_NO_DIR) || defined(QT_NO_LAYOUT) || defined(QT_NO_LABEL)
952 953 954 955 956 957
    /*!
	QPrintDialog
    */
# define QT_NO_PRINTDIALOG
#endif

958
#if defined(QT_NO_SEMIMODAL)
959 960 961 962 963
    /*!
	QProgressDialog
    */
# define QT_NO_PROGRESSDIALOG
#endif
964
#if defined(QT_NO_DIALOG) || defined(QT_NO_COMBOBOX)
965 966 967 968 969 970 971
    /*!
	QInputDialog
    */
# define QT_NO_INPUTDIALOG
#endif

#if defined(QT_NO_STRINGLIST)
972 973 974
    /*!
	Session management support
    */
975 976 977 978
# define QT_NO_SESSIONMANAGER
#endif

#endif // QFEATURES_H