* Paint a styled progressbar instead of our home-brown one.
[kdenetwork.git] / kget / core / transfertreeselectionmodel.h
blob3f4fedc01e399482b6cc879abdc4e543e08dbc23
1 /* This file is part of the KDE project
3 Copyright (C) 2006 Dario Massarin <nekkar@libero.it>
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public
7 License as published by the Free Software Foundation; version 2
8 of the License.
9 */
11 #ifndef _TRANSFERTREESELECTIONMODEL_H
12 #define _TRANSFERTREESELECTIONMODEL_H
14 #include <QItemSelectionModel>
16 class TransferTreeSelectionModel : public QItemSelectionModel
18 Q_OBJECT
20 public:
21 TransferTreeSelectionModel(QAbstractItemModel * model);
22 virtual ~TransferTreeSelectionModel();
24 public slots:
25 void select(const QItemSelection & selection, QItemSelectionModel::SelectionFlags command);
28 #endif