Home
last modified time | relevance | path

Searched refs:pState (Results 1 – 25 of 202) sorted by last modified time

123456789

/aoo41x/main/xmlsecurity/source/dialogs/
H A Dstbcontrl.cxx126 …ecStatusBarControl::StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState ) in StateChanged() argument
135 else if( pState->ISA( SfxBoolItem ) ) in StateChanged()
137 mpImpl->mbSigned = ( ( SfxBoolItem* ) pState )->GetValue(); in StateChanged()
/aoo41x/main/xmlsecurity/inc/xmlsecurity/
H A Dstbcontrl.hxx47 virtual void StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState );
/aoo41x/main/xmloff/source/text/
H A Dtxtexppr.cxx306 lcl_checkMultiProperty(XMLPropertyState *const pState, in lcl_checkMultiProperty() argument
309 if (pState && pRelState) in lcl_checkMultiProperty()
320 pState->mnIndex = -1; in lcl_checkMultiProperty()
321 pState->maValue.clear(); in lcl_checkMultiProperty()
/aoo41x/main/xmloff/source/style/
H A DPageMasterExportPropMapper.cxx57 inline void lcl_RemoveState( XMLPropertyState* pState ) in lcl_RemoveState() argument
59 pState->mnIndex = -1; in lcl_RemoveState()
60 pState->maValue.clear(); in lcl_RemoveState()
63 void lcl_RemoveStateIfZero16( XMLPropertyState* pState ) in lcl_RemoveStateIfZero16() argument
66 if( (pState->maValue >>= nValue) && !nValue ) in lcl_RemoveStateIfZero16()
67 lcl_RemoveState( pState ); in lcl_RemoveStateIfZero16()
/aoo41x/main/winaccessibility/source/service/
H A DAccObjectManagerAgent.cxx212 void AccObjectManagerAgent::DecreaseState( XAccessible* pXAcc,unsigned short pState ) in DecreaseState() argument
216 pWinManager->DecreaseState( pXAcc, pState ); in DecreaseState()
226 void AccObjectManagerAgent::IncreaseState( XAccessible* pXAcc,unsigned short pState ) in IncreaseState() argument
230 pWinManager->IncreaseState( pXAcc, pState ); in IncreaseState()
H A DAccObjectWinManager.cxx958 void AccObjectWinManager::DecreaseState( XAccessible* pXAcc,unsigned short pState ) in DecreaseState() argument
962 pAccObj->DecreaseState( pState ); in DecreaseState()
973 void AccObjectWinManager::IncreaseState( XAccessible* pXAcc,unsigned short pState ) in IncreaseState() argument
977 pAccObj->IncreaseState( pState ); in IncreaseState()
/aoo41x/main/winaccessibility/inc/
H A DAccObjectManagerAgent.hxx64 void DecreaseState( com::sun::star::accessibility::XAccessible* pXAcc,unsigned short pState );
65 void IncreaseState( com::sun::star::accessibility::XAccessible* pXAcc,unsigned short pState );
H A DAccObjectWinManager.hxx134 void DecreaseState( com::sun::star::accessibility::XAccessible* pXAcc,unsigned short pState );
135 void IncreaseState( com::sun::star::accessibility::XAccessible* pXAcc,unsigned short pState );
/aoo41x/main/vcl/win/source/window/
H A Dsalframe.cxx1881 if ( pState->mnMask & SAL_FRAMESTATE_MASK_X ) in SetWindowState()
1882 nX = (int)pState->mnX - nLeftDeco; in SetWindowState()
1885 if ( pState->mnMask & SAL_FRAMESTATE_MASK_Y ) in SetWindowState()
1886 nY = (int)pState->mnY - nTopDeco; in SetWindowState()
1889 if ( pState->mnMask & SAL_FRAMESTATE_MASK_WIDTH ) in SetWindowState()
1893 if ( pState->mnMask & SAL_FRAMESTATE_MASK_HEIGHT ) in SetWindowState()
1928 if ( pState->mnMask & SAL_FRAMESTATE_MASK_STATE ) in SetWindowState()
1944 if ( pState->mnMask & SAL_FRAMESTATE_MASK_STATE ) in SetWindowState()
1946 if ( pState->mnState & SAL_FRAMESTATE_MINIMIZED ) in SetWindowState()
2006 *pState = maState; in GetWindowState()
[all …]
/aoo41x/main/vcl/unx/gtk/window/
H A Dgtkframe.cxx1623 resizeWindow( pState->mnWidth, pState->mnHeight ); in SetWindowState()
1624 moveWindow( pState->mnX, pState->mnY ); in SetWindowState()
1634 m_aRestorePosSize = Rectangle( Point( pState->mnX, pState->mnY ), in SetWindowState()
1635 Size( pState->mnWidth, pState->mnHeight ) ); in SetWindowState()
1643 long nWidth = pState->mnWidth; in SetWindowState()
1644 long nHeight = pState->mnHeight; in SetWindowState()
1661 SetPosSize( nX, nY, pState->mnWidth, pState->mnHeight, nPosSizeFlags ); in SetWindowState()
1687 pState->mnState = SAL_FRAMESTATE_NORMAL; in GetWindowState()
1711 pState->mnX = maGeometry.nX; in GetWindowState()
1712 pState->mnY = maGeometry.nY; in GetWindowState()
[all …]
/aoo41x/main/vcl/unx/headless/
H A Dsvpframe.cxx283 if (pState == NULL) in SetWindowState()
287 if (pState->mnMask & _FRAMESTATE_MASK_GEOMETRY) in SetWindowState()
296 nX = pState->mnX; in SetWindowState()
298 nY = pState->mnY; in SetWindowState()
300 nWidth = pState->mnWidth; in SetWindowState()
302 nHeight = pState->mnHeight; in SetWindowState()
312 pState->mnState = SAL_FRAMESTATE_NORMAL; in GetWindowState()
313 pState->mnX = maGeometry.nX; in GetWindowState()
314 pState->mnY = maGeometry.nY; in GetWindowState()
315 pState->mnWidth = maGeometry.nWidth; in GetWindowState()
[all …]
H A Dsvpframe.hxx88 virtual void SetWindowState( const SalFrameState* pState );
89 virtual sal_Bool GetWindowState( SalFrameState* pState );
/aoo41x/main/vcl/unx/generic/window/
H A Dsalframe.cxx1652 if (pState == NULL) in SetWindowState()
1679 pHints->x = pState->mnX; in SetWindowState()
1680 pHints->y = pState->mnY; in SetWindowState()
1688 pState->mnX, pState->mnY, in SetWindowState()
1689 pState->mnWidth, pState->mnHeight ); in SetWindowState()
1714 long nWidth = pState->mnWidth > 0 ? pState->mnWidth - 1 : 0; in SetWindowState()
1720 int nHeight = pState->mnHeight > 0 ? pState->mnHeight - 1 : 0; in SetWindowState()
1833 pState->mnX = aPosSize.Left(); in GetWindowState()
1834 pState->mnY = aPosSize.Top(); in GetWindowState()
1835 pState->mnWidth = aPosSize.GetWidth(); in GetWindowState()
[all …]
/aoo41x/main/vcl/source/window/
H A Dwindow.cxx5585 IMPL_LINK( Window, ImplAsyncStateChangedHdl, void*, pState ) in IMPL_LINK() argument
5587 StateChanged( (StateChangedType)(sal_uLong)pState ); in IMPL_LINK()
/aoo41x/main/vcl/os2/source/window/
H A Dsalframe.cxx1232 pState->mnWidth,pState->mnHeight,pState->mnX,pState->mnY); in SetWindowState()
1254 if ( pState->mnMask & SAL_FRAMESTATE_MASK_X ) in SetWindowState()
1255 nX = (int)pState->mnX - nLeftDeco; in SetWindowState()
1260 if ( pState->mnMask & SAL_FRAMESTATE_MASK_Y ) in SetWindowState()
1261 nY = (int)pState->mnY - nTopDeco; in SetWindowState()
1265 if ( pState->mnMask & SAL_FRAMESTATE_MASK_WIDTH ) in SetWindowState()
1269 if ( pState->mnMask & SAL_FRAMESTATE_MASK_HEIGHT ) in SetWindowState()
1307 if ( pState->mnMask & SAL_FRAMESTATE_MASK_STATE ) in SetWindowState()
1323 if ( pState->mnMask & SAL_FRAMESTATE_MASK_STATE ) in SetWindowState()
1379 *pState = maState; in GetWindowState()
[all …]
/aoo41x/main/vcl/inc/win/
H A Dsalframe.h110 virtual void SetWindowState( const SalFrameState* pState );
111 virtual sal_Bool GetWindowState( SalFrameState* pState );
/aoo41x/main/vcl/inc/unx/gtk/
H A Dgtkframe.hxx323 virtual void SetWindowState( const SalFrameState* pState );
324 virtual sal_Bool GetWindowState( SalFrameState* pState );
/aoo41x/main/vcl/inc/unx/
H A Dsalframe.h235 virtual void SetWindowState( const SalFrameState* pState );
236 virtual sal_Bool GetWindowState( SalFrameState* pState );
/aoo41x/main/vcl/inc/
H A Dsalframe.hxx187 virtual void SetWindowState( const SalFrameState* pState ) = 0;
188 virtual sal_Bool GetWindowState( SalFrameState* pState ) = 0;
/aoo41x/main/vcl/inc/os2/
H A Dsalframe.h123 virtual void SetWindowState( const SalFrameState* pState );
124 virtual sal_Bool GetWindowState( SalFrameState* pState );
/aoo41x/main/vcl/inc/aqua/
H A Daquaprintview.h59 … withController: (vcl::PrinterController*)pController withState: (PrintAccessoryViewState*)pState;
H A Dsalframe.h127 virtual void SetWindowState( const SalFrameState* pState );
128 virtual sal_Bool GetWindowState( SalFrameState* pState );
/aoo41x/main/vcl/aqua/source/window/
H A Dsalframe.cxx588 if( pState->mnMask & SAL_FRAMESTATE_MASK_X ) in SetWindowState()
589 aStateRect.origin.x = float(pState->mnX); in SetWindowState()
590 if( pState->mnMask & SAL_FRAMESTATE_MASK_Y ) in SetWindowState()
591 aStateRect.origin.y = float(pState->mnY); in SetWindowState()
592 if( pState->mnMask & SAL_FRAMESTATE_MASK_WIDTH ) in SetWindowState()
594 if( pState->mnMask & SAL_FRAMESTATE_MASK_HEIGHT ) in SetWindowState()
676 pState->mnX = long(aStateRect.origin.x); in GetWindowState()
677 pState->mnY = long(aStateRect.origin.y); in GetWindowState()
682 pState->mnState = SAL_FRAMESTATE_MINIMIZED; in GetWindowState()
684 pState->mnState = SAL_FRAMESTATE_NORMAL; in GetWindowState()
[all …]
/aoo41x/main/vcl/aqua/source/gdi/
H A Daquaprintaccessoryview.mm1087 …p withController: (vcl::PrinterController*)pController withState: (PrintAccessoryViewState*)pState
1105 …trollerProperties = new ControllerProperties( pController, pOp, pAccessoryView, pTabView, pState );
1365 if( pState->nLastPage >= 0 && pState->nLastPage < [pTabView numberOfTabViewItems] )
1366 [pTabView selectTabViewItemAtIndex: pState->nLastPage];
/aoo41x/main/sw/source/ui/utlui/
H A Dtmplctrl.cxx101 sal_uInt16 /*nSID*/, SfxItemState eState, const SfxPoolItem* pState ) in StateChanged() argument
103 if( eState != SFX_ITEM_AVAILABLE || pState->ISA( SfxVoidItem ) ) in StateChanged()
105 else if ( pState->ISA( SfxStringItem ) ) in StateChanged()
107 sTemplate = ((SfxStringItem*)pState)->GetValue(); in StateChanged()

Completed in 218 milliseconds

123456789