Lines Matching defs:CachedInspectorUI

89     struct CachedInspectorUI : public CachedInspectorUI_Base  struct
93 oslInterlockedCount m_refCount;
94 bool m_bDisposed;
96 m_rMaster;
97 FNotifySingleUIChange m_pUIChangeNotification;
100 StringBag aEnabledProperties;
101 StringBag aDisabledProperties;
104 StringBag aShownProperties;
105 StringBag aHiddenProperties;
108 StringBag aRebuiltProperties;
111 StringBag aShownCategories;
112 StringBag aHiddenCategories;
115 MapIntToStringBag aEnabledElements;
116 MapIntToStringBag aDisabledElements;
119 typedef StringBag& (CachedInspectorUI::*FGetStringBag)();
122 StringBag& getEnabledProperties() { return aEnabledProperties; } in getEnabledProperties()
123 StringBag& getDisabledProperties() { return aDisabledProperties; } in getDisabledProperties()
126 StringBag& getShownProperties() { return aShownProperties; } in getShownProperties()
127 StringBag& getHiddenProperties() { return aHiddenProperties; } in getHiddenProperties()
130 StringBag& getRebuiltProperties() { return aRebuiltProperties; } in getRebuiltProperties()
133 StringBag& getShownCategories() { return aShownCategories; } in getShownCategories()
134 StringBag& getHiddenCategories() { return aHiddenCategories; } in getHiddenCategories()
137 …StringBag& getEnabledInputControls() { return aEnabledElements[ PropertyLineElement::InputC… in getEnabledInputControls()
138 …StringBag& getDisabledInputControls() { return aDisabledElements[ PropertyLineElement::Input… in getDisabledInputControls()
139 …StringBag& getEnabledPrimaryButtons() { return aEnabledElements[ PropertyLineElement::Primar… in getEnabledPrimaryButtons()
140 …StringBag& getDisabledPrimaryButtons() { return aDisabledElements[ PropertyLineElement::Prima… in getDisabledPrimaryButtons()
141 …StringBag& getEnabledSecondaryButtons() { return aEnabledElements[ PropertyLineElement::Second… in getEnabledSecondaryButtons()
142 …StringBag& getDisabledSecondaryButtons() { return aDisabledElements[ PropertyLineElement::Secon… in getDisabledSecondaryButtons()
170 inline bool isDisposed() const { return m_bDisposed; } in isDisposed()
189 class MethodGuard : public ::osl::MutexGuard
201CachedInspectorUI::CachedInspectorUI( ComposedPropertyUIUpdate& _rMaster, FNotifySingleUIChange _p… in CachedInspectorUI() function in pcr::CachedInspectorUI