1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <sfx2/basedlgs.hxx>
23 #include <tools/fract.hxx>
32 * dialog to adjust screen
34 class CopyDlg
: public SfxDialogController
37 CopyDlg(weld::Window
* pWindow
, const SfxItemSet
& rInAttrs
, ::sd::View
* pView
);
38 virtual ~CopyDlg() override
;
40 void GetAttr(SfxItemSet
& rOutAttrs
);
44 const SfxItemSet
& mrOutAttrs
;
48 std::unique_ptr
<weld::SpinButton
> m_xNumFldCopies
;
49 std::unique_ptr
<weld::Button
> m_xBtnSetViewData
;
50 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldMoveX
;
51 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldMoveY
;
52 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldAngle
;
53 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldWidth
;
54 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldHeight
;
55 std::unique_ptr
<weld::Label
> m_xFtEndColor
;
56 std::unique_ptr
<weld::Button
> m_xBtnSetDefault
;
57 std::unique_ptr
<ColorListBox
> m_xLbStartColor
;
58 std::unique_ptr
<ColorListBox
> m_xLbEndColor
;
60 DECL_LINK(SelectColorHdl
, ColorListBox
&, void);
61 DECL_LINK(SetViewData
, weld::Button
&, void);
62 DECL_LINK(SetDefault
, weld::Button
&, void);
65 } // end of namespace sd
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */