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

« back to all changes in this revision

Viewing changes to languages/cpp/createpcsdialog.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 by Roberto Raggi                                   *
 
3
*   roberto@kdevelop.org                                                  *
 
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
 
 
12
#ifndef CREATEPCSDIALOG_H
 
13
#define CREATEPCSDIALOG_H
 
14
 
 
15
#include "createpcsdialogbase.h"
 
16
 
 
17
class CppSupportPart;
 
18
 
 
19
class CreatePCSDialog : public CreatePCSDialogBase
 
20
{
 
21
        Q_OBJECT
 
22
 
 
23
public:
 
24
        CreatePCSDialog( CppSupportPart* part, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
 
25
        ~CreatePCSDialog();
 
26
        /*$PUBLIC_FUNCTIONS$*/
 
27
 
 
28
public slots:
 
29
        /*$PUBLIC_SLOTS$*/
 
30
        virtual void slotSelected( const QString& );
 
31
        virtual void slotSelectionChanged( QListViewItem* );
 
32
 
 
33
protected:
 
34
        /*$PROTECTED_FUNCTIONS$*/
 
35
 
 
36
protected slots:
 
37
        /*$PROTECTED_SLOTS$*/
 
38
        virtual void back();
 
39
        virtual void next();
 
40
        virtual void reject();
 
41
        virtual void accept();
 
42
        void setNextPageEnabled( int );
 
43
 
 
44
private:
 
45
        CppSupportPart* m_part;
 
46
        QWidget* m_settings;
 
47
        class RppDriver;
 
48
};
 
49
 
 
50
#endif 
 
51
// kate: indent-mode csands; tab-width 4;
 
52
 
 
53
 
 
54