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 : #ifndef INCLUDED_CUI_SOURCE_INC_CUICHARMAP_HXX
20 : #define INCLUDED_CUI_SOURCE_INC_CUICHARMAP_HXX
21 :
22 : #include <vcl/ctrl.hxx>
23 : #include <vcl/metric.hxx>
24 : #include <vcl/button.hxx>
25 : #include <vcl/fixed.hxx>
26 : #include <vcl/lstbox.hxx>
27 : #include <sfx2/basedlgs.hxx>
28 : #include <svx/charmap.hxx>
29 :
30 : class SubsetMap;
31 :
32 : #define CHARMAP_MAXLEN 32
33 :
34 : namespace svx
35 : {
36 : struct SvxShowCharSetItem;
37 : }
38 :
39 0 : class SvxShowText : public Control
40 : {
41 : public:
42 : SvxShowText(vcl::Window* pParent, bool bCenter = false);
43 :
44 : void SetFont( const vcl::Font& rFont );
45 : void SetText( const OUString& rText ) SAL_OVERRIDE;
46 0 : void SetCentered(bool bCenter) { mbCenter = bCenter; }
47 :
48 : virtual void Resize() SAL_OVERRIDE;
49 :
50 : virtual Size GetOptimalSize() const SAL_OVERRIDE;
51 :
52 : protected:
53 : virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle&) SAL_OVERRIDE;
54 :
55 : private:
56 : long mnY;
57 : bool mbCenter;
58 :
59 : };
60 :
61 : /** The main purpose of this dialog is to enable the use of characters
62 : that are not easily accessible from the keyboard. */
63 : class SvxCharacterMap : public SfxModalDialog
64 : {
65 : private:
66 :
67 : void init();
68 :
69 : VclPtr<SvxShowCharSet> m_pShowSet;
70 : VclPtr<Edit> m_pShowText;
71 : VclPtr<PushButton> m_pOKBtn;
72 : VclPtr<FixedText> m_pFontText;
73 : VclPtr<ListBox> m_pFontLB;
74 : VclPtr<FixedText> m_pSubsetText;
75 : VclPtr<ListBox> m_pSubsetLB;
76 : VclPtr<FixedText> m_pSymbolText;
77 : VclPtr<SvxShowText> m_pShowChar;
78 : VclPtr<FixedText> m_pCharCodeText;
79 : vcl::Font aFont;
80 : bool bOne;
81 : const SubsetMap* pSubsetMap;
82 :
83 : DECL_LINK(OKHdl, void *);
84 : DECL_LINK(FontSelectHdl, void *);
85 : DECL_LINK(SubsetSelectHdl, void *);
86 : DECL_LINK(CharDoubleClickHdl, void *);
87 : DECL_LINK(CharSelectHdl, void *);
88 : DECL_LINK(CharHighlightHdl, void *);
89 : DECL_LINK(CharPreSelectHdl, void *);
90 :
91 : static void fillAllSubsets(ListBox &rListBox);
92 :
93 : public:
94 : SvxCharacterMap( vcl::Window* pParent, bool bOne=true, const SfxItemSet* pSet=0 );
95 : virtual ~SvxCharacterMap();
96 : virtual void dispose() SAL_OVERRIDE;
97 :
98 : void DisableFontSelection();
99 :
100 0 : const vcl::Font& GetCharFont() const { return aFont;}
101 : void SetCharFont( const vcl::Font& rFont );
102 :
103 : void SetChar( sal_UCS4 );
104 : sal_UCS4 GetChar() const;
105 :
106 : OUString GetCharacters() const;
107 :
108 : virtual short Execute() SAL_OVERRIDE;
109 : };
110 :
111 : #endif
112 :
113 :
114 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|