From 0ea3c4e587cb186bdc249fad241f1430c798506f Mon Sep 17 00:00:00 2001 From: Martin Heistermann Date: Thu, 23 Apr 2020 13:13:59 +0200 Subject: [PATCH] Add comments for add/clear slots. --- PropertyVisPlugin.hh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/PropertyVisPlugin.hh b/PropertyVisPlugin.hh index 79f8a5d..590eb07 100644 --- a/PropertyVisPlugin.hh +++ b/PropertyVisPlugin.hh @@ -149,8 +149,16 @@ private slots: public slots: + /// Visualise a property on object _id with the given name. + /// Note that for multiple properties with the same name (i.e., different + /// data types or entity types), there is no guarantee which one is used. void slotVisualizeProperty( int _id, const QString& _propname ); + + /// Remove visualisation of a property on object _id with the given name. + /// Note that for multiple properties with the same name (i.e., different + /// data types or entity types), there is no guarantee which one is used. void slotClear( int _id, const QString& _propname ); + QScriptValue getPropertyVisualizer( int _id, const QString& _propname ); -- GitLab