eventhandler.hxx (46dbacee) | eventhandler.hxx (07a3d7f1) |
---|---|
1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 133 unchanged lines hidden (view full) --- 142 // XServiceInfo 143 virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException); 144 virtual ::sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException); 145 virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException); 146 147 private: 148 /** returns the script events associated with our introspectee 149 @param _out_rEvents | 1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 133 unchanged lines hidden (view full) --- 142 // XServiceInfo 143 virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException); 144 virtual ::sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException); 145 virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException); 146 147 private: 148 /** returns the script events associated with our introspectee 149 @param _out_rEvents |
150 Takes, upon successfull return, the events currently associated with the introspectee | 150 Takes, upon successful return, the events currently associated with the introspectee |
151 @precond 152 Our introspectee is a form component 153 */ 154 void impl_getFormComponentScriptEvents_nothrow( 155 ::com::sun::star::uno::Sequence< ::com::sun::star::script::ScriptEventDescriptor >& _out_rEvents 156 ) const; 157 158 /** returns the script events associated with our introspectee 159 @param _out_rEvents | 151 @precond 152 Our introspectee is a form component 153 */ 154 void impl_getFormComponentScriptEvents_nothrow( 155 ::com::sun::star::uno::Sequence< ::com::sun::star::script::ScriptEventDescriptor >& _out_rEvents 156 ) const; 157 158 /** returns the script events associated with our introspectee 159 @param _out_rEvents |
160 Takes, upon successfull return, the events currently associated with the introspectee | 160 Takes, upon successful return, the events currently associated with the introspectee |
161 @precond 162 Our introspectee is a dialog element 163 */ 164 void impl_getDialogElementScriptEvents_nothrow( 165 ::com::sun::star::uno::Sequence< ::com::sun::star::script::ScriptEventDescriptor >& _out_rEvents 166 ) const; 167 168 /** returns the script events associated with our introspectee --- 7 unchanged lines hidden (view full) --- 176 if ( m_bIsDialogElement ) 177 impl_getDialogElementScriptEvents_nothrow( _out_rEvents ); 178 else 179 impl_getFormComponentScriptEvents_nothrow( _out_rEvents ); 180 } 181 182 /** returns the types of the listeners which can be registered at our introspectee 183 @param _out_rTypes | 161 @precond 162 Our introspectee is a dialog element 163 */ 164 void impl_getDialogElementScriptEvents_nothrow( 165 ::com::sun::star::uno::Sequence< ::com::sun::star::script::ScriptEventDescriptor >& _out_rEvents 166 ) const; 167 168 /** returns the script events associated with our introspectee --- 7 unchanged lines hidden (view full) --- 176 if ( m_bIsDialogElement ) 177 impl_getDialogElementScriptEvents_nothrow( _out_rEvents ); 178 else 179 impl_getFormComponentScriptEvents_nothrow( _out_rEvents ); 180 } 181 182 /** returns the types of the listeners which can be registered at our introspectee 183 @param _out_rTypes |
184 Takes, upon successfull return, the types of possible listeners at the introspectee | 184 Takes, upon successful return, the types of possible listeners at the introspectee |
185 */ 186 void impl_getCopmonentListenerTypes_nothrow( 187 ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type >& _out_rTypes 188 ) const; 189 190 /** returns a secondary component to be used for event inspection 191 192 In the UI, we want to mix events for the control model with events for the control. --- 69 unchanged lines hidden --- | 185 */ 186 void impl_getCopmonentListenerTypes_nothrow( 187 ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type >& _out_rTypes 188 ) const; 189 190 /** returns a secondary component to be used for event inspection 191 192 In the UI, we want to mix events for the control model with events for the control. --- 69 unchanged lines hidden --- |