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

« back to all changes in this revision

Viewing changes to parts/astyle/astyle_widget.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
#ifndef __ASTYLE_WIDGET_H__
 
2
#define __ASTYLE_WIDGET_H__
 
3
 
 
4
#include "astyleconfig.h"
 
5
 
 
6
class AStylePart;
 
7
class KDevPart;
 
8
 
 
9
 
 
10
class AStyleWidget : public AStyleConfig
 
11
{
 
12
  Q_OBJECT
 
13
    
 
14
public:
 
15
                  
 
16
  AStyleWidget( AStylePart * part, QWidget *parent=0, const char *name=0 );
 
17
  ~AStyleWidget();
 
18
 
 
19
 
 
20
public slots:
 
21
      
 
22
  void accept();
 
23
 
 
24
 
 
25
private slots:
 
26
 
 
27
  void styleChanged(int id);
 
28
  void pageChanged();
 
29
  
 
30
private:
 
31
 
 
32
        AStylePart * m_part;
 
33
 
 
34
};
 
35
 
 
36
 
 
37
#endif