1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#pragma once
#include <memory>
#include <com/sun/star/beans/StringPair.hpp>
#include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/ucb/IOErrorCode.hpp>
#include <unotools/confignode.hxx>
#include "asyncfilepicker.hxx"
#include "fpsmartcontent.hxx"
#include "fpdialogbase.hxx"
#include <o3tl/typed_flags_set.hxx>
#include <vcl/timer.hxx>
#include <set>
#include <string_view>
class SvtFileView;
class SvtFileDialogFilter_Impl;
class SvtExpFileDlg_Impl;
class SvtURLBox;
enum class AdjustFilterFlags {
NONE = 0x0000,
NonEmpty = 0x0001,
Changed = 0x0002,
UserFilter = 0x0004,
};
namespace o3tl {
template<> struct typed_flags<AdjustFilterFlags> : is_typed_flags<AdjustFilterFlags, 0x0007> {};
}
class SvtFileDialog final : public SvtFileDialog_Base
{
private:
std::unique_ptr<weld::CheckButton> m_xCbReadOnly;
std::unique_ptr<weld::CheckButton> m_xCbLinkBox;
std::unique_ptr<weld::CheckButton> m_xCbPreviewBox;
std::unique_ptr<weld::CheckButton> m_xCbSelection;
std::unique_ptr<weld::Button> m_xPbPlay;
std::unique_ptr<weld::Widget> m_xPreviewFrame;
std::unique_ptr<weld::Image> m_xPrevBmp;
std::unique_ptr<weld::Container> m_xContainer;
std::unique_ptr<SvtFileView> m_xFileView;
::svt::IFilePickerListener* m_pFileNotifier;
std::unique_ptr<SvtExpFileDlg_Impl> m_xImpl;
Size m_aPreviewSize;
PickerFlags m_nPickerFlags;
bool m_bIsInExecute : 1;
::svt::SmartContent m_aContent;
::std::set<weld::Widget*> m_aDisabledControls;
::utl::OConfigurationNode m_aConfiguration;
::rtl::Reference< ::svt::AsyncPickerAction >
m_pCurrentAsyncAction;
bool m_bInExecuteAsync;
bool m_bHasFilename;
DECL_LINK( FilterSelectHdl_Impl, weld::ComboBox&, void );
DECL_LINK( FilterSelectTimerHdl_Impl, Timer*, void );
DECL_LINK( NewFolderHdl_Impl, weld::Button&, void );
DECL_LINK( OpenUrlHdl_Impl, weld::ComboBox&, bool );
DECL_LINK( OpenClickHdl_Impl, weld::Button&, void );
DECL_LINK( CancelHdl_Impl, weld::Button&, void );
DECL_LINK( FileNameGetFocusHdl_Impl, weld::Widget&, void );
DECL_LINK( FileNameModifiedHdl_Impl, weld::ComboBox&, void );
DECL_LINK( URLBoxModifiedHdl_Impl, weld::ComboBox&, bool );
DECL_LINK( ConnectToServerPressed_Hdl, weld::Button&, void );
DECL_LINK( AddPlacePressed_Hdl, weld::Button&, void );
DECL_LINK( RemovePlacePressed_Hdl, weld::Button&, void );
DECL_LINK( PreviewSizeAllocHdl, const Size&, void);
void OpenHdl_Impl(void const * pVoid);
/** find a filter with the given wildcard
@param _rFilter
the wildcard pattern to look for in the filter list
@param _bMultiExt
allow for filters with more than one extension pattern
@param _rFilterChanged
set to <TRUE/> if the filter changed
@return
the filter which has been found
*/
SvtFileDialogFilter_Impl* FindFilter_Impl( const OUString& _rFilter,
bool _bMultiExt,
bool& _rFilterChanged
);
void ExecuteFilter();
void OpenMultiSelection_Impl();
void AddControls_Impl( );
DECL_LINK(SelectHdl_Impl, SvtFileView*, void);
DECL_LINK(DblClickHdl_Impl, SvtFileView*, bool);
DECL_LINK(EntrySelectHdl_Impl, weld::ComboBox&, void);
DECL_LINK(OpenDoneHdl_Impl, SvtFileView*, void);
DECL_LINK(AutoExtensionHdl_Impl, weld::Toggleable&, void);
DECL_LINK(ClickHdl_Impl, weld::Toggleable&, void);
DECL_LINK(PlayButtonHdl_Impl, weld::Button&, void);
DECL_LINK(SizeAllocHdl, const Size&, void);
// removes a filter with wildcards from the path and returns it
static bool IsolateFilterFromPath_Impl( OUString& rPath, OUString& rFilter );
OUString m_aPath;
OUString m_aDefExt;
/** enables or disables the complete UI of the file picker, with only offering a
cancel button
This method preserves the "enabled" state of its controls in the following sense:
If you disable a certain control, then disable the dialog UI, then enable the dialog
UI, the control will still be disabled.
This is under the assumption that you'll use EnableControl. Direct access to the control
(such as pControl->Enable()) will break this.
*/
void EnableUI( bool _bEnable );
/** enables or disables a control
You are strongly encouraged to prefer this method over pControl->Enable( bEnable ). See
<member>EnableUI</member> for details.
*/
void EnableControl(weld::Widget* pControl, bool bEnable);
virtual bool PrepareExecute() override;
public:
SvtFileDialog( weld::Window* pParent, PickerFlags nBits );
virtual ~SvtFileDialog() override;
virtual short run() override;
void FileSelect();
void FilterSelect() override;
void SetDenyList( const css::uno::Sequence< OUString >& rDenyList ) override;
const css::uno::Sequence< OUString >& GetDenyList() const override;
void SetStandardDir( const OUString& rStdDir ) override;
const OUString& GetStandardDir() const override;
std::vector<OUString> GetPathList() const override; // for MultiSelection
void AddFilter( const OUString& rFilter,
const OUString& rType ) override;
void AddFilterGroup(
const OUString& _rFilter,
const css::uno::Sequence< css::beans::StringPair >& rFilters ) override;
void SetCurFilter( const OUString& rFilter ) override;
OUString GetCurFilter() const override;
sal_uInt16 GetFilterCount() const;
const OUString& GetFilterName( sal_uInt16 nPos ) const;
void PrevLevel_Impl();
void OpenURL_Impl( const OUString& rURL );
SvtFileView* GetView() override;
void InitSize();
void UpdateControls( const OUString& rURL ) override;
void EnableAutocompletion( bool _bEnable = true ) override;
void SetFileCallback( ::svt::IFilePickerListener *pNotifier ) override { m_pFileNotifier = pNotifier; }
sal_Int32 getAvailableWidth() override;
sal_Int32 getAvailableHeight() override;
void setImage( const css::uno::Any& rImage ) override;
bool getShowState() override;
bool isAutoExtensionEnabled() const;
OUString getCurrentFileText( ) const override;
void setCurrentFileText( const OUString& _rText, bool _bSelectAll = false ) override;
void onAsyncOperationStarted() override;
void onAsyncOperationFinished() override;
void RemovablePlaceSelected(bool enable = true);
static void displayIOException( const OUString& _rURL, css::ucb::IOErrorCode _eCode );
// inline
inline void SetPath( const OUString& rNewURL ) override;
inline void SetHasFilename( bool bHasFilename ) override;
inline const OUString& GetPath() override;
inline void SetDefaultExt( const OUString& rExt );
inline void EraseDefaultExt( sal_Int32 _nIndex = 0 );
inline const OUString& GetDefaultExt() const;
bool ContentIsFolder( const OUString& rURL ) override { return m_aContent.isFolder( rURL ) && m_aContent.isValid(); }
bool ContentHasParentFolder( const OUString& rURL );
bool ContentCanMakeFolder( const OUString& rURL );
bool ContentGetTitle( const OUString& rURL, OUString& rTitle );
private:
SvtFileDialogFilter_Impl* implAddFilter( const OUString& _rFilter, const OUString& _rType );
/** updates m_xUserFilter with a new filter
<p>No checks for necessity are made.</p>
*/
void createNewUserFilter( const OUString& _rNewFilter );
AdjustFilterFlags adjustFilter( const OUString& _rFilter );
// IFilePickerController, needed by OControlAccess
virtual weld::Widget* getControl( sal_Int16 nControlId, bool bLabelControl = false ) const override;
virtual void enableControl( sal_Int16 _nControlId, bool _bEnable ) override;
virtual OUString getCurFilter( ) const override;
OUString implGetInitialURL( const OUString& _rPath, std::u16string_view _rFallback );
/// executes a certain FileView action asynchronously
void executeAsync(
::svt::AsyncPickerAction::Action _eAction,
const OUString& _rURL,
const OUString& _rFilter
);
/** helper function to check and append the default filter extension if
necessary.
The function checks if the specified filename already contains one of
the valid extensions of the specified filter. If not the filter default
extension is appended to the filename.
@param _rFileName the filename which is checked and extended if necessary.
@param _rFilterDefaultExtension the default extension of the used filter.
@param _rFilterExtensions a list of one or more valid filter extensions
of the used filter.
*/
static void appendDefaultExtension(
OUString& _rFileName,
std::u16string_view _rFilterDefaultExtension,
const OUString& _rFilterExtensions);
void initDefaultPlaces( );
};
inline void SvtFileDialog::SetPath( const OUString& rNewURL )
{
m_aPath = rNewURL;
}
inline void SvtFileDialog::SetHasFilename( bool bHasFilename )
{
m_bHasFilename = bHasFilename;
}
inline const OUString& SvtFileDialog::GetPath()
{
return m_aPath;
}
inline void SvtFileDialog::SetDefaultExt( const OUString& rExt )
{
m_aDefExt = rExt;
}
inline void SvtFileDialog::EraseDefaultExt( sal_Int32 _nIndex )
{
m_aDefExt = m_aDefExt.copy( 0, _nIndex );
}
inline const OUString& SvtFileDialog::GetDefaultExt() const
{
return m_aDefExt;
}
inline SvtFileView* SvtFileDialog::GetView()
{
return m_xFileView.get();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|