mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-13 08:35:45 -04:00
Added context menu for Upload list headers to hide/show columns.
This commit is contained in:
parent
359e11433b
commit
4578b4403a
2 changed files with 71 additions and 2 deletions
|
@ -92,6 +92,7 @@ private slots:
|
|||
void downloadListCustomPopupMenu( QPoint point );
|
||||
void downloadListHeaderCustomPopupMenu( QPoint point );
|
||||
void uploadsListCustomPopupMenu( QPoint point );
|
||||
void uploadsListHeaderCustomPopupMenu (QPoint point );
|
||||
|
||||
void cancel();
|
||||
void forceCheck();
|
||||
|
@ -158,6 +159,13 @@ private slots:
|
|||
void setShowDLLastDLColumn(bool show);
|
||||
void setShowDLPath(bool show);
|
||||
|
||||
void setShowULPeerColumn(bool show);
|
||||
void setShowULSizeColumn(bool show);
|
||||
void setShowULTransferredColumn(bool show);
|
||||
void setShowULSpeedColumn(bool show);
|
||||
void setShowULProgressColumn(bool show);
|
||||
void setShowULHashColumn(bool show);
|
||||
|
||||
void filterChanged(const QString &text);
|
||||
|
||||
signals:
|
||||
|
@ -217,7 +225,7 @@ private:
|
|||
QAction *collViewAct;
|
||||
QAction *collOpenAct;
|
||||
|
||||
/** Defines the actions for the header context menu */
|
||||
/** Defines the actions for the header context menu in download */
|
||||
QAction* showDLSizeAct;
|
||||
QAction* showDLCompleteAct;
|
||||
QAction* showDLDLSpeedAct;
|
||||
|
@ -235,6 +243,14 @@ private:
|
|||
QAction* ulOpenFolderAct;
|
||||
QAction* ulCopyLinkAct;
|
||||
|
||||
/** Defines the actions for the header context menu in upload*/
|
||||
QAction* showULPeerAct;
|
||||
QAction* showULSizeAct;
|
||||
QAction* showULTransferredAct;
|
||||
QAction* showULSpeedAct;
|
||||
QAction* showULProgressAct;
|
||||
QAction* showULHashAct;
|
||||
|
||||
bool m_bProcessSettings;
|
||||
void processSettings(bool bLoad);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue