summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_qt_add_ui_common/UicIncBuild_sameFileDiffFolder/src/widget1.h
blob: f8a5ad57d5a9a95d3c10194cd529f86cb27634ed (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
28
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef WIDGET1_H
#define WIDGET1_H

#include <QWidget>

QT_BEGIN_NAMESPACE
namespace Ui {
class Widget1;
}
QT_END_NAMESPACE

class Widget1 : public QWidget
{
  Q_OBJECT
public:
  explicit Widget1(QWidget* parent = nullptr);
  ~Widget1();
public slots:
  void onTextChanged(const QString& text);

private:
  Ui::Widget1* ui;
};

#endif // WIDGET1_H