File indexing completed on 2024-04-21 15:05:24

0001 /*
0002     This file is part of the KDE frameworks
0003     SPDX-FileCopyrightText: 2011-2014 Aurélien Gâteau <agateau@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-or-later
0006 */
0007 #ifndef KCOLUMNRESIZERTESTAPP_H
0008 #define KCOLUMNRESIZERTESTAPP_H
0009 
0010 #include <QWidget>
0011 
0012 class Ui_ColumnResizerTestWidget;
0013 
0014 class Window : public QWidget
0015 {
0016     Q_OBJECT
0017 public:
0018     Window();
0019     ~Window() override;
0020 
0021 public Q_SLOTS:
0022     void updateAdjustableLabel();
0023 
0024 private:
0025     Ui_ColumnResizerTestWidget *m_ui;
0026 };
0027 
0028 #endif /* KCOLUMNRESIZERTESTAPP_H */