1*10ce8018SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*10ce8018SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*10ce8018SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*10ce8018SAndrew Rist  * distributed with this work for additional information
6*10ce8018SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*10ce8018SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*10ce8018SAndrew Rist  * "License"); you may not use this file except in compliance
9*10ce8018SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*10ce8018SAndrew Rist  *
11*10ce8018SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*10ce8018SAndrew Rist  *
13*10ce8018SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*10ce8018SAndrew Rist  * software distributed under the License is distributed on an
15*10ce8018SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*10ce8018SAndrew Rist  * KIND, either express or implied.  See the License for the
17*10ce8018SAndrew Rist  * specific language governing permissions and limitations
18*10ce8018SAndrew Rist  * under the License.
19*10ce8018SAndrew Rist  *
20*10ce8018SAndrew Rist  *************************************************************/
21*10ce8018SAndrew Rist 
22*10ce8018SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir 
25cdf0e10cSrcweir #ifndef _CONTROLACCESS_HXX_
26cdf0e10cSrcweir #define _CONTROLACCESS_HXX_
27cdf0e10cSrcweir 
28cdf0e10cSrcweir //------------------------------------------------------------------------
29cdf0e10cSrcweir // includes
30cdf0e10cSrcweir //------------------------------------------------------------------------
31cdf0e10cSrcweir 
32cdf0e10cSrcweir #include <sal/types.h>
33cdf0e10cSrcweir #include <rtl/ustring.hxx>
34cdf0e10cSrcweir 
35cdf0e10cSrcweir #if defined _MSC_VER
36cdf0e10cSrcweir #pragma warning(push, 1)
37cdf0e10cSrcweir #endif
38cdf0e10cSrcweir #include <windows.h>
39cdf0e10cSrcweir #if defined _MSC_VER
40cdf0e10cSrcweir #pragma warning(pop)
41cdf0e10cSrcweir #endif
42cdf0e10cSrcweir #include <com/sun/star/uno/Any.hxx>
43cdf0e10cSrcweir 
44cdf0e10cSrcweir //------------------------------------------------------------------------
45cdf0e10cSrcweir // deklarations
46cdf0e10cSrcweir //------------------------------------------------------------------------
47cdf0e10cSrcweir 
48cdf0e10cSrcweir typedef void ( SAL_CALL *CTRL_SETVALUE_FUNCTION_T)( HWND, const ::com::sun::star::uno::Any&, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >&, sal_Int16 );
49cdf0e10cSrcweir typedef ::com::sun::star::uno::Any ( SAL_CALL *CTRL_GETVALUE_FUNCTION_T )( HWND );
50cdf0e10cSrcweir 
51cdf0e10cSrcweir // the currently supported control classes
52cdf0e10cSrcweir enum CTRL_CLASS
53cdf0e10cSrcweir {
54cdf0e10cSrcweir     UNKNOWN = 0,
55cdf0e10cSrcweir     CHECKBOX,
56cdf0e10cSrcweir     LISTBOX,
57cdf0e10cSrcweir     PUSHBUTTON
58cdf0e10cSrcweir };
59cdf0e10cSrcweir 
60cdf0e10cSrcweir // returns the class of a control
61cdf0e10cSrcweir CTRL_CLASS SAL_CALL GetCtrlClass( HWND hwndCtrl );
62cdf0e10cSrcweir 
63cdf0e10cSrcweir // returns a pointer to a setValue function based on the control class
64cdf0e10cSrcweir // and the control action, if no function was found NULL will be returned
65cdf0e10cSrcweir CTRL_SETVALUE_FUNCTION_T SAL_CALL GetCtrlSetValueFunction( CTRL_CLASS aCtrlClass, sal_Int16 aCtrlAction );
66cdf0e10cSrcweir 
67cdf0e10cSrcweir // returns a pointer to a getValue function based on the control class
68cdf0e10cSrcweir // and the control action, if no function was found NULL will be returned
69cdf0e10cSrcweir CTRL_GETVALUE_FUNCTION_T SAL_CALL GetCtrlGetValueFunction( CTRL_CLASS aCtrlClass, sal_Int16 aCtrlAction );
70cdf0e10cSrcweir 
71cdf0e10cSrcweir // translates a CommonFilePickerElementId as defined in CommonFilePickerElementIds.idl
72cdf0e10cSrcweir // to a control id that is valid for the FileOpen dialog under windows as defined
73cdf0e10cSrcweir // in dlgs.h in the Windows Platform SDK
74cdf0e10cSrcweir int SAL_CALL CommonFilePickerCtrlIdToWinFileOpenCtrlId( sal_Int16 aControlId );
75cdf0e10cSrcweir 
76cdf0e10cSrcweir #endif
77