File indexing completed on 2024-04-28 16:26:19

0001 /***************************************************************************
0002     date                 : Jan 28 2005
0003     version              : 0.10
0004     copyright            : (C) 2005 by Holger Danielsson
0005     email                : holger.danielsson@t-online.de
0006  ***************************************************************************/
0007 
0008 /***************************************************************************
0009  *                                                                         *
0010  *   This program is free software; you can redistribute it and/or modify  *
0011  *   it under the terms of the GNU General Public License as published by  *
0012  *   the Free Software Foundation; either version 2 of the License, or     *
0013  *   (at your option) any later version.                                   *
0014  *                                                                         *
0015  ***************************************************************************/
0016 
0017 #ifndef FLOATDIALOG_H
0018 #define FLOATDIALOG_H
0019 
0020 #include "kilewizard.h"
0021 
0022 #include "kileinfo.h"
0023 
0024 #include "ui_floatdialog_base.h"
0025 
0026 namespace KileDialog
0027 {
0028 
0029 class FloatEnvironmentDialog : public Wizard
0030 {
0031     Q_OBJECT
0032 
0033 public:
0034     FloatEnvironmentDialog(KConfig *config, KileInfo *ki, QWidget *parent);
0035     ~FloatEnvironmentDialog() {}
0036 
0037 public Q_SLOTS:
0038     void slotAccepted();
0039 
0040 private Q_SLOTS:
0041     void slotEnvironmentClicked();
0042 
0043 private:
0044     Ui::FloatDialog m_FloatDialog;
0045 
0046     QString m_prefix;
0047     KileInfo *m_ki;
0048 };
0049 
0050 }
0051 
0052 #endif