forked from goldendict/goldendict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dictionarybar.cc
403 lines (326 loc) · 10.5 KB
/
dictionarybar.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
#include "dictionarybar.hh"
#include <QAction>
#include <QApplication>
#include <QMenu>
#include <QContextMenuEvent>
#include <QProcess>
#include "gddebug.hh"
#include "fsencoding.hh"
#include <QDebug>
using std::vector;
DictionaryBar::DictionaryBar( QWidget * parent,
Config::Events & events, QString const & _editDictionaryCommand, unsigned short const & maxDictionaryRefsInContextMenu_ ):
QToolBar( tr( "&Dictionary Bar" ), parent ),
mutedDictionaries( 0 ),
configEvents( events ),
editDictionaryCommand( _editDictionaryCommand ),
maxDictionaryRefsInContextMenu(maxDictionaryRefsInContextMenu_),
use14x21( false ),
timerId( 0 )
{
setObjectName( "dictionaryBar" );
maxDictionaryRefsAction = new QAction( QIcon(":/icons/expand_opt.png"), tr( "Extended menu with all dictionaries..." ), this );
connect( &events, SIGNAL( mutedDictionariesChanged() ),
this, SLOT( mutedDictionariesChanged() ) );
connect( this, SIGNAL(actionTriggered(QAction*)),
this, SLOT(actionWasTriggered(QAction*)) );
installEventFilter( this );
}
static QString elideDictName( QString const & name )
{
// Some names are way too long -- we insert an ellipsis in the middle of those
int const maxSize = 33;
if ( name.size() <= maxSize )
return name;
int const pieceSize = maxSize / 2 - 1;
return name.left( pieceSize ) + QChar( 0x2026 ) + name.right( pieceSize );
}
void DictionaryBar::setDictionaries( vector< sptr< Dictionary::Class > >
const & dictionaries )
{
setUpdatesEnabled( false );
allDictionaries.clear();
allDictionaries = dictionaries;
clear();
dictActions.clear();
use14x21 = false;
for( unsigned x = 0; x < dictionaries.size(); ++x )
{
QIcon icon = dictionaries[ x ]->getNativeIcon();
QString dictName = QString::fromUtf8( dictionaries[ x ]->
getName().c_str() );
QAction * action = addAction( icon, elideDictName( dictName ) );
action->setToolTip( dictName ); // Tooltip need not be shortened
QString id = QString::fromStdString( dictionaries[ x ]->getId() );
action->setData( id );
action->setCheckable( true );
action->setChecked( mutedDictionaries ? !mutedDictionaries->contains( id ) : true );
QList< QSize > sizes = icon.availableSizes();
for( QList< QSize >::iterator i = sizes.begin(); i != sizes.end();
++i )
if ( i->width() == 14 && i->height() == 21 )
use14x21 = true;
dictActions.append( action );
}
setDictionaryIconSize( 21 );
setUpdatesEnabled( true );
}
void DictionaryBar::setDictionaryIconSize( int extent )
{
setIconSize( QSize( use14x21 ? extent*2/3 : extent, extent ) );
}
void DictionaryBar::contextMenuEvent( QContextMenuEvent * event )
{
showContextMenu( event );
}
void DictionaryBar::showContextMenu( QContextMenuEvent * event, bool extended )
{
QMenu menu( this );
QAction * editAction =
menu.addAction( QIcon( ":/icons/bookcase.png" ), tr( "Edit this group" ) );
QAction * infoAction = NULL;
QAction * headwordsAction = NULL;
QAction * editDictAction = NULL;
QAction * openDictFolderAction = NULL;
QString dictFilename;
QAction * dictAction = actionAt( event->x(), event->y() );
if( dictAction )
{
Dictionary::Class *pDict = NULL;
QString id = dictAction->data().toString();
for( unsigned i = 0; i < allDictionaries.size(); i++ )
{
if( id.compare( allDictionaries[ i ]->getId().c_str() ) == 0 )
{
pDict = allDictionaries[ i ].get();
break;
}
}
if( pDict )
{
infoAction = menu.addAction( tr( "Dictionary info" ) );
if( pDict->isLocalDictionary() )
{
if( pDict->getWordCount() > 0 )
headwordsAction = menu.addAction( tr( "Dictionary headwords" ) );
openDictFolderAction = menu.addAction( tr( "Open dictionary folder" ) );
if( !editDictionaryCommand.isEmpty() )
{
if( !pDict->getMainFilename().isEmpty() )
{
dictFilename = pDict->getMainFilename();
editDictAction = menu.addAction( tr( "Edit dictionary" ) );
}
}
}
}
}
if ( !dictActions.empty() )
menu.addSeparator();
unsigned refsAdded = 0;
for( QList< QAction * >::iterator i = dictActions.begin();
i != dictActions.end(); ++i )
{
// Enough! Or the menu would become too large.
if ( refsAdded++ >= maxDictionaryRefsInContextMenu && !extended )
{
menu.addSeparator();
menu.addAction( maxDictionaryRefsAction );
break;
}
// We need new action, since the one we have has text elided
QAction * action = menu.addAction( (*i)->icon(), (*i)->toolTip() );
action->setCheckable( true );
action->setChecked( (*i)->isChecked() );
action->setData( QVariant::fromValue( (void *)*i ) );
// Force "icon in menu" on all platforms, for
// usability reasons.
action->setIconVisibleInMenu( true );
}
connect( this, SIGNAL( closePopupMenu() ), &menu, SLOT( close() ) );
QAction * result = menu.exec( event->globalPos() );
if( result && result == infoAction )
{
QString id = dictAction->data().toString();
emit showDictionaryInfo( id );
return;
}
if( result && result == headwordsAction )
{
QString id = dictAction->data().toString();
emit showDictionaryHeadwords( id );
return;
}
if( result && result == openDictFolderAction )
{
QString id = dictAction->data().toString();
emit openDictionaryFolder( id );
return;
}
if( result && result == editDictAction )
{
QString command( editDictionaryCommand );
command.replace( "%GDDICT%", "\"" + dictFilename + "\"" );
if( !QProcess::startDetached( command ) )
QApplication::beep();
}
if( result && result == maxDictionaryRefsAction )
{
showContextMenu( event, true );
}
if ( result == editAction )
emit editGroupRequested();
else
if ( result && result->data().value< void * >() )
( ( QAction * )( result->data().value< void * >() ) )->trigger();
event->accept();
}
void DictionaryBar::mutedDictionariesChanged()
{
//DPRINTF( "Muted dictionaries changed\n" );
if( !mutedDictionaries )
return;
// Update actions
setUpdatesEnabled( false );
for( QList< QAction * >::iterator i = dictActions.begin();
i != dictActions.end(); ++i )
{
bool isUnmuted = !mutedDictionaries->contains( (*i)->data().toString() );
if ( isUnmuted != (*i)->isChecked() )
(*i)->setChecked( isUnmuted );
}
setUpdatesEnabled( true );
}
void DictionaryBar::actionWasTriggered( QAction * action )
{
if( !mutedDictionaries )
return;
QString id = action->data().toString();
if ( id.isEmpty() )
return; // Some weird action, not our button
if ( QApplication::keyboardModifiers() &
( Qt::ControlModifier | Qt::ShiftModifier ) )
{
// Solo mode -- either use the dictionary exclusively, or toggle
// back all dictionaries if we do that already.
// Are we solo already?
bool isSolo = true;
// For solo, all dictionaries must be unchecked, since we're handling
// the result of the dictionary being (un)checked, and in case we were
// in solo, now we would end up with no dictionaries being checked at all.
for( QList< QAction * >::iterator i = dictActions.begin();
i != dictActions.end(); ++i )
{
if ( (*i)->isChecked() )
{
isSolo = false;
break;
}
}
if ( isSolo )
{
// Restore or clear all the dictionaries
if ( QApplication::keyboardModifiers() & Qt::ShiftModifier )
*mutedDictionaries = storedMutedSet;
else
{
for( QList< QAction * >::iterator i = dictActions.begin();
i != dictActions.end(); ++i )
mutedDictionaries->remove( (*i)->data().toString() );
}
storedMutedSet.clear();
}
else
{
// Save dictionaries state
storedMutedSet = *mutedDictionaries;
// Make dictionary solo
for( QList< QAction * >::iterator i = dictActions.begin();
i != dictActions.end(); ++i )
{
QString dictId = (*i)->data().toString();
if ( dictId == id )
mutedDictionaries->remove( dictId );
else
mutedDictionaries->insert( dictId );
}
}
configEvents.signalMutedDictionariesChanged();
}
else
{
// Normal mode
storedMutedSet.clear();
if ( action->isChecked() )
{
// Unmute the dictionary
if ( mutedDictionaries->contains( id ) )
{
mutedDictionaries->remove( id );
configEvents.signalMutedDictionariesChanged();
}
}
else
{
// Mute the dictionary
if ( !mutedDictionaries->contains( id ) )
{
mutedDictionaries->insert( id );
configEvents.signalMutedDictionariesChanged();
}
}
}
}
void DictionaryBar::dictsPaneClicked( const QString & id )
{
if ( !isVisible() )
return;
for( QList< QAction * >::iterator i = dictActions.begin();
i != dictActions.end(); ++i )
{
QString dictId = (*i)->data().toString();
if ( dictId == id )
{
(*i)->activate( QAction::Trigger );
break;
}
}
}
bool DictionaryBar::eventFilter( QObject * obj, QEvent * ev )
{
if(obj == this && !isFloating() )
{
QPoint pt = parentWidget()->mapFromGlobal( QCursor::pos() );
switch( ev->type() )
{
case QEvent::Leave : if( geometry().contains( pt ) )
{
if( timerId )
killTimer( timerId );
timerId = startTimer( 500 );
return true;
}
break;
case QEvent::Enter : if( timerId != 0)
{
killTimer( timerId );
timerId = 0;
}
break;
case QEvent::Timer: if( static_cast< QTimerEvent * >( ev )->timerId() == timerId )
{
if( !geometry().contains( pt ) )
{
killTimer( timerId );
timerId = 0;
QEvent event( QEvent::Leave );
QApplication::sendEvent( this, &event );
}
return true;
}
break;
default: break;
}
}
return false;
}