///////////////////////////////////////////////////////////////////// Returns true if object hidden.
| 1003 | ////////////////////////////////////////////////////////////////////////// |
| 1004 | //! Returns true if object hidden. |
| 1005 | bool CBaseObject::IsHidden() const |
| 1006 | { |
| 1007 | return (CheckFlags(OBJFLAG_HIDDEN)) || |
| 1008 | (!m_layer->IsVisible()) || |
| 1009 | (gSettings.objectHideMask & GetType()); |
| 1010 | } |
| 1011 | |
| 1012 | ////////////////////////////////////////////////////////////////////////// |
| 1013 | //! Returns true if object frozen. |
no test coverage detected