~ubuntu-branches/ubuntu/karmic/kdevelop/karmic

« back to all changes in this revision

Viewing changes to languages/cpp/createpcsdialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-05-25 19:34:26 UTC
  • mfrom: (1.1.11 upstream) (2.3.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090525193426-hdntv90rvflyew8g
Tags: 4:3.9.93-1ubuntu1
* Merge from Debian experimental, remaining changes:
  - Conflict/replace -kde4 packages

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
 
        void parseNext();
45
 
 
46
 
private:
47
 
        CppSupportPart* m_part;
48
 
        QWidget* m_settings;
49
 
        class RppDriver;
50
 
        
51
 
        class PCSJobData;
52
 
        PCSJobData * m_jobData;
53
 
};
54
 
 
55
 
#endif 
56
 
// kate: indent-mode csands; tab-width 4;
57
 
 
58
 
 
59