blob: 3c66ae60e31411924524ba26056d23075b0a3d47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// SPDX-License-Identifier: GPL-3.0-only
// SPDX-FileCopyrightText: 2026 Project Tick
// SPDX-FileContributor: Project Tick Team
#pragma once
#include "BaseWizardPage.h"
class QComboBox;
class QLabel;
class SearchWizardPage : public BaseWizardPage
{
Q_OBJECT
public:
explicit SearchWizardPage(QWidget* parent = nullptr);
~SearchWizardPage() override;
bool validatePage() override;
protected:
void retranslate() override;
private:
QLabel* m_descriptionLabel = nullptr;
QComboBox* m_providerCombo = nullptr;
};
|