2012-02-13 13:43:15 -05:00
|
|
|
/*
|
|
|
|
* Retroshare Identity.
|
|
|
|
*
|
|
|
|
* Copyright 2012-2012 by Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2.1 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "IdDialog.h"
|
|
|
|
|
|
|
|
#include <retroshare/rspeers.h>
|
|
|
|
#include <retroshare/rsidentity.h>
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include <QTimer>
|
|
|
|
|
|
|
|
/******
|
|
|
|
* #define ID_DEBUG 1
|
|
|
|
*****/
|
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#define RSID_COL_NICKNAME 0
|
|
|
|
#define RSID_COL_KEYID 1
|
|
|
|
#define RSID_COL_IDTYPE 2
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
#define RSID_REQ_IDLIST 1
|
|
|
|
#define RSID_REQ_IDDETAILS 2
|
|
|
|
#define RSID_REQ_IDLISTDATA 3
|
|
|
|
#define RSID_REQ_IDEDIT 4
|
|
|
|
|
2012-02-13 13:43:15 -05:00
|
|
|
/** Constructor */
|
|
|
|
IdDialog::IdDialog(QWidget *parent)
|
|
|
|
: MainPage(parent)
|
|
|
|
{
|
|
|
|
ui.setupUi(this);
|
|
|
|
|
|
|
|
mEditDialog = NULL;
|
|
|
|
//mPulseSelected = NULL;
|
|
|
|
|
|
|
|
ui.radioButton_ListAll->setChecked(true);
|
|
|
|
connect( ui.pushButton_NewId, SIGNAL(clicked()), this, SLOT(OpenOrShowAddDialog()));
|
|
|
|
connect( ui.pushButton_EditId, SIGNAL(clicked()), this, SLOT(OpenOrShowEditDialog()));
|
|
|
|
connect( ui.treeWidget_IdList, SIGNAL(itemSelectionChanged()), this, SLOT(updateSelection()));
|
|
|
|
|
|
|
|
connect( ui.radioButton_ListYourself, SIGNAL(toggled( bool ) ), this, SLOT(ListTypeToggled( bool ) ) );
|
|
|
|
connect( ui.radioButton_ListFriends, SIGNAL(toggled( bool ) ), this, SLOT(ListTypeToggled( bool ) ) );
|
|
|
|
connect( ui.radioButton_ListOthers, SIGNAL(toggled( bool ) ), this, SLOT(ListTypeToggled( bool ) ) );
|
|
|
|
connect( ui.radioButton_ListPseudo, SIGNAL(toggled( bool ) ), this, SLOT(ListTypeToggled( bool ) ) );
|
|
|
|
connect( ui.radioButton_ListAll, SIGNAL(toggled( bool ) ), this, SLOT(ListTypeToggled( bool ) ) );
|
|
|
|
|
|
|
|
QTimer *timer = new QTimer(this);
|
|
|
|
timer->connect(timer, SIGNAL(timeout()), this, SLOT(checkUpdate()));
|
|
|
|
timer->start(1000);
|
|
|
|
|
|
|
|
rsIdentity->generateDummyData();
|
2012-06-07 13:11:57 -04:00
|
|
|
mWaitingForRequest = false;
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void IdDialog::ListTypeToggled(bool checked)
|
|
|
|
{
|
|
|
|
if (checked)
|
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
requestIdList();
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void IdDialog::updateSelection()
|
|
|
|
{
|
|
|
|
/* */
|
|
|
|
QTreeWidgetItem *item = ui.treeWidget_IdList->currentItem();
|
|
|
|
|
|
|
|
if (!item)
|
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
blankSelection();
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
std::string id = item->text(RSID_COL_KEYID).toStdString();
|
|
|
|
requestIdDetails(id);
|
|
|
|
}
|
|
|
|
}
|
2012-02-13 13:43:15 -05:00
|
|
|
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
void IdDialog::blankSelection()
|
|
|
|
{
|
|
|
|
/* blank it all - and fix buttons */
|
|
|
|
ui.lineEdit_Nickname->setText("");
|
|
|
|
ui.lineEdit_KeyId->setText("");
|
|
|
|
ui.lineEdit_GpgHash->setText("");
|
|
|
|
ui.lineEdit_GpgId->setText("");
|
|
|
|
ui.lineEdit_GpgName->setText("");
|
|
|
|
ui.lineEdit_GpgEmail->setText("");
|
|
|
|
|
|
|
|
ui.pushButton_Reputation->setEnabled(false);
|
|
|
|
ui.pushButton_Delete->setEnabled(false);
|
|
|
|
ui.pushButton_EditId->setEnabled(false);
|
|
|
|
ui.pushButton_NewId->setEnabled(true);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
void IdDialog::requestIdDetails(std::string &id)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
uint32_t token;
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
std::list<std::string> ids;
|
|
|
|
ids.push_back(id);
|
|
|
|
|
|
|
|
rsIdentity->requestIdentities(token, ids);
|
|
|
|
lockForRequest(token, RSID_REQ_IDDETAILS);
|
2012-02-13 13:43:15 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
|
|
|
|
void IdDialog::insertIdDetails(uint32_t token)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
/* get details from libretroshare */
|
|
|
|
RsIdData data;
|
|
|
|
if (!rsIdentity->getIdentity(token, data))
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
ui.lineEdit_KeyId->setText("ERROR GETTING KEY!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get GPG Details from rsPeers */
|
|
|
|
std::string gpgid = rsPeers->getGPGOwnId();
|
|
|
|
RsPeerDetails details;
|
|
|
|
rsPeers->getPeerDetails(gpgid, details);
|
|
|
|
|
|
|
|
ui.lineEdit_Nickname->setText(QString::fromStdString(data.mNickname));
|
|
|
|
ui.lineEdit_KeyId->setText(QString::fromStdString(data.mKeyId));
|
|
|
|
ui.lineEdit_GpgHash->setText(QString::fromStdString(data.mGpgIdHash));
|
|
|
|
ui.lineEdit_GpgId->setText(QString::fromStdString(data.mGpgId));
|
|
|
|
ui.lineEdit_GpgName->setText(QString::fromStdString(data.mGpgName));
|
|
|
|
ui.lineEdit_GpgEmail->setText(QString::fromStdString(data.mGpgEmail));
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
if (data.mIdType & RSID_RELATION_YOURSELF)
|
|
|
|
{
|
|
|
|
ui.radioButton_IdYourself->setChecked(true);
|
|
|
|
}
|
|
|
|
else if (data.mIdType & RSID_TYPE_PSEUDONYM)
|
|
|
|
{
|
|
|
|
ui.radioButton_IdPseudo->setChecked(true);
|
|
|
|
}
|
|
|
|
else if (data.mIdType & RSID_RELATION_FRIEND)
|
|
|
|
{
|
|
|
|
ui.radioButton_IdFriend->setChecked(true);
|
|
|
|
}
|
|
|
|
else if (data.mIdType & RSID_RELATION_FOF)
|
|
|
|
{
|
|
|
|
ui.radioButton_IdFOF->setChecked(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui.radioButton_IdOther->setChecked(true);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
ui.pushButton_NewId->setEnabled(true);
|
|
|
|
if (data.mIdType & RSID_RELATION_YOURSELF)
|
|
|
|
{
|
|
|
|
ui.pushButton_Reputation->setEnabled(false);
|
|
|
|
ui.pushButton_Delete->setEnabled(true);
|
|
|
|
ui.pushButton_EditId->setEnabled(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui.pushButton_Reputation->setEnabled(true);
|
|
|
|
ui.pushButton_Delete->setEnabled(false);
|
|
|
|
ui.pushButton_EditId->setEnabled(false);
|
|
|
|
}
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void IdDialog::checkUpdate()
|
|
|
|
{
|
|
|
|
/* update */
|
|
|
|
if (!rsIdentity)
|
|
|
|
return;
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
checkForRequest();
|
|
|
|
|
2012-02-13 13:43:15 -05:00
|
|
|
if (rsIdentity->updated())
|
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
requestIdList();
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void IdDialog::OpenOrShowAddDialog()
|
|
|
|
{
|
|
|
|
if (!mEditDialog)
|
|
|
|
{
|
|
|
|
mEditDialog = new IdEditDialog(NULL);
|
|
|
|
}
|
|
|
|
bool pseudo = false;
|
|
|
|
mEditDialog->setupNewId(pseudo);
|
|
|
|
|
|
|
|
mEditDialog->show();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void IdDialog::OpenOrShowEditDialog()
|
|
|
|
{
|
|
|
|
if (!mEditDialog)
|
|
|
|
{
|
|
|
|
mEditDialog = new IdEditDialog(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* */
|
|
|
|
QTreeWidgetItem *item = ui.treeWidget_IdList->currentItem();
|
|
|
|
|
|
|
|
if (!item)
|
|
|
|
{
|
|
|
|
std::cerr << "IdDialog::OpenOrShowEditDialog() Invalid item";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string keyId = item->text(RSID_COL_KEYID).toStdString();
|
2012-06-07 13:11:57 -04:00
|
|
|
requestIdEdit(keyId);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
void IdDialog::requestIdEdit(std::string &id)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
uint32_t token;
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
std::list<std::string> ids;
|
|
|
|
ids.push_back(id);
|
|
|
|
|
|
|
|
rsIdentity->requestIdentities(token, ids);
|
|
|
|
lockForRequest(token, RSID_REQ_IDEDIT);
|
2012-02-13 13:43:15 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
void IdDialog::showIdEdit(uint32_t token)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
if (mEditDialog)
|
|
|
|
{
|
|
|
|
mEditDialog->setupExistingId(token);
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
mEditDialog->show();
|
|
|
|
}
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
void IdDialog::requestIdList()
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
uint32_t token;
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
rsIdentity->requestIdentityList(token);
|
|
|
|
|
|
|
|
lockForRequest(token, RSID_REQ_IDLIST);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
void IdDialog::requestIdData(std::list<std::string> &ids)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
uint32_t token;
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
rsIdentity->requestIdentities(token, ids);
|
|
|
|
|
|
|
|
lockForRequest(token, RSID_REQ_IDLISTDATA);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
|
|
|
|
void IdDialog::insertIdList(uint32_t token)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
|
|
|
QTreeWidget *tree = ui.treeWidget_IdList;
|
|
|
|
|
|
|
|
tree->clear();
|
|
|
|
|
|
|
|
std::list<std::string> ids;
|
|
|
|
std::list<std::string>::iterator it;
|
|
|
|
|
|
|
|
bool acceptAll = ui.radioButton_ListAll->isChecked();
|
|
|
|
bool acceptPseudo = ui.radioButton_ListPseudo->isChecked();
|
|
|
|
bool acceptYourself = ui.radioButton_ListYourself->isChecked();
|
|
|
|
bool acceptFriends = ui.radioButton_ListFriends->isChecked();
|
|
|
|
bool acceptOthers = ui.radioButton_ListOthers->isChecked();
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
//rsIdentity->getIdentityList(ids);
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
//for(it = ids.begin(); it != ids.end(); it++)
|
|
|
|
//{
|
|
|
|
RsIdData data;
|
|
|
|
while(rsIdentity->getIdentity(token, data))
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
|
|
|
|
|
|
|
/* do filtering */
|
|
|
|
bool ok = false;
|
|
|
|
if (acceptAll)
|
|
|
|
{
|
|
|
|
ok = true;
|
|
|
|
}
|
|
|
|
else if (data.mIdType & RSID_TYPE_PSEUDONYM)
|
|
|
|
{
|
|
|
|
if (acceptPseudo)
|
|
|
|
{
|
|
|
|
ok = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((data.mIdType & RSID_RELATION_YOURSELF) && (acceptYourself))
|
|
|
|
{
|
|
|
|
ok = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (data.mIdType & RSID_RELATION_YOURSELF)
|
|
|
|
{
|
|
|
|
if (acceptYourself)
|
|
|
|
{
|
|
|
|
ok = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (data.mIdType & (RSID_RELATION_FRIEND | RSID_RELATION_FOF))
|
|
|
|
{
|
|
|
|
if (acceptFriends)
|
|
|
|
{
|
|
|
|
ok = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (acceptOthers)
|
|
|
|
{
|
|
|
|
ok = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ok)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QTreeWidgetItem *item = new QTreeWidgetItem(NULL);
|
|
|
|
item->setText(RSID_COL_NICKNAME, QString::fromStdString(data.mNickname));
|
|
|
|
item->setText(RSID_COL_KEYID, QString::fromStdString(data.mKeyId));
|
|
|
|
item->setText(RSID_COL_IDTYPE, QString::fromStdString(rsIdTypeToString(data.mIdType)));
|
|
|
|
|
|
|
|
tree->addTopLevelItem(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
// fix up buttons.
|
|
|
|
updateSelection();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
void IdDialog::lockForRequest(uint32_t token, uint32_t reqtype)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
/* store token for later results retrival */
|
|
|
|
if (mWaitingForRequest)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
std::cerr << "IdDialog::lockForRequest() LOCKED ALREADY - BIG ERROR";
|
2012-02-13 13:43:15 -05:00
|
|
|
std::cerr << std::endl;
|
|
|
|
}
|
2012-06-07 13:11:57 -04:00
|
|
|
|
|
|
|
mWaitingForRequest = true;
|
|
|
|
mRequestToken = token;
|
|
|
|
mRequestType = reqtype;
|
|
|
|
|
|
|
|
std::cerr << "IdDialog::lockForRequest() Token: " << token << " ReqType: " << reqtype;
|
|
|
|
std::cerr << std::endl;
|
2012-02-13 13:43:15 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
void IdDialog::checkForRequest()
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
if (mWaitingForRequest)
|
|
|
|
{
|
|
|
|
/* check token */
|
|
|
|
if (4 == rsIdentity->requestStatus(mRequestToken))
|
|
|
|
loadRequest();
|
|
|
|
}
|
|
|
|
}
|
2012-02-13 13:43:15 -05:00
|
|
|
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
void IdDialog::loadRequest()
|
|
|
|
{
|
|
|
|
if (!mWaitingForRequest)
|
|
|
|
{
|
|
|
|
std::cerr << "IdDialog::loadRequest() NOT LOCKED - BIG ERROR";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
}
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
/* unlock gui */
|
|
|
|
mWaitingForRequest = false;
|
2012-02-13 13:43:15 -05:00
|
|
|
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
switch (mRequestType)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
case RSID_REQ_IDLIST:
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
std::cerr << "IdDialog::loadRequest() RSID_REQ_IDLIST";
|
2012-02-13 13:43:15 -05:00
|
|
|
std::cerr << std::endl;
|
2012-06-07 13:11:57 -04:00
|
|
|
|
|
|
|
std::list<std::string> ids;
|
|
|
|
rsIdentity->getIdentityList(mRequestToken, ids);
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
/* request data - straight away */
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
requestIdData(ids);
|
|
|
|
}
|
|
|
|
break;
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
case RSID_REQ_IDLISTDATA:
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
std::cerr << "IdDialog::loadRequest() RSID_REQ_IDLISTDATA";
|
2012-02-13 13:43:15 -05:00
|
|
|
std::cerr << std::endl;
|
2012-06-07 13:11:57 -04:00
|
|
|
insertIdList(mRequestToken);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
2012-06-07 13:11:57 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case RSID_REQ_IDDETAILS:
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
std::cerr << "IdDialog::loadRequest() RSID_REQ_IDDETAILS";
|
2012-02-13 13:43:15 -05:00
|
|
|
std::cerr << std::endl;
|
2012-06-07 13:11:57 -04:00
|
|
|
insertIdDetails(mRequestToken);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
2012-06-07 13:11:57 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RSID_REQ_IDEDIT:
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-07 13:11:57 -04:00
|
|
|
std::cerr << "IdDialog::loadRequest() RSID_REQ_IDEDIT";
|
2012-02-13 13:43:15 -05:00
|
|
|
std::cerr << std::endl;
|
2012-06-07 13:11:57 -04:00
|
|
|
showIdEdit(mRequestToken);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
2012-06-07 13:11:57 -04:00
|
|
|
break;
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
default:
|
|
|
|
break;
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|