Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef RVIZ_PROPERTY_TREE_WIDGET_H
00030 #define RVIZ_PROPERTY_TREE_WIDGET_H
00031
00032 #include <set>
00033
00034 #include <QTreeWidget>
00035
00036 namespace rviz
00037 {
00038
00039 class PropertyWidgetItem;
00040 class SplitterHandle;
00041
00042 class PropertyTreeWidget: public QTreeWidget
00043 {
00044 Q_OBJECT
00045 public:
00046 PropertyTreeWidget( QWidget* parent = 0 );
00047
00054 bool setIgnoreChanges( bool ignore_changes )
00055 {
00056 bool old = ignore_changes_;
00057 ignore_changes_ = ignore_changes;
00058 return old;
00059 }
00060 bool getIgnoreChanges() { return ignore_changes_; }
00061
00063 PropertyWidgetItem* getItem( const QModelIndex & index );
00064
00067 std::string saveEditableState();
00068
00070 void restoreEditableState( const std::string& state );
00071
00072 Q_SIGNALS:
00073 void orderChanged();
00074
00075 protected:
00076 virtual void resizeEvent( QResizeEvent* event );
00077 virtual Qt::DropActions supportedDropActions() const { return Qt::MoveAction; }
00078
00081 virtual void dropEvent( QDropEvent* event );
00082
00083 private Q_SLOTS:
00084 void onItemChanged( QTreeWidgetItem* item, int column_number );
00085
00086 private:
00089 void saveExpandedState( std::ostream& output,
00090 QTreeWidgetItem* parent_item,
00091 bool& first );
00092
00095 void restoreExpandedState( const std::set<std::string>& expanded_entries,
00096 QTreeWidgetItem* parent_item );
00097
00098 bool ignore_changes_;
00099 SplitterHandle* splitter_handle_;
00100 };
00101
00102 }
00103
00104 #endif // RVIZ_PROPERTY_TREE_WIDGET_H