mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
|
|
#ifndef IPSPLITTUNNELINGUICONTROLLER_H
|
||
|
|
#define IPSPLITTUNNELINGUICONTROLLER_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
|
||
|
|
#include "core/controllers/ipSplitTunnelingController.h"
|
||
|
|
#include "ui/models/ipSplitTunnelingModel.h"
|
||
|
|
|
||
|
|
class IpSplitTunnelingUiController : public QObject
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
Q_PROPERTY(int routeMode READ getRouteMode WRITE setRouteMode NOTIFY routeModeChanged)
|
||
|
|
Q_PROPERTY(bool isSplitTunnelingEnabled READ isSplitTunnelingEnabled NOTIFY isSplitTunnelingEnabledChanged)
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit IpSplitTunnelingUiController(IpSplitTunnelingController* ipSplitTunnelingController,
|
||
|
|
IpSplitTunnelingModel* ipSplitTunnelingModel, QObject *parent = nullptr);
|
||
|
|
|
||
|
|
public slots:
|
||
|
|
void addSite(QString hostname);
|
||
|
|
void removeSite(int index);
|
||
|
|
void removeSites();
|
||
|
|
void importSites(const QString &fileName, bool replaceExisting);
|
||
|
|
void exportSites(const QString &fileName);
|
||
|
|
void toggleSplitTunneling(bool enabled);
|
||
|
|
void setRouteMode(int routeMode);
|
||
|
|
|
||
|
|
int getRouteMode() const;
|
||
|
|
bool isSplitTunnelingEnabled() const;
|
||
|
|
|
||
|
|
void updateModel();
|
||
|
|
|
||
|
|
signals:
|
||
|
|
void routeModeChanged();
|
||
|
|
void isSplitTunnelingEnabledChanged();
|
||
|
|
void errorOccurred(const QString &errorMessage);
|
||
|
|
void finished(const QString &message);
|
||
|
|
void saveFile(const QString &fileName, const QString &data);
|
||
|
|
|
||
|
|
private:
|
||
|
|
IpSplitTunnelingController* m_ipSplitTunnelingController;
|
||
|
|
IpSplitTunnelingModel* m_ipSplitTunnelingModel;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // IPSPLITTUNNELINGUICONTROLLER_H
|