summaryrefslogtreecommitdiffstats
path: root/buildtools/qmake/choosesubprojectdlg.h
blob: f49eedf696ca26eaaee781d28593da38ff7d4ce3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/***************************************************************************
 *   Copyright (C) 2003 by 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 CHOOSESUBPROJECTDLG_H
#define CHOOSESUBPROJECTDLG_H

#include <klistview.h>

#include "choosesubprojectdlgbase.h"

class QMakeScopeItem;
class TrollProjectWidget;

class ChooseItem: public KListViewItem
{
public:
    ChooseItem(QMakeScopeItem *spitem, TQListViewItem *parent, TQString text);
    ChooseItem(QMakeScopeItem *spitem, TQListView *parent, TQString text);

    QMakeScopeItem *subproject();

private:
    QMakeScopeItem *m_spitem;
};

class ChooseSubprojectDlg : public ChooseSubprojectDlgBase
{
  Q_OBJECT
  TQ_OBJECT

public:
  ChooseSubprojectDlg(TrollProjectWidget *widget, TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
  ~ChooseSubprojectDlg();
  /*$PUBLIC_FUNCTIONS$*/

  QMakeScopeItem *selectedSubproject();

public slots:
  /*$PUBLIC_SLOTS$*/

protected:
  /*$PROTECTED_FUNCTIONS$*/
  TrollProjectWidget *m_widget;

protected slots:
  /*$PROTECTED_SLOTS$*/
  virtual void accept();
  virtual void itemSelected(TQListViewItem *it);

private:
    void fillSubprojectsView(ChooseItem *item);

};

#endif

// kate: space-indent on; indent-width 4; tab-width 4; replace-tabs on