~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/pascal/compiler/dccoptions/dccoptionsplugin.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2003 Alexander Dymo                                     *
 
3
 *   cloudtemple@mksat.net                                                 *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 ***************************************************************************/
 
11
#ifndef DCCOPTIONSPLUGIN_H
 
12
#define DCCOPTIONSPLUGIN_H
 
13
 
 
14
#include <kdialogbase.h>
 
15
 
 
16
#include "kdevcompileroptions.h"
 
17
 
 
18
class DccOptionsPlugin : public KDevCompilerOptions
 
19
{
 
20
    Q_OBJECT
 
21
 
 
22
public:
 
23
    DccOptionsPlugin( QObject *parent, const char *name, const QStringList/* &args */);
 
24
    ~DccOptionsPlugin();
 
25
 
 
26
    virtual QString exec(QWidget *parent, const QString &flags);
 
27
};
 
28
 
 
29
class GeneralTab;
 
30
class LinkerTab;
 
31
class LocationsTab;
 
32
class Locations2Tab;
 
33
class CodegenTab;
 
34
class DebugOptimTab;
 
35
 
 
36
class DccOptionsDialog : public KDialogBase
 
37
{
 
38
public:
 
39
    DccOptionsDialog( QWidget *parent=0, const char *name=0 );
 
40
    ~DccOptionsDialog();
 
41
 
 
42
    void setFlags(const QString &flags);
 
43
    QString flags() const;
 
44
 
 
45
private:
 
46
    GeneralTab *general;
 
47
    LinkerTab *linker;
 
48
    LocationsTab *locations;
 
49
    Locations2Tab *locations2;
 
50
    CodegenTab *codegen;
 
51
    DebugOptimTab *debug_optim;
 
52
    QStringList unrecognizedFlags;
 
53
};
 
54
 
 
55
 
 
56
#endif