mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-20 13:19:07 -04:00
added optional display of short invites in places with certificates
This commit is contained in:
parent
8fddb559b9
commit
3a799bae37
8 changed files with 106 additions and 47 deletions
|
@ -41,10 +41,10 @@ class HomePage : public MainPage
|
|||
public:
|
||||
explicit HomePage(QWidget *parent);
|
||||
~HomePage();
|
||||
|
||||
virtual QIcon iconPixmap() const { return QIcon(":/icons/png/home.png") ; } //MainPage
|
||||
virtual QString pageName() const { return tr("Home") ; } //MainPage
|
||||
virtual QString helpText() const { return ""; } //MainPage
|
||||
|
||||
virtual QIcon iconPixmap() const { return QIcon(":/icons/png/home.png") ; } //MainPage
|
||||
virtual QString pageName() const { return tr("Home") ; } //MainPage
|
||||
virtual QString helpText() const { return ""; } //MainPage
|
||||
|
||||
private slots:
|
||||
void certContextMenu(QPoint);
|
||||
|
@ -52,18 +52,20 @@ private slots:
|
|||
void runEmailClient();
|
||||
void copyCert();
|
||||
void saveCert();
|
||||
void addFriend();
|
||||
void webMail();
|
||||
void loadCert();
|
||||
void addFriend();
|
||||
void webMail();
|
||||
void loadCert();
|
||||
void runStartWizard() ;
|
||||
void openWebHelp() ;
|
||||
void recommendFriends();
|
||||
void toggleIncludeAllIPs();
|
||||
void toggleIncludeAllIPs();
|
||||
void toggleUseShortFormat();
|
||||
|
||||
private:
|
||||
Ui::HomePage *ui;
|
||||
|
||||
bool mIncludeAllIPs;
|
||||
|
||||
bool mIncludeAllIPs;
|
||||
bool mUseShortFormat;
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue