Subversion Repositories public

Rev

Rev 276 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
274 andreas 1
//
2
// C++ Interface:
3
//
4
// Description:
5
//
6
//
7
// Author: Andreas Theofilu <andreas@theosys.at>, (C) 2009
8
//
9
// Copyright: See COPYING file that comes with this distribution
10
//
11
//
12
 
13
#ifndef SHAPEWIDGET_H
14
#define SHAPEWIDGET_H
15
 
16
#include <QDialog>
17
#include "ui_shapewidgetbase.h"
18
 
19
class shapeWidget : public QDialog, private Ui::shapeWidgetBase
20
{
21
		Q_OBJECT
22
 
23
	public:
24
		shapeWidget (QWidget* parent = 0, Qt::WFlags fl = 0);
25
		~shapeWidget();
26
		/*$PUBLIC_FUNCTIONS$*/
27
 
28
	public slots:
29
		/*$PUBLIC_SLOTS$*/
30
		virtual void accept();
31
};
32
 
33
#endif
34