fpcoptionsplugin.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 * Copyright (C) 2003 Alexander Dymo * 00003 * cloudtemple@mksat.net * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 ***************************************************************************/ 00011 #ifndef DCCOPTIONSPLUGIN_H 00012 #define DCCOPTIONSPLUGIN_H 00013 00014 #include <kdialogbase.h> 00015 00016 #include "kdevcompileroptions.h" 00017 00018 class FpcOptionsPlugin : public KDevCompilerOptions 00019 { 00020 Q_OBJECT 00021 00022 public: 00023 FpcOptionsPlugin( QObject *parent, const char *name, const QStringList &args ); 00024 ~FpcOptionsPlugin(); 00025 00026 virtual QString exec(QWidget *parent, const QString &flags); 00027 }; 00028 00029 00030 class FeedbackTab; 00031 class FilesAndDirectoriesTab; 00032 class LanguageTab; 00033 class CodegenTab; 00034 00035 class FpcOptionsDialog : public KDialogBase 00036 { 00037 public: 00038 FpcOptionsDialog( QWidget *parent=0, const char *name=0 ); 00039 ~FpcOptionsDialog(); 00040 00041 void setFlags(const QString &flags); 00042 QString flags() const; 00043 00044 private: 00045 /* GeneralTab *general; 00046 OptimizationTab *optimization; 00047 G77Tab *g77; 00048 Warnings1Tab *warnings1; 00049 Warnings2Tab *warnings2;*/ 00050 00051 FeedbackTab *feedback; 00052 FilesAndDirectoriesTab *directories; 00053 FilesAndDirectoriesTab2 *directories2; 00054 DebugOptimTab *debug_optim; 00055 LanguageTab *language; 00056 CodegenTab *codegen; 00057 AssemblerTab *assembler; 00058 LinkerTab *linker; 00059 MiscTab *misc; 00060 QStringList unrecognizedFlags; 00061 }; 00062 00063 #endif