1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
/*
* Copyright © 2004-2008 Jens Oknelid, paskharen@gmail.com
*
* 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.
*
* In addition, as a special exception, compiling, linking, and/or
* using OpenSSL with this program is allowed.
*/
#ifndef WULFOR_SHARE_BROWSER_HH
#define WULFOR_SHARE_BROWSER_HH
#include <client/stdinc.h>
#include <client/DCPlusPlus.h>
#include <client/DirectoryListing.h>
#include "bookentry.hh"
#include "treeview.hh"
class UserCommandMenu;
class ShareBrowser:
public BookEntry
{
public:
ShareBrowser(User::Ptr user, const std::string &file, const std::string &initialDirectory);
virtual ~ShareBrowser();
virtual void show();
private:
// GUI functions
void buildList_gui();
void openDir_gui(const std::string &dir);
bool findDir_gui(const std::string &dir, GtkTreeIter *parent);
void buildDirs_gui(DirectoryListing::Directory *dir, GtkTreeIter *iter);
void updateFiles_gui(DirectoryListing::Directory *dir);
void updateStatus_gui();
void setStatus_gui(std::string statusBar, std::string msg);
void fileViewSelected_gui();
void downloadSelectedFiles_gui(const std::string &target);
void downloadSelectedDirs_gui(const std::string &target);
void popupFileMenu_gui();
void popupDirMenu_gui();
void find_gui();
// GUI callbacks
static gboolean onButtonPressed_gui(GtkWidget *widget, GdkEventButton *event, gpointer data);
static gboolean onFileButtonReleased_gui(GtkWidget *widget, GdkEventButton *event, gpointer data);
static gboolean onFileKeyReleased_gui(GtkWidget *widget, GdkEventKey *event, gpointer data);
static gboolean onDirButtonReleased_gui(GtkWidget *widget, GdkEventButton *event, gpointer data);
static gboolean onDirKeyReleased_gui(GtkWidget *widget, GdkEventKey *event, gpointer data);
static void onMatchButtonClicked_gui(GtkWidget *widget, gpointer data);
static void onFindButtonClicked_gui(GtkWidget *widget, gpointer);
static void onNextButtonClicked_gui(GtkWidget *widget, gpointer);
static void onDownloadClicked_gui(GtkMenuItem *item, gpointer data);
static void onDownloadToClicked_gui(GtkMenuItem *item, gpointer data);
static void onDownloadFavoriteClicked_gui(GtkMenuItem *item, gpointer data);
static void onDownloadDirClicked_gui(GtkMenuItem *item, gpointer data);
static void onDownloadDirToClicked_gui(GtkMenuItem *item, gpointer data);
static void onDownloadFavoriteDirClicked_gui(GtkMenuItem *item, gpointer data);
static void onSearchAlternatesClicked_gui(GtkMenuItem *item, gpointer data);
static void onCopyMagnetClicked_gui(GtkMenuItem* item, gpointer data);
// Client functions
void downloadFile_client(DirectoryListing::File *file, std::string target);
void downloadDir_client(DirectoryListing::Directory *dir, std::string target);
void matchQueue_client();
GdkEventType oldType;
User::Ptr user;
std::string file;
std::string initialDirectory;
DirectoryListing listing;
int64_t shareSize;
int64_t currentSize;
int shareItems;
int currentItems;
std::string search;
bool updateFileView;
int skipHits;
TreeView dirView, fileView;
GtkListStore *fileStore;
GtkTreeStore *dirStore;
GtkTreeSelection *fileSelection, *dirSelection;
GdkPixbuf *iconFile, *iconDirectory;
UserCommandMenu *fileUserCommandMenu;
UserCommandMenu *dirUserCommandMenu;
};
#else
class ShareBrowser;
#endif
|