2007-11-14 22:18:48 -05:00
|
|
|
/****************************************************************
|
|
|
|
* RShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006, crypton
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-04-29 13:07:28 -04:00
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _CONNECTIONSDIALOG_H
|
|
|
|
#define _CONNECTIONSDIALOG_H
|
|
|
|
|
|
|
|
#include "ui_NetworkDialog.h"
|
2009-11-17 07:45:06 -05:00
|
|
|
#include "RsAutoUpdatePage.h"
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-11-17 07:45:06 -05:00
|
|
|
class NetworkDialog : public RsAutoUpdatePage
|
2009-04-29 13:07:28 -04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Default Constructor */
|
|
|
|
NetworkDialog(QWidget *parent = 0);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-05-13 12:53:20 -04:00
|
|
|
//void load();
|
2009-11-17 07:45:06 -05:00
|
|
|
virtual void updateDisplay() ; // overloaded from RsAutoUpdatePage
|
2009-05-03 20:30:24 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
public slots:
|
2009-02-22 12:36:39 -05:00
|
|
|
void insertConnect();
|
2007-11-14 22:18:48 -05:00
|
|
|
std::string loadneighbour();
|
|
|
|
/* void loadneighbour(); */
|
2009-04-29 13:07:28 -04:00
|
|
|
void setLogInfo(QString info, QColor color=QApplication::palette().color(QPalette::WindowText));
|
2010-11-05 18:46:40 -04:00
|
|
|
void updateNewDiscoveryInfo() ;
|
2008-03-21 19:31:00 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
private slots:
|
2009-04-29 13:07:28 -04:00
|
|
|
|
2009-03-21 16:29:23 -04:00
|
|
|
void makeFriend() ;
|
2009-04-07 17:01:45 -04:00
|
|
|
void denyFriend() ;
|
|
|
|
void deleteCert() ;
|
2009-04-29 13:07:28 -04:00
|
|
|
void peerdetails();
|
|
|
|
/** Create the context popup menu and it's submenus */
|
2007-11-14 22:18:48 -05:00
|
|
|
void connecttreeWidgetCostumPopupMenu( QPoint point );
|
2010-01-13 16:32:56 -05:00
|
|
|
//void unvalidGPGkeyWidgetCostumPopupMenu( QPoint point );
|
|
|
|
|
2009-04-29 13:07:28 -04:00
|
|
|
/** Called when user clicks "Load Cert" to choose location of a Cert file */
|
|
|
|
void loadcert();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
void authneighbour();
|
|
|
|
void addneighbour();
|
2009-07-16 10:36:03 -04:00
|
|
|
|
|
|
|
void on_actionAddFriend_activated();
|
|
|
|
//void on_actionCopyKey_activated();
|
|
|
|
void on_actionExportKey_activated();
|
2009-08-04 19:37:01 -04:00
|
|
|
|
|
|
|
void on_actionCreate_New_Profile_activated();
|
|
|
|
|
2008-03-21 19:31:00 -04:00
|
|
|
|
2009-04-29 13:07:28 -04:00
|
|
|
void on_actionClearLog_triggered();
|
2008-03-21 19:31:00 -04:00
|
|
|
void displayInfoLogMenu(const QPoint& pos);
|
2009-04-29 13:07:28 -04:00
|
|
|
|
2009-04-30 22:39:57 -04:00
|
|
|
void getNetworkStatus();
|
2009-05-03 20:30:24 -04:00
|
|
|
void updateNetworkStatus();
|
2009-04-30 22:39:57 -04:00
|
|
|
|
2009-07-10 20:45:17 -04:00
|
|
|
void loadtabsettings();
|
|
|
|
|
2009-04-29 13:07:28 -04:00
|
|
|
void on_actionTabsright_activated();
|
|
|
|
void on_actionTabsnorth_activated();
|
|
|
|
void on_actionTabssouth_activated();
|
|
|
|
void on_actionTabswest_activated();
|
|
|
|
|
2009-04-29 13:48:25 -04:00
|
|
|
void on_actionTabsRounded_activated();
|
|
|
|
void on_actionTabsTriangular_activated();
|
2010-06-09 06:29:34 -04:00
|
|
|
|
|
|
|
void filterColumnChanged();
|
|
|
|
void filterRegExpChanged();
|
|
|
|
void clearFilter();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
private:
|
2009-07-10 20:45:17 -04:00
|
|
|
QTreeWidgetItem *getCurrentNeighbour();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
QTreeWidget *connecttreeWidget;
|
2008-03-17 09:14:17 -04:00
|
|
|
|
|
|
|
class NetworkView *networkview;
|
2010-06-09 06:29:34 -04:00
|
|
|
|
|
|
|
void FilterItems();
|
|
|
|
bool FilterItem(QTreeWidgetItem *pItem, QString &sPattern, int nFilterColumn);
|
2009-04-29 13:07:28 -04:00
|
|
|
|
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::NetworkDialog ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|