mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
Merge branch 'branch-qt-5.15' into dev
This commit is contained in:
commit
aa12bbe167
|
@ -81,10 +81,10 @@ void DictionaryBar::setDictionaries( vector< sptr< Dictionary::Class > >
|
|||
|
||||
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;
|
||||
// for( QList< QSize >::iterator i = sizes.begin(); i != sizes.end();
|
||||
// ++i )
|
||||
// if ( i->width() == 14 && i->height() == 21 )
|
||||
// use14x21 = true;
|
||||
|
||||
dictActions.append( action );
|
||||
}
|
||||
|
|
|
@ -122,9 +122,7 @@ win32 {
|
|||
CONFIG += chinese_conversion_support
|
||||
}
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4) {
|
||||
LIBS += -luxtheme
|
||||
}
|
||||
LIBS += -luxtheme
|
||||
}
|
||||
|
||||
unix:!mac {
|
||||
|
@ -133,11 +131,7 @@ unix:!mac {
|
|||
QMAKE_CXXFLAGS += -rdynamic
|
||||
QMAKE_LFLAGS += -rdynamic
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4) {
|
||||
greaterThan(QT_MINOR_VERSION, 0) {
|
||||
QT += x11extras
|
||||
}
|
||||
}
|
||||
QT += x11extras
|
||||
|
||||
CONFIG += link_pkgconfig
|
||||
PKGCONFIG += vorbisfile \
|
||||
|
@ -532,10 +526,10 @@ unix:!mac {
|
|||
SOURCES += scanflag.cc
|
||||
}
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4) {
|
||||
|
||||
HEADERS += wildcard.hh
|
||||
SOURCES += wildcard.cc
|
||||
}
|
||||
|
||||
|
||||
CONFIG( zim_support ) {
|
||||
DEFINES += MAKE_ZIM_SUPPORT
|
||||
|
|
|
@ -1459,10 +1459,11 @@ void MainWindow::updateDictionaryBar()
|
|||
|
||||
dictionaryBar.setDictionaries( grp->dictionaries );
|
||||
|
||||
if ( useSmallIconsInToolbarsAction.isChecked() ) {
|
||||
int extent = QApplication::style()->pixelMetric(QStyle::PM_SmallIconSize);
|
||||
dictionaryBar.setDictionaryIconSize( extent );
|
||||
}
|
||||
int extent = useSmallIconsInToolbarsAction.isChecked() ?
|
||||
QApplication::style()->pixelMetric( QStyle::PM_SmallIconSize ) :
|
||||
QApplication::style()->pixelMetric(QStyle::PM_ToolBarIconSize);
|
||||
|
||||
dictionaryBar.setDictionaryIconSize( extent );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
TEMPLATE=subdirs
|
||||
CONFIG += ordered
|
||||
include(common.pri)
|
||||
qtsingleapplication-uselib:SUBDIRS=buildlib
|
|
@ -1285,7 +1285,7 @@ void ScanPopup::setDictionaryIconSize()
|
|||
{
|
||||
int extent = cfg.usingSmallIconsInToolbars ?
|
||||
QApplication::style()->pixelMetric( QStyle::PM_SmallIconSize ) :
|
||||
21;
|
||||
QApplication::style()->pixelMetric(QStyle::PM_ToolBarIconSize);
|
||||
dictionaryBar.setDictionaryIconSize( extent );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue