rock_widget_collection  0.1
Public Member Functions | List of all members
RockWidgetCollection Class Reference

#include <RockWidgetCollection.h>

Inherits QObject, and QDesignerCustomWidgetCollectionInterface.

Public Member Functions

 RockWidgetCollection (QObject *parent=0)
 
virtual QList< QDesignerCustomWidgetInterface * > customWidgets () const
 

Detailed Description

Definition at line 7 of file RockWidgetCollection.h.

Constructor & Destructor Documentation

RockWidgetCollection::RockWidgetCollection ( QObject *  parent = 0)

Definition at line 30 of file RockWidgetCollection.cc.

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 }

Member Function Documentation

QList< QDesignerCustomWidgetInterface * > RockWidgetCollection::customWidgets ( ) const
virtual

Definition at line 59 of file RockWidgetCollection.cc.

60 {
61  return widgets;
62 }

The documentation for this class was generated from the following files: