/src/libtomahawk/utils/ProxyStyle.h

http://github.com/tomahawk-player/tomahawk · C Header · 44 lines · 19 code · 8 blank · 17 comment · 0 complexity · 845175b44b7e8d6695de6635f18332f6 MD5 · raw file

  1. /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
  2. *
  3. * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
  4. *
  5. * Tomahawk is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * Tomahawk is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef PROXYSTYLE_H
  19. #define PROXYSTYLE_H
  20. #include <QtGlobal>
  21. #include <QProxyStyle>
  22. #include "DllMacro.h"
  23. class DLLEXPORT ProxyStyle : public QProxyStyle
  24. {
  25. public:
  26. ProxyStyle( bool interceptPolish = false );
  27. virtual void polish( QApplication *a ) { QProxyStyle::polish( a ); }
  28. virtual void polish( QPalette& pal );
  29. virtual void polish( QWidget *w ) { QProxyStyle::polish( w ); }
  30. virtual void drawPrimitive( PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w = 0 ) const;
  31. virtual void drawControl( ControlElement ce, const QStyleOption *opt, QPainter *p, const QWidget *w = 0 ) const;
  32. virtual QSize sizeFromContents( ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget ) const;
  33. private:
  34. bool m_interceptPolish;
  35. };
  36. #endif // PROXYSTYLE_H