2023-04-11 10:19:35 +08:00
/*
*
* Copyright ( C ) 2023 , KylinSoft Co . , Ltd .
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < https : //www.gnu.org/licenses/>.
*
*
*/
2021-10-28 20:46:39 +08:00
# include "search.h"
# include <QTranslator>
# include <QApplication>
2023-08-18 10:20:54 +08:00
# include <QString>
static const QByteArray UKUI_SEARCH_SCHEMAS = QByteArrayLiteral ( " org.ukui.search.settings " ) ;
static const QString SEARCH_METHOD_KEY = QStringLiteral ( " fileIndexEnable " ) ;
static const QString WEB_ENGINE_KEY = QStringLiteral ( " webEngine " ) ;
static const QString CONTENT_FUZZY_SEARCH_KEY = QStringLiteral ( " contentFuzzySearch " ) ;
static const QString CONTENT_INDEX_ENABLE_KEY = QStringLiteral ( " contentIndexEnable " ) ;
2023-10-12 15:41:35 +08:00
static const QString CONTENT_INDEX_ENABLE_OCR_KEY = QStringLiteral ( " contentIndexEnableOcr " ) ;
2021-10-28 20:46:39 +08:00
Search : : Search ( )
{
QTranslator * translator = new QTranslator ( this ) ;
if ( ! translator - > load ( " /usr/share/ukui-search/search-ukcc-plugin/translations/ " + QLocale : : system ( ) . name ( ) ) ) {
qWarning ( ) < < " /usr/share/ukui-search/search-ukcc-plugin/translations/ " + QLocale : : system ( ) . name ( ) < < " load failed " ;
}
QApplication : : installTranslator ( translator ) ;
m_plugin_name = tr ( " Search " ) ;
m_plugin_type = SEARCH_F ;
2022-11-09 11:31:35 +08:00
2022-12-07 14:04:21 +08:00
m_interface = new QDBusInterface ( " com.ukui.search.fileindex.service " ,
" /org/ukui/search/privateDirWatcher " ,
" org.ukui.search.fileindex " ,
QDBusConnection : : sessionBus ( ) ,
this ) ;
2022-12-27 09:41:32 +08:00
if ( m_interface - > isValid ( ) ) {
connect ( m_interface , SIGNAL ( indexDirsChanged ( ) ) , this , SLOT ( refreshSearchDirsUi ( ) ) ) ;
}
2022-12-07 14:04:21 +08:00
m_setSearchDirInterface = new QDBusInterface ( " com.ukui.search.fileindex.service " ,
" /org/ukui/search/fileindex " ,
" org.ukui.search.fileindex " ,
QDBusConnection : : sessionBus ( ) ,
this ) ;
2022-11-09 11:31:35 +08:00
const QByteArray id ( UKUI_SEARCH_SCHEMAS ) ;
if ( QGSettings : : isSchemaInstalled ( id ) ) {
m_gsettings = new QGSettings ( id , QByteArray ( ) , this ) ;
} else {
qCritical ( ) < < UKUI_SEARCH_SCHEMAS < < " not installed! \n " ;
}
2021-10-28 20:46:39 +08:00
}
QString Search : : plugini18nName ( )
{
return m_plugin_name ;
}
int Search : : pluginTypes ( )
{
return m_plugin_type ;
}
QWidget * Search : : pluginUi ( )
{
2022-11-09 11:31:35 +08:00
initUi ( ) ;
2022-12-07 14:04:21 +08:00
initFileDialog ( ) ;
initSearchDirs ( ) ;
2022-11-21 10:11:12 +08:00
initBlockDirsList ( ) ;
2022-12-07 14:04:21 +08:00
connect ( m_addSearchDirBtn , & QPushButton : : clicked , this , & Search : : onAddSearchDirBtnClicked ) ;
connect ( m_addBlockDirWidget , & QPushButton : : clicked , this , & Search : : onBtnAddBlockFolderClicked ) ;
2021-10-28 20:46:39 +08:00
2022-11-09 11:31:35 +08:00
if ( m_gsettings ) {
2021-10-28 20:46:39 +08:00
//按钮状态初始化
if ( m_gsettings - > keys ( ) . contains ( SEARCH_METHOD_KEY ) ) {
2023-08-18 10:20:54 +08:00
bool fileIndexOn = m_gsettings - > get ( SEARCH_METHOD_KEY ) . toBool ( ) ;
m_fileIndexBtn - > setChecked ( fileIndexOn ) ;
} else {
m_fileIndexBtn - > setEnabled ( false ) ;
}
if ( m_gsettings - > keys ( ) . contains ( CONTENT_INDEX_ENABLE_KEY ) ) {
//当前是否开启内容索引
bool isContentIndexOn = m_gsettings - > get ( CONTENT_INDEX_ENABLE_KEY ) . toBool ( ) ;
m_contentIndexBtn - > setChecked ( isContentIndexOn ) ;
if ( isContentIndexOn ) {
2022-12-07 14:04:21 +08:00
m_indexSetFrame - > show ( ) ;
}
2021-10-28 20:46:39 +08:00
} else {
2023-08-18 10:20:54 +08:00
m_contentIndexBtn - > setEnabled ( false ) ;
2021-10-28 20:46:39 +08:00
}
2022-12-07 14:04:21 +08:00
2023-10-12 15:41:35 +08:00
if ( m_gsettings - > keys ( ) . contains ( CONTENT_INDEX_ENABLE_OCR_KEY ) ) {
m_ocrSwitchBtn - > setChecked ( m_gsettings - > get ( CONTENT_INDEX_ENABLE_OCR_KEY ) . toBool ( ) ) ;
} else {
m_ocrSwitchBtn - > setEnabled ( false ) ;
}
2021-10-28 20:46:39 +08:00
if ( m_gsettings - > keys ( ) . contains ( WEB_ENGINE_KEY ) ) {
//当前网页搜索的搜索引擎
QString engine = m_gsettings - > get ( WEB_ENGINE_KEY ) . toString ( ) ;
m_webEngineFrame - > mCombox - > setCurrentIndex ( m_webEngineFrame - > mCombox - > findData ( engine ) ) ;
} else {
m_webEngineFrame - > mCombox - > setEnabled ( false ) ;
}
2022-12-07 14:04:21 +08:00
2023-08-18 10:20:54 +08:00
if ( m_gsettings - > keys ( ) . contains ( CONTENT_FUZZY_SEARCH_KEY ) ) {
2022-12-07 14:04:21 +08:00
//是否为模糊搜索
2023-08-18 10:20:54 +08:00
bool isFuzzy = m_gsettings - > get ( CONTENT_FUZZY_SEARCH_KEY ) . toBool ( ) ;
2022-12-07 14:04:21 +08:00
if ( isFuzzy ) {
m_fuzzyBtn - > setChecked ( true ) ;
} else {
m_preciseBtn - > setChecked ( true ) ;
}
} else {
m_fuzzyBtn - > setEnabled ( false ) ;
m_preciseBtn - > setEnabled ( false ) ;
}
2021-10-28 20:46:39 +08:00
//监听gsettings值改变, 更新控制面板UI
connect ( m_gsettings , & QGSettings : : changed , this , [ = ] ( const QString & key ) {
if ( key = = SEARCH_METHOD_KEY ) {
2023-08-18 10:20:54 +08:00
bool isFileIndexOn = m_gsettings - > get ( SEARCH_METHOD_KEY ) . toBool ( ) ;
m_fileIndexBtn - > blockSignals ( true ) ;
m_fileIndexBtn - > setChecked ( isFileIndexOn ) ;
m_fileIndexBtn - > blockSignals ( false ) ;
} else if ( key = = CONTENT_INDEX_ENABLE_KEY ) {
bool isContentIndexOn = m_gsettings - > get ( CONTENT_INDEX_ENABLE_KEY ) . toBool ( ) ;
m_contentIndexBtn - > blockSignals ( true ) ;
m_contentIndexBtn - > setChecked ( isContentIndexOn ) ;
m_contentIndexBtn - > blockSignals ( false ) ;
if ( isContentIndexOn ) {
2023-01-31 09:28:56 +08:00
m_indexSetFrame - > show ( ) ;
} else {
m_indexSetFrame - > hide ( ) ;
}
2023-10-12 15:41:35 +08:00
} else if ( key = = CONTENT_INDEX_ENABLE_OCR_KEY ) {
m_ocrSwitchBtn - > blockSignals ( true ) ;
m_ocrSwitchBtn - > setChecked ( m_gsettings - > get ( CONTENT_INDEX_ENABLE_OCR_KEY ) . toBool ( ) ) ;
m_ocrSwitchBtn - > blockSignals ( false ) ;
2021-10-28 20:46:39 +08:00
} else if ( key = = WEB_ENGINE_KEY ) {
QString engine = m_gsettings - > get ( WEB_ENGINE_KEY ) . toString ( ) ;
m_webEngineFrame - > mCombox - > blockSignals ( true ) ;
m_webEngineFrame - > mCombox - > setCurrentIndex ( m_webEngineFrame - > mCombox - > findData ( engine ) ) ;
m_webEngineFrame - > mCombox - > blockSignals ( false ) ;
2023-08-18 10:20:54 +08:00
} else if ( key = = CONTENT_FUZZY_SEARCH_KEY ) {
bool isFuzzy = m_gsettings - > get ( CONTENT_FUZZY_SEARCH_KEY ) . toBool ( ) ;
2022-12-07 14:04:21 +08:00
if ( isFuzzy ) {
m_fuzzyBtn - > setChecked ( true ) ;
} else {
m_preciseBtn - > setChecked ( true ) ;
}
2021-10-28 20:46:39 +08:00
}
} ) ;
2023-08-18 10:20:54 +08:00
connect ( m_fileIndexBtn , & kdk : : KSwitchButton : : stateChanged , this , [ = ] ( bool checked ) {
2021-10-28 20:46:39 +08:00
if ( m_gsettings & & m_gsettings - > keys ( ) . contains ( SEARCH_METHOD_KEY ) ) {
m_gsettings - > set ( SEARCH_METHOD_KEY , checked ) ;
}
2022-12-07 14:04:21 +08:00
} ) ;
2023-10-12 15:41:35 +08:00
connect ( m_contentIndexBtn , & kdk : : KSwitchButton : : pressed , this , [ & ] {
if ( ! m_contentIndexBtn - > isChecked ( ) ) {
QMessageBox msgBox ;
msgBox . setModal ( true ) ;
msgBox . setIcon ( QMessageBox : : Warning ) ;
msgBox . setText ( tr ( " Create file content index will increase the usage of memory and CPU, do you still want to open it? " ) ) ;
auto button = msgBox . addButton ( tr ( " OK " ) , QMessageBox : : AcceptRole ) ;
msgBox . addButton ( tr ( " Cancel " ) , QMessageBox : : RejectRole ) ;
msgBox . exec ( ) ;
if ( msgBox . clickedButton ( ) = = button ) {
m_contentIndexBtn - > setChecked ( true ) ;
}
}
} ) ;
2023-08-18 10:20:54 +08:00
connect ( m_contentIndexBtn , & kdk : : KSwitchButton : : stateChanged , this , [ = ] ( bool checked ) {
if ( m_gsettings & & m_gsettings - > keys ( ) . contains ( CONTENT_INDEX_ENABLE_KEY ) ) {
m_gsettings - > set ( CONTENT_INDEX_ENABLE_KEY , checked ) ;
}
} ) ;
2023-10-12 15:41:35 +08:00
connect ( m_ocrSwitchBtn , & kdk : : KSwitchButton : : stateChanged , this , [ = ] ( bool checked ) {
if ( m_gsettings & & m_gsettings - > keys ( ) . contains ( CONTENT_INDEX_ENABLE_OCR_KEY ) ) {
m_gsettings - > set ( CONTENT_INDEX_ENABLE_OCR_KEY , checked ) ;
}
} ) ;
2022-12-07 14:04:21 +08:00
connect ( m_indexMethodBtnGroup , QOverload < int , bool > : : of ( & QButtonGroup : : buttonToggled ) , [ = ] ( int id , bool checked ) {
if ( id = = - 3 ) { //fuzzyBtn's id
2023-08-18 10:20:54 +08:00
if ( m_gsettings & & m_gsettings - > keys ( ) . contains ( CONTENT_FUZZY_SEARCH_KEY ) ) {
m_gsettings - > set ( CONTENT_FUZZY_SEARCH_KEY , checked ) ;
2022-12-07 14:04:21 +08:00
}
}
2021-10-28 20:46:39 +08:00
} ) ;
2023-04-23 16:27:45 +08:00
connect ( m_webEngineFrame - > mCombox , QOverload < int > : : of ( & QComboBox : : currentIndexChanged ) , this , [ = ] {
2021-10-28 20:46:39 +08:00
if ( m_gsettings & & m_gsettings - > keys ( ) . contains ( WEB_ENGINE_KEY ) ) {
m_gsettings - > set ( WEB_ENGINE_KEY , m_webEngineFrame - > mCombox - > currentData ( ) . toString ( ) ) ;
}
} ) ;
} else {
2022-11-09 11:31:35 +08:00
qCritical ( ) < < " Gsettings of the search plugin for ukcc is not initialized! " ;
2023-08-18 10:20:54 +08:00
m_contentIndexBtn - > setEnabled ( false ) ;
2021-10-28 20:46:39 +08:00
m_webEngineFrame - > mCombox - > setEnabled ( false ) ;
}
2022-11-09 11:31:35 +08:00
2021-10-28 20:46:39 +08:00
return m_pluginWidget ;
}
const QString Search : : name ( ) const
{
return QStringLiteral ( " Search " ) ;
}
QString Search : : translationPath ( ) const
{
return QStringLiteral ( " /usr/share/ukui-search/search-ukcc-plugin/translations/%1.ts " ) ;
}
bool Search : : isShowOnHomePage ( ) const
{
return true ;
}
QIcon Search : : icon ( ) const
{
2022-05-19 09:48:50 +08:00
return QIcon : : fromTheme ( " search-symbolic " ) ;
2021-10-28 20:46:39 +08:00
}
bool Search : : isEnable ( ) const
{
return true ;
}
/**
* @ brief Search : : initUi 初 始 化 此 插 件 UI
*/
void Search : : initUi ( )
{
m_pluginWidget = new QWidget ;
2022-11-09 11:31:35 +08:00
m_pluginWidget - > setAttribute ( Qt : : WA_DeleteOnClose ) ;
2021-10-28 20:46:39 +08:00
m_mainLyt = new QVBoxLayout ( m_pluginWidget ) ;
m_pluginWidget - > setLayout ( m_mainLyt ) ;
2022-12-07 14:04:21 +08:00
m_titleLabel = new TitleLabel ( m_pluginWidget ) ;
2023-01-09 15:29:56 +08:00
//~ contents_path /Search/Search
2021-10-28 20:46:39 +08:00
m_titleLabel - > setText ( tr ( " Search " ) ) ;
m_mainLyt - > addWidget ( m_titleLabel ) ;
2022-12-07 14:04:21 +08:00
//设置网页搜索引擎部分的ui
2023-01-09 15:29:56 +08:00
//~ contents_path /Search/Default web searching engine
2022-12-07 14:04:21 +08:00
m_webEngineFrame = new ComboxFrame ( tr ( " Default web searching engine " ) , m_pluginWidget ) ;
m_webEngineFrame - > setContentsMargins ( 8 , 0 , 8 , 0 ) ; // ComboxFrame右侧自带8的边距, 左右边距各是16所以分别设为8
m_webEngineFrame - > setFixedHeight ( 56 ) ;
m_webEngineFrame - > setMinimumWidth ( 550 ) ;
m_webEngineFrame - > mCombox - > insertItem ( 0 , QIcon ( " /usr/share/ukui-search/search-ukcc-plugin/image/baidu.svg " ) , tr ( " baidu " ) , " baidu " ) ;
m_webEngineFrame - > mCombox - > insertItem ( 1 , QIcon ( " /usr/share/ukui-search/search-ukcc-plugin/image/sougou.svg " ) , tr ( " sougou " ) , " sougou " ) ;
m_webEngineFrame - > mCombox - > insertItem ( 2 , QIcon ( " /usr/share/ukui-search/search-ukcc-plugin/image/360.svg " ) , tr ( " 360 " ) , " 360 " ) ;
m_mainLyt - > addWidget ( m_webEngineFrame ) ;
2023-08-18 10:20:54 +08:00
//设置索引开关
m_indexTitleLabel = new TitleLabel ( m_pluginWidget ) ;
//~ contents_path /Search/Create index
m_indexTitleLabel - > setText ( tr ( " Create index " ) ) ;
m_mainLyt - > addSpacing ( 32 ) ;
m_mainLyt - > addWidget ( m_indexTitleLabel ) ;
m_fileIndexFrame = new QFrame ( m_pluginWidget ) ;
m_fileIndexFrame - > setFrameShape ( QFrame : : Shape : : Box ) ;
m_fileIndexFrame - > setFixedHeight ( 64 ) ;
m_fileIndexLyt = new QHBoxLayout ( m_fileIndexFrame ) ;
m_fileIndexLyt - > setContentsMargins ( 16 , 20 , 16 , 20 ) ;
m_fileIndexFrame - > setLayout ( m_fileIndexLyt ) ;
m_fileIndexLabel = new QLabel ( m_fileIndexFrame ) ;
//~ contents_path /Search/Create file index
m_fileIndexLabel - > setText ( tr ( " Create file index " ) ) ;
m_fileIndexLabel - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
m_fileIndexBtn = new kdk : : KSwitchButton ( m_fileIndexFrame ) ;
m_fileIndexLyt - > addWidget ( m_fileIndexLabel ) ;
m_fileIndexLyt - > addStretch ( ) ;
m_fileIndexLyt - > addWidget ( m_fileIndexBtn ) ;
m_mainLyt - > addWidget ( m_fileIndexFrame ) ;
//设置内容索引部分的ui
2021-10-28 20:46:39 +08:00
m_setFrame = new QFrame ( m_pluginWidget ) ;
m_setFrame - > setFrameShape ( QFrame : : Shape : : Box ) ;
m_setFrameLyt = new QVBoxLayout ( m_setFrame ) ;
m_setFrameLyt - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
m_setFrameLyt - > setSpacing ( 0 ) ;
2022-12-07 14:04:21 +08:00
//索引开关UI
2023-08-18 10:20:54 +08:00
m_contentIndexFrame = new QFrame ( m_setFrame ) ;
m_contentIndexFrame - > setMinimumWidth ( 550 ) ;
m_contentIndexFrame - > setFixedHeight ( 64 ) ;
m_contentIndexLyt = new QHBoxLayout ( m_contentIndexFrame ) ;
m_contentIndexLyt - > setContentsMargins ( 16 , 20 , 16 , 20 ) ;
m_contentIndexFrame - > setLayout ( m_contentIndexLyt ) ;
m_contentIndexLabel = new QLabel ( m_contentIndexFrame ) ;
//~ contents_path /Search/Create file content index
m_contentIndexLabel - > setText ( tr ( " Create file content index " ) ) ;
m_contentIndexLabel - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
m_contentIndexBtn = new kdk : : KSwitchButton ( m_contentIndexFrame ) ;
m_contentIndexLyt - > addWidget ( m_contentIndexLabel ) ;
m_contentIndexLyt - > addStretch ( ) ;
m_contentIndexLyt - > addWidget ( m_contentIndexBtn ) ;
2021-10-28 20:46:39 +08:00
2022-12-07 14:04:21 +08:00
m_indexSetFrame = new QFrame ( m_setFrame ) ;
2023-10-12 15:41:35 +08:00
m_indexSetFrame - > setFixedHeight ( 228 ) ;
2022-12-07 14:04:21 +08:00
m_indexSetLyt = new QVBoxLayout ( m_indexSetFrame ) ;
2023-10-12 15:41:35 +08:00
m_indexSetLyt - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
2022-12-07 14:04:21 +08:00
m_indexSetLyt - > setSpacing ( 0 ) ;
//分隔线
QFrame * line = new QFrame ( m_indexSetFrame ) ;
2021-10-28 20:46:39 +08:00
line - > setFixedHeight ( 1 ) ;
2023-10-12 15:41:35 +08:00
line - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
2021-10-28 20:46:39 +08:00
line - > setLineWidth ( 0 ) ;
line - > setFrameShape ( QFrame : : HLine ) ;
line - > setFrameShadow ( QFrame : : Sunken ) ;
2022-12-07 14:04:21 +08:00
//设置索引模式的ui
m_indexMethodFrame = new QFrame ( m_indexSetFrame ) ;
2023-08-18 10:20:54 +08:00
m_indexMethodFrame - > setFixedHeight ( 103 ) ;
2022-12-07 14:04:21 +08:00
m_indexMethodLyt = new QVBoxLayout ( m_indexMethodFrame ) ;
2023-10-12 15:41:35 +08:00
m_indexMethodLyt - > setContentsMargins ( 8 , 0 , 0 , 0 ) ; // radiobutton本身左边有8间距
2022-12-07 14:04:21 +08:00
m_indexMethodFrame - > setLayout ( m_indexMethodLyt ) ;
m_preciseBtnFrame = new QFrame ( m_indexMethodFrame ) ;
2023-08-18 10:20:54 +08:00
m_preciseBtnFrame - > setFixedHeight ( 50 ) ;
2022-12-07 14:04:21 +08:00
m_preciseBtnLyt = new QHBoxLayout ( m_preciseBtnFrame ) ;
m_preciseBtnFrame - > setLayout ( m_preciseBtnLyt ) ;
2023-01-09 15:29:56 +08:00
m_preciseBtn = new QRadioButton ( tr ( " Precise Search " ) , m_indexMethodFrame ) ;
2022-12-07 14:04:21 +08:00
m_preciseDescLabel = new QLabel ( m_indexMethodFrame ) ;
2023-08-18 10:20:54 +08:00
m_preciseDescLabel - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
2022-12-07 14:04:21 +08:00
m_preciseDescLabel - > setText ( tr ( " show the results that exactly match the keyword " ) ) ;
m_preciseDescLabel - > setEnabled ( false ) ;
m_preciseBtnLyt - > addWidget ( m_preciseBtn ) ;
m_preciseBtnLyt - > addWidget ( m_preciseDescLabel ) ;
m_preciseBtnLyt - > addStretch ( ) ;
m_fuzzyBtnFrame = new QFrame ( m_indexMethodFrame ) ;
2023-08-18 10:20:54 +08:00
m_fuzzyBtnFrame - > setFixedHeight ( 53 ) ;
2022-12-07 14:04:21 +08:00
m_fuzzyBtnLyt = new QHBoxLayout ( m_fuzzyBtnFrame ) ;
m_fuzzyBtnFrame - > setLayout ( m_fuzzyBtnLyt ) ;
m_fuzzyBtn = new QRadioButton ( tr ( " Fuzzy Search " ) , m_indexMethodFrame ) ;
m_fuzzyDescLabel = new QLabel ( m_indexMethodFrame ) ;
2023-08-18 10:20:54 +08:00
m_fuzzyDescLabel - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
2022-12-07 14:04:21 +08:00
m_fuzzyDescLabel - > setText ( tr ( " show more results that match the keyword " ) ) ;
m_fuzzyDescLabel - > setEnabled ( false ) ;
m_fuzzyBtnLyt - > addWidget ( m_fuzzyBtn ) ;
m_fuzzyBtnLyt - > addWidget ( m_fuzzyDescLabel ) ;
m_fuzzyBtnLyt - > addStretch ( ) ;
m_indexMethodBtnGroup = new QButtonGroup ( m_indexSetFrame ) ;
m_indexMethodBtnGroup - > addButton ( m_preciseBtn ) ;
m_indexMethodBtnGroup - > addButton ( m_fuzzyBtn ) ;
m_indexMethodBtnGroup - > setExclusive ( true ) ;
m_indexMethodLyt - > addWidget ( m_preciseBtnFrame ) ;
m_indexMethodLyt - > addWidget ( m_fuzzyBtnFrame ) ;
2023-08-18 10:20:54 +08:00
m_indexMethodLyt - > addSpacing ( 24 ) ;
2022-12-07 14:04:21 +08:00
2023-10-12 15:41:35 +08:00
//第二条分隔线
QFrame * ocrLine = new QFrame ( m_indexSetFrame ) ;
ocrLine - > setFixedHeight ( 1 ) ;
ocrLine - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
ocrLine - > setLineWidth ( 0 ) ;
ocrLine - > setFrameShape ( QFrame : : HLine ) ;
ocrLine - > setFrameShadow ( QFrame : : Sunken ) ;
//OCR开关
m_ocrSwitchFrame = new QFrame ( m_indexSetFrame ) ;
m_ocrSwitchFrame - > setMinimumWidth ( 550 ) ;
m_ocrSwitchFrame - > setFixedHeight ( 60 ) ;
m_ocrSwitchLyt = new QHBoxLayout ( m_contentIndexFrame ) ;
m_ocrSwitchLyt - > setContentsMargins ( 16 , 15 , 16 , 21 ) ;
m_ocrSwitchFrame - > setLayout ( m_ocrSwitchLyt ) ;
m_ocrSwitchLabel = new QLabel ( m_ocrSwitchFrame ) ;
//~ contents_path /Search/Use OCR to index the text in pictures
m_ocrSwitchLabel - > setText ( tr ( " Index the text in pictures " ) ) ;
m_ocrSwitchLabel - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
m_ocrSwitchBtn = new kdk : : KSwitchButton ( m_ocrSwitchFrame ) ;
m_ocrSwitchLyt - > addWidget ( m_ocrSwitchLabel ) ;
m_ocrSwitchLyt - > addStretch ( ) ;
m_ocrSwitchLyt - > addWidget ( m_ocrSwitchBtn ) ;
2022-12-07 14:04:21 +08:00
m_indexSetLyt - > addWidget ( line ) ;
m_indexSetLyt - > addWidget ( m_indexMethodFrame ) ;
2023-10-12 15:41:35 +08:00
m_indexSetLyt - > addWidget ( ocrLine ) ;
m_indexSetLyt - > addWidget ( m_ocrSwitchFrame ) ;
2022-12-07 14:04:21 +08:00
2023-08-18 10:20:54 +08:00
m_setFrameLyt - > addWidget ( m_contentIndexFrame ) ;
2022-12-07 14:04:21 +08:00
m_setFrameLyt - > addWidget ( m_indexSetFrame ) ;
m_indexSetFrame - > hide ( ) ; //默认隐藏,根据是否开索引来初始化
2021-10-28 20:46:39 +08:00
m_mainLyt - > addWidget ( m_setFrame ) ;
2022-12-07 14:04:21 +08:00
//添加搜索目录部分ui
m_searchDirTitleLabel = new TitleLabel ( m_pluginWidget ) ;
2023-01-09 15:29:56 +08:00
//~ contents_path /Search/Search Folders
2022-12-07 14:04:21 +08:00
m_searchDirTitleLabel - > setText ( tr ( " Search Folders " ) ) ;
m_searchDirDescLabel = new QLabel ( m_pluginWidget ) ;
m_searchDirDescLabel - > setContentsMargins ( 16 , 0 , 0 , 0 ) ; //TitleLabel自带16边距,QLabel需要自己设
m_searchDirDescLabel - > setEnabled ( false ) ;
m_searchDirDescLabel - > setWordWrap ( true ) ;
m_searchDirDescLabel - > setText ( tr ( " Following folders will be searched. You can set it by adding and removing folders. " ) ) ;
m_searchDirsFrame = new QFrame ( m_pluginWidget ) ;
m_searchDirsFrame - > setFrameShape ( QFrame : : Shape : : Box ) ;
m_searchDirLyt = new QVBoxLayout ( m_searchDirsFrame ) ;
m_searchDirsFrame - > setLayout ( m_searchDirLyt ) ;
m_searchDirLyt - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
m_searchDirLyt - > setSpacing ( 2 ) ;
m_searchDirLyt - > setDirection ( QBoxLayout : : BottomToTop ) ;
m_addSearchDirFrame = new QFrame ( m_searchDirsFrame ) ;
m_addSearchDirFrame - > setFrameShape ( QFrame : : Shape : : NoFrame ) ;
m_addSearchDirFrame - > setFixedHeight ( 60 ) ;
m_addSearchDirBtn = new AddBtn ( m_addSearchDirFrame ) ;
m_searchDirLyt - > addWidget ( m_addSearchDirBtn ) ;
m_mainLyt - > addSpacing ( 32 ) ;
m_mainLyt - > addWidget ( m_searchDirTitleLabel ) ;
m_mainLyt - > addWidget ( m_searchDirDescLabel ) ;
m_mainLyt - > addWidget ( m_searchDirsFrame ) ;
2021-10-28 20:46:39 +08:00
//设置黑名单文件夹部分的ui
m_blockDirTitleLabel = new TitleLabel ( m_pluginWidget ) ;
//~ contents_path /Search/Block Folders
m_blockDirTitleLabel - > setText ( tr ( " Block Folders " ) ) ;
m_blockDirDescLabel = new QLabel ( m_pluginWidget ) ;
2021-11-11 15:44:39 +08:00
m_blockDirDescLabel - > setContentsMargins ( 16 , 0 , 0 , 0 ) ; //TitleLabel自带16边距,QLabel需要自己设
m_blockDirDescLabel - > setEnabled ( false ) ;
2021-10-28 20:46:39 +08:00
m_blockDirDescLabel - > setWordWrap ( true ) ;
m_blockDirDescLabel - > setText ( tr ( " Following folders will not be searched. You can set it by adding and removing folders. " ) ) ;
m_blockDirsFrame = new QFrame ( m_pluginWidget ) ;
m_blockDirsFrame - > setFrameShape ( QFrame : : Shape : : Box ) ;
m_blockDirsLyt = new QVBoxLayout ( m_blockDirsFrame ) ;
m_blockDirsLyt - > setDirection ( QBoxLayout : : BottomToTop ) ;
m_blockDirsFrame - > setLayout ( m_blockDirsLyt ) ;
m_blockDirsLyt - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
m_blockDirsLyt - > setSpacing ( 2 ) ;
QFrame * m_addBlockDirFrame = new QFrame ( m_blockDirsFrame ) ;
m_addBlockDirFrame - > setFrameShape ( QFrame : : Shape : : NoFrame ) ;
m_addBlockDirFrame - > setFixedHeight ( 60 ) ;
2022-08-17 10:04:24 +08:00
m_addBlockDirWidget = new AddBtn ( m_addBlockDirFrame ) ;
2021-10-28 20:46:39 +08:00
m_blockDirsLyt - > addWidget ( m_addBlockDirWidget ) ;
m_mainLyt - > addSpacing ( 32 ) ;
m_mainLyt - > addWidget ( m_blockDirTitleLabel ) ;
m_mainLyt - > addWidget ( m_blockDirDescLabel ) ;
m_mainLyt - > addWidget ( m_blockDirsFrame ) ;
m_mainLyt - > addStretch ( ) ;
2021-11-29 15:02:45 +08:00
m_mainLyt - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
2021-10-28 20:46:39 +08:00
}
2022-12-27 09:41:32 +08:00
void Search : : refreshSearchDirsUi ( )
{
qWarning ( ) < < " ==========refreshUi!!!! " ;
while ( m_searchDirLyt - > count ( ) - 1 ) {
QWidget * widget = m_searchDirLyt - > itemAt ( m_searchDirLyt - > count ( ) - 1 ) - > widget ( ) ;
m_searchDirLyt - > removeWidget ( widget ) ;
widget - > deleteLater ( ) ;
}
initSearchDirs ( ) ;
}
2022-12-07 14:04:21 +08:00
void Search : : initFileDialog ( )
{
//添加黑名单对话框
m_blockDirDialog = new QFileDialog ( m_pluginWidget ) ;
// fileDialog->setFileMode(QFileDialog::Directory); //允许查看文件和文件夹,但只允许选择文件夹
m_blockDirDialog - > setFileMode ( QFileDialog : : DirectoryOnly ) ; //只允许查看文件夹
// fileDialog->setViewMode(QFileDialog::Detail);
m_blockDirDialog - > setDirectory ( QDir : : homePath ( ) ) ;
m_blockDirDialog - > setNameFilter ( tr ( " Directories " ) ) ;
m_blockDirDialog - > setWindowTitle ( tr ( " select blocked folder " ) ) ;
m_blockDirDialog - > setLabelText ( QFileDialog : : Accept , tr ( " Select " ) ) ;
m_blockDirDialog - > setLabelText ( QFileDialog : : LookIn , tr ( " Position: " ) ) ;
m_blockDirDialog - > setLabelText ( QFileDialog : : FileName , tr ( " FileName: " ) ) ;
m_blockDirDialog - > setLabelText ( QFileDialog : : FileType , tr ( " FileType: " ) ) ;
m_blockDirDialog - > setLabelText ( QFileDialog : : Reject , tr ( " Cancel " ) ) ;
connect ( m_blockDirDialog , & QFileDialog : : finished , [ = ] ( int result ) {
qWarning ( ) < < " ======= " < < result ;
if ( result = = QDialog : : Accepted ) {
QString selectedDir = m_blockDirDialog - > selectedFiles ( ) . first ( ) ;
qDebug ( ) < < " Selected a folder in onBtnAddClicked(): " < < selectedDir ;
int returnCode = setBlockDir ( selectedDir , true ) ;
switch ( returnCode ) {
2023-04-25 10:14:43 +08:00
case ReturnCode : : Successful :
2022-12-07 14:04:21 +08:00
qDebug ( ) < < " Add blocked folder succeed! path = " < < selectedDir ;
getBlockDirs ( ) ;
break ;
2023-04-25 10:14:43 +08:00
case ReturnCode : : Duplicated :
2022-12-07 14:04:21 +08:00
qWarning ( ) < < " Add blocked folder failed, its parent dir is exist! path = " < < selectedDir ;
2023-04-25 10:14:43 +08:00
QMessageBox : : warning ( m_pluginWidget , tr ( " Warning " ) , tr ( " Add blocked folder failed, its parent dir has been added! " ) ) ;
break ;
case ReturnCode : : NotExists :
qWarning ( ) < < " Add blocked folder failed, it's not exist! path = " < < selectedDir ;
QMessageBox : : warning ( m_pluginWidget , tr ( " Warning " ) , tr ( " Add blocked folder failed, choosen path is not exist! " ) ) ;
2022-12-07 14:04:21 +08:00
break ;
case ReturnCode : : HasBeenBlocked :
qWarning ( ) < < " Add blocked folder failed, it has been already blocked! path = " < < selectedDir ;
2023-04-25 10:14:43 +08:00
QMessageBox : : warning ( m_pluginWidget , tr ( " Warning " ) , tr ( " Add blocked folder failed, it has already been blocked! " ) ) ;
break ;
case ReturnCode : : Hidden :
qWarning ( ) < < " Add blocked folder failed, it has been hidden! path = " < < selectedDir ;
QMessageBox : : warning ( m_pluginWidget , tr ( " Warning " ) , tr ( " Add search folder failed, hidden path is not supported! " ) ) ;
2022-12-07 14:04:21 +08:00
break ;
default :
break ;
}
}
} ) ;
//添加搜索目录对话框
m_searchDirDialog = new QFileDialog ( m_pluginWidget ) ;
m_searchDirDialog - > setFileMode ( QFileDialog : : DirectoryOnly ) ; //只允许查看文件夹
m_searchDirDialog - > setDirectory ( QDir : : homePath ( ) ) ;
m_searchDirDialog - > setNameFilter ( tr ( " Directories " ) ) ;
m_searchDirDialog - > setWindowTitle ( tr ( " select search folder " ) ) ;
m_searchDirDialog - > setLabelText ( QFileDialog : : Accept , tr ( " Select " ) ) ;
m_searchDirDialog - > setLabelText ( QFileDialog : : LookIn , tr ( " Position: " ) ) ;
m_searchDirDialog - > setLabelText ( QFileDialog : : FileName , tr ( " FileName: " ) ) ;
m_searchDirDialog - > setLabelText ( QFileDialog : : FileType , tr ( " FileType: " ) ) ;
m_searchDirDialog - > setLabelText ( QFileDialog : : Reject , tr ( " Cancel " ) ) ;
connect ( m_searchDirDialog , & QFileDialog : : finished , this , [ = ] ( int result ) {
if ( result = = QDialog : : Accepted ) {
QString selectedDir = m_searchDirDialog - > selectedFiles ( ) . first ( ) ;
qDebug ( ) < < " Selected a folder in onAddSearchDirBtnClicked(): " < < selectedDir ;
int returnCode = setSearchDir ( selectedDir , true ) ;
switch ( returnCode ) {
2023-04-25 10:14:43 +08:00
case ReturnCode : : Successful :
2022-12-07 14:04:21 +08:00
qDebug ( ) < < " Add search folder succeed! path = " < < selectedDir ;
break ;
2023-04-25 10:14:43 +08:00
case ReturnCode : : Duplicated :
2022-12-07 14:04:21 +08:00
QMessageBox : : warning ( m_pluginWidget , tr ( " Warning " ) , tr ( " Add search folder failed, choosen path or its parent dir has been added! " ) ) ;
break ;
2023-04-25 10:14:43 +08:00
case ReturnCode : : UnderBlackList :
2022-12-07 14:04:21 +08:00
QMessageBox : : warning ( m_pluginWidget , tr ( " Warning " ) , tr ( " Add search folder failed, choosen path is not supported currently! " ) ) ;
break ;
2023-04-25 10:14:43 +08:00
case ReturnCode : : RepeatMount1 :
2022-12-07 14:04:21 +08:00
QMessageBox : : warning ( m_pluginWidget , tr ( " Warning " ) , tr ( " Add search folder failed, choosen path is in repeat mounted devices and another path which is in the same device has been added! " ) ) ;
break ;
2023-04-25 10:14:43 +08:00
case ReturnCode : : RepeatMount2 :
2022-12-07 14:04:21 +08:00
QMessageBox : : warning ( m_pluginWidget , tr ( " Warning " ) , tr ( " Add search folder failed, another path which is in the same device has been added! " ) ) ;
break ;
2023-04-25 10:14:43 +08:00
case ReturnCode : : NotExists :
2022-12-07 14:04:21 +08:00
QMessageBox : : warning ( m_pluginWidget , tr ( " Warning " ) , tr ( " Add search folder failed, choosen path is not exists! " ) ) ;
break ;
2023-04-25 10:14:43 +08:00
case ReturnCode : : Hidden :
QMessageBox : : warning ( m_pluginWidget , tr ( " Warning " ) , tr ( " Add search folder failed, hidden path is not supported! " ) ) ;
break ;
2023-05-18 09:50:48 +08:00
case ReturnCode : : PermissionDenied :
QMessageBox : : warning ( m_pluginWidget , tr ( " Warning " ) , tr ( " Add search folder failed, permission denied! " ) ) ;
break ;
2022-12-07 14:04:21 +08:00
default :
break ;
}
}
} ) ;
}
2021-10-28 20:46:39 +08:00
/**
* @ brief Search : : getBlockDirs 从 配 置 文 件 获 取 黑 名 单 并 将 黑 名 单 列 表 传 入
*/
void Search : : getBlockDirs ( )
{
2023-05-06 09:19:50 +08:00
if ( m_interface - > isValid ( ) ) {
QDBusReply < QStringList > reply = m_interface - > call ( " blockDirsForUser " ) ;
if ( reply . isValid ( ) ) {
m_blockDirs = reply . value ( ) ;
2023-04-12 15:05:25 +08:00
}
}
2021-10-28 20:46:39 +08:00
}
/**
* @ brief Search : : setBlockDir 尝 试 写 入 新 的 黑 名 单 文 件 夹
* @ param dirPath 待 添 加 到 黑 名 单 的 文 件 夹 路 径
* @ param is_add 是 否 是 在 添 加 黑 名 单
* @ return 0 成 功 ! 0 添 加 失 败 的 错 误 代 码
*/
int Search : : setBlockDir ( const QString & dirPath , const bool & is_add )
{
2023-04-25 10:14:43 +08:00
if ( ! QFile : : exists ( dirPath ) ) {
2023-09-13 17:34:18 +08:00
removeBlockDirFromList ( dirPath ) ;
2023-04-25 10:14:43 +08:00
return ReturnCode : : NotExists ;
}
QStringList pathSections = dirPath . split ( " / " ) ;
for ( const QString & section : pathSections ) {
if ( section . startsWith ( " . " ) ) {
return ReturnCode : : Hidden ;
2021-10-28 20:46:39 +08:00
}
2023-04-25 10:14:43 +08:00
}
2023-05-06 09:19:50 +08:00
if ( ! m_interface - > isValid ( ) ) {
return ReturnCode : : DirWatcherError ;
}
2023-04-25 10:14:43 +08:00
if ( ! is_add ) {
2021-10-28 20:46:39 +08:00
//删除黑名单目录
2023-05-06 09:19:50 +08:00
m_interface - > call ( " removeBlockDirOfUser " , dirPath ) ;
2021-10-28 20:46:39 +08:00
removeBlockDirFromList ( dirPath ) ;
2023-04-25 10:14:43 +08:00
return ReturnCode : : Successful ;
2021-10-28 20:46:39 +08:00
}
2023-04-12 15:05:25 +08:00
QStringList oldBlockList = m_blockDirs ;
getBlockDirs ( ) ;
for ( const QString & oldBlockDir : oldBlockList ) {
if ( ! m_blockDirs . contains ( oldBlockDir ) ) {
removeBlockDirFromList ( oldBlockDir ) ;
}
}
2021-10-28 20:46:39 +08:00
for ( QString dir : m_blockDirs ) {
2023-04-12 15:05:25 +08:00
if ( dirPath = = dir ) {
2021-10-28 20:46:39 +08:00
return ReturnCode : : HasBeenBlocked ;
}
2023-04-12 15:05:25 +08:00
if ( dirPath . startsWith ( dir + " / " ) | | dir = = " / " ) {
2023-04-25 10:14:43 +08:00
return ReturnCode : : Duplicated ;
2021-10-28 20:46:39 +08:00
}
//有它的子文件夹已被添加,删除这些子文件夹
2023-04-12 15:05:25 +08:00
if ( dir . startsWith ( dirPath + " / " ) | | dirPath = = " / " ) {
removeBlockDirFromList ( dir ) ;
2021-10-28 20:46:39 +08:00
}
}
2023-05-06 09:19:50 +08:00
m_interface - > call ( " addBlockDirOfUser " , dirPath ) ;
2021-10-28 20:46:39 +08:00
appendBlockDirToList ( dirPath ) ;
2023-04-25 10:14:43 +08:00
return ReturnCode : : Successful ;
2021-10-28 20:46:39 +08:00
}
/**
* @ brief Search : : initBlockDirsList 初 始 化 黑 名 单 列 表
*/
void Search : : initBlockDirsList ( )
{
getBlockDirs ( ) ;
for ( QString path : m_blockDirs ) {
2023-04-12 15:05:25 +08:00
if ( QFileInfo ( path ) . isDir ( ) /*&& path.startsWith("home")*/ ) {
appendBlockDirToList ( path ) ;
2021-10-28 20:46:39 +08:00
}
}
}
2022-12-07 14:04:21 +08:00
void Search : : initSearchDirs ( )
{
if ( m_interface - > isValid ( ) ) {
QDBusReply < QStringList > reply = m_interface - > call ( " currentIndexableDir " ) ;
if ( reply . isValid ( ) ) {
for ( const QString & path : reply . value ( ) ) {
appendSearchDirToList ( path ) ;
}
} else {
qCritical ( ) < < " Fail to call currentIndexableDir. " ;
}
} else {
qCritical ( ) < < " fileindex dbus error: " < < m_interface - > lastError ( ) ;
}
}
int Search : : setSearchDir ( const QString & dirPath , const bool isAdd )
{
2023-05-18 09:50:48 +08:00
QFileInfo info ( dirPath ) ;
if ( ! ( info . isExecutable ( ) & & info . isReadable ( ) ) ) {
2023-09-13 17:34:18 +08:00
//路径不存在时从ui上删除
if ( ! isAdd ) {
this - > removeSearchDirFromList ( dirPath ) ;
}
2023-05-18 09:50:48 +08:00
return ReturnCode : : PermissionDenied ;
}
2022-12-07 14:04:21 +08:00
if ( ! m_setSearchDirInterface - > isValid ( ) ) {
2023-04-25 10:14:43 +08:00
return ReturnCode : : DirWatcherError ;
}
QStringList pathSections = dirPath . split ( " / " ) ;
for ( const QString & section : pathSections ) {
if ( section . startsWith ( " . " ) ) {
return ReturnCode : : Hidden ;
}
2022-12-07 14:04:21 +08:00
}
if ( isAdd ) {
2023-09-13 17:34:18 +08:00
QDBusReply < QStringList > indexDirsRpl = m_interface - > call ( " currentSearchDirs " ) ;
2022-12-07 14:04:21 +08:00
QStringList indexDirs ;
if ( indexDirsRpl . isValid ( ) ) {
indexDirs = indexDirsRpl . value ( ) ;
}
2023-09-13 17:34:18 +08:00
QDBusReply < int > appendIndexRpl = m_setSearchDirInterface - > call ( " appendSearchDir " , dirPath ) ;
2022-12-07 14:04:21 +08:00
if ( appendIndexRpl . isValid ( ) ) {
2023-04-08 16:54:01 +08:00
if ( appendIndexRpl . value ( ) = = 0 ) {
2022-12-07 14:04:21 +08:00
this - > appendSearchDirToList ( dirPath ) ;
if ( ! indexDirs . isEmpty ( ) ) {
2023-09-13 17:34:18 +08:00
indexDirsRpl = m_interface - > call ( " currentSearchDirs " ) ;
2022-12-07 14:04:21 +08:00
if ( indexDirsRpl . isValid ( ) & & ( indexDirsRpl . value ( ) . size ( ) < indexDirs . size ( ) + 1 ) ) {
QStringList dirsAfterAppend = indexDirsRpl . value ( ) ;
for ( const QString & dir : indexDirs ) {
if ( ! dirsAfterAppend . contains ( dir ) ) {
this - > removeSearchDirFromList ( dir ) ;
}
}
}
}
}
return appendIndexRpl . value ( ) ;
}
} else {
2023-09-13 17:34:18 +08:00
this - > removeSearchDirFromList ( dirPath ) ;
m_setSearchDirInterface - > call ( " removeSearchDir " , dirPath ) ;
2022-12-07 14:04:21 +08:00
}
2023-04-25 10:14:43 +08:00
return ReturnCode : : Successful ;
2022-12-07 14:04:21 +08:00
}
void Search : : appendSearchDirToList ( const QString & path )
{
HoverWidget * dirWidget = new HoverWidget ( path , m_searchDirsFrame ) ;
dirWidget - > setObjectName ( path ) ;
dirWidget - > setMinimumWidth ( 550 ) ;
QHBoxLayout * dirWidgetLyt = new QHBoxLayout ( dirWidget ) ;
dirWidgetLyt - > setSpacing ( 8 ) ;
dirWidgetLyt - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
dirWidget - > setLayout ( dirWidgetLyt ) ;
QFrame * dirFrame = new QFrame ( dirWidget ) ;
dirFrame - > setFrameShape ( QFrame : : Shape : : Box ) ;
dirFrame - > setFixedHeight ( 50 ) ;
QHBoxLayout * dirFrameLayout = new QHBoxLayout ( dirFrame ) ;
dirFrameLayout - > setSpacing ( 16 ) ;
dirFrameLayout - > setContentsMargins ( 16 , 0 , 16 , 0 ) ;
QLabel * iconLabel = new QLabel ( dirFrame ) ;
QLabel * pathLabel = new QLabel ( dirFrame ) ;
dirFrameLayout - > addWidget ( iconLabel ) ;
iconLabel - > setPixmap ( QIcon : : fromTheme ( " inode-directory " ) . pixmap ( QSize ( 24 , 24 ) ) ) ;
pathLabel - > setText ( path ) ;
dirFrameLayout - > addWidget ( pathLabel ) ;
dirFrameLayout - > addStretch ( ) ;
QPushButton * delBtn = new QPushButton ( dirFrame ) ;
delBtn - > setIcon ( QIcon : : fromTheme ( " edit-delete-symbolic " ) ) ;
delBtn - > setProperty ( " useButtonPalette " , true ) ;
delBtn - > setFixedSize ( 30 , 30 ) ;
delBtn - > setToolTip ( tr ( " delete " ) ) ;
delBtn - > setFlat ( true ) ;
delBtn - > hide ( ) ;
dirFrameLayout - > addWidget ( delBtn ) ;
dirWidgetLyt - > addWidget ( dirFrame ) ;
QFrame * line = new QFrame ( dirWidget ) ;
line - > setObjectName ( path ) ;
line - > setFixedHeight ( 1 ) ;
line - > setLineWidth ( 0 ) ;
line - > setFrameShape ( QFrame : : HLine ) ;
line - > setFrameShadow ( QFrame : : Sunken ) ;
m_searchDirLyt - > addWidget ( line ) ;
m_searchDirLyt - > addWidget ( dirWidget ) ;
connect ( delBtn , & QPushButton : : clicked , this , [ = ] ( ) {
setSearchDir ( path , false ) ;
} ) ;
connect ( dirWidget , & HoverWidget : : enterWidget , this , [ = ] ( ) {
delBtn - > show ( ) ;
} ) ;
connect ( dirWidget , & HoverWidget : : leaveWidget , this , [ = ] ( ) {
delBtn - > hide ( ) ;
} ) ;
}
void Search : : removeSearchDirFromList ( const QString & path )
{
HoverWidget * delDirWidget = m_searchDirsFrame - > findChild < HoverWidget * > ( path ) ;
if ( delDirWidget ) {
m_searchDirLyt - > removeWidget ( delDirWidget ) ;
delDirWidget - > deleteLater ( ) ;
qDebug ( ) < < " Delete folder of search succeed! path = " < < path ;
}
QFrame * line = m_searchDirsFrame - > findChild < QFrame * > ( path ) ;
if ( line ) {
m_searchDirLyt - > removeWidget ( line ) ;
line - > deleteLater ( ) ;
qDebug ( ) < < " Delete line of search folder: " < < path ;
}
}
2021-10-28 20:46:39 +08:00
void Search : : appendBlockDirToList ( const QString & path )
{
HoverWidget * dirWidget = new HoverWidget ( path , m_blockDirsFrame ) ;
dirWidget - > setObjectName ( path ) ;
dirWidget - > setMinimumWidth ( 550 ) ;
QHBoxLayout * dirWidgetLyt = new QHBoxLayout ( dirWidget ) ;
dirWidgetLyt - > setSpacing ( 8 ) ;
dirWidgetLyt - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
dirWidget - > setLayout ( dirWidgetLyt ) ;
QFrame * dirFrame = new QFrame ( dirWidget ) ;
dirFrame - > setFrameShape ( QFrame : : Shape : : Box ) ;
dirFrame - > setFixedHeight ( 50 ) ;
QHBoxLayout * dirFrameLayout = new QHBoxLayout ( dirFrame ) ;
dirFrameLayout - > setSpacing ( 16 ) ;
dirFrameLayout - > setContentsMargins ( 16 , 0 , 16 , 0 ) ;
QLabel * iconLabel = new QLabel ( dirFrame ) ;
QLabel * pathLabel = new QLabel ( dirFrame ) ;
dirFrameLayout - > addWidget ( iconLabel ) ;
iconLabel - > setPixmap ( QIcon : : fromTheme ( " inode-directory " ) . pixmap ( QSize ( 24 , 24 ) ) ) ;
pathLabel - > setText ( path ) ;
dirFrameLayout - > addWidget ( pathLabel ) ;
dirFrameLayout - > addStretch ( ) ;
QPushButton * delBtn = new QPushButton ( dirFrame ) ;
2022-10-10 11:14:54 +08:00
delBtn - > setIcon ( QIcon : : fromTheme ( " edit-delete-symbolic " ) ) ;
delBtn - > setProperty ( " useButtonPalette " , true ) ;
2021-10-28 20:46:39 +08:00
delBtn - > setFixedSize ( 30 , 30 ) ;
delBtn - > setToolTip ( tr ( " delete " ) ) ;
delBtn - > setFlat ( true ) ;
delBtn - > hide ( ) ;
dirFrameLayout - > addWidget ( delBtn ) ;
dirWidgetLyt - > addWidget ( dirFrame ) ;
// dirWidgetLyt->addWidget(delBtn);
QFrame * line = new QFrame ( m_blockDirsFrame ) ;
2022-12-07 14:04:21 +08:00
line - > setObjectName ( path ) ;
2021-10-28 20:46:39 +08:00
line - > setFixedHeight ( 1 ) ;
line - > setLineWidth ( 0 ) ;
line - > setFrameShape ( QFrame : : HLine ) ;
line - > setFrameShadow ( QFrame : : Sunken ) ;
// m_setFrameLyt->addWidget(line);
m_blockDirsLyt - > addWidget ( line ) ;
m_blockDirsLyt - > addWidget ( dirWidget ) ;
connect ( delBtn , & QPushButton : : clicked , this , [ = ] ( ) {
setBlockDir ( path , false ) ;
getBlockDirs ( ) ;
} ) ;
connect ( dirWidget , & HoverWidget : : enterWidget , this , [ = ] ( ) {
delBtn - > show ( ) ;
} ) ;
connect ( dirWidget , & HoverWidget : : leaveWidget , this , [ = ] ( ) {
delBtn - > hide ( ) ;
} ) ;
}
void Search : : removeBlockDirFromList ( const QString & path )
{
HoverWidget * delDirWidget = m_blockDirsFrame - > findChild < HoverWidget * > ( path ) ;
if ( delDirWidget ) {
2022-12-07 14:04:21 +08:00
qDebug ( ) < < " Delete blocked folder succeed! path = " < < path ;
m_blockDirsLyt - > removeWidget ( delDirWidget ) ;
delDirWidget - > deleteLater ( ) ;
}
QFrame * line = m_blockDirsFrame - > findChild < QFrame * > ( path ) ;
if ( line ) {
m_blockDirsLyt - > removeWidget ( line ) ;
line - > deleteLater ( ) ;
qDebug ( ) < < " Delete line of blocked folder: " < < path ;
2021-10-28 20:46:39 +08:00
}
}
void Search : : setupConnection ( )
{
2022-12-07 14:04:21 +08:00
connect ( m_addBlockDirWidget , & QPushButton : : clicked , this , & Search : : onBtnAddBlockFolderClicked ) ;
2021-10-28 20:46:39 +08:00
}
2022-12-07 14:04:21 +08:00
void Search : : onBtnAddBlockFolderClicked ( )
2021-10-28 20:46:39 +08:00
{
2022-12-08 17:54:45 +08:00
// m_blockDirDialog->open();
m_blockDirDialog - > exec ( ) ;
2022-12-07 14:04:21 +08:00
}
void Search : : onAddSearchDirBtnClicked ( )
{
2022-12-08 17:54:45 +08:00
//open()会导致cpu占用拉满
// m_searchDirDialog->open();
m_searchDirDialog - > exec ( ) ;
2021-10-28 20:46:39 +08:00
}