KDEUI
klinkitemselectionmodel.h
Go to the documentation of this file.
00001 /* 00002 Copyright (C) 2010 Klarälvdalens Datakonsult AB, 00003 a KDAB Group company, info@kdab.net, 00004 author Stephen Kelly <stephen@kdab.com> 00005 00006 This library is free software; you can redistribute it and/or modify it 00007 under the terms of the GNU Library General Public License as published by 00008 the Free Software Foundation; either version 2 of the License, or (at your 00009 option) any later version. 00010 00011 This library is distributed in the hope that it will be useful, but WITHOUT 00012 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00013 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00014 License for more details. 00015 00016 You should have received a copy of the GNU Library General Public License 00017 along with this library; see the file COPYING.LIB. If not, write to the 00018 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 00019 02110-1301, USA. 00020 */ 00021 00022 #ifndef KLINKITEMSELECTIONMODEL_H 00023 #define KLINKITEMSELECTIONMODEL_H 00024 00025 #include <QtGui/QItemSelectionModel> 00026 #include <QtGui/QAbstractProxyModel> 00027 00028 #include "kdeui_export.h" 00029 00030 class KLinkItemSelectionModelPrivate; 00031 00095 class KDEUI_EXPORT KLinkItemSelectionModel : public QItemSelectionModel 00096 { 00097 Q_OBJECT 00098 public: 00102 KLinkItemSelectionModel(QAbstractItemModel *targetModel, QItemSelectionModel *linkedItemSelectionModel, QObject *parent = 0); 00103 ~KLinkItemSelectionModel(); 00104 /* reimp */ void select(const QModelIndex &index, QItemSelectionModel::SelectionFlags command); 00105 /* reimp */ void select(const QItemSelection &selection, QItemSelectionModel::SelectionFlags command); 00106 00107 protected: 00108 KLinkItemSelectionModelPrivate * const d_ptr; 00109 00110 private: 00111 Q_DECLARE_PRIVATE(KLinkItemSelectionModel) 00112 Q_PRIVATE_SLOT( d_func(), void sourceSelectionChanged(const QItemSelection &selected, const QItemSelection &deselected)) 00113 }; 00114 00115 #endif
KDE 4.6 API Reference