You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.9 KiB
65 lines
1.9 KiB
/***************************************************************************
|
|
* Copyright (C) 2003 Alexander Dymo *
|
|
* cloudtemple@mksat.net *
|
|
* *
|
|
* 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 DCCOPTIONSPLUGIN_H
|
|
#define DCCOPTIONSPLUGIN_H
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
#include "kdevcompileroptions.h"
|
|
|
|
class FpcOptionsPlugin : public KDevCompilerOptions
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
FpcOptionsPlugin( TQObject *parent, const char *name, const TQStringList &args );
|
|
~FpcOptionsPlugin();
|
|
|
|
virtual TQString exec(TQWidget *parent, const TQString &flags);
|
|
};
|
|
|
|
|
|
class FeedbackTab;
|
|
class FilesAndDirectoriesTab;
|
|
class LanguageTab;
|
|
class CodegenTab;
|
|
|
|
class FpcOptionsDialog : public KDialogBase
|
|
{
|
|
public:
|
|
FpcOptionsDialog( TQWidget *parent=0, const char *name=0 );
|
|
~FpcOptionsDialog();
|
|
|
|
void setFlags(const TQString &flags);
|
|
TQString flags() const;
|
|
|
|
private:
|
|
/* GeneralTab *general;
|
|
OptimizationTab *optimization;
|
|
G77Tab *g77;
|
|
Warnings1Tab *warnings1;
|
|
Warnings2Tab *warnings2;*/
|
|
|
|
FeedbackTab *feedback;
|
|
FilesAndDirectoriesTab *directories;
|
|
FilesAndDirectoriesTab2 *directories2;
|
|
DebugOptimTab *debug_optim;
|
|
LanguageTab *language;
|
|
CodegenTab *codegen;
|
|
AssemblerTab *assembler;
|
|
LinkerTab *linker;
|
|
MiscTab *misc;
|
|
TQStringList unrecognizedFlags;
|
|
};
|
|
|
|
#endif
|