• Skip to content
  • Skip to link menu
KDE 4.1 API Reference
  • KDE API Reference
  • API Reference
  • Sitemap
  • Contact Us
 

libplasma

combobox.cpp

Go to the documentation of this file.
00001 /*
00002  *   Copyright 2008 Aaron Seigo <aseigo@kde.org>
00003  *
00004  *   This program is free software; you can redistribute it and/or modify
00005  *   it under the terms of the GNU Library General Public License as
00006  *   published by the Free Software Foundation; either version 2, or
00007  *   (at your option) any later version.
00008  *
00009  *   This program is distributed in the hope that it will be useful,
00010  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  *   GNU General Public License for more details
00013  *
00014  *   You should have received a copy of the GNU Library General Public
00015  *   License along with this program; if not, write to the
00016  *   Free Software Foundation, Inc.,
00017  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
00018  */
00019 
00020 #include "combobox.h"
00021 
00022 #include <KComboBox>
00023 #include <QPainter>
00024 
00025 #include <KMimeType>
00026 
00027 #include "theme.h"
00028 #include "svg.h"
00029 
00030 namespace Plasma
00031 {
00032 
00033 class ComboBoxPrivate
00034 {
00035 public:
00036     ComboBoxPrivate()
00037     {
00038     }
00039 
00040     ~ComboBoxPrivate()
00041     {
00042     }
00043 };
00044 
00045 ComboBox::ComboBox(QGraphicsWidget *parent)
00046     : QGraphicsProxyWidget(parent),
00047       d(new ComboBoxPrivate)
00048 {
00049     KComboBox* native = new KComboBox;
00050     connect(native, SIGNAL(activated(const QString &)), this, SIGNAL(activated(const QString &)));
00051     setWidget(native);
00052     native->setAttribute(Qt::WA_NoSystemBackground);
00053 }
00054 
00055 ComboBox::~ComboBox()
00056 {
00057     delete d;
00058 }
00059 
00060 QString ComboBox::text() const
00061 {
00062     return static_cast<KComboBox*>(widget())->currentText();
00063 }
00064 
00065 void ComboBox::setStyleSheet(const QString &stylesheet)
00066 {
00067     widget()->setStyleSheet(stylesheet);
00068 }
00069 
00070 QString ComboBox::styleSheet()
00071 {
00072     return widget()->styleSheet();
00073 }
00074 
00075 KComboBox* ComboBox::nativeWidget() const
00076 {
00077     return static_cast<KComboBox*>(widget());
00078 }
00079 
00080 void ComboBox::addItem(const QString &text)
00081 {
00082     static_cast<KComboBox*>(widget())->addItem(text);
00083 }
00084 
00085 void ComboBox::clear()
00086 {
00087     static_cast<KComboBox*>(widget())->clear();
00088 }
00089 
00090 void ComboBox::resizeEvent(QGraphicsSceneResizeEvent *event)
00091 {
00092     QGraphicsProxyWidget::resizeEvent(event);
00093 }
00094 
00095 } // namespace Plasma
00096 
00097 #include <combobox.moc>
00098 

libplasma

Skip menu "libplasma"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

API Reference

Skip menu "API Reference"
  • KWin
  •   KWin Libraries
  • Libraries
  •   libkworkspace
  •   libplasma
  •   libsolidcontrol
  •   libtaskmanager
  • Plasma
  •   Animators
  •   Applets
  •   Engines
  • Solid Modules
Generated for API Reference by doxygen 1.5.4
This website is maintained by Adriaan de Groot and Allen Winter.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal