mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-02-25 09:11:28 -05:00
66 lines
2.6 KiB
C++
66 lines
2.6 KiB
C++
/*******************************************************************************
|
|
* gui/NetworkView.h *
|
|
* *
|
|
* Copyright (c) 2008 Robert Fernie <retroshare.project@gmail.com> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <QGraphicsScene>
|
|
|
|
#include "retroshare/rsevents.h"
|
|
|
|
#include "retroshare-gui/mainpage.h"
|
|
#include "ui_FriendServerControl.h"
|
|
|
|
class FriendServerControl : public MainPage, public Ui::FriendServerControl
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
FriendServerControl(QWidget *parent = 0);
|
|
virtual ~FriendServerControl();
|
|
|
|
protected slots:
|
|
void onOnOffClick(bool b);
|
|
void onOnionAddressEdit(const QString &);
|
|
void onOnionPortEdit(int);
|
|
void onNbFriendsToRequestsChanged(int n);
|
|
void checkServerAddress();
|
|
void onAutoAddFriends(bool b);
|
|
void launchStatusContextMenu(QPoint p);
|
|
void makeFriend();
|
|
|
|
private:
|
|
RsPeerId getCurrentPeer();
|
|
void updateContactsStatus();
|
|
void updateFriendServerStatusIcon(bool ok);
|
|
void handleEvent_main_thread(std::shared_ptr<const RsEvent> event);
|
|
|
|
QTimer *mConnectionCheckTimer;
|
|
QMovie *mCheckingServerMovie;
|
|
bool mCurrentlyCheckingServerAddress;
|
|
|
|
RsEventsHandlerId_t mEventHandlerId_fs;
|
|
RsEventsHandlerId_t mEventHandlerId_peer;
|
|
|
|
QAction *makeFriend_ACT;
|
|
QAction *unmakeFriend_ACT;
|
|
QAction *removePeer_ACT;
|
|
QAction *removePeerPermanently_ACT;
|
|
};
|