File indexing completed on 2024-04-28 15:40:12

0001 // SPDX-FileCopyrightText: 2003-2006 Jesper K. Pedersen <blackie@kde.org>
0002 // SPDX-FileCopyrightText: 2009-2010 Wes Hardaker <kpa@capturedonearth.com>
0003 // SPDX-FileCopyrightText: 2022 Johannes Zarl-Zierl <johannes@zarl-zierl.at>
0004 //
0005 // SPDX-License-Identifier: GPL-2.0-or-later
0006 
0007 #ifndef RUNDIALOG_H
0008 #define RUNDIALOG_H
0009 
0010 #include <kpabase/FileNameList.h>
0011 
0012 #include <QDialog>
0013 #include <QLineEdit>
0014 
0015 namespace MainWindow
0016 {
0017 
0018 class RunDialog : public QDialog
0019 {
0020     Q_OBJECT
0021 
0022 public:
0023     explicit RunDialog(QWidget *parent);
0024     void setImageList(const DB::FileNameList &fileList);
0025     void show();
0026 
0027 protected Q_SLOTS:
0028     void slotMarkGo();
0029 
0030 private:
0031     QLineEdit *m_cmd;
0032     DB::FileNameList m_fileList;
0033 };
0034 }
0035 
0036 #endif /* RUNDIALOG_H */
0037 
0038 // vi:expandtab:tabstop=4 shiftwidth=4: