Bump version to 6.4-15
[LibreOffice.git] / include / svx / rubydialog.hxx
blob1df1f51ae5fface46fb01eea504a680f44742b23
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 .
21 #ifndef INCLUDED_SVX_RUBYDIALOG_HXX
22 #define INCLUDED_SVX_RUBYDIALOG_HXX
24 #include <sfx2/childwin.hxx>
25 #include <sfx2/basedlgs.hxx>
26 #include <vcl/customweld.hxx>
27 #include <svx/svxdllapi.h>
28 #include <rtl/ref.hxx>
30 class SvxRubyDialog;
31 class RubyPreview final : public weld::CustomWidgetController
33 virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override;
34 SvxRubyDialog* m_pParentDlg;
36 public:
37 RubyPreview();
38 virtual ~RubyPreview() override;
39 void setRubyDialog(SvxRubyDialog* pParentDlg)
41 m_pParentDlg = pParentDlg;
43 virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override;
46 class SVX_DLLPUBLIC SvxRubyChildWindow final : public SfxChildWindow
48 public:
49 SvxRubyChildWindow( vcl::Window*, sal_uInt16, SfxBindings*, SfxChildWinInfo const * );
50 SFX_DECL_CHILDWINDOW( SvxRubyChildWindow );
53 class SvxRubyData_Impl;
55 class SvxRubyDialog : public SfxModelessDialogController
57 friend class RubyPreview;
60 long nLastPos;
61 long nCurrentEdit;
62 bool bModified;
63 SfxBindings* pBindings;
64 rtl::Reference<SvxRubyData_Impl> m_pImpl;
65 weld::Entry* aEditArr[8];
67 std::unique_ptr<weld::Label> m_xLeftFT;
68 std::unique_ptr<weld::Label> m_xRightFT;
69 std::unique_ptr<weld::Entry> m_xLeft1ED;
70 std::unique_ptr<weld::Entry> m_xRight1ED;
71 std::unique_ptr<weld::Entry> m_xLeft2ED;
72 std::unique_ptr<weld::Entry> m_xRight2ED;
73 std::unique_ptr<weld::Entry> m_xLeft3ED;
74 std::unique_ptr<weld::Entry> m_xRight3ED;
75 std::unique_ptr<weld::Entry> m_xLeft4ED;
76 std::unique_ptr<weld::Entry> m_xRight4ED;
78 std::unique_ptr<weld::ScrolledWindow> m_xScrolledWindow;
80 std::unique_ptr<weld::ComboBox> m_xAdjustLB;
82 std::unique_ptr<weld::ComboBox> m_xPositionLB;
84 std::unique_ptr<weld::Label> m_xCharStyleFT;
85 std::unique_ptr<weld::ComboBox> m_xCharStyleLB;
86 std::unique_ptr<weld::Button> m_xStylistPB;
88 std::unique_ptr<weld::Button> m_xApplyPB;
89 std::unique_ptr<weld::Button> m_xClosePB;
91 std::unique_ptr<weld::Container> m_xContentArea;
92 std::unique_ptr<weld::Widget> m_xGrid;
94 std::unique_ptr<RubyPreview> m_xPreviewWin;
95 std::unique_ptr<weld::CustomWeld> m_xPreview;
97 DECL_LINK(ApplyHdl_Impl, weld::Button&, void);
98 DECL_LINK(CloseHdl_Impl, weld::Button&, void);
99 DECL_LINK(StylistHdl_Impl, weld::Button&, void);
100 DECL_LINK(ScrollHdl_Impl, weld::ScrolledWindow&, void);
101 DECL_LINK(PositionHdl_Impl, weld::ComboBox&, void);
102 DECL_LINK(AdjustHdl_Impl, weld::ComboBox&, void);
103 DECL_LINK(CharStyleHdl_Impl, weld::ComboBox&, void);
104 DECL_LINK(EditModifyHdl_Impl, weld::Entry&, void);
105 DECL_LINK(EditFocusHdl_Impl, weld::Widget&, void);
106 DECL_LINK(KeyUpDownHdl_Impl, const KeyEvent&, bool);
107 DECL_LINK(KeyUpDownTabHdl_Impl, const KeyEvent&, bool);
109 bool EditScrollHdl_Impl(sal_Int32 nParam);
110 bool EditJumpHdl_Impl(sal_Int32 nParam);
112 void SetRubyText(sal_Int32 nPos, weld::Entry& rLeft, weld::Entry& rRight);
113 void GetRubyText();
114 void ClearCharStyleList();
115 void AssertOneEntry();
117 void Update();
118 virtual void Close() override;
120 long GetLastPos() const {return nLastPos;}
121 void SetLastPos(long nSet) {nLastPos = nSet;}
123 bool IsModified() const {return bModified;}
124 void SetModified(bool bSet) {bModified = bSet;}
126 void EnableControls(bool bEnable);
128 void GetCurrentText(OUString& rBase, OUString& rRuby);
130 public:
131 SvxRubyDialog(SfxBindings *pBindings, SfxChildWindow *pCW, weld::Window* pParent);
132 virtual ~SvxRubyDialog() override;
134 virtual void Activate() override;
137 #endif // INCLUDED_SVX_RUBYDIALOG_HXX
140 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */