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 : class SvxShowText : public Control
40 : {
41 : public:
42 : SvxShowText( Window* pParent,
43 : sal_Bool bCenter = sal_False );
44 : virtual ~SvxShowText();
45 :
46 : void SetFont( const Font& rFont );
47 : void SetText( const OUString& rText ) SAL_OVERRIDE;
48 0 : void SetCentered(bool bCenter) { mbCenter = bCenter; }
49 :
50 : virtual void Resize() SAL_OVERRIDE;
51 :
52 : virtual Size GetOptimalSize() const SAL_OVERRIDE;
53 :
54 : protected:
55 : virtual void Paint( const Rectangle& ) SAL_OVERRIDE;
56 :
57 : private:
58 : long mnY;
59 : sal_Bool mbCenter;
60 :
61 : };
62 :
63 : /** The main purpose of this dialog is to enable the use of characters
64 : that are not easily accesible from the keyboard. */
65 : class SvxCharacterMap : public SfxModalDialog
66 : {
67 : private:
68 :
69 : void init();
70 :
71 : SvxShowCharSet* m_pShowSet;
72 : SvxShowText* m_pShowText;
73 : OKButton* m_pOKBtn;
74 : PushButton* m_pDeleteLastBtn;
75 : PushButton* m_pDeleteBtn;
76 : FixedText* m_pFontText;
77 : ListBox* m_pFontLB;
78 : FixedText* m_pSubsetText;
79 : ListBox* m_pSubsetLB;
80 : FixedText* m_pSymbolText;
81 : SvxShowText* m_pShowChar;
82 : FixedText* m_pCharCodeText;
83 : Font aFont;
84 : sal_Bool bOne;
85 : const SubsetMap* pSubsetMap;
86 :
87 : DECL_LINK(OKHdl, void *);
88 : DECL_LINK(FontSelectHdl, void *);
89 : DECL_LINK(SubsetSelectHdl, void *);
90 : DECL_LINK(CharDoubleClickHdl, void *);
91 : DECL_LINK(CharSelectHdl, void *);
92 : DECL_LINK(CharHighlightHdl, void *);
93 : DECL_LINK(CharPreSelectHdl, void *);
94 : DECL_LINK(DeleteLastHdl, void *);
95 : DECL_LINK(DeleteHdl, void *);
96 :
97 : void fillAllSubsets(ListBox &rListBox);
98 :
99 : public:
100 : SvxCharacterMap( Window* pParent, sal_Bool bOne=sal_True, const SfxItemSet* pSet=0 );
101 : virtual ~SvxCharacterMap();
102 :
103 : void DisableFontSelection();
104 :
105 : const Font& GetCharFont() const;
106 : void SetCharFont( const Font& rFont );
107 :
108 : void SetChar( sal_UCS4 );
109 : sal_UCS4 GetChar() const;
110 :
111 : OUString GetCharacters() const;
112 :
113 : virtual short Execute() SAL_OVERRIDE;
114 : };
115 :
116 : #endif
117 :
118 :
119 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|