#include <InterViews/input.h>
#include <InterViews/resource.h>
Go to the source code of this file.
◆ __FieldSEditorCallback
#define __FieldSEditorCallback |
( |
|
T | ) |
T _FieldSEditorCallback |
◆ __FieldSEditorMemberFunction
#define __FieldSEditorMemberFunction |
( |
|
T | ) |
T _FieldSEditorMemberFunction |
◆ declareFieldSEditorCallback
#define declareFieldSEditorCallback |
( |
|
T | ) |
|
Value:
public: \
FieldSEditorCallback( \
\
\
private: \
T* obj_; \
FieldSEditorMemberFunction(T) accept_; \
FieldSEditorMemberFunction(T) cancel_; \
};
#define FieldSEditorCallback(T)
#define FieldSEditorMemberFunction(T)
Definition at line 62 of file field.h.
◆ FieldSEditorCallback
◆ FieldSEditorMemberFunction
◆ implementFieldSEditorCallback
#define implementFieldSEditorCallback |
( |
|
T | ) |
|
Value:
obj_ = obj; \
accept_ = accept; \
cancel_ = cancel; \
\
(obj_->*accept_)(f); \
} \
(obj_->*cancel_)(f); \
}
Definition at line 80 of file field.h.