Definition in file fbmanipulator.h.
#include <kaydaradef.h>
#include <fbsdk/fbcomponent.h>
#include <fbcontrols/fbcontrols.h>
Go to the source code of this file.
Classes |
|
class | FBManipulator |
Manipulator class. More... |
|
class | FBPropertyListManipulator |
PropertyList: Manipulator. More... |
|
class | FBManipulatorTransform |
Manipulator class. More... |
|
Defines |
|
#define | FBSDK_DLL K_DLLIMPORT |
Be sure that FBSDK_DLL is defined only once.
|
|
#define | FBRegisterManipulator(ClassName, Label, Description, IconFilename) |
Manipulator class registration. |
|
#define | FBManipulatorDeclare(ClassName, Parent) |
Manipulator class declaration. |
|
#define | FBManipulatorImplementation(ThisComponent) FBClassImplementation( ThisComponent ) |
Manipulator class implementation. |
|
Enumerations |
|
enum | FBManipulatorPickType
{ FBPickObjects, FBPickPoints, FBPickSurfaces } |
Types of manipulator picking. More... |
|
enum | FBManipulatorTransformType
{ kFBManipulatorTransformNone, kFBManipulatorTransformTranslation, kFBManipulatorTransformRotation, kFBManipulatorTransformScaling } |
Manipulator transform stles. More... |
#define FBManipulatorDeclare | ( | ClassName, | |||
Parent | ) |
Value:
FBClassDeclare( ClassName,Parent); \ public: \ ClassName(char * pName):Parent(pName) { FBClassInit; } \ private:
ClassName | Manipulator class name. | |
Parent | Parent class. |
Definition at line 89 of file fbmanipulator.h.
#define FBManipulatorImplementation | ( | ThisComponent | ) | FBClassImplementation( ThisComponent ) |
Manipulator class implementation.
ThisComponent | Class to implement. |
Definition at line 98 of file fbmanipulator.h.
#define FBRegisterManipulator | ( | ClassName, | |||
Label, | |||||
Description, | |||||
IconFilename | ) |
Value:
HIObject RegisterManipulator##ClassName( HIObject /*pOwner*/,char * pName,void * /*pData*/) \ { \ ClassName *Class = new ClassName( Label ); \ if (Class->FBCreate()) { \ return Class->GetHIObject(); \ } else { \ delete Class; \ return NULL; \ } \ } \ FBLibraryModule( ClassName ) \ { \ FBRegisterObject( ClassName,"Manipulators",Label,Description,RegisterManipulator##ClassName,true, IconFilename ); \ }
ClassName | Manipulator class name. | |
Label | Short description. | |
Description | Long description. | |
IconFilename | Filename of associated icon. |
Definition at line 69 of file fbmanipulator.h.
#define FBSDK_DLL K_DLLIMPORT |
Types of manipulator picking.
Definition at line 105 of file fbmanipulator.h.
Manipulator transform stles.
Definition at line 268 of file fbmanipulator.h.