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 */
|
2009-08-25 16:49:50 -04:00
|
|
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
|
|
|
void copysearchLink();
|
2009-08-25 16:49:50 -04:00
|
|
|
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
void searchRemove();
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
void searchRemoveAll();
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
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);
|
2009-08-25 16:49:50 -04:00
|
|
|
|
2009-05-10 18:34:38 -04:00
|
|
|
void clearKeyword();
|
2010-01-21 17:34:10 -05:00
|
|
|
|
|
|
|
void sendLinkTo();
|
2010-02-13 21:31:37 -05:00
|
|
|
|
|
|
|
void togglereset();
|
|
|
|
|
2010-02-18 19:48:42 -05:00
|
|
|
void onComboIndexChanged(int index);
|
|
|
|
|
2009-05-10 18:34:38 -04:00
|
|
|
|
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 */
|
2009-09-24 17:08:55 -04:00
|
|
|
void initSearchResult(const std::string& txt,qulonglong searchId) ;
|
2010-01-21 17:34:10 -05:00
|
|
|
void resultsToTree(std::string,qulonglong searchId, const std::list<DirDetails>&);
|
2010-02-14 13:56:56 -05:00
|
|
|
void insertFile(const std::string& txt,qulonglong searchId, const FileDetail& file, int searchType = ANONYMOUS_SEARCH) ;
|
2009-08-25 16:49:50 -04:00
|
|
|
void insertDirectory(const std::string &txt, qulonglong searchId, const DirDetails &dir, QTreeWidgetItem *item);
|
2010-02-18 19:48:42 -05:00
|
|
|
void insertDirectory(const std::string &txt, qulonglong searchId, const DirDetails &dir);
|
2009-08-25 16:49:50 -04:00
|
|
|
void setIconAndType(QTreeWidgetItem *item, QString &ext);
|
2009-09-25 08:17:28 -04:00
|
|
|
void downloadDirectory(const QTreeWidgetItem *item, const QString &base);
|
2010-05-29 09:17:09 -04:00
|
|
|
void getSourceFriendsForHash(const std::string& hash,std::list<std::string>& srcIds);
|
|
|
|
|
2009-08-16 16:10:53 -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
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/****
|
|
|
|
QTreeWidget *searchtableWidget;
|
|
|
|
QTreeWidget *searchtablewidget2;
|
|
|
|
****/
|
2009-08-25 16:49:50 -04:00
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|