update credits
[LibreOffice.git] / sw / source / ui / sidebar / PageSizeControl.hxx
blobb1afe6ad31f3d679f104196bf71c81175a29577e
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 #ifndef _SW_SIDEBAR_PAGE_SIZE_CONTROL_HXX_
19 #define _SW_SIDEBAR_PAGE_SIZE_CONTROL_HXX_
21 #include <svx/sidebar/PopupControl.hxx>
23 #include <i18nutil/paper.hxx>
25 #include <vcl/button.hxx>
26 #include <vcl/field.hxx>
27 #include <svtools/unitconv.hxx>
29 #include <vector>
31 namespace svx { namespace sidebar {
32 class ValueSetWithTextControl;
33 } }
35 namespace sw { namespace sidebar {
37 class PagePropertyPanel;
40 class PageSizeControl
41 : public ::svx::sidebar::PopupControl
43 public:
44 PageSizeControl(
45 Window* pParent,
46 PagePropertyPanel& rPanel,
47 const Paper ePaper,
48 const sal_Bool bLandscape,
49 const FieldUnit eFUnit );
50 ~PageSizeControl(void);
52 private:
53 ::svx::sidebar::ValueSetWithTextControl* mpSizeValueSet;
54 PushButton maMoreButton;
55 // hidden metric field
56 MetricField maWidthHeightField;
58 Paper mePaper;
59 ::std::vector< Paper > maPaperList;
61 PagePropertyPanel& mrPagePropPanel;
63 DECL_LINK(ImplSizeHdl, void*);
64 DECL_LINK(MoreButtonClickHdl_Impl, void*);
67 } } // end of namespace sw::sidebar
69 #endif