Skip to content
Snippets Groups Projects
Commit 3d9170fa authored by stefan's avatar stefan
Browse files

Fixed doxygen documentation in panels

git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2470 5a81b35b-ba03-0410-adc8-b2c5c5119f08
parent c93c9fd0
No related branches found
No related tags found
No related merge requests found
......@@ -80,10 +80,10 @@ public:
int GetIndex(Widget* widget);
/// \brief Begin with dragging widgets
/// This method is called by the \ref Panels class. Read more about this method at \ref Panels::StartDrag() .
/// This method is called by the \ref PanelManager class. Read more about this method at \ref PanelManager::StartDrag() .
void DragEnter();
/// \brief Stop dragging widgets
/// This method is called by the \ref Panels class. Read more about this method at \ref Panels::EndDrag() .
/// This method is called by the \ref PanelManager class. Read more about this method at \ref PanelManager::EndDrag() .
void EndDrag();
/// \brief Get action which changes the visibility of this widget
......
......@@ -79,7 +79,7 @@ public:
/// \param pos Indicates which PanelBar is affected
/// \param class_name the class_name of the widget you would like to add.
/// \param is_hidden marks if the class should be displayed in the gui. Default the widget will be shown.
void AddWidgetByName(PanelPosition pos, const QString& class_name, bool hidden=false);
void AddWidgetByName(PanelPosition pos, const QString& class_name, bool is_hidden=false);
/// \brief Replace a Widget with another Widget
/// With this Method you can replace a Widget which is in a PanelBar with another Widget.
......
......@@ -54,11 +54,11 @@ public:
/// \param show if show if false hide the widget even the position is not correct.
virtual void ShowWidget(Widget* widget,int pos,bool show = true) = 0;
/// \brief Begin with dragging widgets
/// This method is initially called in the \ref Panels class in the \ref Panels::StartDrag() method.
/// This method is initially called in the \ref PanelManager class in the \ref PanelManager::StartDrag() method.
virtual void StartDrag();
/// \brief Stop dragging widgets
/// This method is initially called in the \ref Panels class in the \ref Panels::EndDrag() method.
/// This method is initially called in the \ref PanelManager class in the \ref PanelManager::EndDrag() method.
virtual void EndDrag();
/// \brief Get the PanelBar
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment