summaryrefslogtreecommitdiffstats
path: root/languages/ruby/rubyconfigwidget.h
blob: f4f367d1d38268b34e08e7ae2e27b4a2d1da5170 (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

#ifndef RUBYCONFIGWIDGET_H
#define RUBYCONFIGWIDGET_H

#include "rubyconfigwidgetbase.h"

class TQDomDocument;

class RubyConfigWidget : public RubyConfigWidgetBase
{
  Q_OBJECT
  TQ_OBJECT
public:
  RubyConfigWidget(TQDomDocument &projectDom, TQWidget* tqparent = 0, const char* name = 0);

public slots:
  void accept();

protected:

protected slots:

private:
  TQDomDocument &dom;
};

#endif