Fix typo in code
[LibreOffice.git] / include / svx / rubydialog.hxx
blob655b4f2ae049c546615fadcf9a1582a1024ee69b
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 final : public SfxModelessDialogController
57 friend class RubyPreview;
60 tools::Long nLastPos;
61 tools::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::Entry> m_xLeft1ED;
68 std::unique_ptr<weld::Entry> m_xRight1ED;
69 std::unique_ptr<weld::Entry> m_xLeft2ED;
70 std::unique_ptr<weld::Entry> m_xRight2ED;
71 std::unique_ptr<weld::Entry> m_xLeft3ED;
72 std::unique_ptr<weld::Entry> m_xRight3ED;
73 std::unique_ptr<weld::Entry> m_xLeft4ED;
74 std::unique_ptr<weld::Entry> m_xRight4ED;
76 std::unique_ptr<weld::ScrolledWindow> m_xScrolledWindow;
78 std::unique_ptr<weld::ComboBox> m_xAdjustLB;
80 std::unique_ptr<weld::ComboBox> m_xPositionLB;
82 std::unique_ptr<weld::Label> m_xCharStyleFT;
83 std::unique_ptr<weld::ComboBox> m_xCharStyleLB;
84 std::unique_ptr<weld::Button> m_xStylistPB;
86 std::unique_ptr<weld::Button> m_xApplyPB;
87 std::unique_ptr<weld::Button> m_xClosePB;
89 std::unique_ptr<weld::Container> m_xContentArea;
90 std::unique_ptr<weld::Widget> m_xGrid;
92 std::unique_ptr<RubyPreview> m_xPreviewWin;
93 std::unique_ptr<weld::CustomWeld> m_xPreview;
95 DECL_LINK(ApplyHdl_Impl, weld::Button&, void);
96 DECL_LINK(CloseHdl_Impl, weld::Button&, void);
97 DECL_LINK(StylistHdl_Impl, weld::Button&, void);
98 DECL_LINK(ScrollHdl_Impl, weld::ScrolledWindow&, void);
99 DECL_LINK(PositionHdl_Impl, weld::ComboBox&, void);
100 DECL_LINK(AdjustHdl_Impl, weld::ComboBox&, void);
101 DECL_LINK(CharStyleHdl_Impl, weld::ComboBox&, void);
102 DECL_LINK(EditModifyHdl_Impl, weld::Entry&, void);
103 DECL_LINK(EditFocusHdl_Impl, weld::Widget&, void);
104 DECL_LINK(KeyUpDownHdl_Impl, const KeyEvent&, bool);
105 DECL_LINK(KeyUpDownTabHdl_Impl, const KeyEvent&, bool);
107 bool EditScrollHdl_Impl(sal_Int32 nParam);
108 bool EditJumpHdl_Impl(sal_Int32 nParam);
110 void SetRubyText(sal_Int32 nPos, weld::Entry& rLeft, weld::Entry& rRight);
111 void GetRubyText();
112 void ClearCharStyleList();
113 void AssertOneEntry();
115 void Update();
116 virtual void Close() override;
118 tools::Long GetLastPos() const {return nLastPos;}
119 void SetLastPos(tools::Long nSet) {nLastPos = nSet;}
121 bool IsModified() const {return bModified;}
122 void SetModified(bool bSet) {bModified = bSet;}
124 void EnableControls(bool bEnable);
126 void GetCurrentText(OUString& rBase, OUString& rRuby);
128 public:
129 SvxRubyDialog(SfxBindings *pBindings, SfxChildWindow *pCW, weld::Window* pParent);
130 virtual ~SvxRubyDialog() override;
132 virtual void Activate() override;
135 #endif // INCLUDED_SVX_RUBYDIALOG_HXX
138 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */