2010-03-24 00:11:46 +01:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-03-24 00:11:46 +01:00
|
|
|
|
|
|
|
Clementine is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2011-07-15 15:27:50 +02:00
|
|
|
#ifndef INTERNETVIEW_H
|
|
|
|
#define INTERNETVIEW_H
|
2009-12-30 00:01:07 +01:00
|
|
|
|
2010-05-17 01:44:33 +02:00
|
|
|
#include "widgets/autoexpandingtreeview.h"
|
2009-12-30 00:01:07 +01:00
|
|
|
|
2011-07-15 15:27:50 +02:00
|
|
|
class InternetView : public AutoExpandingTreeView {
|
2009-12-30 00:01:07 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-07-15 15:27:50 +02:00
|
|
|
InternetView(QWidget* parent = 0);
|
2009-12-30 00:01:07 +01:00
|
|
|
|
|
|
|
// QWidget
|
|
|
|
void contextMenuEvent(QContextMenuEvent* e);
|
2010-05-09 22:18:05 +02:00
|
|
|
|
|
|
|
// QTreeView
|
|
|
|
void currentChanged(const QModelIndex ¤t, const QModelIndex &previous);
|
2010-05-17 01:44:33 +02:00
|
|
|
void setModel(QAbstractItemModel *model);
|
2010-05-09 22:18:05 +02:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void CurrentIndexChanged(const QModelIndex& index);
|
2009-12-30 00:01:07 +01:00
|
|
|
};
|
|
|
|
|
2011-07-15 15:27:50 +02:00
|
|
|
#endif // INTERNETVIEW_H
|