rock_widget_collection  0.1
RockWidgetCollection.cc
Go to the documentation of this file.
1 #include "RockWidgetCollection.h"
12 #include "plot2d/Plot2dPlugin.h"
18 
19 #ifdef USE_QWT
21 #endif
22 
23 #ifdef USE_VTK
26 #endif
27 
29 
31  : QObject(parent)
32 {
33 // *** Please sort these alphabetically after the displayed name! ***
34  widgets.append(new ArtificialHorizonPlugin(this));
35  widgets.append(new ImageViewPlugin(this));
36  widgets.append(new ImageViewOldPlugin(this));
37  widgets.append(new MultiViewPlugin(this));
38  widgets.append(new MultiWidgetPlugin(this));
39  widgets.append(new Plot2dPlugin(this));
40  widgets.append(new ProgressIndicatorPlugin(this));
41  widgets.append(new RangeViewPlugin(this));
42  widgets.append(new RockSliderPlugin(this));
43  widgets.append(new SonarViewPlugin(this));
44  widgets.append(new TimelinePlugin(this));
45  widgets.append(new VirtualJoystickPlugin(this));
46  widgets.append(new WaterfallDisplayPlugin(this));
47  widgets.append(new SonarWidgetPlugin(this));
48 
49 #ifdef USE_QWT
50  widgets.append(new CompassPlugin(this));
51  widgets.append(new OrientationPlugin(this));
52 #endif
53 #ifdef USE_VTK
54  widgets.append(new SonarDisplayPlugin(this));
55  widgets.append(new Vectorfield3DPlugin(this));
56 #endif
57 }
58 
59 QList<QDesignerCustomWidgetInterface*> RockWidgetCollection::customWidgets() const
60 {
61  return widgets;
62 }
63 
virtual QList< QDesignerCustomWidgetInterface * > customWidgets() const