File indexing completed on 2024-04-28 04:02:31

0001 /***************************************************************************
0002                           dlgimportexportprofile.h  -  description
0003                              -------------------
0004     begin                : Ne júl 20 2003
0005     copyright            : (C) 2003 by Tomas Mecir
0006     email                : kmuddy@kmuddy.com
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 DLGIMPORTEXPORTPROFILE_H
0019 #define DLGIMPORTEXPORTPROFILE_H
0020 
0021 #include <QDialog>
0022 
0023 class QLineEdit;
0024 class QComboBox;
0025 
0026 /**
0027 Dialog where you choose what to import/export.
0028   *@author Tomas Mecir
0029   */
0030 
0031 class dlgImportExportProfile : public QDialog {
0032    Q_OBJECT
0033 public: 
0034   dlgImportExportProfile (bool isImport, QWidget *parent=nullptr);
0035   ~dlgImportExportProfile () override;
0036   void doThings ();
0037   QSize sizeHint() const override;
0038 protected slots:
0039   void browse ();
0040 protected:
0041   bool import;
0042   QLineEdit *edfname;
0043   QLineEdit *edprofile;
0044   QComboBox *cbprofile;
0045 };
0046 
0047 #endif