bump product version to 4.1.6.2
[LibreOffice.git] / fpicker / source / office / OfficeFilePicker.hxx
blob4feadbe1031fed78039cc4edddf3184d4cf22e20
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 .
19 #ifndef INCLUDED_SVT_FILEPICKER_HXX
20 #define INCLUDED_SVT_FILEPICKER_HXX
22 #include <cppuhelper/implbase5.hxx>
23 #include <com/sun/star/ui/dialogs/XFilePickerControlAccess.hpp>
24 #include <com/sun/star/ui/dialogs/XFilePreview.hpp>
25 #include <com/sun/star/ui/dialogs/XFilePicker3.hpp>
26 #include <com/sun/star/ui/dialogs/XFilePickerListener.hpp>
27 #include <com/sun/star/ui/dialogs/XAsynchronousExecutableDialog.hpp>
28 #include <com/sun/star/lang/XServiceInfo.hpp>
29 #include <com/sun/star/lang/XEventListener.hpp>
30 #include <com/sun/star/uno/XComponentContext.hpp>
33 #include <tools/wintypes.hxx>
34 #include "commonpicker.hxx"
35 #include "pickercallbacks.hxx"
37 #include <list>
39 class Dialog;
41 struct FilterEntry;
42 struct ElementEntry_Impl;
44 typedef ::std::list< FilterEntry > FilterList; // can be maintained more effectively
45 typedef ::std::list < ElementEntry_Impl > ElementList;
47 typedef ::com::sun::star::beans::StringPair UnoFilterEntry;
48 typedef ::com::sun::star::uno::Sequence< UnoFilterEntry > UnoFilterList; // can be transported more effectively
49 typedef ::com::sun::star::uno::Sequence< OUString > OUStringList; // can be transported more effectively
51 // class SvtFilePicker ---------------------------------------------------
53 typedef ::cppu::ImplHelper5 < ::com::sun::star::ui::dialogs::XFilePicker3
54 , ::com::sun::star::ui::dialogs::XFilePickerControlAccess
55 , ::com::sun::star::ui::dialogs::XFilePreview
56 , ::com::sun::star::lang::XServiceInfo
57 , ::com::sun::star::ui::dialogs::XAsynchronousExecutableDialog
58 > SvtFilePicker_Base;
60 class SvtFilePicker :public SvtFilePicker_Base
61 ,public ::svt::OCommonPicker
62 ,public ::svt::IFilePickerListener
64 private:
65 FilterList* m_pFilterList;
66 ElementList* m_pElemList;
68 sal_Bool m_bMultiSelection;
69 sal_Int16 m_nServiceType;
70 OUString m_aDefaultName;
71 OUString m_aCurrentFilter;
73 // #97148# --------------
74 OUString m_aOldDisplayDirectory;
75 OUString m_aOldHideDirectory;
77 OUString m_aStandardDir;
78 OUStringList m_aBlackList;
80 ::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XFilePickerListener >
81 m_xListener;
82 ::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XDialogClosedListener >
83 m_xDlgClosedListener;
85 public:
86 SvtFilePicker( const ::com::sun::star::uno::Reference < ::com::sun::star::lang::XMultiServiceFactory >& xFactory );
87 virtual ~SvtFilePicker();
89 //------------------------------------------------------------------------------------
90 // disambiguate XInterface
91 //------------------------------------------------------------------------------------
92 DECLARE_XINTERFACE( )
94 //------------------------------------------------------------------------------------
95 // disambiguate XTypeProvider
96 //------------------------------------------------------------------------------------
97 DECLARE_XTYPEPROVIDER( )
99 //------------------------------------------------------------------------------------
100 // XExecutableDialog functions
101 //------------------------------------------------------------------------------------
102 virtual void SAL_CALL setTitle( const OUString& _rTitle ) throw (::com::sun::star::uno::RuntimeException);
103 virtual sal_Int16 SAL_CALL execute( ) throw (::com::sun::star::uno::RuntimeException);
105 //------------------------------------------------------------------------------------
106 // XAsynchronousExecutableDialog functions
107 //------------------------------------------------------------------------------------
108 virtual void SAL_CALL setDialogTitle( const OUString& _rTitle ) throw (::com::sun::star::uno::RuntimeException);
109 virtual void SAL_CALL startExecuteModal( const ::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XDialogClosedListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
111 //------------------------------------------------------------------------------------
112 // XFilePicker functions
113 //------------------------------------------------------------------------------------
115 virtual void SAL_CALL setMultiSelectionMode( sal_Bool bMode ) throw( ::com::sun::star::uno::RuntimeException );
116 virtual void SAL_CALL setDefaultName( const OUString& aName ) throw( ::com::sun::star::uno::RuntimeException );
117 virtual void SAL_CALL setDisplayDirectory( const OUString& aDirectory ) throw( ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException );
118 virtual OUString SAL_CALL getDisplayDirectory() throw( ::com::sun::star::uno::RuntimeException );
119 virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getFiles() throw( ::com::sun::star::uno::RuntimeException );
121 //------------------------------------------------------------------------------------
122 // XFilePickerControlAccess functions
123 //------------------------------------------------------------------------------------
125 virtual void SAL_CALL setValue( sal_Int16 ElementID, sal_Int16 ControlAction, const com::sun::star::uno::Any& value ) throw( ::com::sun::star::uno::RuntimeException );
126 virtual com::sun::star::uno::Any SAL_CALL getValue( sal_Int16 ElementID, sal_Int16 ControlAction ) throw( ::com::sun::star::uno::RuntimeException );
127 virtual void SAL_CALL setLabel( sal_Int16 ElementID, const OUString& aValue ) throw ( ::com::sun::star::uno::RuntimeException );
128 virtual OUString SAL_CALL getLabel( sal_Int16 ElementID ) throw ( ::com::sun::star::uno::RuntimeException );
129 virtual void SAL_CALL enableControl( sal_Int16 ElementID, sal_Bool bEnable ) throw( ::com::sun::star::uno::RuntimeException );
131 //------------------------------------------------------------------------------------
132 // XFilePickerNotifier functions
133 //------------------------------------------------------------------------------------
135 virtual void SAL_CALL addFilePickerListener( const ::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XFilePickerListener >& xListener ) throw ( ::com::sun::star::uno::RuntimeException );
136 virtual void SAL_CALL removeFilePickerListener( const ::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XFilePickerListener >& xListener ) throw ( ::com::sun::star::uno::RuntimeException );
138 //------------------------------------------------------------------------------------
139 // XFilePreview functions
140 //------------------------------------------------------------------------------------
142 virtual com::sun::star::uno::Sequence< sal_Int16 > SAL_CALL getSupportedImageFormats() throw ( ::com::sun::star::uno::RuntimeException );
143 virtual sal_Int32 SAL_CALL getTargetColorDepth() throw ( ::com::sun::star::uno::RuntimeException );
144 virtual sal_Int32 SAL_CALL getAvailableWidth() throw ( ::com::sun::star::uno::RuntimeException );
145 virtual sal_Int32 SAL_CALL getAvailableHeight() throw ( ::com::sun::star::uno::RuntimeException );
146 virtual void SAL_CALL setImage( sal_Int16 aImageFormat, const com::sun::star::uno::Any& aImage ) throw ( ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException );
147 virtual sal_Bool SAL_CALL setShowState( sal_Bool bShowState ) throw ( ::com::sun::star::uno::RuntimeException );
148 virtual sal_Bool SAL_CALL getShowState() throw ( ::com::sun::star::uno::RuntimeException );
150 //------------------------------------------------------------------------------------
151 // XFilterManager functions
152 //------------------------------------------------------------------------------------
154 virtual void SAL_CALL appendFilter( const OUString& aTitle, const OUString& aFilter ) throw( ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException );
155 virtual void SAL_CALL setCurrentFilter( const OUString& aTitle ) throw( ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException );
156 virtual OUString SAL_CALL getCurrentFilter() throw( ::com::sun::star::uno::RuntimeException );
158 //------------------------------------------------------------------------------------
159 // XFilterGroupManager functions
160 //------------------------------------------------------------------------------------
161 virtual void SAL_CALL appendFilterGroup( const OUString& sGroupTitle, const com::sun::star::uno::Sequence< com::sun::star::beans::StringPair >& aFilters ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
164 //------------------------------------------------------------------------------------
165 // these methods are here because they're ambiguous
166 //------------------------------------------------------------------------------------
167 virtual void SAL_CALL cancel() throw( ::com::sun::star::uno::RuntimeException )
168 { ::svt::OCommonPicker::cancel(); }
169 virtual void SAL_CALL dispose() throw( ::com::sun::star::uno::RuntimeException )
170 { ::svt::OCommonPicker::dispose(); }
171 virtual void SAL_CALL addEventListener(const com::sun::star::uno::Reference<com::sun::star::lang::XEventListener>& l) throw( ::com::sun::star::uno::RuntimeException )
172 { ::svt::OCommonPicker::addEventListener(l); }
173 virtual void SAL_CALL removeEventListener(const com::sun::star::uno::Reference<com::sun::star::lang::XEventListener>& l) throw( ::com::sun::star::uno::RuntimeException )
174 { ::svt::OCommonPicker::removeEventListener(l); }
176 //------------------------------------------------------------------------------------
177 // XInitialization functions
178 //------------------------------------------------------------------------------------
180 virtual void SAL_CALL initialize( const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& aArguments ) throw ( com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException );
182 //------------------------------------------------------------------------------------
183 // XServiceInfo functions
184 //------------------------------------------------------------------------------------
186 /* XServiceInfo */
187 virtual OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException );
188 virtual sal_Bool SAL_CALL supportsService( const OUString& sServiceName ) throw( ::com::sun::star::uno::RuntimeException );
189 virtual com::sun::star::uno::Sequence< OUString > SAL_CALL
190 getSupportedServiceNames() throw( ::com::sun::star::uno::RuntimeException );
192 /* Helper for XServiceInfo */
193 static com::sun::star::uno::Sequence< OUString >
194 impl_getStaticSupportedServiceNames();
195 static OUString impl_getStaticImplementationName();
197 /* Helper for registry */
198 static ::com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL impl_createInstance (
199 const ::com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >& rxContext )
200 throw( com::sun::star::uno::Exception );
202 protected:
203 //------------------------------------------------------------------------------------
204 // OCommonPicker overridables
205 //------------------------------------------------------------------------------------
206 virtual SvtFileDialog* implCreateDialog( Window* _pParent );
207 virtual sal_Int16 implExecutePicker( );
208 virtual sal_Bool implHandleInitializationArgument(
209 const OUString& _rName,
210 const ::com::sun::star::uno::Any& _rValue
212 SAL_THROW( ( ::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException ) );
214 private:
215 WinBits getWinBits( WinBits& rExtraBits );
216 virtual void notify( sal_Int16 _nEventId, sal_Int16 _nControlId );
218 sal_Bool FilterNameExists( const OUString& rTitle );
219 sal_Bool FilterNameExists( const UnoFilterList& _rGroupedFilters );
221 void ensureFilterList( const OUString& _rInitialCurrentFilter );
223 void prepareExecute( );
225 DECL_LINK( DialogClosedHdl, Dialog* );
228 #endif // INCLUDED_SVT_FILEPICKER_HXX
230 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */