mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-05 07:35:12 -04:00
turtle search is now working. Next task: update search gui
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1078 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
148c918ae1
commit
7b84b125df
26 changed files with 2329 additions and 118 deletions
|
@ -48,6 +48,10 @@
|
|||
#include "games/qbackgammon/bgwindow.h"
|
||||
//#include "smplayer.h"
|
||||
|
||||
#ifdef TURTLE_HOPPING
|
||||
#include "gui/TurtleSearchDialog.h"
|
||||
#endif
|
||||
|
||||
#include "statusbar/peerstatus.h"
|
||||
#include "Preferences/PreferencesWindow.h"
|
||||
#include "Settings/gsettingswin.h"
|
||||
|
@ -75,6 +79,7 @@
|
|||
#define IMAGE_FILES ":/images/fileshare24.png"
|
||||
#define IMAGE_CHANNELS ":/images/channels.png"
|
||||
#define IMAGE_FORUMS ":/images/konversation.png"
|
||||
#define IMAGE_TURTLE ":/images/turtle.png"
|
||||
#define IMAGE_PREFERENCES ":/images/kcmsystem24.png"
|
||||
#define IMAGE_CHAT ":/images/groupchat.png"
|
||||
#define IMAGE_RETROSHARE ":/images/rstray3.png"
|
||||
|
@ -179,7 +184,10 @@ MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
|||
//PeersFeed *peersFeed = NULL;
|
||||
//ui.stackPages->add(peersFeed = new PeersFeed(ui.stackPages),
|
||||
// createPageAction(QIcon(IMAGE_PEERS), tr("Peers"), grp));
|
||||
|
||||
#ifdef TURTLE_HOPPING
|
||||
ui.stackPages->add(turtleDialog = new TurtleSearchDialog(ui.stackPages),
|
||||
createPageAction(QIcon(IMAGE_TURTLE), tr("Turtle"), grp));
|
||||
#endif
|
||||
ui.stackPages->add(searchDialog = new SearchDialog(ui.stackPages),
|
||||
createPageAction(QIcon(IMAGE_SEARCH), tr("Search"), grp));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue