Merge pull request #818 from shenlebantongying/expose_timer

feat: expose linux's selection clipboard delay timer to user
This commit is contained in:
xiaoyifang 2023-06-05 22:46:08 +08:00 committed by GitHub
commit e0dba5ac3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 48 additions and 3 deletions

View file

@ -245,6 +245,7 @@ Preferences::Preferences():
trackClipboardScan ( true ),
trackSelectionScan ( true ),
showScanFlag( false ),
selectionChangeDelayTimer( 500 ),
#endif
pronounceOnLoadMain( false ),
pronounceOnLoadPopup( false ),
@ -931,6 +932,8 @@ Class load()
c.preferences.trackClipboardScan= ( preferences.namedItem( "trackClipboardScan" ).toElement().text() == "1" );
c.preferences.trackSelectionScan= ( preferences.namedItem( "trackSelectionScan" ).toElement().text() == "1" );
c.preferences.showScanFlag= ( preferences.namedItem( "showScanFlag" ).toElement().text() == "1" );
c.preferences.selectionChangeDelayTimer =
preferences.namedItem( "selectionChangeDelayTimer" ).toElement().text().toInt();
#endif
c.preferences.pronounceOnLoadMain = ( preferences.namedItem( "pronounceOnLoadMain" ).toElement().text() == "1" );
@ -1842,6 +1845,11 @@ void save( Class const & c )
opt = dd.createElement( "showScanFlag" );
opt.appendChild( dd.createTextNode( c.preferences.showScanFlag? "1":"0" ) );
preferences.appendChild( opt );
opt = dd.createElement( "selectionChangeDelayTimer" );
opt.appendChild( dd.createTextNode( QString::number( c.preferences.selectionChangeDelayTimer ) ) );
preferences.appendChild( opt );
#endif
opt = dd.createElement( "pronounceOnLoadMain" );

View file

@ -296,6 +296,7 @@ struct Preferences
bool trackClipboardScan;
bool trackSelectionScan;
bool showScanFlag;
int selectionChangeDelayTimer;
#endif
// Whether the word should be pronounced on page load, in main window/popup

View file

@ -228,11 +228,13 @@ Preferences::Preferences( QWidget * parent, Config::Class & cfg_ ):
ui.enableX11SelectionTrack->setChecked(p.trackSelectionScan);
ui.enableClipboardTrack ->setChecked(p.trackClipboardScan);
ui.showScanFlag->setChecked(p.showScanFlag);
ui.delayTimer->setValue( p.selectionChangeDelayTimer );
#else
ui.enableX11SelectionTrack->hide();
ui.enableClipboardTrack->hide();
ui.showScanFlag->hide();
ui.ignoreOwnClipboardChanges->hide();
ui.delayTimer->hide();
#endif
// Sound
@ -409,6 +411,7 @@ Config::Preferences Preferences::getPreferences()
p.trackSelectionScan = ui.enableX11SelectionTrack ->isChecked();
p.trackClipboardScan = ui.enableClipboardTrack ->isChecked();
p.showScanFlag= ui.showScanFlag->isChecked();
p.selectionChangeDelayTimer = ui.delayTimer->value();
#endif
p.storeHistory = ui.storeHistory->isChecked();

View file

@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>787</width>
<height>629</height>
<height>730</height>
</rect>
</property>
<property name="windowTitle">
@ -620,6 +620,35 @@ in the pressed state when the word selection changes.</string>
</property>
</widget>
</item>
<item>
<widget class="QWidget" name="widget" native="true">
<layout class="QHBoxLayout" name="horizontalLayout_6">
<item>
<widget class="QLabel" name="delayTimerLabel">
<property name="text">
<string>Delay time</string>
</property>
</widget>
</item>
<item>
<widget class="QSpinBox" name="delayTimer">
<property name="suffix">
<string> ms</string>
</property>
<property name="minimum">
<number>0</number>
</property>
<property name="maximum">
<number>10000</number>
</property>
<property name="singleStep">
<number>50</number>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
</item>

View file

@ -273,9 +273,10 @@ ScanPopup::ScanPopup( QWidget * parent,
translateWordFromSelection();
} );
// Use delay show to prevent multiple popups while selection in progress
// Use delay show to prevent popup from showing up while selection is still in progress
// Only certain software has this problem (e.g. Chrome)
selectionDelayTimer.setSingleShot( true );
selectionDelayTimer.setInterval( 800 );
selectionDelayTimer.setInterval( cfg.preferences.selectionChangeDelayTimer );
connect( &selectionDelayTimer, &QTimer::timeout, this, &ScanPopup::translateWordFromSelection );
#endif
@ -307,6 +308,9 @@ void ScanPopup::refresh() {
connect( ui.groupList, &GroupComboBox::currentIndexChanged,
this, &ScanPopup::currentGroupChanged );
#ifdef HAVE_X11
selectionDelayTimer.setInterval( cfg.preferences.selectionChangeDelayTimer );
#endif
}