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

« back to all changes in this revision

Viewing changes to buildtools/autotools/choosetargetdialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
                            -------------------
3
 
   begin                : 29.11.2002
4
 
   copyright            : (C) 2002 by Victor R�der
5
 
   email                : victor_roeder@gmx.de
6
 
***************************************************************************/
7
 
 
8
 
/***************************************************************************
9
 
 *                                                                         *
10
 
 *   This program is free software; you can redistribute it and/or modify  *
11
 
 *   it under the terms of the GNU General Public License as published by  *
12
 
 *   the Free Software Foundation; either version 2 of the License, or     *
13
 
 *   (at your option) any later version.                                   *
14
 
 *                                                                         *
15
 
 ***************************************************************************/
16
 
 
17
 
#ifndef _CHOOSETARGETDIALOG_H_
18
 
#define _CHOOSETARGETDIALOG_H_
19
 
 
20
 
#include <kdialogbase.h>
21
 
 
22
 
class AutoProjectWidget;
23
 
class AutoProjectPart;
24
 
class SubprojectItem;
25
 
class TargetItem;
26
 
class QStringList;
27
 
class QWidget;
28
 
 
29
 
class ChooseTargetDialog : public KDialogBase
30
 
{
31
 
Q_OBJECT
32
 
public:
33
 
        ChooseTargetDialog( AutoProjectWidget* widget, AutoProjectPart* part,
34
 
                            QStringList fileList, QWidget* parent = 0,
35
 
                            const char* name = 0 );
36
 
        ~ChooseTargetDialog();
37
 
 
38
 
public:
39
 
        TargetItem* chosenTarget();
40
 
        SubprojectItem* chosenSubproject();
41
 
        
42
 
        bool alwaysUseActiveTarget() const;
43
 
 
44
 
public slots:
45
 
        void slotSubprojectChanged ( const QString& );
46
 
        void slotTargetChanged ( const QString& );
47
 
 
48
 
protected:
49
 
        virtual void slotOk();
50
 
        
51
 
private:
52
 
        class Private;
53
 
        ChooseTargetDialog::Private* d;
54
 
};
55
 
 
56
 
#endif 
57
 
// kate: indent-mode csands; tab-width 4;