-rw-r--r-- | noncore/styles/metal/metal.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/noncore/styles/metal/metal.cpp b/noncore/styles/metal/metal.cpp index 2380fed..5cb2d22 100644 --- a/noncore/styles/metal/metal.cpp +++ b/noncore/styles/metal/metal.cpp @@ -1,70 +1,61 @@ /**************************************************************************** ** $Id$ ** ** Copyright (C) 1992-2000 Trolltech AS. All rights reserved. ** ** This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #include "metal.h" #include <qapplication.h> -#include <qpainter.h> -#include <qdrawutil.h> // for now -#include <qpixmap.h> // for now -#include <qpalette.h> // for now -#include <qwidget.h> -#include <qlabel.h> -#include <qimage.h> #include <qpushbutton.h> -#include <qwidget.h> -#include <qrangecontrol.h> #include <qscrollbar.h> #include <limits.h> ///////////////////////////////////////////////////////// #include "stonedark.xpm" #include "stone1.xpm" #include "marble.xpm" /////////////////////////////////////////////////////// MetalStyle::MetalStyle() : QWindowsStyle() { } /*! Reimplementation from QStyle */ void MetalStyle::polish( QApplication *app) { oldPalette = app->palette(); // we simply create a nice QColorGroup with a couple of fancy // pixmaps here and apply to it all widgets QFont f("times", app->font().pointSize() ); f.setBold( TRUE ); f.setItalic( TRUE ); app->setFont( f, TRUE, "QMenuBar"); app->setFont( f, TRUE, "QPopupMenu"); //QPixmap button( stone1_xpm ); QPixmap button( stonedark_xpm ); QPixmap background(marble_xpm); #if 0 int i; for (i=0; i<img.numColors(); i++) { QRgb rgb = img.color(i); QColor c(rgb); rgb = c.dark().rgb(); img.setColor(i,rgb); } QPixmap mid; mid.convertFromImage(img); img = orig; for (i=0; i<img.numColors(); i++) { |