#include "pqApplicationComponentsModule.h"
#include "vtkSetGet.h"
#include <QFlags>
#include <QObject>
Go to the source code of this file.
◆ PQ_BEHAVIOR_DEFINE_METHODS
| #define PQ_BEHAVIOR_DEFINE_METHODS |
( |
|
_name | ) |
|
Value:static void setEnable##_name(bool val) \
{ \
pqParaViewBehaviors::_name = val; \
} \
static bool enable##_name() \
{ \
return pqParaViewBehaviors::_name; \
}
Definition at line 40 of file pqParaViewBehaviors.h.
◆ PQ_BEHAVIOR_DEFINE_METHODS_LEGACY
| #define PQ_BEHAVIOR_DEFINE_METHODS_LEGACY |
( |
|
_name | ) |
|
Value:VTK_LEGACY(
static void setEnable##_name(
bool val) { pqParaViewBehaviors::_name = val; }); \
VTK_LEGACY(static bool enable##_name() { return pqParaViewBehaviors::_name; });
#define VTK_LEGACY(method)
Definition at line 50 of file pqParaViewBehaviors.h.
◆ PQ_BEHAVIOR_DECLARE_FLAG
| #define PQ_BEHAVIOR_DECLARE_FLAG |
( |
|
_name | ) |
static bool _name; |