AcFdUiFieldManager.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2015 Autodesk, Inc. All rights reserved.
  4. //
  5. // Use of this software is subject to the terms of the Autodesk license
  6. // agreement provided at the time of installation or download, or which
  7. // otherwise accompanies this software in either electronic or hard copy form.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. //
  11. // Name: AcFdUiFieldManager.h
  12. //
  13. // Description:
  14. //
  15. //////////////////////////////////////////////////////////////////////////////
  16. #pragma once
  17. #if _MSC_VER > 1000
  18. #pragma once
  19. #endif // _MSC_VER > 1000
  20. #include "AcFdUi.h"
  21. #include "AcFdUiFieldDialogHook.h"
  22. class AcTcUiSystemInternals;
  23. class CAcFdUiFieldCatalog;
  24. class CAcFdUiFieldDialogHook;
  25. class ACFDUI_PORT CAcFdUiFieldManager : public CObject
  26. {
  27. public:
  28. CAcFdUiFieldManager(void);
  29. ~CAcFdUiFieldManager(void);
  30. BOOL RegisterFieldDialogHook (CAcFdUiFieldDialogHook* pDlgHook);
  31. BOOL UnregisterFieldDialogHook(const CAcFdUiFieldDialogHook* pDlgHook);
  32. int GetRegisteredDialogHooks(AcFdUiFieldDialogHookArray& hooks);
  33. protected:
  34. void * mpImpObj;
  35. private:
  36. friend class AcFdUiSystemInternals;
  37. };