bump product version to 4.1.6.2
[LibreOffice.git] / fpicker / source / win32 / folderpicker / FolderPicker.hxx
blobaa36dc6995ca4058c1a1f42f876708676490bd96
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef _FOLDERPICKER_HXX_
21 #define _FOLDERPICKER_HXX_
23 #include <cppuhelper/implbase2.hxx>
24 #include <osl/mutex.hxx>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
27 #include <com/sun/star/ui/dialogs/XFolderPicker2.hpp>
29 #include <memory>
31 #include "WinFOPImpl.hxx"
33 //----------------------------------------------------------
34 // class declaration
35 //----------------------------------------------------------
37 class CFolderPicker :
38 public cppu::WeakImplHelper2<
39 com::sun::star::ui::dialogs::XFolderPicker2,
40 com::sun::star::lang::XServiceInfo >
42 public:
44 // ctor/dtor
45 CFolderPicker( const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& xServiceMgr );
47 //------------------------------------------------------------------------------------
48 // XExecutableDialog
49 //------------------------------------------------------------------------------------
51 virtual void SAL_CALL setTitle( const OUString& aTitle )
52 throw( com::sun::star::uno::RuntimeException );
54 virtual sal_Int16 SAL_CALL execute( )
55 throw( com::sun::star::uno::RuntimeException );
57 //------------------------------------------------------------------------------------
58 // XFolderPicker functions
59 //------------------------------------------------------------------------------------
61 virtual void SAL_CALL setDisplayDirectory( const OUString& aDirectory )
62 throw( com::sun::star::lang::IllegalArgumentException, com::sun::star::uno::RuntimeException );
64 virtual OUString SAL_CALL getDisplayDirectory( )
65 throw( com::sun::star::uno::RuntimeException );
67 virtual OUString SAL_CALL getDirectory( )
68 throw( com::sun::star::uno::RuntimeException );
70 virtual void SAL_CALL setDescription( const OUString& aDescription )
71 throw( com::sun::star::uno::RuntimeException );
73 //------------------------------------------------
74 // XServiceInfo
75 //------------------------------------------------
77 virtual OUString SAL_CALL getImplementationName( )
78 throw(::com::sun::star::uno::RuntimeException);
80 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
81 throw(::com::sun::star::uno::RuntimeException);
83 virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( )
84 throw(::com::sun::star::uno::RuntimeException);
86 //------------------------------------------------
87 // XCancellable
88 //------------------------------------------------
90 virtual void SAL_CALL cancel( )
91 throw(::com::sun::star::uno::RuntimeException);
93 //------------------------------------------------
94 // overwrite base class method, which is called
95 // by base class dispose function
96 //------------------------------------------------
98 virtual void SAL_CALL disposing();
100 private:
101 com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > m_xServiceMgr;
102 std::auto_ptr< CWinFolderPickerImpl > m_pFolderPickerImpl;
103 osl::Mutex m_aMutex;
105 // prevent copy and assignment
106 private:
107 CFolderPicker( const CFolderPicker& );
108 CFolderPicker& operator=( const CFolderPicker& );
111 #endif
113 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */