hpp-gui  4.10.1
Graphical interface for HPP
listjointconstraint.hh
Go to the documentation of this file.
1 //
2 // Copyright (c) CNRS
3 // Author: Heidy Dallard
4 //
5 
6 #ifndef LISTJOINTCONSTRAINT_HH
7 #define LISTJOINTCONSTRAINT_HH
8 
9 #include "iconstraint.hh"
10 #include "hppwidgetsplugin.hh"
11 
12 class QListWidget;
13 class QWidget;
14 
15 namespace hpp {
16  namespace gui {
18  {
19  public:
21  virtual ~ListJointConstraint();
22 
23  virtual QWidget* getWidget() const;
24  virtual void reload();
25 
26  protected:
28  QWidget* widget_;
29  QListWidget* jointList_;
30  };
31 
33  {
34  public:
36  virtual ~LockedJointConstraint();
37 
38  virtual QString getName() const;
39  virtual void operator()(QString const& name);
40  };
41  }
42 }
43 
44 #endif // LISTJOINTCONSTRAINT_HH
hpp.gui::LockedJointConstraint
Definition: listjointconstraint.hh:32
hpp.gui::LockedJointConstraint::~LockedJointConstraint
virtual ~LockedJointConstraint()
hpp.gui::LockedJointConstraint::LockedJointConstraint
LockedJointConstraint(HppWidgetsPlugin *plugin)
hppwidgetsplugin.hh
hpp.gui::ListJointConstraint::getWidget
virtual QWidget * getWidget() const
hpp.gui::LockedJointConstraint::operator()
virtual void operator()(QString const &name)
hpp.gui::IConstraint
Definition: iconstraint.hh:13
iconstraint.hh
hpp
namespace that encapsulate all the softwares of humanoid-path-planner
Definition: __init__.py:1
hpp.gui::LockedJointConstraint::getName
virtual QString getName() const
hpp.gui::ListJointConstraint::reload
virtual void reload()
hpp.gui::ListJointConstraint::ListJointConstraint
ListJointConstraint(HppWidgetsPlugin *plugin)
hpp.gui::ListJointConstraint::~ListJointConstraint
virtual ~ListJointConstraint()
hpp.gui::ListJointConstraint::widget_
QWidget * widget_
Definition: listjointconstraint.hh:28
hpp.gui::HppWidgetsPlugin
Plugin that add a lot of features to work with hpp.
Definition: hppwidgetsplugin.hh:29
hpp.gui::ListJointConstraint::plugin_
HppWidgetsPlugin * plugin_
Definition: listjointconstraint.hh:27
hpp.gui::ListJointConstraint
Definition: listjointconstraint.hh:17
hpp.gui::ListJointConstraint::jointList_
QListWidget * jointList_
Definition: listjointconstraint.hh:29