mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-07 16:45:11 -04:00
Added a new page for user request to ConnectFriendWizard.
The page is shown instead of the conclusion page when the user clicks on the certificate link in a message of type user request. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5432 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
aedac9738a
commit
21e97a47df
8 changed files with 325 additions and 82 deletions
|
@ -45,6 +45,8 @@
|
|||
|
||||
#define RSLINK_SCHEME "retroshare"
|
||||
|
||||
#define RSLINK_SUBTYPE_CERTIFICATE_USER_REQUEST 1
|
||||
|
||||
class RetroShareLink
|
||||
{
|
||||
public:
|
||||
|
@ -80,6 +82,9 @@ class RetroShareLink
|
|||
const QString& location() const { return _location ; }
|
||||
QString title() const;
|
||||
|
||||
unsigned int subType() const { return _subType; }
|
||||
void setSubType(unsigned int subType) { _subType = subType; }
|
||||
|
||||
// get nice name for anchor
|
||||
QString niceName() const;
|
||||
|
||||
|
@ -126,6 +131,7 @@ class RetroShareLink
|
|||
QString _location ; // location
|
||||
QString _ext_ip_port ;
|
||||
QString _loc_ip_port ;
|
||||
unsigned int _subType; // for general use as sub type for _type (RSLINK_SUBTYPE_...)
|
||||
};
|
||||
|
||||
/// This class handles the copy/paste of links. Every member is static to ensure unicity.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue