BALL 1.5.0
Loading...
Searching...
No Matches
compositeProperties.h
Go to the documentation of this file.
1// -*- Mode: C++; tab-width: 2; -*-
2// vi: set ts=2:
3//
4// $Id: compositeProperties.h,v 1.4.16.1 2007/03/25 21:25:46 oliver Exp $
5//
6
7#ifndef BALL_VIEW_DIALOGS_COMPOSITEPROPERTIES_H
8#define BALL_VIEW_DIALOGS_COMPOSITEPROPERTIES_H
9
10#ifndef BALL_COMMON_GLOBAL_H
11# include <BALL/COMMON/global.h>
12#endif
13
14#ifndef BALL_CONCEPT_COMPOSITE
16#endif
17
18#include <BALL/VIEW/UIC/ui_compositeProperties.h>
19
20namespace BALL
21{
22 namespace VIEW
23 {
24
29 : public QDialog,
30 public Ui_CompositePropertiesData
31 {
32 Q_OBJECT
33
34 public:
35 CompositeProperties(Composite* composite, QWidget* parent = 0, const char* name = "CompositeProperties",
36 bool modal = false, Qt::WindowFlags fl = 0 );
38
39 public Q_SLOTS:
40 void accept();
41
42 private:
43 String getString_(float data) const;
44
45 Composite* composite_;
46 };
47
48 } // namespace VIEW
49} // namespace BALL
50
51#endif // BALL_VIEW_DIALOGS_COMPOSITEPROPERTIES_H
CompositeProperties(Composite *composite, QWidget *parent=0, const char *name="CompositeProperties", bool modal=false, Qt::WindowFlags fl=0)
#define BALL_VIEW_EXPORT