diff options
Diffstat (limited to 'languages/fortran/ftnchekconfigwidget.h')
-rw-r--r-- | languages/fortran/ftnchekconfigwidget.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/languages/fortran/ftnchekconfigwidget.h b/languages/fortran/ftnchekconfigwidget.h new file mode 100644 index 00000000..053b2598 --- /dev/null +++ b/languages/fortran/ftnchekconfigwidget.h @@ -0,0 +1,41 @@ +/*************************************************************************** + * Copyright (C) 2001 by Bernd Gehrmann * + * [email protected] * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef _FTNCHEKCONFIGWIDGET_H_ +#define _FTNCHEKCONFIGWIDGET_H_ + +#include <qdom.h> +#include "ftnchekconfigwidgetbase.h" + +class QButtonGroup; + +class FtnchekConfigWidget : public FtnchekConfigWidgetBase +{ + Q_OBJECT + +public: + FtnchekConfigWidget(QDomDocument &projectDom, QWidget *parent, const char *name); + ~FtnchekConfigWidget(); + +public slots: + void accept(); + +private: + void readConfig(); + void storeConfig(); + + QButtonGroup *arguments_group, *common_group; + QButtonGroup *truncation_group, *usage_group; + QButtonGroup *f77_group, *portability_group; + QDomDocument dom; +}; + +#endif |