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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
/*
* 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_SETTINGS_DIALOG_HH
#define WULFOR_SETTINGS_DIALOG_HH
#include <dcpp/stdinc.h>
#include <dcpp/DCPlusPlus.h>
#include <dcpp/SettingsManager.h>
#include <dcpp/UserCommand.h>
#include "dialogentry.hh"
#include "treeview.hh"
class Settings:
public DialogEntry
{
public:
Settings(GtkWindow* parent = NULL);
~Settings();
private:
// GUI functions
void addOption_gui(GtkListStore *store, const std::string &name, dcpp::SettingsManager::IntSetting setting);
void addOption_gui(GtkListStore *store, const std::string &name, const std::string &setting);
void createOptionsView_gui(TreeView &treeView, GtkListStore *&store, const std::string &widgetName);
void saveOptionsView_gui(TreeView &treeView);
void saveFileChooserPath_gui(GtkWidget *fileChooser, dcpp::SettingsManager::StrSetting setting);
void initPersonal_gui();
void initConnection_gui();
void initDownloads_gui();
void initSharing_gui();
void initAppearance_gui();
void initLog_gui();
void initAdvanced_gui();
void addShare_gui(std::string path, std::string name, int64_t size);
void loadUserCommands_gui();
void saveUserCommand(dcpp::UserCommand *uc);
void updateUserCommandTextSent_gui();
bool validateUserCommandInput(const std::string &oldName = "");
void showErrorDialog(const std::string error);
// GUI callbacks
static void onOptionsViewToggled_gui(GtkCellRendererToggle *cell, gchar *path, gpointer data);
static void onInDirect_gui(GtkToggleButton *button, gpointer data);
///@todo Uncomment when implemented
//static void onInFW_UPnP_gui(GtkToggleButton *button, gpointer data);
static void onInPassive_gui(GtkToggleButton *button, gpointer data);
static void onInFW_NAT_gui(GtkToggleButton *button, gpointer data);
static void onOutDirect_gui(GtkToggleButton *button, gpointer data);
static void onSocks5_gui(GtkToggleButton *button, gpointer data);
static void onPublicAdd_gui(GtkWidget *widget, gpointer data);
static void onPublicMoveUp_gui(GtkWidget *widget, gpointer data);
static void onPublicMoveDown_gui(GtkWidget *widget, gpointer data);
static void onPublicEdit_gui(GtkCellRendererText *cell, char *path, char *text, gpointer data);
static void onPublicRemove_gui(GtkWidget *widget, gpointer data);
static void onAddFavorite_gui(GtkWidget *widget, gpointer data);
static void onRemoveFavorite_gui(GtkWidget *widget, gpointer data);
static gboolean onFavoriteButtonReleased_gui(GtkWidget *widget, GdkEventButton *event, gpointer data);
static void onAddShare_gui(GtkWidget *widget, gpointer data);
static void onRemoveShare_gui(GtkWidget *widget, gpointer data);
static gboolean onShareButtonReleased_gui(GtkWidget *widget, GdkEventButton *event, gpointer data);
static gboolean onShareHiddenPressed_gui(GtkToggleButton *button, gpointer data);
///@todo Uncomment when implemented
//static void onWinColorClicked_gui(GtkCellRendererToggle *cell, gchar *path, gpointer data);
//static void onDownColorClicked_gui(GtkCellRendererToggle *cell, gchar *path, gpointer data);
//static void onUpColorClicked_gui(GtkCellRendererToggle *cell, gchar *path, gpointer data);
//static void onTextStyleClicked_gui(GtkCellRendererToggle *cell, gchar *path, gpointer data);
static void onLogMainClicked_gui(GtkToggleButton *button, gpointer data);
static void onLogPrivateClicked_gui(GtkToggleButton *button, gpointer data);
static void onLogDownloadClicked_gui(GtkToggleButton *button, gpointer data);
static void onLogUploadClicked_gui(GtkToggleButton *button, gpointer data);
static void onUserCommandAdd_gui(GtkWidget *widget, gpointer data);
static void onUserCommandEdit_gui(GtkWidget *widget, gpointer data);
static void onUserCommandMoveUp_gui(GtkWidget *widget, gpointer data);
static void onUserCommandMoveDown_gui(GtkWidget *widget, gpointer data);
static void onUserCommandRemove_gui(GtkWidget *widget, gpointer data);
static void onUserCommandTypeSeparator_gui(GtkWidget *widget, gpointer data);
static void onUserCommandTypeRaw_gui(GtkWidget *widget, gpointer data);
static void onUserCommandTypeChat_gui(GtkWidget *widget, gpointer data);
static void onUserCommandTypePM_gui(GtkWidget *widget, gpointer data);
static gboolean onUserCommandKeyPress_gui(GtkWidget *widget, GdkEventKey *event, gpointer data);
static void onGenerateCertificatesClicked_gui(GtkWidget *widget, gpointer data);
// Client functions
void saveSettings_client();
void shareHidden_client(bool show);
void addShare_client(std::string path, std::string name);
void removeUserCommand_client(std::string name, std::string hub);
void moveUserCommand_client(std::string name, std::string hub, int pos);
void generateCertificates_client();
GtkListStore *downloadToStore, *publicListStore, *queueStore,
*shareStore, *appearanceStore, *colorStore, *windowStore1,
*windowStore2, *windowStore3, *advancedStore, *certificatesStore, *userCommandStore;
TreeView downloadToView, publicListView, queueView, shareView,
appearanceView, colorView, windowView1, windowView2,
windowView3, advancedView, certificatesView, userCommandView;
};
#else
class Settings;
#endif
|