Bump for 4.0-11
[LibreOffice.git] / fpicker / source / aqua / SalAquaFolderPicker.hxx
blob3a329190c31bd8dee5d7ed53f61ff16ff8e7875b
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 _SALAQUAFOLDERPICKER_HXX_
21 #define _SALAQUAFOLDERPICKER_HXX_
23 #include <cppuhelper/implbase3.hxx>
24 #include <com/sun/star/util/XCancellable.hpp>
25 #include <com/sun/star/lang/XEventListener.hpp>
26 #include <com/sun/star/lang/XServiceInfo.hpp>
28 #include <com/sun/star/ui/dialogs/XFolderPicker2.hpp>
30 #include "SalAquaPicker.hxx"
32 #include <memory>
34 #include <rtl/ustring.hxx>
36 #include <list>
38 //----------------------------------------------------------
39 // class declaration
40 //----------------------------------------------------------
42 class SalAquaFolderPicker :
43 public SalAquaPicker,
44 public cppu::WeakImplHelper3<
45 ::com::sun::star::ui::dialogs::XFolderPicker2,
46 ::com::sun::star::lang::XServiceInfo,
47 ::com::sun::star::lang::XEventListener >
49 public:
51 // constructor
52 SalAquaFolderPicker( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xServiceMgr );
54 //------------------------------------------------------------------------------------
55 // XExecutableDialog functions
56 //------------------------------------------------------------------------------------
58 virtual void SAL_CALL setTitle( const ::rtl::OUString& aTitle )
59 throw( ::com::sun::star::uno::RuntimeException );
61 virtual sal_Int16 SAL_CALL execute( )
62 throw( ::com::sun::star::uno::RuntimeException );
64 //------------------------------------------------------------------------------------
65 // XFolderPicker functions
66 //------------------------------------------------------------------------------------
68 virtual void SAL_CALL setDisplayDirectory( const rtl::OUString& rDirectory )
69 throw( com::sun::star::lang::IllegalArgumentException, com::sun::star::uno::RuntimeException );
71 virtual rtl::OUString SAL_CALL getDisplayDirectory( )
72 throw( com::sun::star::uno::RuntimeException );
74 virtual rtl::OUString SAL_CALL getDirectory( )
75 throw( com::sun::star::uno::RuntimeException );
77 virtual void SAL_CALL setDescription( const rtl::OUString& rDescription )
78 throw( com::sun::star::uno::RuntimeException );
80 //------------------------------------------------
81 // XServiceInfo
82 //------------------------------------------------
84 virtual ::rtl::OUString SAL_CALL getImplementationName( )
85 throw(::com::sun::star::uno::RuntimeException);
87 virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName )
88 throw(::com::sun::star::uno::RuntimeException);
90 virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( )
91 throw(::com::sun::star::uno::RuntimeException);
93 //------------------------------------------------
94 // XCancellable
95 //------------------------------------------------
97 virtual void SAL_CALL cancel( )
98 throw( ::com::sun::star::uno::RuntimeException );
100 //------------------------------------------------
101 // XEventListener
102 //------------------------------------------------
104 virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& aEvent )
105 throw(::com::sun::star::uno::RuntimeException);
107 private:
108 // prevent copy and assignment
109 SalAquaFolderPicker( const SalAquaFolderPicker& );
110 SalAquaFolderPicker& operator=( const SalAquaFolderPicker& );
112 // to instantiate own services
113 ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xServiceMgr;
117 #endif // _SALAQUAFOLDERPICKER_HXX_
119 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */