diff options
Diffstat (limited to 'qtools/qfeatures.h')
-rw-r--r-- | qtools/qfeatures.h | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/qtools/qfeatures.h b/qtools/qfeatures.h index e2e356c..84fa715 100644 --- a/qtools/qfeatures.h +++ b/qtools/qfeatures.h @@ -52,8 +52,6 @@ // #if defined(QCONFIG_LOCAL) #include <qconfig-local.h> -#elif defined(QCONFIG_QPE) -#include <qconfig-qpe.h> #elif defined(QCONFIG_MINIMAL) #include <qconfig-minimal.h> #elif defined(QCONFIG_SMALL) @@ -367,15 +365,23 @@ Transformed frame buffer */ //#define QT_NO_QWS_TRANSFORMED +#if defined(QT_NO_NETWORK) /*! Remote frame buffer (VNC) */ -#define QT_NO_QWS_VNC +# ifndef QT_NO_QWS_VNC +# define QT_NO_QWS_VNC +# endif +#endif /*! 1-bit monochrome */ //#define QT_NO_QWS_DEPTH_1 /*! + 4-bit greyscale +*/ +//#define QT_NO_QWS_DEPTH_4 +/*! 4-bit VGA */ //#define QT_NO_QWS_VGA_16 @@ -397,16 +403,32 @@ */ //#define QT_NO_QWS_DEPTH_16 /*! + 24-bit color +*/ +//#define QT_NO_QWS_DEPTH_24 +/*! 32-bit color */ //#define QT_NO_QWS_DEPTH_32 /*! - Window manager + Window Manager */ //#define QT_NO_QWS_MANAGER /*! + 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 + +/*! Saving of fonts */ //#define QT_NO_QWS_SAVEFONTS |