put the tunnel info as a new tab in the transfer page.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2310 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2010-02-14 09:06:37 +00:00
parent 850e756fe3
commit c37679e807
8 changed files with 191 additions and 247 deletions

View file

@ -29,30 +29,25 @@
class TransferPage: public ConfigPage
{
Q_OBJECT
Q_OBJECT
public:
TransferPage(QWidget * parent = 0, Qt::WFlags flags = 0);
~TransferPage() {}
public:
TransferPage(QWidget * parent = 0, Qt::WFlags flags = 0);
~TransferPage() {}
/** Saves the changes on this page */
bool save(QString &errmsg);
/** Loads the settings for this page */
void load();
/** Saves the changes on this page */
bool save(QString &errmsg);
/** Loads the settings for this page */
void load();
public slots:
void updateStatus();
public slots:
void updateStatus();
private slots:
private:
void showTurtleRouterDialog();
void closeEvent (QCloseEvent * event);
private:
void closeEvent (QCloseEvent * event);
Ui::TransferPage ui;
Ui::TransferPage ui;
};
#endif // !TRANSFERPAGE_H