/******************************************************************************* * gui/NetworkView.h * * * * Copyright (c) 2008 Robert Fernie * * * * 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 . * * * *******************************************************************************/ #pragma once #include #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 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; };