2007-11-14 22:18:48 -05:00
|
|
|
/****************************************************************
|
|
|
|
* RShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006, crypton
|
|
|
|
*
|
|
|
|
* 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
|
2009-08-25 16:49:50 -04:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
2007-11-14 22:18:48 -05:00
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef _SEARCHDIALOG_H
|
|
|
|
#define _SEARCHDIALOG_H
|
|
|
|
|
2010-08-06 05:40:23 -04:00
|
|
|
#include <retroshare/rstypes.h>
|
2007-11-14 22:18:48 -05:00
|
|
|
#include "ui_SearchDialog.h"
|
2010-07-23 14:52:58 -04:00
|
|
|
#include "mainpage.h"
|
|
|
|
|
|
|
|
class AdvancedSearchDialog;
|
|
|
|
class Expression;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2010-02-14 13:56:56 -05:00
|
|
|
#define FRIEND_SEARCH 1
|
|
|
|
#define ANONYMOUS_SEARCH 2
|
2009-08-25 16:49:50 -04:00
|
|
|
class SearchDialog : public MainPage
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
public:
|
|
|
|
/** Default Constructor */
|
|
|
|
SearchDialog(QWidget *parent = 0);
|
|
|
|
/** Default Destructor */
|
2011-02-17 11:30:59 -05:00
|
|
|
~SearchDialog();
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2011-05-04 06:22:49 -04:00
|
|
|
void searchKeywords(const QString& keywords);
|
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
public slots:
|
|
|
|
void updateFiles(qulonglong request_id,FileDetail file) ;
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
private slots:
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/** Create the context popup menu and it's submenus */
|
|
|
|
void searchtableWidgetCostumPopupMenu( QPoint point );
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2011-02-09 16:44:49 -05:00
|
|
|
void processResultQueue();
|
2007-11-14 22:18:48 -05:00
|
|
|
void searchtableWidget2CostumPopupMenu( QPoint point );
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
void download();
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
void broadcastonchannel();
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
void recommendtofriends();
|
2010-02-14 10:34:53 -05:00
|
|
|
void checkText(const QString&) ;
|
2010-01-21 17:34:10 -05:00
|
|
|
|
2011-05-04 06:22:49 -04:00
|
|
|
void copyResultLink();
|
|
|
|
void copySearchLink();
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2011-12-10 18:41:58 -05:00
|
|
|
void searchAgain();
|
2007-11-14 22:18:48 -05:00
|
|
|
void searchRemove();
|
|
|
|
void searchRemoveAll();
|
|
|
|
void searchKeywords();
|
|
|
|
|
|
|
|
/** management of the adv search dialog object when switching search modes */
|
|
|
|
void toggleAdvancedSearchDialog(bool);
|
|
|
|
void hideEvent(QHideEvent * event);
|
|
|
|
|
|
|
|
/** raises (and if necessary instantiates) the advanced search dialog */
|
|
|
|
void showAdvSearchDialog(bool=true);
|
|
|
|
|
|
|
|
/** perform the advanced search */
|
|
|
|
void advancedSearch(Expression*);
|
|
|
|
|
2010-02-21 08:38:27 -05:00
|
|
|
void selectSearchResults(int index = -1);
|
2012-04-12 15:30:41 -04:00
|
|
|
void hideOrShowSearchResult(QTreeWidgetItem* resultItem, QString currentSearchId = QString(), int fileTypeIndex = -1);
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2010-01-21 17:34:10 -05:00
|
|
|
void sendLinkTo();
|
2010-02-13 21:31:37 -05:00
|
|
|
|
2012-04-12 15:30:41 -04:00
|
|
|
void selectFileType(int index);
|
2010-02-18 19:48:42 -05:00
|
|
|
|
2012-04-12 15:30:41 -04:00
|
|
|
void filterItems();
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
private:
|
|
|
|
/** render the results to the tree widget display */
|
2012-04-12 15:30:41 -04:00
|
|
|
void initSearchResult(const QString& txt,qulonglong searchId, int fileType, bool advanced) ;
|
|
|
|
void resultsToTree(const QString& txt,qulonglong searchId, const std::list<DirDetails>&);
|
|
|
|
void insertFile(qulonglong searchId,const FileDetail &file, int searchType = ANONYMOUS_SEARCH) ;
|
|
|
|
void insertDirectory(const QString &txt, qulonglong searchId, const DirDetails &dir, QTreeWidgetItem *item);
|
|
|
|
void insertDirectory(const QString &txt, qulonglong searchId, const DirDetails &dir);
|
|
|
|
void setIconAndType(QTreeWidgetItem *item, const QString& filename);
|
|
|
|
void downloadDirectory(const QTreeWidgetItem *item, const QString &base);
|
|
|
|
void getSourceFriendsForHash(const std::string& hash,std::list<std::string>& srcIds);
|
2010-05-29 09:17:09 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/** the advanced search dialog instance */
|
|
|
|
AdvancedSearchDialog * advSearchDialog;
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/** Contains the mapping of filetype combobox to filetype extensions */
|
|
|
|
static const int FILETYPE_IDX_ANY;
|
2008-11-18 17:59:33 -05:00
|
|
|
static const int FILETYPE_IDX_ARCHIVE;
|
2007-11-14 22:18:48 -05:00
|
|
|
static const int FILETYPE_IDX_AUDIO;
|
2008-11-18 17:59:33 -05:00
|
|
|
static const int FILETYPE_IDX_CDIMAGE;
|
|
|
|
static const int FILETYPE_IDX_DOCUMENT;
|
2007-11-14 22:18:48 -05:00
|
|
|
static const int FILETYPE_IDX_PICTURE;
|
|
|
|
static const int FILETYPE_IDX_PROGRAM;
|
2008-11-18 17:59:33 -05:00
|
|
|
static const int FILETYPE_IDX_VIDEO;
|
2009-08-25 16:49:50 -04:00
|
|
|
static const int FILETYPE_IDX_DIRECTORY;
|
|
|
|
|
2008-11-18 17:59:33 -05:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
static QMap<int, QString> * FileTypeExtensionMap;
|
|
|
|
static bool initialised;
|
|
|
|
void initialiseFileTypeMappings();
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2011-02-17 11:30:59 -05:00
|
|
|
void processSettings(bool bLoad);
|
|
|
|
|
2012-04-05 17:03:03 -04:00
|
|
|
bool filterItem(QTreeWidgetItem *item, const QString &text, int filterColumn);
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2011-02-17 11:30:59 -05:00
|
|
|
bool m_bProcessSettings;
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
int nextSearchId;
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::SearchDialog ui;
|
2011-02-09 16:44:49 -05:00
|
|
|
|
|
|
|
bool _queueIsAlreadyTakenCareOf ;
|
|
|
|
std::vector<std::pair<qulonglong,FileDetail> > searchResultsQueue ;
|
2007-11-14 22:18:48 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|