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

« back to all changes in this revision

Viewing changes to buildtools/autotools/removetargetdlg.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                : 21.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 _REMOVETARGETDLG_H_
18
 
#define _REMOVETARGETDLG_H_
19
 
 
20
 
#include "removetargetdlgbase.h"
21
 
 
22
 
#include <qptrlist.h>
23
 
 
24
 
class AutoProjectWidget;
25
 
class AutoProjectPart;
26
 
class SubprojectItem;
27
 
class TargetItem;
28
 
 
29
 
/**
30
 
 * 
31
 
 * KDevelop Authors
32
 
 **/
33
 
class RemoveTargetDialog : public RemoveTargetDlgBase
34
 
{
35
 
 
36
 
public:
37
 
        RemoveTargetDialog( AutoProjectWidget *widget, AutoProjectPart* part, SubprojectItem *spitem,
38
 
                            TargetItem *titem, QWidget* parent = 0, const char* name = 0 );
39
 
        ~RemoveTargetDialog();
40
 
 
41
 
private:
42
 
        SubprojectItem* m_spitem;
43
 
        TargetItem* m_titem;
44
 
        AutoProjectWidget* m_widget;
45
 
        AutoProjectPart* m_part;
46
 
 
47
 
        QPtrList <SubprojectItem> dependentSubprojects;
48
 
 
49
 
protected:
50
 
        void init ();
51
 
        virtual void accept();
52
 
};
53
 
 
54
 
#endif 
55
 
// kate: indent-mode csands; tab-width 4;