Plasma
treeview.cpp
Go to the documentation of this file.
00001 /* 00002 * Copyright 2008 Marco Martin <notmart@gmail.com> 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 "treeview.h" 00021 00022 #include <QTreeView> 00023 #include <QHeaderView> 00024 #include <QScrollBar> 00025 00026 #include <kiconloader.h> 00027 00028 #include "private/style_p.h" 00029 00030 namespace Plasma 00031 { 00032 00033 class TreeViewPrivate 00034 { 00035 public: 00036 Plasma::Style::Ptr style; 00037 }; 00038 00039 TreeView::TreeView(QGraphicsWidget *parent) 00040 : QGraphicsProxyWidget(parent), 00041 d(new TreeViewPrivate) 00042 { 00043 QTreeView *native = new QTreeView; 00044 setWidget(native); 00045 native->setWindowIcon(QIcon()); 00046 native->setAttribute(Qt::WA_NoSystemBackground); 00047 native->setFrameStyle(QFrame::NoFrame); 00048 00049 d->style = Plasma::Style::sharedStyle(); 00050 native->verticalScrollBar()->setStyle(d->style.data()); 00051 native->horizontalScrollBar()->setStyle(d->style.data()); 00052 } 00053 00054 TreeView::~TreeView() 00055 { 00056 delete d; 00057 Plasma::Style::doneWithSharedStyle(); 00058 } 00059 00060 void TreeView::setModel(QAbstractItemModel *model) 00061 { 00062 nativeWidget()->setModel(model); 00063 } 00064 00065 QAbstractItemModel *TreeView::model() 00066 { 00067 return nativeWidget()->model(); 00068 } 00069 00070 void TreeView::setStyleSheet(const QString &stylesheet) 00071 { 00072 widget()->setStyleSheet(stylesheet); 00073 } 00074 00075 QString TreeView::styleSheet() 00076 { 00077 return widget()->styleSheet(); 00078 } 00079 00080 QTreeView *TreeView::nativeWidget() const 00081 { 00082 return static_cast<QTreeView*>(widget()); 00083 } 00084 00085 } 00086 00087 #include <treeview.moc> 00088
KDE 4.6 API Reference