File indexing completed on 2025-01-05 03:35:37

0001 /*
0002     File                 : ExamplesDialog.h
0003     Project              : LabPlot
0004     Description          : dialog showing the available example projects
0005     --------------------------------------------------------------------
0006     SPDX-FileCopyrightText: 2021 Alexander Semke <alexander.semke@web.de>
0007     SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 
0010 #ifndef EXAMPLESDIALOG_H
0011 #define EXAMPLESDIALOG_H
0012 
0013 #include <QDialog>
0014 
0015 class ExamplesWidget;
0016 
0017 class ExamplesDialog : public QDialog {
0018     Q_OBJECT
0019 
0020 public:
0021     explicit ExamplesDialog(QWidget*);
0022     ~ExamplesDialog() override;
0023 
0024     QString path() const;
0025 
0026 private:
0027     ExamplesWidget* m_examplesWidget;
0028 };
0029 
0030 #endif // EXAMPLESDIALOG_H