mirror of
https://github.com/feather-wallet/feather.git
synced 2025-03-25 16:18:45 +00:00
33 lines
661 B
C++
33 lines
661 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2024 The Monero Project
|
|
|
|
#ifndef FEATHER_RESTOREHEIGHTWIDGET_H
|
|
#define FEATHER_RESTOREHEIGHTWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class RestoreHeightWidget;
|
|
}
|
|
|
|
class RestoreHeightWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RestoreHeightWidget(QWidget *parent = nullptr);
|
|
~RestoreHeightWidget() override;
|
|
|
|
void setHeight(quint64 restoreHeight);
|
|
int getHeight();
|
|
|
|
private slots:
|
|
void onCreationDateChanged();
|
|
void onRestoreHeightChanged();
|
|
|
|
private:
|
|
QScopedPointer<Ui::RestoreHeightWidget> ui;
|
|
};
|
|
|
|
|
|
#endif //FEATHER_RESTOREHEIGHTWIDGET_H
|