/*************************************************************************** * Copyright (C) 2004-2007 by Georgy Yunaev, gyunaev@ulduzsoft.com * * Please do not use email address above for bug reports; see * * the README file * * * * 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 2 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, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "libchmfile.h" #include "kchmsearchwindow.h" #include "kchmmainwindow.h" #include "kchmconfig.h" #include "kchmlistitemtooltip.h" #include "kchmtreeviewitem.h" #include "kchmsearchengine.h" #include "kchmsearchwindow.moc" KCHMSearchWindow::KCHMSearchWindow( TQWidget * parent, const char * name, WFlags f ) : TQWidget (parent, name, f) { TQVBoxLayout * layout = new TQVBoxLayout (this); layout->setMargin(6); layout->setSpacing(6); // Labels and TQHBoxLayout * labellayout = new TQHBoxLayout(); labellayout->addWidget( new TQLabel( i18n( "Type in word(s) to search for:"), this) ); labellayout->addStretch( 10 ); KCHMClickableLabel * helplink = new KCHMClickableLabel( i18n( "Help"), this ); connect( helplink, TQT_SIGNAL( clicked() ), this, TQT_SLOT( onHelpClicked() ) ); helplink->setCursor( TQCursor( TQt::PointingHandCursor ) ); labellayout->addWidget ( helplink ); layout->addLayout( labellayout ); m_searchQuery = new TQComboBox (TRUE, this); m_searchQuery->setFocus(); m_searchQuery->setMaxCount (10); m_searchQuery->setSizePolicy ( TQSizePolicy ( TQSizePolicy::Expanding, TQSizePolicy::Fixed ) ); TQPushButton * searchButton = new TQPushButton ( i18n("Go"), this); searchButton->setSizePolicy ( TQSizePolicy ( TQSizePolicy::Minimum, TQSizePolicy::Fixed ) ); TQHBoxLayout * hlayout = new TQHBoxLayout ( layout ); hlayout->addWidget ( m_searchQuery ); hlayout->addWidget ( searchButton ); m_searchList = new KQListView (this); m_searchList->addColumn( i18n( "Title" ) ); m_searchList->addColumn( i18n( "Location" ) ); m_searchList->setShowToolTips(true); connect( searchButton, TQT_SIGNAL( clicked () ), this, TQT_SLOT( onReturnPressed() ) ); connect( m_searchQuery->lineEdit(), TQT_SIGNAL( returnPressed() ), this, TQT_SLOT( onReturnPressed() ) ); connect( m_searchList, TQT_SIGNAL( doubleClicked ( TQListViewItem *, const TQPoint &, int) ), this, TQT_SLOT( onDoubleClicked ( TQListViewItem *, const TQPoint &, int) ) ); connect( m_searchList, TQT_SIGNAL( contextMenuRequested( TQListViewItem *, const TQPoint& , int ) ), this, TQT_SLOT( slotContextMenuRequested ( TQListViewItem *, const TQPoint &, int ) ) ); //layout->addSpacing (10); layout->addWidget (m_searchList); new KCHMListItemTooltip( m_searchList ); m_contextMenu = 0; m_searchEngine = 0; } void KCHMSearchWindow::invalidate( ) { m_searchList->clear(); m_searchQuery->clear(); m_searchQuery->lineEdit()->clear(); delete m_searchEngine; m_searchEngine = 0; } void KCHMSearchWindow::onReturnPressed( ) { TQStringList results; TQString text = m_searchQuery->lineEdit()->text(); if ( text.isEmpty() ) return; m_searchList->clear(); if ( searchQuery( text, &results ) ) { if ( !results.empty() ) { for ( unsigned int i = 0; i < results.size(); i++ ) { new KCMSearchTreeViewItem ( m_searchList, ::mainWindow->chmFile()->getTopicByUrl( results[i] ), results[i], results[i] ); } ::mainWindow->showInStatusBar( i18n( "Search returned %1 result(s)" ) . arg(results.size()) ); } else ::mainWindow->showInStatusBar( i18n( "Search returned no results") ); } else ::mainWindow->showInStatusBar( i18n( "Search failed") ); } void KCHMSearchWindow::onDoubleClicked( TQListViewItem *item, const TQPoint &, int) { if ( !item ) return; KCMSearchTreeViewItem * treeitem = (KCMSearchTreeViewItem *) item; ::mainWindow->openPage( treeitem->getUrl(), OPF_ADD2HISTORY ); } void KCHMSearchWindow::restoreSettings( const KCHMSettings::search_saved_settings_t & settings ) { for ( unsigned int i = 0; i < settings.size(); i++ ) m_searchQuery->insertItem (settings[i]); } void KCHMSearchWindow::saveSettings( KCHMSettings::search_saved_settings_t & settings ) { settings.clear(); for ( int i = 0; i < m_searchQuery->count(); i++ ) settings.push_back (m_searchQuery->text(i)); } void KCHMSearchWindow::onHelpClicked( ) { if ( appConfig.m_useSearchEngine == KCHMConfig::SEARCH_USE_MINE ) { TQMessageBox::information ( this, i18n( "How to use search"), i18n( "

The improved search engine allows you to search for a word, symbol or phrase, which is set of words and symbols included in quotes. Only the documents which include all the terms speficide in th search query are shown; no prefixes needed.

Unlike MS CHM internal search index, my improved search engine indexes everything, including special symbols. Therefore it is possible to search (and find!) for something like $q = new ChmFile();. This search also fully supports Unicode, which means that you can search in non-English documents.

If you want to search for a quote symbol, use quotation mark instead. The engine treats a quote and a quotation mark as the same symbol, which allows to use them in phrases.") ); } else { TQMessageBox::information ( this, i18n( "How to use search"), i18n( "The search query can contain a few prefixes.\nA set of words inside the quote marks mean that you are searching for exact phrase.\nA word with minus sign means that it should be absent in the search result.\nA word with plus mark or without any mark means that it must be present in the search result.\n\nNote that only letters and digits are indexed.\nYou cannot search for non-character symbols other than underscope, and those symbols will be removed from the search query.\nFor example, search for 'C' will give the same result as searching for 'C++'.") ); } } void KCHMSearchWindow::slotContextMenuRequested( TQListViewItem * item, const TQPoint & point, int ) { if ( !m_contextMenu ) m_contextMenu = ::mainWindow->currentBrowser()->createListItemContextMenu( this ); if( item ) { KCMSearchTreeViewItem * treeitem = (KCMSearchTreeViewItem *) item; ::mainWindow->currentBrowser()->setTabKeeper( treeitem->getUrl() ); m_contextMenu->popup( point ); } } bool KCHMSearchWindow::initSearchEngine( ) { m_searchEngine = new KCHMSearchEngine(); if ( !m_searchEngine->loadOrGenerateIndex() ) { delete m_searchEngine; m_searchEngine = 0; return false; } return true; } void KCHMSearchWindow::execSearchQueryInGui( const TQString & query ) { m_searchQuery->lineEdit()->setText( query ); onReturnPressed(); } bool KCHMSearchWindow::searchQuery( const TQString & query, TQStringList * results ) { if ( appConfig.m_useSearchEngine == KCHMConfig::SEARCH_USE_MINE ) { if ( !m_searchEngine && !initSearchEngine() ) return false; } else if ( !::mainWindow->chmFile()->hasSearchTable() ) { TQMessageBox::information ( this, i18n( "Search is not available" ), i18n( "

The search feature is not avaiable for this chm file." "

The old search engine depends on indexes present in chm files itself. Not every chm file has an index; it is set up" " during chm file creation. Therefore if the search index was not created during chm file creation, this makes search " "impossible.

Solution: use new search engine (menu Settings/Advanced), which generates its own index.") ); return false; } if ( query.isEmpty() ) return false; KCHMShowWaitCursor waitcursor; bool result; if ( appConfig.m_useSearchEngine == KCHMConfig::SEARCH_USE_MINE ) result = m_searchEngine->searchQuery( query, results ); else result = ::mainWindow->chmFile()->searchQuery( query, results ); return result; }