11#include "GUIMenuItemBase.h"
12#include "GUIPropertyMessageBox.h"
13#include "GUIStaticText.h"
14#include "DefinitionsGUI.h"
22 class CGUIPaneProperties;
25 class CGUIPropertyButton;
26 class CGUIPropertyMessageBox;
30 class CGUIPaneFrameWnd;
34 typedef std::function<
const CResult(int32_t)> CGUIMenuItemRegistrationCallback;
35 #define MakeMenuItemRegistrationCallback [=](int32_t i32Index) -> const CResult
37 typedef std::function<
const CResult(int32_t)> CGUIMenuItemUnregistrationCallback;
38 #define MakeMenuItemUnregistrationCallback [=](int32_t i32Index) -> const CResult
279 virtual bool Save()
const override;
454 virtual bool AddItem(CGUIPropertyItemBase* pItem,
bool bAdjustLayout =
true);
477 template<
typename TPropertyItem>
478 TPropertyItem*
AddItem(
const wchar_t* pWcsName,
const wchar_t* pWcsPath =
nullptr,
const wchar_t* pWcsValue =
nullptr,
const wchar_t* pWcsDefaultValue =
nullptr,
bool bAdjustLayout =
false);
502 template<
typename TPropertyItem>
503 TPropertyItem*
AddItem(
ESliderTemplateType eTemplateType,
const wchar_t* pWcsName,
const wchar_t* pWcsPath =
nullptr,
const wchar_t* pWcsValue =
nullptr,
const wchar_t* pWcsDefaultValue =
nullptr,
bool bAdjustLayout =
false);
541 virtual bool InsertItem(CGUIPropertyItemBase* pItem,
const CGUIPropertyItemBase* pItemBefore,
bool bAdjustLayout =
true);
558 virtual bool RemoveItem(CGUIPropertyItemBase* pItem,
bool bAdjustLayout =
true);
632 virtual bool MoveItem(CGUIPropertyItemBase* pItem,
EInsertPosition eInsertPosition,
const CGUIPropertyItemBase* pItemInsertPosition,
bool bAdjustLayout =
true);
788 virtual CGUIPropertyItemBase*
GetItem(int64_t i64Index)
const;
1440 virtual CGUIPaneBase* GetPane()
const override;
1442 virtual void SetDockDone(
bool bSet);
1443 virtual bool IsDockDone()
const;
1449 virtual void UpdateChildProperty();
1450 virtual bool OnShortKeyDown(UINT uKeyType);
1451 virtual const CResult ActivateSelectedViewOfFirstViewList();
1453 CGUIPropertyMessageBox* GetMessageBox()
const;
1455 virtual std::vector<CGUIPropertyItemBase*>& GetItems()
const;
1456 virtual std::unordered_map<uint32_t, CGUIPropertyItemBase*>& GetItemsHashMap()
const;
1457 virtual std::vector<CGUIPropertyButton*>& GetButtons()
const;
1459 virtual bool DoesItemExistInVector(
const CGUIPropertyItemBase* pItem,
bool bLock =
true)
const;
1462 virtual bool InternalLoad();
1463 virtual bool InternalSave()
const;
1465 virtual bool IsSNAPNodeProperty()
const;
1471 std::map<EKeyType, CGUIPropertyButton*>& m_mapBtnShortcuts;
1474 std::vector<CGUIPropertyButton*>& m_vctButtons;
1477 CGUIPropertyMessageBox* m_pStaticMessage;
1481 CGUIPaneProperties* m_pProperties;
1482 bool m_bInitialized;
1485 bool m_bEnableWindowCreation;
1487 CGUIMenuItemRegistrationCallback* m_pRegistrationCallback;
1488 bool m_bCreateCallbackAutoDestroy;
1491 CGUIMenuItemUnregistrationCallback* m_pDestroyInstanceCallback;
1492 bool m_bDestroyCallbackAutoDestroy;
1498 bool m_bActivateViewOnShowPane;
1500 bool m_bEnableOpenWindow;
1501 bool m_bGlobalModel;
1503 friend class CGUIPaneProperties;
1504 friend class CGUITabbedPane;
1505 friend class CGUIPropertyItemBase;
1506 friend class CGUIManager;
1507 friend class CGUIPaneMenu;
1508 friend class CGUIManagerPane;
1509 friend class CGUIMainFrame;
1510 friend class CGUIPaneFrameWnd;
1511 friend class CGUIPanePropertiesShell;
1512 friend class CGUIPropertyMenuSNAPView;
1513 friend class CGUIManagerModel;
Template type 의 문자열 클래스
Definition FLString.h:34
FLImaging 모듈의 수행 결과 객체
Definition ResultsDef.h:1676
Definition GUIDialogKernel.h:51
GUIDockablePaneHostFrame 클래스
Definition GUIDockablePaneHostFrame.h:27
CGUIPropertyItemBase 객체들을 관리하고 CGUIPropertyGridCtrl 과의 동기화를 수행하는 매니저 클래스입니다.
Definition GUIManagerPropertyItem.h:46
프로퍼티 아이템 베이스 클래스
Definition GUIPropertyItemBase.h:318
EAuthorityLevel
권한 레벨
Definition AuthorityManager.h:29
Definition D2DObject.h:12
EInsertPosition
Definition DefinitionsGUI.h:11493
EKeyType
키보드 입력값
Definition DefinitionsGUI.h:7564
ESliderTemplateType
슬라이더 자료형
Definition DefinitionsGUI.h:10625
EAppendPosition
Definition DefinitionsGUI.h:11513
@ EAppendPosition_Back
Definition DefinitionsGUI.h:11518
EMenuItemPaneMenuTree
메뉴 트리의 메뉴 아이템
Definition DefinitionsGUI.h:9359