mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-15 02:44:20 -05:00
79 lines
2.7 KiB
C++
79 lines
2.7 KiB
C++
/*******************************************************************************
|
|
* gui/feeds/SecurityIpItem.h *
|
|
* *
|
|
* Copyright (c) 2015, Retroshare Team <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/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
|
|
#ifndef _SECURITYIPITEM_H
|
|
#define _SECURITYIPITEM_H
|
|
|
|
#include "retroshare/rstypes.h"
|
|
|
|
#include "FeedItem.h"
|
|
#include <stdint.h>
|
|
|
|
namespace Ui {
|
|
class SecurityIpItem;
|
|
}
|
|
|
|
class FeedHolder;
|
|
|
|
class SecurityIpItem : public FeedItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/** Default Constructor */
|
|
SecurityIpItem(FeedHolder *parent, const RsPeerId &sslId, const std::string& ipAddr, uint32_t result, uint32_t type, bool isTest);
|
|
SecurityIpItem(FeedHolder *parent, const RsPeerId &sslId, const std::string& ipAddr, const std::string& ipAddrReported, uint32_t type, bool isTest);
|
|
|
|
void updateItemStatic();
|
|
|
|
bool isSame(const RsPeerId &sslId, const std::string& ipAddr, const std::string& ipAddrReported, uint32_t type);
|
|
|
|
protected:
|
|
/* FeedItem */
|
|
virtual void doExpand(bool open);
|
|
|
|
private:
|
|
void setup();
|
|
|
|
private slots:
|
|
/* default stuff */
|
|
void removeItem();
|
|
void toggle();
|
|
void peerDetails();
|
|
void updateItem();
|
|
void banIpListChanged(const QString &ipAddress);
|
|
|
|
private:
|
|
FeedHolder *mParent;
|
|
uint32_t mFeedId;
|
|
|
|
uint32_t mType;
|
|
RsPeerId mSslId;
|
|
std::string mIpAddr;
|
|
std::string mIpAddrReported;
|
|
uint32_t mResult;
|
|
bool mIsTest;
|
|
|
|
/** Qt Designer generated object */
|
|
Ui::SecurityIpItem *ui;
|
|
};
|
|
|
|
#endif
|