bump product version to 5.0.4.1
[LibreOffice.git] / cui / source / inc / optpath.hxx
blobd793485d6fdd98797006677dbd3367aba42e46c3
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_CUI_SOURCE_INC_OPTPATH_HXX
20 #define INCLUDED_CUI_SOURCE_INC_OPTPATH_HXX
22 #include <sfx2/tabdlg.hxx>
23 #include <svtools/simptabl.hxx>
24 #include <vcl/fixed.hxx>
25 #include <vcl/group.hxx>
27 #include <com/sun/star/ui/dialogs/XFolderPicker2.hpp>
28 #include <svtools/dialogclosedlistener.hxx>
30 // forward ---------------------------------------------------------------
32 namespace svx
34 class OptHeaderTabListBox;
36 struct OptPath_Impl;
37 class SvxPathTabPage;
39 // class SvxPathTabPage --------------------------------------------------
41 class SvxPathTabPage : public SfxTabPage
43 private:
44 VclPtr<SvSimpleTableContainer> m_pPathCtrl;
45 VclPtr<PushButton> m_pStandardBtn;
46 VclPtr<PushButton> m_pPathBtn;
48 VclPtr<svx::OptHeaderTabListBox> pPathBox;
49 OptPath_Impl* pImpl;
51 ::com::sun::star::uno::Reference< ::svt::DialogClosedListener > xDialogListener;
52 ::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XFolderPicker2 > xFolderPicker;
54 void ChangeCurrentEntry( const OUString& _rFolder );
56 DECL_LINK(PathHdl_Impl, void *);
57 DECL_LINK(StandardHdl_Impl, void *);
59 DECL_LINK(PathSelect_Impl, void *);
60 DECL_LINK( HeaderSelect_Impl, HeaderBar * );
61 DECL_LINK( HeaderEndDrag_Impl, HeaderBar * );
63 DECL_LINK( DialogClosedHdl, ::com::sun::star::ui::dialogs::DialogClosedEvent* );
65 void GetPathList( sal_uInt16 _nPathHandle, OUString& _rInternalPath,
66 OUString& _rUserPath, OUString& _rWritablePath, bool& _rReadOnly );
67 void SetPathList( sal_uInt16 _nPathHandle,
68 const OUString& _rUserPath, const OUString& _rWritablePath );
70 public:
71 SvxPathTabPage( vcl::Window* pParent, const SfxItemSet& rSet );
72 virtual ~SvxPathTabPage();
73 virtual void dispose() SAL_OVERRIDE;
75 static VclPtr<SfxTabPage> Create( vcl::Window* pParent, const SfxItemSet* rSet );
76 static const sal_uInt16* GetRanges();
78 virtual bool FillItemSet( SfxItemSet* rSet ) SAL_OVERRIDE;
79 virtual void Reset( const SfxItemSet* rSet ) SAL_OVERRIDE;
80 virtual void FillUserData() SAL_OVERRIDE;
83 #endif
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */