home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / include / qmotifstyle.h < prev    next >
C/C++ Source or Header  |  2001-10-11  |  4KB  |  130 lines

  1. /****************************************************************************
  2. ** $Id:  qt/qmotifstyle.h   3.0.0   edited Oct 8 02:30 $
  3. **
  4. ** Definition of Motif-like style class
  5. **
  6. ** Created : 981231
  7. **
  8. ** Copyright (C) 1998-2000 Trolltech AS.  All rights reserved.
  9. **
  10. ** This file is part of the widgets module of the Qt GUI Toolkit.
  11. **
  12. ** This file may be distributed under the terms of the Q Public License
  13. ** as defined by Trolltech AS of Norway and appearing in the file
  14. ** LICENSE.QPL included in the packaging of this file.
  15. **
  16. ** This file may be distributed and/or modified under the terms of the
  17. ** GNU General Public License version 2 as published by the Free Software
  18. ** Foundation and appearing in the file LICENSE.GPL included in the
  19. ** packaging of this file.
  20. **
  21. ** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
  22. ** licenses may use this file in accordance with the Qt Commercial License
  23. ** Agreement provided with the Software.
  24. **
  25. ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  26. ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27. **
  28. ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
  29. **   information about Qt Commercial License Agreements.
  30. ** See http://www.trolltech.com/qpl/ for QPL licensing information.
  31. ** See http://www.trolltech.com/gpl/ for GPL licensing information.
  32. **
  33. ** Contact info@trolltech.com if any conditions of this licensing are
  34. ** not clear to you.
  35. **
  36. **********************************************************************/
  37.  
  38. #ifndef QMOTIFSTYLE_H
  39. #define QMOTIFSTYLE_H
  40.  
  41. #ifndef QT_H
  42. #include "qcommonstyle.h"
  43. #endif // QT_H
  44.  
  45. #ifndef QT_NO_STYLE_MOTIF
  46.  
  47. class QPalette;
  48.  
  49. #if defined(QT_PLUGIN)
  50. #define Q_EXPORT_STYLE_MOTIF
  51. #else
  52. #define Q_EXPORT_STYLE_MOTIF Q_EXPORT
  53. #endif
  54.  
  55.  
  56. class Q_EXPORT_STYLE_MOTIF QMotifStyle : public QCommonStyle
  57. {
  58.     Q_OBJECT
  59. public:
  60.     QMotifStyle( bool useHighlightCols=FALSE );
  61.     virtual ~QMotifStyle();
  62.  
  63.     void setUseHighlightColors( bool );
  64.     bool useHighlightColors() const;
  65.  
  66.     void polish( QPalette& );
  67.     void polish( QWidget* );
  68.     void polish( QApplication* );
  69.  
  70.     void polishPopupMenu( QPopupMenu* );
  71.  
  72.     // new style API
  73.     void drawPrimitive( PrimitiveElement pe,
  74.             QPainter *p,
  75.             const QRect &r,
  76.             const QColorGroup &cg,
  77.             SFlags flags = Style_Default,
  78.             const QStyleOption& = QStyleOption::Default ) const;
  79.  
  80.     void drawControl( ControlElement element,
  81.               QPainter *p,
  82.               const QWidget *widget,
  83.               const QRect &r,
  84.               const QColorGroup &cg,
  85.               SFlags how = Style_Default,
  86.               const QStyleOption& = QStyleOption::Default ) const;
  87.  
  88.     void drawComplexControl( ComplexControl control,
  89.                  QPainter *p,
  90.                  const QWidget* widget,
  91.                  const QRect& r,
  92.                  const QColorGroup& cg,
  93.                  SFlags how = Style_Default,
  94.                  SCFlags sub = SC_All,
  95.                  SCFlags subActive = SC_None,
  96.                  const QStyleOption& = QStyleOption::Default ) const;
  97.  
  98.     QRect querySubControlMetrics( ComplexControl control,
  99.                   const QWidget *widget,
  100.                   SubControl sc,
  101.                   const QStyleOption& = QStyleOption::Default ) const;
  102.  
  103.     int pixelMetric( PixelMetric metric, const QWidget *widget = 0 ) const;
  104.  
  105.     QSize sizeFromContents( ContentsType contents,
  106.                 const QWidget *widget,
  107.                 const QSize &contentsSize,
  108.                 const QStyleOption& = QStyleOption::Default ) const;
  109.  
  110.     QRect subRect( SubRect r, const QWidget *widget ) const;
  111.  
  112.     QPixmap stylePixmap(StylePixmap, const QWidget * = 0, const QStyleOption& = QStyleOption::Default) const;
  113.  
  114.     int styleHint(StyleHint sh, const QWidget *, const QStyleOption & = QStyleOption::Default,
  115.           QStyleHintReturn* = 0) const;
  116.  
  117. private:
  118.     bool highlightCols;
  119.  
  120.     // Disabled copy constructor and operator=
  121. #if defined(Q_DISABLE_COPY)
  122.     QMotifStyle( const QMotifStyle & );
  123.     QMotifStyle& operator=( const QMotifStyle & );
  124. #endif
  125. };
  126.  
  127. #endif // QT_NO_STYLE_MOTIF
  128.  
  129. #endif // QMOTIFSTYLE_H
  130.