mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
59 lines
1.8 KiB
C++
59 lines
1.8 KiB
C++
/* This file is part of the KDE project
|
|
|
|
Copyright (C) 2006 Dario Massarin <nekkar@libero.it>
|
|
|
|
This program 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 2 of the License, or (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef TRANSFERSVIEW_H
|
|
#define TRANSFERSVIEW_H
|
|
|
|
#include <QTreeView>
|
|
|
|
class KMenu;
|
|
class TransferHandler;
|
|
|
|
class TransfersView : public QTreeView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TransfersView(QWidget * parent = 0);
|
|
~TransfersView();
|
|
|
|
void setModel(QAbstractItemModel * model);
|
|
|
|
private:
|
|
void dropEvent(QDropEvent * event);
|
|
void rowsInserted(const QModelIndex &, int, int);
|
|
|
|
protected:
|
|
void dragMoveEvent ( QDragMoveEvent * event );
|
|
void rowsAboutToBeRemoved(const QModelIndex & parent, int start, int end);
|
|
|
|
public slots:
|
|
void closeExpandableDetails(const QModelIndex &index = QModelIndex());
|
|
void closeExpandableDetails(const QModelIndex &parent, int rowStart, int rowEnd);
|
|
void slotItemActivated(const QModelIndex & index);
|
|
void slotItemCollapsed(const QModelIndex & index);
|
|
|
|
private slots:
|
|
void toggleMainGroup();// show or hide the first group header if there's only one download group
|
|
void slotShowHeaderMenu(const QPoint &point);
|
|
void selectionChanged(const QItemSelection & selected, const QItemSelection & deselected);
|
|
void slotHideSection(int logicalIndex);
|
|
void slotSectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex);
|
|
void slotSaveHeader();
|
|
void populateHeaderActions();
|
|
|
|
private:
|
|
QWidget *getDetailsWidgetForTransfer(TransferHandler *handler);
|
|
|
|
QList<QModelIndex> m_editingIndexes;
|
|
KMenu *m_headerMenu;
|
|
};
|
|
|
|
#endif
|