Warning, file /games/kmuddy/kmuddy/dialogs/dlgdumpbuffer.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /***************************************************************************
0002                           dlgdumpbuffer.h  -  Dump Buffer dialog
0003                              -------------------
0004     begin                : Pi feb 28 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 DLGDUMPBUFFER_H
0019 #define DLGDUMPBUFFER_H
0020 
0021 #include <qwidget.h>
0022 #include <QDialog>
0023 
0024 class QCheckBox;
0025 class QComboBox;
0026 class QLineEdit;
0027 
0028 /**
0029 Dump Buffer dialog.
0030   *@author Tomas Mecir
0031   */
0032 
0033 class dlgDumpBuffer : public QDialog {
0034    Q_OBJECT
0035 public:
0036   dlgDumpBuffer (QWidget *parent=nullptr);
0037   ~dlgDumpBuffer () override;
0038   QSize sizeHint() const override;
0039   bool curPos ();
0040   QString fileName ();
0041   void setFileName (const QString &fName);
0042   int type ();
0043   void setType (int t);
0044 protected slots:
0045   void browseFiles ();
0046   void updateFname (int option);
0047 protected:
0048   QCheckBox *chkcurpos;
0049   QComboBox *ttype;
0050   QLineEdit *fname;
0051 };
0052 
0053 #endif