mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-16 01:54:52 -04:00
priority actions added
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1439 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
874f2bb8fd
commit
0fa44603ad
2 changed files with 92 additions and 3 deletions
|
@ -77,6 +77,16 @@ class TransfersDialog : public MainPage
|
|||
void openTransfer();
|
||||
void previewTransfer();
|
||||
|
||||
/** clear download or all queue - for pending dwls */
|
||||
void clearQueuedDwl();
|
||||
void clearQueue();
|
||||
|
||||
/** modify download priority actions */
|
||||
void priorityLow();
|
||||
void priorityNormal();
|
||||
void priorityHigh();
|
||||
void priorityAuto();
|
||||
|
||||
signals:
|
||||
void playFiles(QStringList files);
|
||||
|
||||
|
@ -115,9 +125,17 @@ class TransfersDialog : public MainPage
|
|||
QAction *openfolderAct;
|
||||
QAction *openfileAct;
|
||||
QAction *previewfileAct;
|
||||
QAction *clearQueuedDwlAct;
|
||||
QAction *clearQueueAct;
|
||||
QAction *changePriorityAct;
|
||||
QAction *priorityLowAct;
|
||||
QAction *priorityNormalAct;
|
||||
QAction *priorityHighAct;
|
||||
QAction *priorityAutoAct;
|
||||
|
||||
void getIdOfSelectedItems(QList<QStandardItem *>& items);
|
||||
bool controlTransferFile(uint32_t flags);
|
||||
void changePriority(int priority);
|
||||
|
||||
QTreeView *downloadList;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue