Lines Matching refs:css

71 …                                     DIRECT_INTERFACE( css::lang::XTypeProvider								          ),  in DEFINE_XINTERFACE_11()
72 … DIRECT_INTERFACE( css::lang::XServiceInfo ), in DEFINE_XINTERFACE_11()
73 DIRECT_INTERFACE( css::lang::XInitialization ), in DEFINE_XINTERFACE_11()
74 … DIRECT_INTERFACE( css::lang::XComponent ), in DEFINE_XINTERFACE_11()
75 DIRECT_INTERFACE( css::awt::XWindowListener ), in DEFINE_XINTERFACE_11()
76 … DIRECT_INTERFACE( css::awt::XTopWindowListener ), in DEFINE_XINTERFACE_11()
77 … DIRECT_INTERFACE( css::awt::XSimpleTabController ), in DEFINE_XINTERFACE_11()
78 DERIVED_INTERFACE( css::lang::XEventListener, css::awt::XWindowListener ), in DEFINE_XINTERFACE_11()
79 DIRECT_INTERFACE( css::beans::XMultiPropertySet ), in DEFINE_XINTERFACE_11()
80 … DIRECT_INTERFACE( css::beans::XFastPropertySet ), in DEFINE_XINTERFACE_11()
81 … DIRECT_INTERFACE( css::beans::XPropertySet ) in DEFINE_XINTERFACE_11()
85 css::lang::XTypeProvider , in DEFINE_XINTERFACE_11()
86 css::lang::XServiceInfo , in DEFINE_XINTERFACE_11()
87 css::lang::XInitialization , in DEFINE_XINTERFACE_11()
88 css::lang::XComponent , in DEFINE_XINTERFACE_11()
89 css::awt::XWindowListener , in DEFINE_XINTERFACE_11()
90 css::awt::XTopWindowListener , in DEFINE_XINTERFACE_11()
91 css::awt::XSimpleTabController , in DEFINE_XINTERFACE_11()
92 css::lang::XEventListener , in DEFINE_XINTERFACE_11()
93 css::beans::XMultiPropertySet , in DEFINE_XINTERFACE_11()
94 css::beans::XFastPropertySet , in DEFINE_XINTERFACE_11()
95 css::beans::XPropertySet in DEFINE_XINTERFACE_11()
106 TabWindow::TabWindow( const css::uno::Reference< css::lang::XMultiServiceFactory >& xServiceManager…
134 css::uno::Reference< css::awt::XDevice > xDevice( m_xTopWindow, css::uno::UNO_QUERY ); in implts_LayoutWindows()
135 css::uno::Reference< css::awt::XWindow > xWindow( m_xTopWindow, css::uno::UNO_QUERY ); in implts_LayoutWindows()
136 css::uno::Reference< css::awt::XWindow > xTabControlWindow( m_xTabControlWindow ); in implts_LayoutWindows()
137 css::uno::Reference< css::awt::XWindow > xContainerWindow( m_xContainerWindow ); in implts_LayoutWindows()
144 css::awt::Rectangle aRectangle = xWindow->getPosSize(); in implts_LayoutWindows()
145 css::awt::DeviceInfo aInfo = xDevice->getInfo(); in implts_LayoutWindows()
146css::awt::Size aSize ( aRectangle.Width - aInfo.LeftInset - aInfo.RightInset , in implts_LayoutWindows()
149 css::awt::Size aContainerWindowSize; in implts_LayoutWindows()
150 css::awt::Size aTabControlSize; in implts_LayoutWindows()
160 css::awt::PosSize::POSSIZE ); in implts_LayoutWindows()
163 css::awt::PosSize::POSSIZE ); in implts_LayoutWindows()
167 TabControl* TabWindow::impl_GetTabControl( const css::uno::Reference< css::awt::XWindow >& rTabCont… in impl_GetTabControl()
181 css::uno::Reference< css::awt::XWindow >( in impl_SetTitle()
182 m_xTopWindow, css::uno::UNO_QUERY )); in impl_SetTitle()
191 … ::getCppuType( ( const css::uno::Reference< css::awt::XTabListener >*) NULL ) ); in implts_SendNotification()
202 ((css::awt::XTabListener*)pIterator.next())->inserted( ID ); in implts_SendNotification()
205 ((css::awt::XTabListener*)pIterator.next())->removed( ID ); in implts_SendNotification()
208 ((css::awt::XTabListener*)pIterator.next())->activated( ID ); in implts_SendNotification()
211 ((css::awt::XTabListener*)pIterator.next())->deactivated( ID ); in implts_SendNotification()
217 catch( css::uno::RuntimeException& ) in implts_SendNotification()
225 …plts_SendNotification( Notification eNotify, sal_Int32 ID, const css::uno::Sequence< css::beans::N… in implts_SendNotification()
228 … ::getCppuType( ( const css::uno::Reference< css::awt::XTabListener >*) NULL ) ); in implts_SendNotification()
239 ((css::awt::XTabListener*)pIterator.next())->changed( ID, rSeq ); in implts_SendNotification()
245 catch( css::uno::RuntimeException& ) in implts_SendNotification()
291 void SAL_CALL TabWindow::initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) in initialize()
292 throw (css::uno::Exception, css::uno::RuntimeException) in initialize()
297 css::awt::Size aDefaultSize( 500, 500 ); in initialize()
298 css::awt::Size aSize( aDefaultSize ); in initialize()
303 css::uno::Reference< css::lang::XMultiServiceFactory > xSMGR( m_xServiceManager ); in initialize()
309 css::beans::PropertyValue aPropValue; in initialize()
310 css::uno::Reference< css::awt::XTopWindow > xTopWindow; in initialize()
311 css::uno::Reference< css::awt::XToolkit > xToolkit; in initialize()
312 css::awt::WindowDescriptor aDescriptor; in initialize()
318 xToolkit = css::uno::Reference< css::awt::XToolkit >( in initialize()
319 xSMGR->createInstance( SERVICENAME_VCLTOOLKIT ), css::uno::UNO_QUERY ); in initialize()
321 catch ( css::uno::RuntimeException& ) in initialize()
325 catch ( css::uno::Exception& ) in initialize()
352 aDescriptor.Type = css::awt::WindowClass_TOP; in initialize()
354 aDescriptor.Parent = css::uno::Reference< css::awt::XWindowPeer >(); in initialize()
355 … aDescriptor.Bounds = css::awt::Rectangle( 0, 0, aSize.Width, aSize.Height ); in initialize()
360 …xTopWindow = css::uno::Reference< css::awt::XTopWindow >( xToolkit->createWindow( aDescriptor ), c… in initialize()
362 catch ( css::uno::RuntimeException& ) in initialize()
366 catch ( css::uno::Exception& ) in initialize()
379 css::uno::Reference< css::awt::XWindow > xWindow( xTopWindow, css::uno::UNO_QUERY ); in initialize()
380 xWindow->addWindowListener( css::uno::Reference< css::awt::XWindowListener >( in initialize()
381 static_cast< ::cppu::OWeakObject* >( this ), css::uno::UNO_QUERY_THROW )); in initialize()
383 … xTopWindow->addTopWindowListener( css::uno::Reference< css::awt::XTopWindowListener >( in initialize()
384 static_cast< ::cppu::OWeakObject* >( this ), css::uno::UNO_QUERY_THROW )); in initialize()
386 css::uno::Reference< css::awt::XWindow > xContainerWindow; in initialize()
387 css::uno::Reference< css::awt::XWindow > xTabControl; in initialize()
390 aDescriptor.Type = css::awt::WindowClass_SIMPLE; in initialize()
392 …aDescriptor.Parent = css::uno::Reference< css::awt::XWindowPeer >( xTopWindow, css:… in initialize()
393 aDescriptor.Bounds = css::awt::Rectangle(0,0,0,0); in initialize()
396 …xContainerWindow = css::uno::Reference< css::awt::XWindow >( xToolkit->createWindow( aDescriptor )… in initialize()
399 aDescriptor.Type = css::awt::WindowClass_SIMPLE; in initialize()
402 …aDescriptor.Parent = css::uno::Reference< css::awt::XWindowPeer >( xTopWindow, css::uno::UNO_QU… in initialize()
403 aDescriptor.Bounds = css::awt::Rectangle( 0,0,0,0 ); in initialize()
406 …xTabControl = css::uno::Reference< css::awt::XWindow >( xToolkit->createWindow( aDescriptor ), css in initialize()
418 xWindow->setPosSize( 0, 0, aSize.Width, aSize.Height, css::awt::PosSize::POSSIZE ); in initialize()
448 void SAL_CALL TabWindow::dispose() throw (css::uno::RuntimeException) in dispose()
451 css::uno::Reference< css::lang::XComponent > xThis( in dispose()
452 static_cast< ::cppu::OWeakObject* >(this), css::uno::UNO_QUERY ); in dispose()
453 css::lang::EventObject aEvent( xThis ); in dispose()
459 css::uno::Reference< css::awt::XWindow > xTabControlWindow( m_xTabControlWindow ); in dispose()
460 css::uno::Reference< css::awt::XWindow > xContainerWindow( m_xContainerWindow ); in dispose()
461 css::uno::Reference< css::awt::XTopWindow > xTopWindow( m_xTopWindow ); in dispose()
468css::uno::Reference< css::lang::XComponent > xComponent( xTabControlWindow, css::uno::UNO_QUERY ); in dispose()
472 …xComponent = css::uno::Reference< css::lang::XComponent >( xContainerWindow, css::uno::UNO_QUERY ); in dispose()
476 xComponent = css::uno::Reference< css::lang::XComponent >( xTopWindow, css::uno::UNO_QUERY ); in dispose()
487 void SAL_CALL TabWindow::addEventListener( const css::uno::Reference< css::lang::XEventListener >& … in addEventListener()
488 throw (css::uno::RuntimeException) in addEventListener()
497 …m_aListenerContainer.addInterface( ::getCppuType( ( const css::uno::Reference< css::lang::XEventLi… in addEventListener()
500 void SAL_CALL TabWindow::removeEventListener( const css::uno::Reference< css::lang::XEventListener … in removeEventListener()
501 throw (css::uno::RuntimeException) in removeEventListener()
510 …m_aListenerContainer.removeInterface( ::getCppuType( ( const css::uno::Reference< css::lang::XEven… in removeEventListener()
516 void SAL_CALL TabWindow::disposing( const css::lang::EventObject& ) in disposing()
517 throw( css::uno::RuntimeException ) in disposing()
524 void SAL_CALL TabWindow::windowResized( const css::awt::WindowEvent& ) in windowResized()
525 throw( css::uno::RuntimeException ) in windowResized()
530 void SAL_CALL TabWindow::windowMoved( const css::awt::WindowEvent& ) in windowMoved()
531 throw( css::uno::RuntimeException ) in windowMoved()
535 void SAL_CALL TabWindow::windowShown( const css::lang::EventObject& ) in windowShown()
536 throw( css::uno::RuntimeException ) in windowShown()
553 void SAL_CALL TabWindow::windowHidden( const css::lang::EventObject& ) in windowHidden()
554 throw( css::uno::RuntimeException ) in windowHidden()
573 void SAL_CALL TabWindow::windowOpened( const css::lang::EventObject& ) in windowOpened()
574 throw (css::uno::RuntimeException) in windowOpened()
578 void SAL_CALL TabWindow::windowClosing( const css::lang::EventObject& ) in windowClosing()
579 throw (css::uno::RuntimeException) in windowClosing()
581css::uno::Reference< css::lang::XComponent > xComponent( (OWeakObject *)this, css::uno::UNO_QUERY … in windowClosing()
586 void SAL_CALL TabWindow::windowClosed( const css::lang::EventObject& ) in windowClosed()
587 throw (css::uno::RuntimeException) in windowClosed()
591 void SAL_CALL TabWindow::windowMinimized( const css::lang::EventObject& ) in windowMinimized()
592 throw (css::uno::RuntimeException) in windowMinimized()
596 void SAL_CALL TabWindow::windowNormalized( const css::lang::EventObject& ) in windowNormalized()
597 throw (css::uno::RuntimeException) in windowNormalized()
601 void SAL_CALL TabWindow::windowActivated( const css::lang::EventObject& ) in windowActivated()
602 throw (css::uno::RuntimeException) in windowActivated()
606 void SAL_CALL TabWindow::windowDeactivated( const css::lang::EventObject& ) in windowDeactivated()
607 throw (css::uno::RuntimeException) in windowDeactivated()
616 throw (css::uno::RuntimeException) in insertTab()
622 throw css::lang::DisposedException(); in insertTab()
639 throw (css::lang::IndexOutOfBoundsException, css::uno::RuntimeException) in removeTab()
645 throw css::lang::DisposedException(); in removeTab()
653 throw css::lang::IndexOutOfBoundsException(); in removeTab()
671 void SAL_CALL TabWindow::setTabProps( ::sal_Int32 ID, const css::uno::Sequence< css::beans::NamedVa… in setTabProps()
672 throw (css::lang::IndexOutOfBoundsException, css::uno::RuntimeException) in setTabProps()
678 throw css::lang::DisposedException(); in setTabProps()
685 throw css::lang::IndexOutOfBoundsException(); in setTabProps()
711 css::uno::Sequence< css::beans::NamedValue > aNamedValueSeq = getTabProps( ID ); in setTabProps()
717 css::uno::Sequence< css::beans::NamedValue > SAL_CALL TabWindow::getTabProps( ::sal_Int32 ID ) in getTabProps()
718 throw (css::lang::IndexOutOfBoundsException, css::uno::RuntimeException) in getTabProps()
724 throw css::lang::DisposedException(); in getTabProps()
726 css::uno::Sequence< css::beans::NamedValue > aNamedValueSeq; in getTabProps()
733 throw css::lang::IndexOutOfBoundsException(); in getTabProps()
739 css::uno::Sequence< css::beans::NamedValue > aSeq( 2 ); in getTabProps()
741 aSeq[0].Value = css::uno::makeAny( aTitle ); in getTabProps()
743 aSeq[1].Value = css::uno::makeAny( sal_Int32( nPos )); in getTabProps()
753 throw (css::lang::IndexOutOfBoundsException, css::uno::RuntimeException) in activateTab()
759 throw css::lang::DisposedException(); in activateTab()
766 throw css::lang::IndexOutOfBoundsException(); in activateTab()
786 throw (css::uno::RuntimeException) in getActiveTabID()
792 throw css::lang::DisposedException(); in getActiveTabID()
809 const css::uno::Reference< css::awt::XTabListener >& xListener ) in addTabListener()
810 throw (css::uno::RuntimeException) in addTabListener()
820 ::getCppuType( ( const css::uno::Reference< css::awt::XTabListener >* ) NULL ), xListener ); in addTabListener()
823 void SAL_CALL TabWindow::removeTabListener( const css::uno::Reference< css::awt::XTabListener >& xL… in removeTabListener()
824 throw (css::uno::RuntimeException) in removeTabListener()
834 ::getCppuType( ( const css::uno::Reference< css::awt::XTabListener >* ) NULL ), xListener ); in removeTabListener()
842 sal_Bool SAL_CALL TabWindow::convertFastPropertyValue( css::uno::Any& aConvertedValue , in convertFastPropertyValue()
843 css::uno::Any& aOldValue , in convertFastPropertyValue()
845 const css::uno::Any& aValue ) in convertFastPropertyValue()
846 throw( css::lang::IllegalArgumentException ) in convertFastPropertyValue()
876 const css::uno::Any&) in setFastPropertyValue_NoBroadcast()
877 throw( css::uno::Exception ) in setFastPropertyValue_NoBroadcast()
881 void SAL_CALL TabWindow::getFastPropertyValue( css::uno::Any& aValue , in getFastPropertyValue()
921 css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL TabWindow::getPropertySetInfo() in getPropertySetInfo()
922 throw ( css::uno::RuntimeException ) in getPropertySetInfo()
927 static css::uno::Reference< css::beans::XPropertySetInfo >* pInfo = NULL; in getPropertySetInfo()
938 …static css::uno::Reference< css::beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHe… in getPropertySetInfo()
946 const css::uno::Sequence< css::beans::Property > TabWindow::impl_getStaticPropertyDescriptor() in impl_getStaticPropertyDescriptor()
959 … ::getCppuType((const css::uno::Reference< css::awt::XWindow >*)NULL), in impl_getStaticPropertyDescriptor()
963 … ::getCppuType((const css::uno::Reference< css::awt::XWindow >*)NULL), in impl_getStaticPropertyDescriptor()