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 :
21 : #include <string.h>
22 : #include <vcl/svapp.hxx>
23 : #include <vcl/settings.hxx>
24 : #include <vcl/i18nhelp.hxx>
25 : #include <svtools/ctrltool.hxx>
26 : #include <svtools/stdmenu.hxx>
27 :
28 :
29 :
30 0 : FontNameMenu::FontNameMenu()
31 : {
32 0 : SetMenuFlags( GetMenuFlags() | MENU_FLAG_NOAUTOMNEMONICS );
33 0 : }
34 :
35 :
36 :
37 0 : FontNameMenu::~FontNameMenu()
38 : {
39 0 : }
40 :
41 :
42 :
43 0 : void FontNameMenu::Select()
44 : {
45 0 : maCurName = GetItemText( GetCurItemId() );
46 0 : maSelectHdl.Call( this );
47 0 : }
48 :
49 :
50 :
51 0 : void FontNameMenu::Highlight()
52 : {
53 0 : OUString aTempName = maCurName;
54 0 : maCurName = GetItemText( GetCurItemId() );
55 0 : maHighlightHdl.Call( this );
56 0 : maCurName = aTempName;
57 0 : }
58 :
59 :
60 :
61 0 : void FontNameMenu::Fill( const FontList* pList )
62 : {
63 : // clear menu
64 0 : Clear();
65 :
66 : // add fonts
67 0 : if (pList)
68 : {
69 0 : const vcl::I18nHelper& rI18nHelper = Application::GetSettings().GetUILocaleI18nHelper();
70 : // more than 100 fonts reduces the speed of opening the menu.
71 : // So only the first 100 fonts will be displayed.
72 0 : sal_uInt16 nFontCount = ::std::min( pList->GetFontNameCount(), static_cast< sal_uInt16 >(100) );
73 0 : for (sal_uInt16 i = 0; i < nFontCount; ++i)
74 : {
75 0 : const OUString& rName = pList->GetFontName( i ).GetName();
76 :
77 : // sort with the I18nHelper
78 0 : sal_uInt16 j = GetItemCount();
79 0 : while ( j )
80 : {
81 0 : OUString aText = GetItemText( GetItemId( j-1 ) );
82 0 : if ( rI18nHelper.CompareString( rName, aText ) > 0 )
83 0 : break;
84 0 : j--;
85 0 : }
86 0 : InsertItem( i+1, rName, MIB_RADIOCHECK | MIB_AUTOCHECK, OString(), j );
87 : }
88 : }
89 :
90 0 : SetCurName( maCurName );
91 0 : }
92 :
93 :
94 :
95 0 : void FontNameMenu::SetCurName(const OUString& rName)
96 : {
97 0 : maCurName = rName;
98 :
99 : // Menueintrag checken
100 0 : sal_uInt16 nChecked = 0;
101 0 : sal_uInt16 nItemCount = GetItemCount();
102 0 : for( sal_uInt16 i = 0; i < nItemCount; i++ )
103 : {
104 0 : sal_uInt16 nItemId = GetItemId( i );
105 :
106 0 : if ( IsItemChecked( nItemId ) )
107 0 : nChecked = nItemId;
108 :
109 0 : OUString aText = GetItemText( nItemId );
110 0 : if ( aText == maCurName )
111 : {
112 0 : CheckItem( nItemId, true );
113 0 : return;
114 : }
115 0 : }
116 :
117 0 : if ( nChecked )
118 0 : CheckItem( nChecked, false );
119 : }
120 :
121 :
122 :
123 0 : FontSizeMenu::FontSizeMenu()
124 : : mpHeightAry( NULL )
125 0 : , mnCurHeight( 100 )
126 : {
127 0 : SetMenuFlags( GetMenuFlags() | MENU_FLAG_NOAUTOMNEMONICS );
128 0 : }
129 :
130 :
131 :
132 0 : FontSizeMenu::~FontSizeMenu()
133 : {
134 0 : if ( mpHeightAry )
135 0 : delete[] mpHeightAry;
136 0 : }
137 :
138 :
139 :
140 0 : void FontSizeMenu::Select()
141 : {
142 0 : const sal_uInt16 nCurItemId = GetCurItemId();
143 0 : mnCurHeight = mpHeightAry[ nCurItemId - 1 ];
144 0 : maSelectHdl.Call( this );
145 0 : }
146 :
147 :
148 :
149 0 : void FontSizeMenu::Highlight()
150 : {
151 0 : const long nTempHeight = mnCurHeight;
152 0 : const sal_uInt16 nCurItemId = GetCurItemId();
153 0 : if ( !nCurItemId )
154 0 : mnCurHeight = 0;
155 : else
156 : {
157 : //sal_Int32 nValue = GetItemText( nCurItemId ).ToInt32();
158 0 : mnCurHeight = mpHeightAry[ nCurItemId - 1 ];
159 : }
160 0 : maHighlightHdl.Call( this );
161 0 : mnCurHeight = nTempHeight;
162 0 : }
163 :
164 :
165 :
166 0 : void FontSizeMenu::Fill( const FontInfo& rInfo, const FontList* pList )
167 : {
168 0 : Clear();
169 :
170 : // setup font size array
171 0 : if ( mpHeightAry )
172 0 : delete[] mpHeightAry;
173 :
174 : const sal_IntPtr* pTempAry;
175 0 : const sal_IntPtr* pAry = pList->GetSizeAry( rInfo );
176 0 : sal_uInt16 nSizeCount = 0;
177 0 : while ( pAry[nSizeCount] )
178 0 : nSizeCount++;
179 :
180 0 : sal_uInt16 nPos = 0;
181 :
182 : // first insert font size names (for simplified/traditional chinese)
183 0 : FontSizeNames aFontSizeNames( Application::GetSettings().GetUILanguageTag().getLanguageType() );
184 0 : mpHeightAry = new long[nSizeCount+aFontSizeNames.Count()];
185 0 : if ( !aFontSizeNames.IsEmpty() )
186 : {
187 0 : if ( pAry == pList->GetStdSizeAry() )
188 : {
189 : // for scalable fonts all font size names
190 0 : sal_uLong nCount = aFontSizeNames.Count();
191 0 : for( sal_uLong i = 0; i < nCount; i++ )
192 : {
193 0 : OUString aSizeName = aFontSizeNames.GetIndexName( i );
194 0 : long nSize = aFontSizeNames.GetIndexSize( i );
195 0 : mpHeightAry[nPos] = nSize;
196 0 : nPos++; // Id is nPos+1
197 0 : InsertItem( nPos, aSizeName, MIB_RADIOCHECK | MIB_AUTOCHECK );
198 0 : }
199 : }
200 : else
201 : {
202 : // for fixed size fonts only selectable font size names
203 0 : pTempAry = pAry;
204 0 : while ( *pTempAry )
205 : {
206 0 : OUString aSizeName = aFontSizeNames.Size2Name( *pTempAry );
207 0 : if ( !aSizeName.isEmpty() )
208 : {
209 0 : mpHeightAry[nPos] = *pTempAry;
210 0 : nPos++; // Id is nPos+1
211 0 : InsertItem( nPos, aSizeName, MIB_RADIOCHECK | MIB_AUTOCHECK );
212 : }
213 0 : pTempAry++;
214 0 : }
215 : }
216 : }
217 :
218 : // then insert numerical font size values
219 0 : const vcl::I18nHelper& rI18nHelper = Application::GetSettings().GetUILocaleI18nHelper();
220 0 : pTempAry = pAry;
221 0 : while ( *pTempAry )
222 : {
223 0 : mpHeightAry[nPos] = *pTempAry;
224 0 : nPos++; // Id is nPos+1
225 0 : InsertItem( nPos, rI18nHelper.GetNum( *pTempAry, 1, true, false ), MIB_RADIOCHECK | MIB_AUTOCHECK );
226 0 : pTempAry++;
227 : }
228 :
229 0 : SetCurHeight( mnCurHeight );
230 0 : }
231 :
232 :
233 :
234 0 : void FontSizeMenu::SetCurHeight( long nHeight )
235 : {
236 0 : mnCurHeight = nHeight;
237 :
238 : // check menu item
239 0 : sal_uInt16 nChecked = 0;
240 0 : sal_uInt16 nItemCount = GetItemCount();
241 0 : for( sal_uInt16 i = 0; i < nItemCount; i++ )
242 : {
243 0 : sal_uInt16 nItemId = GetItemId( i );
244 :
245 0 : if ( mpHeightAry[i] == nHeight )
246 : {
247 0 : CheckItem( nItemId, true );
248 0 : return;
249 : }
250 :
251 0 : if ( IsItemChecked( nItemId ) )
252 0 : nChecked = nItemId;
253 : }
254 :
255 0 : if ( nChecked )
256 0 : CheckItem( nChecked, false );
257 : }
258 :
259 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|