File indexing completed on 2024-09-15 13:11:19
0001 /*************************************************************************** 0002 starttupinfo.cüü - description 0003 ------------------- 0004 begin : Sat Oct 18 2009 0005 copyright : (C) 2009 by Dominik Seichter 0006 email : domseichter@web.de 0007 ***************************************************************************/ 0008 0009 /*************************************************************************** 0010 * * 0011 * This program is free software; you can redistribute it and/or modify * 0012 * it under the terms of the GNU General Public License as published by * 0013 * the Free Software Foundation; either version 2 of the License, or * 0014 * (at your option) any later version. * 0015 * * 0016 ***************************************************************************/ 0017 0018 #ifndef START_UP_INFO_H 0019 #define START_UP_INFO_H 0020 0021 #include <QFrame> 0022 0023 namespace Ui 0024 { 0025 class StartUpInfoWidget; 0026 }; 0027 0028 /** 0029 * A info widget which tells the user about the next steps 0030 * when using KRename. 0031 * 0032 */ 0033 class StartUpInfo : public QFrame 0034 { 0035 Q_OBJECT 0036 0037 public: 0038 explicit StartUpInfo(QWidget *parent = nullptr); 0039 virtual ~StartUpInfo(); 0040 0041 Q_SIGNALS: 0042 /** 0043 * Emitted when the user clicks the link to add more files. 0044 */ 0045 void addFiles(); 0046 0047 /** 0048 * Emitted when the user clicks the link to specify the template. 0049 */ 0050 void enterTemplate(); 0051 0052 private: 0053 Ui::StartUpInfoWidget *m_widget; 0054 }; 0055 0056 #endif // START_UP_INFO_H 0057