File indexing completed on 2024-04-21 05:41:04

0001 /*
0002     SPDX-FileCopyrightText: 2020 Nikolai Krasheninnikov <nkrasheninnikov@yandex.ru>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef SVNCHECKOUTDIALOG_H
0008 #define SVNCHECKOUTDIALOG_H
0009 
0010 #include <QDialog>
0011 
0012 #include "ui_svncheckoutdialog.h"
0013 
0014 class SvnCheckoutDialog : public QDialog {
0015     Q_OBJECT
0016 public:
0017     SvnCheckoutDialog(const QString& contextDir, QWidget *parent = nullptr);
0018     virtual ~SvnCheckoutDialog() override;
0019 
0020 public Q_SLOTS:
0021     void on_leRepository_textChanged(const QString &text);
0022     void on_pbOk_clicked();
0023 
0024 Q_SIGNALS:
0025     void infoMessage(const QString& msg);
0026     void errorMessage(const QString& msg);
0027     void operationCompletedMessage(const QString& msg);
0028 
0029 private:
0030     Ui::SvnCheckoutDialog m_ui;
0031     QString m_dir;
0032 };
0033 
0034 #endif  // SVNCHECKOUTDIALOG_H