|
virtual void | Show ()=0 |
|
virtual void | Hide ()=0 |
|
virtual void | Show (int index)=0 |
|
virtual void | Hide (int index)=0 |
|
virtual HWND | GetPanelDlg (int index)=0 |
|
virtual int | GetPanelIndex (HWND hWnd)=0 |
|
virtual int | GetPanelIndex (QWidget &qtWidget)=0 |
| Returns the index of a rollup page that was created from a Qt widget.
|
|
virtual void | SetPanelTitle (int index, const MCHAR *title)=0 |
|
virtual MSTR | GetPanelTitle (int index) const =0 |
| Gets the title text displayed in the rollup page whose index is passed.
|
|
virtual int | AppendRollup (HINSTANCE hInst, const MCHAR *dlgTemplate, DLGPROC dlgProc, const MCHAR *title, LPARAM param=0, DWORD flags=0, int category=ROLLUP_CAT_STANDARD)=0 |
|
virtual int | AppendRollup (HINSTANCE hInst, DLGTEMPLATE *dlgTemplate, DLGPROC dlgProc, const MCHAR *title, LPARAM param=0, DWORD flags=0, int category=ROLLUP_CAT_STANDARD)=0 |
|
virtual int | AppendRollup (QWidget &qtWidget, const MCHAR *title, DWORD rollupFlags, int category)=0 |
| Adds a rollup page that hosts a Qt dialog.
|
|
virtual int | ReplaceRollup (int index, HINSTANCE hInst, const MCHAR *dlgTemplate, DLGPROC dlgProc, const MCHAR *title, LPARAM param=0, DWORD flags=0, int category=ROLLUP_CAT_STANDARD)=0 |
|
virtual int | ReplaceRollup (int index, HINSTANCE hInst, DLGTEMPLATE *dlgTemplate, DLGPROC dlgProc, const MCHAR *title, LPARAM param=0, DWORD flags=0, int category=ROLLUP_CAT_STANDARD)=0 |
|
virtual void | DeleteRollup (int index, int count)=0 |
|
virtual void | SetPageDlgHeight (int index, int height)=0 |
|
virtual int | GetPageDlgHeight (int index) const =0 |
| Get the height of a rollup dialog.
|
|
virtual void | SaveState (RollupState *hState)=0 |
|
virtual void | RestoreState (RollupState *hState)=0 |
|
virtual void | DlgMouseMessage (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)=0 |
|
virtual int | GetNumPanels ()=0 |
|
virtual BOOL | IsPanelOpen (int index)=0 |
|
virtual void | SetPanelOpen (int index, BOOL isOpen, BOOL ignoreFlags=TRUE)=0 |
|
virtual int | GetScrollPos ()=0 |
|
virtual void | SetScrollPos (int spos)=0 |
|
virtual void | MoveRollupPanelFrom (IRollupWindow *from, HWND hPanel, BOOL top)=0 |
|
virtual int | GetPanelHeight (int index)=0 |
|
virtual int | GetScrollHeight ()=0 |
|
virtual void | UpdateLayout ()=0 |
|
virtual IRollupPanel * | GetPanel (HWND hWnd)=0 |
|
virtual void | RegisterRollupCallback (IRollupCallback *callb)=0 |
|
virtual void | UnRegisterRollupCallback (IRollupCallback *callb)=0 |
|
virtual void | RegisterRCMenuItem (IRollupRCMenuItem *item)=0 |
|
virtual void | UnRegisterRCMenuItem (IRollupRCMenuItem *item)=0 |
|
virtual void | ResetCategories (bool update=true)=0 |
|
virtual void | SetBorderless (BOOL borderless)=0 |
| Sets a rollup window to borderless, or bordered.
|
|
virtual BOOL | GetBorderless ()=0 |
| Returns TRUE if the rollup window is borderless, FALSE otherwise.
|
|
virtual HWND | GetHwnd ()=0 |
|
virtual void | Enable (BOOL onOff=TRUE)=0 |
|
virtual void | Disable ()=0 |
|
virtual BOOL | IsEnabled ()=0 |
|
virtual void | Enable2 (BOOL onOff=TRUE)=0 |
|
virtual INT_PTR | Execute (int cmd, ULONG_PTR arg1=0, ULONG_PTR arg2=0, ULONG_PTR arg3=0) |
|
virtual void | SetTooltip (bool bEnable, const MCHAR *text)=0 |
| Sets a tooltip for the custom control.
|
|
CoreExport void | UpdateEnableState (Animatable *anim, int subNum) |
| Helper function to disable or enable this UI control based on whether the Animatable associated with it is keyframable or not (locked parameter or scripted parameters are not keyframable).
|
|
virtual UtilExport | ~InterfaceServer () |
| Destructor.
|
|
virtual UtilExport BaseInterface * | GetInterface (Interface_ID id) |
|
template<class InterfaceType > |
InterfaceType * | GetTypedInterface () |
|
|
static UtilExport void * | operator new (size_t size) |
| Standard new operator used to allocate objects If there is insufficient memory, an exception will be thrown.
|
|
static UtilExport void * | operator new (size_t size, const std::nothrow_t &e) |
| Standard new operator used to allocate objects if there is insufficient memory, NULL will be returned.
|
|
static UtilExport void * | operator new (size_t size, const char *filename, int line) |
| New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, an exception will be thrown.
|
|
static UtilExport void * | operator new (size_t size, int block_type, const char *filename, int line) |
| New operator used to allocate objects that takes the type of memory, filename and line number where the new was called If there is insufficient memory, an exception will be thrown.
|
|
static UtilExport void * | operator new (size_t size, const std::nothrow_t &e, const char *filename, int line) |
| New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, NULL will be returned.
|
|
static UtilExport void * | operator new (size_t size, unsigned long flags) |
| New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, an exception will be thrown.
|
|
static UtilExport void * | operator new (size_t size, const std::nothrow_t &e, unsigned long flags) |
| New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, NULL will be returned.
|
|
static UtilExport void * | operator new[] (size_t size) |
| New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown.
|
|
static UtilExport void * | operator new[] (size_t size, const std::nothrow_t &e) |
| New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned.
|
|
static UtilExport void * | operator new[] (size_t size, const char *filename, int line) |
| New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown.
|
|
static UtilExport void * | operator new[] (size_t size, int block_type, const char *filename, int line) |
| New operator used to allocate arrays of objects.
|
|
static UtilExport void * | operator new[] (size_t size, const std::nothrow_t &e, const char *filename, int line) |
| New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned.
|
|
static UtilExport void * | operator new[] (size_t size, unsigned long flags) |
| New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown.
|
|
static UtilExport void * | operator new[] (size_t size, const std::nothrow_t &e, unsigned long flags) |
| New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned.
|
|
static UtilExport void | operator delete (void *ptr) |
| Standard delete operator used to deallocate an object If the pointer is invalid, an exception will be thrown.
|
|
static UtilExport void | operator delete (void *ptr, const std::nothrow_t &e) |
| Standard delete operator used to deallocate an object If the pointer is invalid, nothing will happen.
|
|
static UtilExport void | operator delete (void *ptr, const char *filename, int line) |
| Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown.
|
|
static UtilExport void | operator delete (void *ptr, int block_type, const char *filename, int line) |
| Delete operator used to deallocate an object that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown.
|
|
static UtilExport void | operator delete (void *ptr, const std::nothrow_t &e, const char *filename, int line) |
| Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen.
|
|
static UtilExport void | operator delete (void *ptr, unsigned long flags) |
| Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown.
|
|
static UtilExport void | operator delete (void *ptr, const std::nothrow_t &e, unsigned long flags) |
| Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, nothing will happen.
|
|
static UtilExport void | operator delete[] (void *ptr) |
| Standard delete operator used to deallocate an array of objects If the pointer is invalid, an exception will be thrown.
|
|
static UtilExport void | operator delete[] (void *ptr, const std::nothrow_t &e) |
| Standard delete operator used to deallocate an array of objects If the pointer is invalid, nothing will happen.
|
|
static UtilExport void | operator delete[] (void *ptr, const char *filename, int line) |
| Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown.
|
|
static UtilExport void | operator delete[] (void *ptr, int block_type, const char *filename, int line) |
| Delete operator used to deallocate an array of objects that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown.
|
|
static UtilExport void | operator delete[] (void *ptr, const std::nothrow_t &e, const char *filename, int line) |
| Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen.
|
|
static UtilExport void | operator delete[] (void *ptr, unsigned long flags) |
| Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown.
|
|
static UtilExport void | operator delete[] (void *ptr, const std::nothrow_t &e, unsigned long flags) |
| Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown.
|
|
static UtilExport void * | operator new (size_t size, void *placement_ptr) |
| Placement new operator.
|
|
static UtilExport void | operator delete (void *ptr, void *placement_ptr) |
| Placement delete operator.
|
|
static UtilExport void * | aligned_malloc (size_t size, size_t alignment) |
| Allocates memory on a specified alignment boundary.
|
|
static UtilExport void * | aligned_realloc (void *ptr, size_t size, size_t alignment) |
| Reallocates memory on a specified alignment boundary.
|
|
static UtilExport void | aligned_free (void *ptr) |
| Frees a block of memory that was allocated with aligned_malloc/aligned_realloc.
|
|