mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-08 22:32:34 -04:00
suppressed some memory leaks due to bad use of QMenu
git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5.0@2623 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
06efca4610
commit
068230ac8d
3 changed files with 105 additions and 130 deletions
|
@ -171,6 +171,24 @@ SharedFilesDialog::SharedFilesDialog(QWidget *parent)
|
||||||
#ifdef Q_WS_WIN
|
#ifdef Q_WS_WIN
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
copylinklocalAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Copy retroshare Links to Clipboard" ), this );
|
||||||
|
connect( copylinklocalAct , SIGNAL( triggered() ), this, SLOT( copyLinkLocal() ) );
|
||||||
|
copylinklocalhtmlAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Copy retroshare Links to Clipboard (HTML)" ), this );
|
||||||
|
connect( copylinklocalhtmlAct , SIGNAL( triggered() ), this, SLOT( copyLinkhtml() ) );
|
||||||
|
sendlinkAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Send retroshare Links" ), this );
|
||||||
|
connect( sendlinkAct , SIGNAL( triggered() ), this, SLOT( sendLinkTo( ) ) );
|
||||||
|
sendhtmllinkAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Send retroshare Links (HTML)" ), this );
|
||||||
|
connect( sendhtmllinkAct , SIGNAL( triggered() ), this, SLOT( sendHtmlLinkTo( ) ) );
|
||||||
|
sendlinkCloudAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Send retroshare Links to Cloud" ), this );
|
||||||
|
connect( sendlinkCloudAct , SIGNAL( triggered() ), this, SLOT( sendLinkToCloud( ) ) );
|
||||||
|
addlinkCloudAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Add Links to Cloud" ), this );
|
||||||
|
connect( addlinkCloudAct , SIGNAL( triggered() ), this, SLOT( addLinkToCloud( ) ) );
|
||||||
|
openfileAct = new QAction(QIcon(IMAGE_OPENFILE), tr("Open File"), this);
|
||||||
|
connect(openfileAct, SIGNAL(triggered()), this, SLOT(openfile()));
|
||||||
|
openfolderAct = new QAction(QIcon(IMAGE_OPENFOLDER), tr("Open Folder"), this);
|
||||||
|
connect(openfolderAct, SIGNAL(triggered()), this, SLOT(openfolder()));
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void SharedFilesDialog::checkUpdate()
|
void SharedFilesDialog::checkUpdate()
|
||||||
|
@ -618,10 +636,10 @@ void SharedFilesDialog::sharedDirTreeWidgetContextMenu( QPoint point )
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
QMenu *recMenu = new QMenu( tr("Recommend (Automated message) To "), this );
|
QMenu recMenu( tr("Recommend (Automated message) To "), this );
|
||||||
recMenu->setIcon(QIcon(IMAGE_ATTACHMENT));
|
recMenu.setIcon(QIcon(IMAGE_ATTACHMENT));
|
||||||
QMenu *msgMenu = new QMenu( tr("Recommend in a message to "), &contextMnu2 );
|
QMenu msgMenu( tr("Recommend in a message to "), &contextMnu2 );
|
||||||
msgMenu->setIcon(QIcon(IMAGE_MSG));
|
msgMenu.setIcon(QIcon(IMAGE_MSG));
|
||||||
|
|
||||||
std::list<std::string> peers;
|
std::list<std::string> peers;
|
||||||
std::list<std::string>::iterator it;
|
std::list<std::string>::iterator it;
|
||||||
|
@ -649,47 +667,19 @@ void SharedFilesDialog::sharedDirTreeWidgetContextMenu( QPoint point )
|
||||||
* msgMenu
|
* msgMenu
|
||||||
*/
|
*/
|
||||||
|
|
||||||
RsAction *qaf1 = new RsAction( QIcon(IMAGE_FRIEND), QString::fromStdString( nn ), recMenu, *it );
|
RsAction *qaf1 = new RsAction( QIcon(IMAGE_FRIEND), QString::fromStdString( nn ), &recMenu, *it );
|
||||||
connect( qaf1 , SIGNAL( triggeredId( std::string ) ), this, SLOT( recommendFilesTo( std::string ) ) );
|
connect( qaf1 , SIGNAL( triggeredId( std::string ) ), this, SLOT( recommendFilesTo( std::string ) ) );
|
||||||
recMenu->addAction(qaf1);
|
RsAction *qaf2 = new RsAction( QIcon(IMAGE_FRIEND), QString::fromStdString( nn ), &msgMenu, *it );
|
||||||
|
|
||||||
RsAction *qaf2 = new RsAction( QIcon(IMAGE_FRIEND), QString::fromStdString( nn ), msgMenu, *it );
|
|
||||||
connect( qaf2 , SIGNAL( triggeredId( std::string ) ), this, SLOT( recommendFilesToMsg( std::string ) ) );
|
connect( qaf2 , SIGNAL( triggeredId( std::string ) ), this, SLOT( recommendFilesToMsg( std::string ) ) );
|
||||||
msgMenu->addAction(qaf2);
|
|
||||||
|
recMenu.addAction(qaf1);
|
||||||
|
msgMenu.addAction(qaf2);
|
||||||
|
|
||||||
/* create list of ids */
|
/* create list of ids */
|
||||||
|
|
||||||
}
|
}
|
||||||
//#endif
|
//#endif
|
||||||
|
|
||||||
copylinklocalAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Copy retroshare Links to Clipboard" ), this );
|
|
||||||
connect( copylinklocalAct , SIGNAL( triggered() ), this, SLOT( copyLinkLocal() ) );
|
|
||||||
|
|
||||||
copylinklocalhtmlAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Copy retroshare Links to Clipboard (HTML)" ), this );
|
|
||||||
connect( copylinklocalhtmlAct , SIGNAL( triggered() ), this, SLOT( copyLinkhtml() ) );
|
|
||||||
|
|
||||||
sendlinkAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Send retroshare Links" ), this );
|
|
||||||
connect( sendlinkAct , SIGNAL( triggered() ), this, SLOT( sendLinkTo( ) ) );
|
|
||||||
|
|
||||||
sendhtmllinkAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Send retroshare Links (HTML)" ), this );
|
|
||||||
connect( sendhtmllinkAct , SIGNAL( triggered() ), this, SLOT( sendHtmlLinkTo( ) ) );
|
|
||||||
|
|
||||||
// sendchatlinkAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Send retroshare Links to Chat" ), this );
|
|
||||||
// connect( sendchatlinkAct , SIGNAL( triggered() ), this, SLOT( sendLinktoChat( ) ) );
|
|
||||||
|
|
||||||
sendlinkCloudAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Send retroshare Links to Cloud" ), this );
|
|
||||||
connect( sendlinkCloudAct , SIGNAL( triggered() ), this, SLOT( sendLinkToCloud( ) ) );
|
|
||||||
|
|
||||||
addlinkCloudAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Add Links to Cloud" ), this );
|
|
||||||
connect( addlinkCloudAct , SIGNAL( triggered() ), this, SLOT( addLinkToCloud( ) ) );
|
|
||||||
|
|
||||||
openfileAct = new QAction(QIcon(IMAGE_OPENFILE), tr("Open File"), this);
|
|
||||||
connect(openfileAct, SIGNAL(triggered()), this, SLOT(openfile()));
|
|
||||||
|
|
||||||
openfolderAct = new QAction(QIcon(IMAGE_OPENFOLDER), tr("Open Folder"), this);
|
|
||||||
connect(openfolderAct, SIGNAL(triggered()), this, SLOT(openfolder()));
|
|
||||||
|
|
||||||
|
|
||||||
if(localModel->isDir( midx ) )
|
if(localModel->isDir( midx ) )
|
||||||
contextMnu2.addAction( openfolderAct);
|
contextMnu2.addAction( openfolderAct);
|
||||||
else
|
else
|
||||||
|
@ -713,14 +703,12 @@ void SharedFilesDialog::sharedDirTreeWidgetContextMenu( QPoint point )
|
||||||
contextMnu2.addAction( addlinkCloudAct);
|
contextMnu2.addAction( addlinkCloudAct);
|
||||||
contextMnu2.addSeparator();
|
contextMnu2.addSeparator();
|
||||||
#endif
|
#endif
|
||||||
contextMnu2.addMenu( recMenu);
|
contextMnu2.addMenu( &recMenu);
|
||||||
contextMnu2.addMenu( msgMenu);
|
contextMnu2.addMenu( &msgMenu);
|
||||||
}
|
}
|
||||||
|
|
||||||
QMouseEvent *mevent2 = new QMouseEvent( QEvent::MouseButtonPress, point,
|
QMouseEvent mevent2( QEvent::MouseButtonPress, point, Qt::RightButton, Qt::RightButton, Qt::NoModifier );
|
||||||
Qt::RightButton, Qt::RightButton,
|
contextMnu2.exec( mevent2.globalPos() );
|
||||||
Qt::NoModifier );
|
|
||||||
contextMnu2.exec( mevent2->globalPos() );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
|
|
|
@ -203,6 +203,57 @@ TransfersDialog::TransfersDialog(QWidget *parent)
|
||||||
|
|
||||||
QObject::connect(ui._showCacheTransfers_CB,SIGNAL(toggled(bool)),this,SLOT(insertTransfers())) ;
|
QObject::connect(ui._showCacheTransfers_CB,SIGNAL(toggled(bool)),this,SLOT(insertTransfers())) ;
|
||||||
|
|
||||||
|
// Actions. Only need to be defined once.
|
||||||
|
pauseAct = new QAction(QIcon(IMAGE_PAUSE), tr("Pause"), this);
|
||||||
|
connect(pauseAct, SIGNAL(triggered()), this, SLOT(pauseFileTransfer()));
|
||||||
|
|
||||||
|
resumeAct = new QAction(QIcon(IMAGE_RESUME), tr("Resume"), this);
|
||||||
|
connect(resumeAct, SIGNAL(triggered()), this, SLOT(resumeFileTransfer()));
|
||||||
|
|
||||||
|
cancelAct = new QAction(QIcon(IMAGE_CANCEL), tr( "Cancel" ), this );
|
||||||
|
connect( cancelAct , SIGNAL( triggered() ), this, SLOT( cancel() ) );
|
||||||
|
|
||||||
|
openfolderAct = new QAction(QIcon(IMAGE_OPENFOLDER), tr("Open Folder"), this);
|
||||||
|
connect(openfolderAct, SIGNAL(triggered()), this, SLOT(openFolderTransfer()));
|
||||||
|
|
||||||
|
openfileAct = new QAction(QIcon(IMAGE_OPENFILE), tr("Open File"), this);
|
||||||
|
connect(openfileAct, SIGNAL(triggered()), this, SLOT(openTransfer()));
|
||||||
|
|
||||||
|
previewfileAct = new QAction(QIcon(IMAGE_PREVIEW), tr("Preview File"), this);
|
||||||
|
connect(previewfileAct, SIGNAL(triggered()), this, SLOT(previewTransfer()));
|
||||||
|
|
||||||
|
detailsfileAct = new QAction(QIcon(IMAGE_INFO), tr("Details..."), this);
|
||||||
|
connect(detailsfileAct, SIGNAL(triggered()), this, SLOT(showDetailsDialog()));
|
||||||
|
|
||||||
|
clearcompletedAct = new QAction(QIcon(IMAGE_CLEARCOMPLETED), tr( "Clear Completed" ), this );
|
||||||
|
connect( clearcompletedAct , SIGNAL( triggered() ), this, SLOT( clearcompleted() ) );
|
||||||
|
|
||||||
|
#ifndef RS_RELEASE_VERSION
|
||||||
|
copylinkAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Copy retroshare Link" ), this );
|
||||||
|
connect( copylinkAct , SIGNAL( triggered() ), this, SLOT( copyLink() ) );
|
||||||
|
#endif
|
||||||
|
pastelinkAct = new QAction(QIcon(IMAGE_PASTELINK), tr( "Paste retroshare Link" ), this );
|
||||||
|
connect( pastelinkAct , SIGNAL( triggered() ), this, SLOT( pasteLink() ) );
|
||||||
|
queueDownAct = new QAction(QIcon(":/images/go-down.png"), tr("Down"), this);
|
||||||
|
connect(queueDownAct, SIGNAL(triggered()), this, SLOT(priorityQueueDown()));
|
||||||
|
queueUpAct = new QAction(QIcon(":/images/go-up.png"), tr("Up"), this);
|
||||||
|
connect(queueUpAct, SIGNAL(triggered()), this, SLOT(priorityQueueUp()));
|
||||||
|
queueTopAct = new QAction(QIcon(":/images/go-top.png"), tr("Top"), this);
|
||||||
|
connect(queueTopAct, SIGNAL(triggered()), this, SLOT(priorityQueueTop()));
|
||||||
|
queueBottomAct = new QAction(QIcon(":/images/go-bottom.png"), tr("Bottom"), this);
|
||||||
|
connect(queueBottomAct, SIGNAL(triggered()), this, SLOT(priorityQueueBottom()));
|
||||||
|
chunkStreamingAct = new QAction(QIcon(IMAGE_PRIORITYAUTO), tr("Streaming"), this);
|
||||||
|
connect(chunkStreamingAct, SIGNAL(triggered()), this, SLOT(chunkStreaming()));
|
||||||
|
prioritySlowAct = new QAction(QIcon(IMAGE_PRIORITYLOW), tr("Slower"), this);
|
||||||
|
connect(prioritySlowAct, SIGNAL(triggered()), this, SLOT(speedSlow()));
|
||||||
|
priorityMediumAct = new QAction(QIcon(IMAGE_PRIORITYNORMAL), tr("Average"), this);
|
||||||
|
connect(priorityMediumAct, SIGNAL(triggered()), this, SLOT(speedAverage()));
|
||||||
|
priorityFastAct = new QAction(QIcon(IMAGE_PRIORITYHIGH), tr("Faster"), this);
|
||||||
|
connect(priorityFastAct, SIGNAL(triggered()), this, SLOT(speedFast()));
|
||||||
|
chunkRandomAct = new QAction(QIcon(IMAGE_PRIORITYAUTO), tr("Random"), this);
|
||||||
|
connect(chunkRandomAct, SIGNAL(triggered()), this, SLOT(chunkRandom()));
|
||||||
|
playAct = new QAction(QIcon(IMAGE_PLAY), tr( "Play" ), this );
|
||||||
|
connect( playAct , SIGNAL( triggered() ), this, SLOT( openTransfer() ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
void TransfersDialog::keyPressEvent(QKeyEvent *e)
|
void TransfersDialog::keyPressEvent(QKeyEvent *e)
|
||||||
|
@ -219,7 +270,7 @@ void TransfersDialog::keyPressEvent(QKeyEvent *e)
|
||||||
void TransfersDialog::downloadListCostumPopupMenu( QPoint point )
|
void TransfersDialog::downloadListCostumPopupMenu( QPoint point )
|
||||||
{
|
{
|
||||||
QMenu contextMnu( this );
|
QMenu contextMnu( this );
|
||||||
QMouseEvent *mevent = new QMouseEvent( QEvent::MouseButtonPress, point, Qt::RightButton, Qt::RightButton, Qt::NoModifier );
|
QMouseEvent mevent( QEvent::MouseButtonPress, point, Qt::RightButton, Qt::RightButton, Qt::NoModifier );
|
||||||
|
|
||||||
std::set<QStandardItem *> items;
|
std::set<QStandardItem *> items;
|
||||||
std::set<QStandardItem *>::iterator it;
|
std::set<QStandardItem *>::iterator it;
|
||||||
|
@ -262,88 +313,25 @@ void TransfersDialog::downloadListCostumPopupMenu( QPoint point )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
QAction *playAct = NULL;
|
QMenu viewMenu( tr("View"), this );
|
||||||
if (addPlayOption)
|
|
||||||
{
|
|
||||||
playAct = new QAction(QIcon(IMAGE_PLAY), tr( "Play" ), this );
|
|
||||||
connect( playAct , SIGNAL( triggered() ), this, SLOT( openTransfer() ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
pauseAct = new QAction(QIcon(IMAGE_PAUSE), tr("Pause"), this);
|
QMenu priorityQueueMenu(tr("Move in Queue..."), this);
|
||||||
connect(pauseAct, SIGNAL(triggered()), this, SLOT(pauseFileTransfer()));
|
priorityQueueMenu.setIcon(QIcon(IMAGE_PRIORITY));
|
||||||
|
priorityQueueMenu.addAction(queueTopAct);
|
||||||
|
priorityQueueMenu.addAction(queueUpAct);
|
||||||
|
priorityQueueMenu.addAction(queueDownAct);
|
||||||
|
priorityQueueMenu.addAction(queueBottomAct);
|
||||||
|
|
||||||
resumeAct = new QAction(QIcon(IMAGE_RESUME), tr("Resume"), this);
|
QMenu prioritySpeedMenu(tr("Priority (Speed)..."), this);
|
||||||
connect(resumeAct, SIGNAL(triggered()), this, SLOT(resumeFileTransfer()));
|
prioritySpeedMenu.setIcon(QIcon(IMAGE_PRIORITY));
|
||||||
|
prioritySpeedMenu.addAction(prioritySlowAct);
|
||||||
|
prioritySpeedMenu.addAction(priorityMediumAct);
|
||||||
|
prioritySpeedMenu.addAction(priorityFastAct);
|
||||||
|
|
||||||
cancelAct = new QAction(QIcon(IMAGE_CANCEL), tr( "Cancel" ), this );
|
QMenu chunkMenu(tr("Chunk strategy"), this);
|
||||||
connect( cancelAct , SIGNAL( triggered() ), this, SLOT( cancel() ) );
|
chunkMenu.setIcon(QIcon(IMAGE_PRIORITY));
|
||||||
|
chunkMenu.addAction(chunkStreamingAct);
|
||||||
openfolderAct = new QAction(QIcon(IMAGE_OPENFOLDER), tr("Open Folder"), this);
|
chunkMenu.addAction(chunkRandomAct);
|
||||||
connect(openfolderAct, SIGNAL(triggered()), this, SLOT(openFolderTransfer()));
|
|
||||||
|
|
||||||
openfileAct = new QAction(QIcon(IMAGE_OPENFILE), tr("Open File"), this);
|
|
||||||
connect(openfileAct, SIGNAL(triggered()), this, SLOT(openTransfer()));
|
|
||||||
|
|
||||||
previewfileAct = new QAction(QIcon(IMAGE_PREVIEW), tr("Preview File"), this);
|
|
||||||
connect(previewfileAct, SIGNAL(triggered()), this, SLOT(previewTransfer()));
|
|
||||||
|
|
||||||
detailsfileAct = new QAction(QIcon(IMAGE_INFO), tr("Details..."), this);
|
|
||||||
connect(detailsfileAct, SIGNAL(triggered()), this, SLOT(showDetailsDialog()));
|
|
||||||
|
|
||||||
clearcompletedAct = new QAction(QIcon(IMAGE_CLEARCOMPLETED), tr( "Clear Completed" ), this );
|
|
||||||
connect( clearcompletedAct , SIGNAL( triggered() ), this, SLOT( clearcompleted() ) );
|
|
||||||
|
|
||||||
#ifndef RS_RELEASE_VERSION
|
|
||||||
copylinkAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Copy retroshare Link" ), this );
|
|
||||||
connect( copylinkAct , SIGNAL( triggered() ), this, SLOT( copyLink() ) );
|
|
||||||
#endif
|
|
||||||
|
|
||||||
pastelinkAct = new QAction(QIcon(IMAGE_PASTELINK), tr( "Paste retroshare Link" ), this );
|
|
||||||
connect( pastelinkAct , SIGNAL( triggered() ), this, SLOT( pasteLink() ) );
|
|
||||||
|
|
||||||
QMenu *viewMenu = new QMenu( tr("View"), this );
|
|
||||||
|
|
||||||
// clearQueueAct = new QAction(QIcon(), tr("Remove all queued"), this);
|
|
||||||
// connect(clearQueueAct, SIGNAL(triggered()), this, SLOT(clearQueue()));
|
|
||||||
|
|
||||||
queueDownAct = new QAction(QIcon(":/images/go-down.png"), tr("Down"), this);
|
|
||||||
connect(queueDownAct, SIGNAL(triggered()), this, SLOT(priorityQueueDown()));
|
|
||||||
queueUpAct = new QAction(QIcon(":/images/go-up.png"), tr("Up"), this);
|
|
||||||
connect(queueUpAct, SIGNAL(triggered()), this, SLOT(priorityQueueUp()));
|
|
||||||
queueTopAct = new QAction(QIcon(":/images/go-top.png"), tr("Top"), this);
|
|
||||||
connect(queueTopAct, SIGNAL(triggered()), this, SLOT(priorityQueueTop()));
|
|
||||||
queueBottomAct = new QAction(QIcon(":/images/go-bottom.png"), tr("Bottom"), this);
|
|
||||||
connect(queueBottomAct, SIGNAL(triggered()), this, SLOT(priorityQueueBottom()));
|
|
||||||
|
|
||||||
prioritySlowAct = new QAction(QIcon(IMAGE_PRIORITYLOW), tr("Slower"), this);
|
|
||||||
connect(prioritySlowAct, SIGNAL(triggered()), this, SLOT(speedSlow()));
|
|
||||||
priorityMediumAct = new QAction(QIcon(IMAGE_PRIORITYNORMAL), tr("Average"), this);
|
|
||||||
connect(priorityMediumAct, SIGNAL(triggered()), this, SLOT(speedAverage()));
|
|
||||||
priorityFastAct = new QAction(QIcon(IMAGE_PRIORITYHIGH), tr("Faster"), this);
|
|
||||||
connect(priorityFastAct, SIGNAL(triggered()), this, SLOT(speedFast()));
|
|
||||||
|
|
||||||
QMenu *priorityQueueMenu = new QMenu(tr("Move in Queue..."), this);
|
|
||||||
priorityQueueMenu->setIcon(QIcon(IMAGE_PRIORITY));
|
|
||||||
priorityQueueMenu->addAction(queueTopAct);
|
|
||||||
priorityQueueMenu->addAction(queueUpAct);
|
|
||||||
priorityQueueMenu->addAction(queueDownAct);
|
|
||||||
priorityQueueMenu->addAction(queueBottomAct);
|
|
||||||
|
|
||||||
QMenu *prioritySpeedMenu = new QMenu(tr("Priority (Speed)..."), this);
|
|
||||||
prioritySpeedMenu->setIcon(QIcon(IMAGE_PRIORITY));
|
|
||||||
prioritySpeedMenu->addAction(prioritySlowAct);
|
|
||||||
prioritySpeedMenu->addAction(priorityMediumAct);
|
|
||||||
prioritySpeedMenu->addAction(priorityFastAct);
|
|
||||||
|
|
||||||
chunkStreamingAct = new QAction(QIcon(IMAGE_PRIORITYAUTO), tr("Streaming"), this);
|
|
||||||
connect(chunkStreamingAct, SIGNAL(triggered()), this, SLOT(chunkStreaming()));
|
|
||||||
chunkRandomAct = new QAction(QIcon(IMAGE_PRIORITYAUTO), tr("Random"), this);
|
|
||||||
connect(chunkRandomAct, SIGNAL(triggered()), this, SLOT(chunkRandom()));
|
|
||||||
|
|
||||||
QMenu *chunkMenu = new QMenu(tr("Chunk strategy"), this);
|
|
||||||
chunkMenu->setIcon(QIcon(IMAGE_PRIORITY));
|
|
||||||
chunkMenu->addAction(chunkStreamingAct);
|
|
||||||
chunkMenu->addAction(chunkRandomAct);
|
|
||||||
|
|
||||||
contextMnu.clear();
|
contextMnu.clear();
|
||||||
|
|
||||||
|
@ -378,12 +366,12 @@ void TransfersDialog::downloadListCostumPopupMenu( QPoint point )
|
||||||
}
|
}
|
||||||
|
|
||||||
if(all_downloading)
|
if(all_downloading)
|
||||||
contextMnu.addMenu(prioritySpeedMenu);
|
contextMnu.addMenu(&prioritySpeedMenu);
|
||||||
else if(all_queued)
|
else if(all_queued)
|
||||||
contextMnu.addMenu(priorityQueueMenu) ;
|
contextMnu.addMenu(&priorityQueueMenu) ;
|
||||||
|
|
||||||
if(all_downloading)
|
if(all_downloading)
|
||||||
contextMnu.addMenu( chunkMenu);
|
contextMnu.addMenu( &chunkMenu);
|
||||||
|
|
||||||
if(!all_paused)
|
if(!all_paused)
|
||||||
contextMnu.addAction( pauseAct);
|
contextMnu.addAction( pauseAct);
|
||||||
|
@ -428,11 +416,9 @@ void TransfersDialog::downloadListCostumPopupMenu( QPoint point )
|
||||||
contextMnu.addAction( pastelinkAct);
|
contextMnu.addAction( pastelinkAct);
|
||||||
|
|
||||||
contextMnu.addSeparator();
|
contextMnu.addSeparator();
|
||||||
// contextMnu.addAction( clearQueueAct);
|
contextMnu.addMenu( &viewMenu);
|
||||||
contextMnu.addSeparator();
|
|
||||||
contextMnu.addMenu( viewMenu);
|
|
||||||
|
|
||||||
contextMnu.exec( mevent->globalPos() );
|
contextMnu.exec( mevent.globalPos() );
|
||||||
}
|
}
|
||||||
|
|
||||||
TransfersDialog::~TransfersDialog()
|
TransfersDialog::~TransfersDialog()
|
||||||
|
|
|
@ -132,6 +132,7 @@ private:
|
||||||
QMenu* contextMnu;
|
QMenu* contextMnu;
|
||||||
/** Defines the actions for the context menu */
|
/** Defines the actions for the context menu */
|
||||||
QAction* showdowninfoAct;
|
QAction* showdowninfoAct;
|
||||||
|
QAction* playAct;
|
||||||
QAction* cancelAct;
|
QAction* cancelAct;
|
||||||
QAction* clearcompletedAct;
|
QAction* clearcompletedAct;
|
||||||
QAction* copylinkAct;
|
QAction* copylinkAct;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue