Home
last modified time | relevance | path

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

12345678

/trunk/main/vcl/aqua/source/a11y/
H A Daqua11ytextwrapper.mm46 +(id)valueAttributeForElement:(AquaA11yWrapper *)wrapper {
47 return CreateNSString ( [ wrapper accessibleText ] -> getText() );
53 (void)wrapper;
57 +(id)numberOfCharactersAttributeForElement:(AquaA11yWrapper *)wrapper {
61 +(id)selectedTextAttributeForElement:(AquaA11yWrapper *)wrapper {
66 if ( [ wrapper accessibleEditableText ] != nil ) {
81 sal_Int32 end = [ wrapper accessibleText ] -> getSelectionEnd();
110 (void)wrapper;
116 (void)wrapper;
122 (void)wrapper;
[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;
46 +(id)rTFForRangeAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)range;
48 +(id)rangeForLineAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)line;
56 +(void)setSelectedTextAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value;
[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;
70 && [ wrapper accessibleValue ] != nil ) {
[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 {
86 +(void)setFocusedAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value {
[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.mm208 …} 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…
238 …Sequence < PropertyValue > attributes = [ wrapper accessibleTextAttributes ] -> getRunAttributes (…
[all …]
H A Daqua11ywrapper.mm322 [ wrapper release ];
904 AquaA11yWrapper * wrapper = nil;
920 wrapper = parentAsWrapper;
922 wrapper = self ;
927 return wrapper;
1009 static id wrapper = nil;
1010 if ( nil != wrapper ) {
1011 [ wrapper release ];
1012 wrapper = nil;
1051 if ( wrapper != nil ) {
[all …]
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 ];
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;
/trunk/main/vcl/unx/gtk/a11y/
H A Datkwrapper.cxx652 wrapper->mpAction = NULL; in atk_object_wrapper_init()
653 wrapper->mpComponent = 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()
941 RELEASE( wrapper->mpImage ) in atk_object_wrapper_dispose()
944 RELEASE( wrapper->mpTable ) in atk_object_wrapper_dispose()
[all …]
/trunk/main/toolkit/doc/layout/
H A DChangeLog109 source/vclcompat/wrapper.cxx, source/vclcompat/wrapper.hxx:
445 * source/wrapper/wrapper.cxx: Cleanups.
599 source/wrapper/wfield.cxx, source/wrapper/wimpl.hxx,
606 source/wrapper/wfield.cxx, source/wrapper/wimpl.hxx,
627 source/wrapper/wfield.cxx, source/wrapper/wimpl.hxx,
787 source/wrapper/wimpl.hxx, source/wrapper/wrapper.cxx: Cleanups.
794 source/wrapper/wrapper.cxx, workben/makefile.mk: Remove
946 source/wrapper/wfield.cxx, source/wrapper/wrapper.cxx,
959 source/wrapper/wimpl.hxx, source/wrapper/wrapper.cxx: Add debug
1082 source/wrapper/wbutton.cxx, source/wrapper/wrapper.cxx: Implement Ok
[all …]
/trunk/main/cppcanvas/
H A DLibrary_cppcanvas.mk72 cppcanvas/source/wrapper/basegfxfactory \
73 cppcanvas/source/wrapper/implbitmap \
74 cppcanvas/source/wrapper/implbitmapcanvas \
75 cppcanvas/source/wrapper/implcanvas \
76 cppcanvas/source/wrapper/implcolor \
77 cppcanvas/source/wrapper/implcustomsprite \
78 cppcanvas/source/wrapper/implfont \
79 cppcanvas/source/wrapper/implpolypolygon \
80 cppcanvas/source/wrapper/implsprite \
82 cppcanvas/source/wrapper/impltext \
[all …]
/trunk/main/chart2/source/controller/main/
H A DChartController_Properties.cxx118 pItemConverter = new wrapper::GraphicPropertyItemConverter( in createItemConverter()
129 pItemConverter = new wrapper::TitleItemConverter( xObjectProperties, in createItemConverter()
153 pItemConverter = new wrapper::GraphicPropertyItemConverter( in createItemConverter()
178 pItemConverter = new wrapper::AxisItemConverter( in createItemConverter()
197 wrapper::GraphicPropertyItemConverter::eGraphicObjectType eMapTo = in createItemConverter()
198 wrapper::GraphicPropertyItemConverter::FILLED_DATA_POINT; in createItemConverter()
254 pItemConverter = new wrapper::GraphicPropertyItemConverter( in createItemConverter()
261 pItemConverter = new wrapper::ErrorBarItemConverter( in createItemConverter()
267 pItemConverter = new wrapper::RegressionCurveItemConverter( in createItemConverter()
279 pItemConverter = new wrapper::RegressionEquationItemConverter( in createItemConverter()
[all …]
/trunk/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;
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,
170 com::sun::star::xml::wrapper::XXMLElementWrapper >& stopAtNode )
174 com::sun::star::xml::wrapper::XXMLElementWrapper >& node )
181 com::sun::star::xml::wrapper::XXMLElementWrapper >& startNode,
[all …]
/trunk/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
/trunk/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);
/trunk/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()
/trunk/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
/trunk/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();
/trunk/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…
/trunk/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

Completed in 119 milliseconds

12345678