FeedReader: Moved proxy setting to own widget

This commit is contained in:
thunder2 2025-07-13 14:30:15 +02:00 committed by Thunder
parent 8c26fa879d
commit 1094e3e651
8 changed files with 165 additions and 70 deletions

View file

@ -0,0 +1,31 @@
#ifndef PROXYWIDGET_H
#define PROXYWIDGET_H
#include <QWidget>
namespace Ui {
class ProxyWidget;
}
class ProxyWidget : public QWidget
{
Q_OBJECT
public:
explicit ProxyWidget(QWidget *parent = nullptr);
~ProxyWidget();
QString address();
void setAddress(const QString &value);
int port();
void setPort(int value);
Q_SIGNALS:
void changed();
private:
Ui::ProxyWidget *ui;
};
#endif // PROXYWIDGET_H