Lines Matching refs:FrameBorder
39 class FrameBorder class
42 explicit FrameBorder( FrameBorderType eType );
93 typedef std::vector< FrameBorder* > FrameBorderPtrVec;
112 FrameBorder maLeft; /// All data of left frame border.
113 FrameBorder maRight; /// All data of right frame border.
114 FrameBorder maTop; /// All data of top frame border.
115 FrameBorder maBottom; /// All data of bottom frame border.
116 FrameBorder maHor; /// All data of inner horizontal frame border.
117 FrameBorder maVer; /// All data of inner vertical frame border.
118 FrameBorder maTLBR; /// All data of top-left to bottom-right frame border.
119 FrameBorder maBLTR; /// All data of bottom-left to top-right frame border.
173 const FrameBorder& GetBorder( FrameBorderType eBorder ) const;
175 FrameBorder& GetBorderAccess( FrameBorderType eBorder );
183 void DrawArrows( const FrameBorder& rBorder );
210 void SetBorderState( FrameBorder& rBorder, FrameBorderState eState );
212 void SetBorderCoreStyle( FrameBorder& rBorder, const SvxBorderLine* pStyle );
214 void SetBorderColor( FrameBorder& rBorder, const Color& rColor );
217 void ToggleBorderState( FrameBorder& rBorder );
222 void SelectBorder( FrameBorder& rBorder, bool bSelect );
235 inline bool operator()( const FrameBorder* ) const { return true; } in operator ()()
241 …inline bool operator()( const FrameBorder* pBorder ) const { return pBorder->GetState() == FRAMEST… in operator ()()
247 inline bool operator()( const FrameBorder* pBorder ) const { return pBorder->IsSelected(); } in operator ()()