mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-06 08:05:18 -04:00
added for Network menu Create new Profile action to can generate more Profiles without need to run Login Window.
disabled from Profile Generator Dialog not used the optional Cert loading sections. fixed startdialogs layout git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1493 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
2bf94b909a
commit
01935af39b
7 changed files with 532 additions and 560 deletions
|
@ -29,6 +29,7 @@
|
|||
#include "NetworkView.h"
|
||||
#include "TrustView.h"
|
||||
#include "connect/ConnectDialog.h"
|
||||
#include "GenCertDialog.h"
|
||||
#include "rsiface/rsiface.h"
|
||||
#include "rsiface/rspeers.h"
|
||||
|
||||
|
@ -140,7 +141,8 @@ NetworkDialog::NetworkDialog(QWidget *parent)
|
|||
QMenu *menu = new QMenu(tr("Menu"));
|
||||
menu->addAction(ui.actionAddFriend);
|
||||
//menu->addAction(ui.actionCopyKey);
|
||||
menu->addAction(ui.actionExportKey);
|
||||
menu->addAction(ui.actionExportKey);
|
||||
menu->addAction(ui.actionCreate_New_Profile);
|
||||
menu->addSeparator();
|
||||
menu->addAction(ui.actionTabsright);
|
||||
menu->addAction(ui.actionTabswest);
|
||||
|
@ -702,6 +704,14 @@ void NetworkDialog::on_actionClearLog_triggered() {
|
|||
ui.infoLog->clear();
|
||||
}
|
||||
|
||||
void NetworkDialog::on_actionCreate_New_Profile_activated()
|
||||
{
|
||||
static GenCertDialog *gencertdialog = new GenCertDialog();
|
||||
gencertdialog->show();
|
||||
|
||||
|
||||
}
|
||||
|
||||
void NetworkDialog::displayInfoLogMenu(const QPoint& pos) {
|
||||
// Log Menu
|
||||
QMenu myLogMenu(this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue