Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #ifndef INCLUDED_SD_SOURCE_UI_INC_DLGSNAP_HXX
21 : #define INCLUDED_SD_SOURCE_UI_INC_DLGSNAP_HXX
22 :
23 : #include <vcl/button.hxx>
24 : #include <vcl/fixed.hxx>
25 : #include <vcl/field.hxx>
26 : #include <vcl/group.hxx>
27 : #include <vcl/layout.hxx>
28 : #include <tools/fract.hxx>
29 : #include <vcl/dialog.hxx>
30 : #include "sdenumdef.hxx"
31 : /************************************************************************/
32 :
33 : class SfxItemSet;
34 : namespace sd {
35 : class View;
36 : }
37 :
38 : /**
39 : * dialog to adjust snap- lines and points
40 : */
41 : class SdSnapLineDlg : public ModalDialog
42 : {
43 : private:
44 : VclPtr<FixedText> m_pFtX;
45 : VclPtr<MetricField> m_pMtrFldX;
46 : VclPtr<FixedText> m_pFtY;
47 : VclPtr<MetricField> m_pMtrFldY;
48 : VclPtr<VclContainer> m_pRadioGroup;
49 : VclPtr<RadioButton> m_pRbPoint;
50 : VclPtr<RadioButton> m_pRbVert;
51 : VclPtr<RadioButton> m_pRbHorz;
52 : VclPtr<PushButton> m_pBtnDelete;
53 : long nXValue;
54 : long nYValue;
55 : FieldUnit eUIUnit;
56 : Fraction aUIScale;
57 :
58 : DECL_LINK( ClickHdl, Button * );
59 :
60 : public:
61 : SdSnapLineDlg(vcl::Window* pWindow, const SfxItemSet& rInAttrs, ::sd::View* pView);
62 : virtual ~SdSnapLineDlg();
63 : virtual void dispose() SAL_OVERRIDE;
64 :
65 : void GetAttr(SfxItemSet& rOutAttrs);
66 :
67 : void HideRadioGroup();
68 0 : void HideDeleteBtn() { m_pBtnDelete->Hide(); }
69 : void SetInputFields(bool bEnableX, bool bEnableY);
70 : };
71 :
72 : #endif // INCLUDED_SD_SOURCE_UI_INC_DLGSNAP_HXX
73 :
74 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|