Home
last modified time | relevance | path

Searched refs:wrapper (Results 1 – 25 of 190) sorted by relevance

12345678

/AOO41X/main/vcl/aqua/source/a11y/
H A Daqua11ytextwrapper.mm46 +(id)valueAttributeForElement:(AquaA11yWrapper *)wrapper {
47 return CreateNSString ( [ wrapper accessibleText ] -> getText() );
50 +(void)setValueAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value
53 (void)wrapper;
57 +(id)numberOfCharactersAttributeForElement:(AquaA11yWrapper *)wrapper {
58 return [ NSNumber numberWithLong: [ wrapper accessibleText ] -> getCharacterCount() ];
61 +(id)selectedTextAttributeForElement:(AquaA11yWrapper *)wrapper {
62 return CreateNSString ( [ wrapper accessibleText ] -> getSelectedText() );
65 +(void)setSelectedTextAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value {
66 if ( [ wrapper accessibleEditableText ] != nil ) {
[all …]
H A Daqua11ytextwrapper.h33 +(id)valueAttributeForElement:(AquaA11yWrapper *)wrapper;
34 +(id)numberOfCharactersAttributeForElement:(AquaA11yWrapper *)wrapper;
35 +(id)selectedTextAttributeForElement:(AquaA11yWrapper *)wrapper;
36 +(id)selectedTextRangeAttributeForElement:(AquaA11yWrapper *)wrapper;
37 +(id)visibleCharacterRangeAttributeForElement:(AquaA11yWrapper *)wrapper;
38 +(id)sharedTextUIElementsAttributeForElement:(AquaA11yWrapper *)wrapper;
39 +(id)sharedCharacterRangeAttributeForElement:(AquaA11yWrapper *)wrapper;
40 +(id)stringForRangeAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)range;
41 +(id)attributedStringForRangeAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)range;
42 +(id)rangeForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index;
[all …]
H A Daqua11yvaluewrapper.mm37 +(id)valueAttributeForElement:(AquaA11yWrapper *)wrapper {
39 if ( [ wrapper accessibleValue ] != nil ) {
41 [ wrapper accessibleValue ] -> getCurrentValue() >>= value;
47 +(id)minValueAttributeForElement:(AquaA11yWrapper *)wrapper {
49 if ( [ wrapper accessibleValue ] != nil ) {
51 [ wrapper accessibleValue ] -> getMinimumValue() >>= value;
57 +(id)maxValueAttributeForElement:(AquaA11yWrapper *)wrapper {
59 if ( [ wrapper accessibleValue ] != nil ) {
61 [ wrapper accessibleValue ] -> getMaximumValue() >>= value;
67 +(void)setValueAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value {
[all …]
H A Daqua11ycomponentwrapper.mm39 +(id)sizeAttributeForElement:(AquaA11yWrapper *)wrapper {
40 Size size = [ wrapper accessibleComponent ] -> getSize();
46 +(id)positionAttributeForElement:(AquaA11yWrapper *)wrapper {
49 Size size = [ wrapper accessibleComponent ] -> getSize();
50 Point location = [ wrapper accessibleComponent ] -> getLocationOnScreen();
55 +(id)descriptionAttributeForElement:(AquaA11yWrapper *)wrapper {
56 if ( [ wrapper accessibleExtendedComponent ] != nil ) {
57 return CreateNSString ( [ wrapper accessibleExtendedComponent ] -> getToolTipText() );
74 +(BOOL)isAttributeSettable:(NSString *)attribute forElement:(AquaA11yWrapper *)wrapper {
78 …&& ! [ [ AquaA11yRoleHelper getNativeRoleFrom: [ wrapper accessibleContext ] ] isEqualToString: NS…
[all …]
H A Daqua11yactionwrapper.mm59 +(NSArray *)actionNamesForElement:(AquaA11yWrapper *)wrapper {
61 if ( [ wrapper accessibleAction ] != nil ) {
62 … for ( int cnt = 0; cnt < [ wrapper accessibleAction ] -> getAccessibleActionCount(); cnt++ ) {
63 …dObject: [ AquaA11yActionWrapper nativeActionNameFor: CreateNSString ( [ wrapper accessibleAction …
69 +(void)doAction:(NSString *)action ofElement:(AquaA11yWrapper *)wrapper {
70 if ( [ wrapper accessibleAction ] != nil ) {
71 … for ( int cnt = 0; cnt < [ wrapper accessibleAction ] -> getAccessibleActionCount(); cnt++ ) {
72 …oString: [ AquaA11yActionWrapper nativeActionNameFor: CreateNSString ( [ wrapper accessibleAction …
73 [ wrapper accessibleAction ] -> doAccessibleAction ( cnt );
H A Daqua11ytextattributeswrapper.mm131 …)range storeDefaultsTo:(AquaA11yWrapper *)wrapperStore getDefaultsFrom:(AquaA11yWrapper *)wrapper {
208 …} else if ( wrapper != nil && fonttraits != 0 ) { // attribute run and bold and/or italic was found
209 …er sharedFontManager ] fontWithFamily: [ wrapper defaultFontname ] traits: fonttraits weight: 0 si…
215 +(NSMutableAttributedString *)createAttributedStringForElement:(AquaA11yWrapper *)wrapper inOrigRan…
224 …NSString * myString = CreateNSString ( [ wrapper accessibleText ] -> getText() ); // TODO: dirty f…
225 …string = [ [ NSMutableAttributedString alloc ] initWithString: CreateNSString ( [ wrapper accessib…
226 …if ( [ wrapper accessibleTextAttributes ] != nil && [myString characterAtIndex:0] != 57361) { // T…
229 …Sequence < PropertyValue > defaultAttributes = [ wrapper accessibleTextAttributes ] -> getDefaultA…
231 …efaultAttributes toString: string forRange: offsetRange storeDefaultsTo: wrapper getDefaultsFrom: …
234 …TextSegment textSegment = [ wrapper accessibleText ] -> getTextAtIndex ( currentIndex, AccessibleT…
[all …]
H A Daqua11ywrapper.mm123 … * We intentionally do not hold a reference to the event listener in the wrapper object,
124 * but let the listener control the life cycle of the wrapper instead ..
213 …his group is not available in the UNO hierarchy, an extra wrapper is used for it. This wrapper sha…
320 … id wrapper = [ AquaA11yFactory wrapperForAccessibleContext: rMateAccessibleContext ];
321 [ children addObject: wrapper ];
322 [ wrapper release ];
344 id wrapper = [ AquaA11yFactory wrapperForAccessibleContext: xChildContext ];
345 [ children addObject: wrapper ];
346 [ wrapper release ];
358 …id wrapper = [ AquaA11yFactory wrapperForAccessibleContext: [ element accessibleContext ] createIf…
[all …]
H A Daqua11ycomponentwrapper.h33 +(id)sizeAttributeForElement:(AquaA11yWrapper *)wrapper;
34 +(id)positionAttributeForElement:(AquaA11yWrapper *)wrapper;
35 +(id)descriptionAttributeForElement:(AquaA11yWrapper *)wrapper;
37 +(BOOL)isAttributeSettable:(NSString *)attribute forElement:(AquaA11yWrapper *)wrapper;
38 +(void)setFocusedAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value;
H A Daqua11yvaluewrapper.h34 +(id)valueAttributeForElement:(AquaA11yWrapper *)wrapper;
35 +(id)minValueAttributeForElement:(AquaA11yWrapper *)wrapper;
36 +(id)maxValueAttributeForElement:(AquaA11yWrapper *)wrapper;
38 +(BOOL)isAttributeSettable:(NSString *)attribute forElement:(AquaA11yWrapper *)wrapper;
39 +(void)setValueAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value;
H A Daqua11yselectionwrapper.mm37 +(id)selectedChildrenAttributeForElement:(AquaA11yWrapper *)wrapper
39 Reference< XAccessibleSelection > xAccessibleSelection = [ wrapper accessibleSelection ];
65 +(BOOL)isAttributeSettable:(NSString *)attribute forElement:(AquaA11yWrapper *)wrapper
67 (void)wrapper;
78 +(void)setSelectedChildrenAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value
80 Reference< XAccessibleSelection > xAccessibleSelection = [ wrapper accessibleSelection ];
/AOO41X/main/vcl/unx/gtk/a11y/
H A Datkwrapper.cxx649 atk_object_wrapper_init (AtkObjectWrapper *wrapper, in atk_object_wrapper_init() argument
652 wrapper->mpAction = NULL; in atk_object_wrapper_init()
653 wrapper->mpComponent = NULL; in atk_object_wrapper_init()
654 wrapper->mpEditableText = NULL; in atk_object_wrapper_init()
655 wrapper->mpHypertext = NULL; in atk_object_wrapper_init()
656 wrapper->mpImage = NULL; in atk_object_wrapper_init()
657 wrapper->mpSelection = NULL; in atk_object_wrapper_init()
658 wrapper->mpTable = NULL; in atk_object_wrapper_init()
659 wrapper->mpText = NULL; in atk_object_wrapper_init()
660 wrapper->mpValue = NULL; in atk_object_wrapper_init()
[all …]
/AOO41X/main/toolkit/doc/layout/
H A DChangeLog72 * source/vclcompat/wbutton.cxx, source/vclcompat/wrapper.hxx:
77 * inc/layout/layout.hxx, source/vclcompat/wrapper.cxx: Implement
109 source/vclcompat/wrapper.cxx, source/vclcompat/wrapper.hxx:
121 source/vclcompat/makefile.mk, source/vclcompat/wrapper.cxx,
162 source/vclcompat/wfield.cxx, source/vclcompat/wrapper.cxx: Clean-up
183 source/layout/container.cxx, source/vclcompat/wrapper.cxx:
213 source/vclcompat/wrapper.cxx, source/vclcompat/wrapper.hxx,
250 source/vclcompat/wcontainer.cxx, source/vclcompat/wrapper.hxx:
266 source/vclcompat/wfield.cxx, source/vclcompat/wrapper.cxx,
267 source/vclcompat/wrapper.hxx, workben/layout/editor.cxx: Fix some
[all …]
/AOO41X/main/chart2/source/controller/main/
H A DChartController_Properties.cxx118 pItemConverter = new wrapper::GraphicPropertyItemConverter( in createItemConverter()
121wrapper::GraphicPropertyItemConverter::LINE_AND_FILL_PROPERTIES ); in createItemConverter()
129 pItemConverter = new wrapper::TitleItemConverter( xObjectProperties, in createItemConverter()
141 pItemConverter = new wrapper::LegendItemConverter( xObjectProperties, in createItemConverter()
153 pItemConverter = new wrapper::GraphicPropertyItemConverter( in createItemConverter()
156wrapper::GraphicPropertyItemConverter::LINE_AND_FILL_PROPERTIES ); in createItemConverter()
178 pItemConverter = new wrapper::AxisItemConverter( in createItemConverter()
197 wrapper::GraphicPropertyItemConverter::eGraphicObjectType eMapTo = in createItemConverter()
198 wrapper::GraphicPropertyItemConverter::FILLED_DATA_POINT; in createItemConverter()
206 eMapTo = wrapper::GraphicPropertyItemConverter::LINE_DATA_POINT; in createItemConverter()
[all …]
/AOO41X/main/xmlsecurity/source/xmlsec/
H A Dxmldocumentwrapper_xmlsecimpl.hxx45 com::sun::star::xml::wrapper::XXMLDocumentWrapper,
98 com::sun::star::xml::wrapper::XXMLElementWrapper > > m_aReservedNodes;
132 com::sun::star::xml::wrapper::XXMLElementWrapper >& xXMLElement) const;
143 com::sun::star::xml::wrapper::XXMLElementWrapper > SAL_CALL getCurrentElement( )
147 com::sun::star::xml::wrapper::XXMLElementWrapper >& element )
154 com::sun::star::xml::wrapper::XXMLElementWrapper >& node )
161 com::sun::star::xml::wrapper::XXMLElementWrapper >& node )
166 com::sun::star::xml::wrapper::XXMLElementWrapper >& node,
168 com::sun::star::xml::wrapper::XXMLElementWrapper > >& reservedDescendants,
170 com::sun::star::xml::wrapper::XXMLElementWrapper >& stopAtNode )
[all …]
/AOO41X/main/chart2/source/controller/itemsetwrapper/
H A DMultipleChartConverters.cxx48 namespace wrapper namespace
67 m_aConverters.push_back( new ::chart::wrapper::AxisItemConverter( in AllAxisItemConverter()
72 m_aConverters.push_back( new ::chart::wrapper::AxisItemConverter( in AllAxisItemConverter()
102 m_aConverters.push_back( new ::chart::wrapper::GraphicPropertyItemConverter( in AllGridItemConverter()
104 … ::chart::wrapper::GraphicPropertyItemConverter::LINE_PROPERTIES ) ); in AllGridItemConverter()
141 m_aConverters.push_back( new ::chart::wrapper::DataPointItemConverter( in AllDataLabelItemConverter()
185 m_aConverters.push_back( new ::chart::wrapper::TitleItemConverter( in AllTitleItemConverter()
214 m_aConverters.push_back( new ::chart::wrapper::StatisticsItemConverter( in AllSeriesStatisticsConverter()
H A DGraphicPropertyItemConverter.cxx136 bool lcl_supportsFillProperties( ::chart::wrapper::GraphicPropertyItemConverter::eGraphicObjectType… in lcl_supportsFillProperties()
138 return ( eType == ::chart::wrapper::GraphicPropertyItemConverter::FILLED_DATA_POINT || in lcl_supportsFillProperties()
139 eType == ::chart::wrapper::GraphicPropertyItemConverter::FILL_PROPERTIES || in lcl_supportsFillProperties()
140 eType == ::chart::wrapper::GraphicPropertyItemConverter::LINE_AND_FILL_PROPERTIES ); in lcl_supportsFillProperties()
143 bool lcl_supportsLineProperties( ::chart::wrapper::GraphicPropertyItemConverter::eGraphicObjectType… in lcl_supportsLineProperties()
145 return ( eType != ::chart::wrapper::GraphicPropertyItemConverter::FILL_PROPERTIES ); in lcl_supportsLineProperties()
176 namespace wrapper namespace
/AOO41X/main/xmlsecurity/source/framework/
H A Dxmlencryptiontemplateimpl.hxx52 …::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > m_xTemplate…
53 … ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > m_xTarget ;
63 …const ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper >& aXml…
67 …virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > SAL…
71 …const ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper >& aXml…
74 …virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > SAL…
H A Dxmlsignaturetemplateimpl.hxx55 …::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > m_xTemplate…
57 …std::vector< ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper …
67 …const ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper >& aXml…
70 …virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > SAL…
74 …const ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper >& aXml…
77 …:uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapp…
H A Dbuffernode.hxx85 com::sun::star::xml::wrapper::XXMLElementWrapper > m_xXMLElement;
96 com::sun::star::xml::wrapper::XXMLElementWrapper >& xXMLElement);
123 com::sun::star::xml::wrapper::XXMLElementWrapper > getXMLElement() const;
125 com::sun::star::xml::wrapper::XXMLElementWrapper >& xXMLElement);
H A Dxmlsignaturetemplateimpl.cxx36 using ::com::sun::star::xml::wrapper::XXMLElementWrapper ;
63 …etTarget( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapp… in setTarget()
69 ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::… in getTargets()
74 ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > in getTargets()
/AOO41X/main/winaccessibility/source/UAccCOM/
H A DAccHypertext.cpp337 IUNOXWrapper* wrapper = NULL; in get_hyperlink() local
338 plink->QueryInterface(IID_IUNOXWrapper, (void**)&wrapper); in get_hyperlink()
339 if(wrapper) in get_hyperlink()
341 wrapper->put_XSubInterface((long)pRLink.get()/*pXI*/); in get_hyperlink()
342 wrapper->Release(); in get_hyperlink()
/AOO41X/main/xmerge/source/palmtests/qa-wrapper/env/
H A Dmaster.env27 # the qa-wrapper/lists dir
39 RESULTSBASE=/export/home/test/qadir/qa-wrapper/results
44 APORTIS_JAR=/export/home/test/qadir/qa-wrapper/classes/aportisdoc.jar
45 WORDSMITH_JAR=/export/home/test/qadir/qa-wrapper/classes/wordsmith.jar
46 MINICALC_JAR=/export/home/test/qadir/qa-wrapper/classes/minicalc.jar
/AOO41X/main/offapi/com/sun/star/xml/crypto/sax/
H A DXSAXEventKeeper.idl35 #include <com/sun/star/xml/wrapper/XXMLDocumentWrapper.idl>
36 #include <com/sun/star/xml/wrapper/XXMLElementWrapper.idl>
96 com::sun::star::xml::wrapper::XXMLElementWrapper getElement([in] long id);
109 [in] com::sun::star::xml::wrapper::XXMLElementWrapper aElement);
136 com::sun::star::xml::wrapper::XXMLElementWrapper getCurrentBlockingNode();
/AOO41X/main/offapi/com/sun/star/xml/crypto/
H A DXXMLSecurityTemplate.idl34 #include <com/sun/star/xml/wrapper/XXMLElementWrapper.idl>
52 [in] com::sun::star::xml::wrapper::XXMLElementWrapper aXmlElement
58 com::sun::star::xml::wrapper::XXMLElementWrapper getTemplate(
65 [in] com::sun::star::xml::wrapper::XXMLElementWrapper aXmlElement
/AOO41X/main/xmerge/source/palmtests/
H A DREADME18 …3. qa-wrapper: This directory contains some wrapper scripts and environment files, that allow a us…
22 …g or creating an environment file. This files are usually kept in the qa-wrapper/env directory. Th…
26 …test scripts can be run by executing the "run-convtest" script in the qa-wrapper/bin directory. Th…

12345678