2008-08-14 20:23:27 -04:00
|
|
|
/****************************************************************
|
2009-03-01 10:18:34 -05:00
|
|
|
* This file is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006-2007, crypton
|
2008-08-14 20:23:27 -04:00
|
|
|
* Copyright (c) 2006, Matt Edman, Justin Hipple
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _RSHARESETTINGS_H
|
|
|
|
#define _RSHARESETTINGS_H
|
|
|
|
|
|
|
|
#include <QHash>
|
|
|
|
#include <QSettings>
|
|
|
|
|
|
|
|
#include <gui/linetypes.h>
|
|
|
|
#include "rsettings.h"
|
|
|
|
|
2010-10-07 17:50:15 -04:00
|
|
|
/* Defines for get/setTrayNotifyFlags */
|
2011-07-13 15:24:33 -04:00
|
|
|
#define TRAYNOTIFY_PRIVATECHAT 0x00000001
|
|
|
|
#define TRAYNOTIFY_MESSAGES 0x00000002
|
|
|
|
#define TRAYNOTIFY_CHANNELS 0x00000004
|
|
|
|
#define TRAYNOTIFY_FORUMS 0x00000008
|
|
|
|
#define TRAYNOTIFY_TRANSFERS 0x00000010
|
2010-11-25 19:54:18 -05:00
|
|
|
|
2011-07-13 15:24:33 -04:00
|
|
|
#define TRAYNOTIFY_PRIVATECHAT_COMBINED 0x00000020
|
|
|
|
#define TRAYNOTIFY_MESSAGES_COMBINED 0x00000040
|
|
|
|
#define TRAYNOTIFY_CHANNELS_COMBINED 0x00000080
|
|
|
|
#define TRAYNOTIFY_FORUMS_COMBINED 0x00000100
|
|
|
|
#define TRAYNOTIFY_TRANSFERS_COMBINED 0x00000200
|
2008-08-14 20:23:27 -04:00
|
|
|
|
2011-01-07 11:56:57 -05:00
|
|
|
#define STATUSBAR_DISC 0x00000001
|
|
|
|
|
2008-08-14 20:23:27 -04:00
|
|
|
//Forward declaration.
|
|
|
|
class QWidget;
|
|
|
|
class QTableWidget;
|
|
|
|
class QToolBar;
|
|
|
|
class QMainWindow;
|
|
|
|
|
2010-05-18 14:02:51 -04:00
|
|
|
/** Handles saving and restoring RShares's settings
|
2008-08-14 20:23:27 -04:00
|
|
|
*
|
|
|
|
* NOTE: Qt 4.1 documentation states that constructing a QSettings object is
|
|
|
|
* "very fast", so we shouldn't need to create a global instance of this
|
|
|
|
* class.
|
|
|
|
*/
|
|
|
|
class RshareSettings : public RSettings
|
|
|
|
{
|
2010-12-02 19:54:40 -05:00
|
|
|
public:
|
|
|
|
enum enumLastDir
|
|
|
|
{
|
|
|
|
LASTDIR_EXTRAFILE,
|
|
|
|
LASTDIR_CERT,
|
|
|
|
LASTDIR_HISTORY,
|
|
|
|
LASTDIR_IMAGES,
|
|
|
|
LASTDIR_MESSAGES,
|
2012-01-22 17:58:23 -05:00
|
|
|
LASTDIR_BLOGS,
|
|
|
|
LASTDIR_SOUNDS
|
2010-12-02 19:54:40 -05:00
|
|
|
};
|
|
|
|
|
2010-12-10 16:49:38 -05:00
|
|
|
enum enumToasterPosition
|
|
|
|
{
|
|
|
|
TOASTERPOS_TOPLEFT,
|
|
|
|
TOASTERPOS_TOPRIGHT,
|
|
|
|
TOASTERPOS_BOTTOMLEFT,
|
|
|
|
TOASTERPOS_BOTTOMRIGHT
|
|
|
|
};
|
|
|
|
|
2011-06-03 20:46:02 -04:00
|
|
|
enum enumMsgOpen
|
|
|
|
{
|
|
|
|
MSG_OPEN_TAB,
|
|
|
|
MSG_OPEN_WINDOW
|
|
|
|
};
|
|
|
|
|
2008-08-14 20:23:27 -04:00
|
|
|
public:
|
2010-05-20 17:53:27 -04:00
|
|
|
/* create settings object */
|
2011-10-14 17:16:34 -04:00
|
|
|
static void Create(bool forceCreateNew = false);
|
2010-01-27 17:31:25 -05:00
|
|
|
|
2008-08-14 20:23:27 -04:00
|
|
|
/** Gets the currently preferred language code for RShare. */
|
|
|
|
QString getLanguageCode();
|
|
|
|
/** Saves the preferred language code. */
|
|
|
|
void setLanguageCode(QString languageCode);
|
|
|
|
|
|
|
|
/** Gets the interface style key (e.g., "windows", "motif", etc.) */
|
|
|
|
QString getInterfaceStyle();
|
|
|
|
/** Sets the interface style key. */
|
|
|
|
void setInterfaceStyle(QString styleKey);
|
|
|
|
|
|
|
|
/** Sets the stylesheet */
|
|
|
|
void setSheetName(QString sheet);
|
|
|
|
/** Gets the stylesheet */
|
|
|
|
QString getSheetName();
|
|
|
|
|
|
|
|
/** Returns true if RetroShare's main window should be visible when the
|
|
|
|
* application starts. */
|
2010-12-13 15:34:07 -05:00
|
|
|
bool getStartMinimized();
|
2010-05-18 14:02:51 -04:00
|
|
|
/** Sets whether to show main window when the application starts. */
|
2010-12-13 15:34:07 -05:00
|
|
|
void setStartMinimized(bool startMinimized);
|
|
|
|
|
|
|
|
bool getCloseToTray();
|
|
|
|
void setCloseToTray(bool closeToTray);
|
|
|
|
|
2008-08-14 20:23:27 -04:00
|
|
|
/** Returns true if RetroShare should start on system boot. */
|
2010-12-11 17:46:14 -05:00
|
|
|
bool runRetroshareOnBoot(bool &minimized);
|
2009-03-01 10:18:34 -05:00
|
|
|
|
2008-08-14 20:23:27 -04:00
|
|
|
/** Set whether to run RetroShare on system boot. */
|
2010-12-11 17:46:14 -05:00
|
|
|
void setRunRetroshareOnBoot(bool run, bool minimized);
|
2009-03-01 10:18:34 -05:00
|
|
|
|
2011-08-16 20:06:44 -04:00
|
|
|
/** Returns true if the user can set retroshare as protocol */
|
|
|
|
bool canSetRetroShareProtocol();
|
2011-04-14 17:59:51 -04:00
|
|
|
/** Returns true if retroshare:// is registered as protocol */
|
|
|
|
bool getRetroShareProtocol();
|
|
|
|
/** Register retroshare:// as protocl */
|
2011-08-16 20:06:44 -04:00
|
|
|
bool setRetroShareProtocol(bool value);
|
2011-04-14 17:59:51 -04:00
|
|
|
|
2008-08-14 20:23:27 -04:00
|
|
|
/* Get the destination log file. */
|
|
|
|
QString getLogFile();
|
|
|
|
/** Set the destination log file. */
|
|
|
|
void setLogFile(QString file);
|
|
|
|
|
2010-12-02 19:54:40 -05:00
|
|
|
QString getLastDir(enumLastDir type);
|
|
|
|
void setLastDir(enumLastDir type, const QString &lastDir);
|
|
|
|
|
2008-08-14 20:23:27 -04:00
|
|
|
/* Get the bandwidth graph line filter. */
|
|
|
|
uint getBWGraphFilter();
|
|
|
|
/** Set the bandwidth graph line filter. */
|
|
|
|
void setBWGraphFilter(uint line, bool status);
|
|
|
|
|
|
|
|
/** Set the bandwidth graph opacity setting. */
|
|
|
|
int getBWGraphOpacity();
|
|
|
|
/** Set the bandwidth graph opacity settings. */
|
|
|
|
void setBWGraphOpacity(int value);
|
|
|
|
|
|
|
|
/** Gets whether the bandwidth graph is always on top. */
|
|
|
|
bool getBWGraphAlwaysOnTop();
|
|
|
|
/** Sets whether the bandwidth graph is always on top. */
|
|
|
|
void setBWGraphAlwaysOnTop(bool alwaysOnTop);
|
|
|
|
|
2008-12-07 09:19:13 -05:00
|
|
|
uint getNewsFeedFlags();
|
|
|
|
void setNewsFeedFlags(uint flags);
|
|
|
|
|
|
|
|
uint getChatFlags();
|
|
|
|
void setChatFlags(uint flags);
|
|
|
|
|
|
|
|
uint getNotifyFlags();
|
|
|
|
void setNotifyFlags(uint flags);
|
|
|
|
|
2010-10-07 17:50:15 -04:00
|
|
|
uint getTrayNotifyFlags();
|
|
|
|
void setTrayNotifyFlags(uint flags);
|
|
|
|
|
2012-04-26 19:41:14 -04:00
|
|
|
uint getMessageFlags();
|
|
|
|
void setMessageFlags(uint flags);
|
|
|
|
|
2012-07-30 09:27:40 -04:00
|
|
|
bool getDisplayTrayChatLobby();
|
|
|
|
void setDisplayTrayChatLobby(bool bValue);
|
2010-06-15 12:51:48 -04:00
|
|
|
bool getDisplayTrayGroupChat();
|
|
|
|
void setDisplayTrayGroupChat(bool bValue);
|
|
|
|
|
2010-09-01 16:54:24 -04:00
|
|
|
bool getAddFeedsAtEnd();
|
|
|
|
void setAddFeedsAtEnd(bool bValue);
|
|
|
|
|
2010-09-04 10:23:30 -04:00
|
|
|
bool getChatSendMessageWithCtrlReturn();
|
|
|
|
void setChatSendMessageWithCtrlReturn(bool bValue);
|
2010-09-07 11:49:31 -04:00
|
|
|
|
2010-12-10 16:49:38 -05:00
|
|
|
enumToasterPosition getToasterPosition();
|
|
|
|
void setToasterPosition(enumToasterPosition position);
|
|
|
|
|
|
|
|
QPoint getToasterMargin();
|
|
|
|
void setToasterMargin(QPoint margin);
|
|
|
|
|
2010-09-10 14:38:46 -04:00
|
|
|
/* chat font */
|
|
|
|
QString getChatScreenFont();
|
|
|
|
void setChatScreenFont(const QString &font);
|
|
|
|
|
2010-09-07 11:49:31 -04:00
|
|
|
/* chat styles */
|
2010-09-07 19:19:27 -04:00
|
|
|
void getPublicChatStyle(QString &stylePath, QString &styleVariant);
|
2010-09-10 14:38:46 -04:00
|
|
|
void setPublicChatStyle(const QString &stylePath, const QString &styleVariant);
|
2010-09-07 11:49:31 -04:00
|
|
|
|
2010-09-07 19:19:27 -04:00
|
|
|
void getPrivateChatStyle(QString &stylePath, QString &styleVariant);
|
2010-09-10 14:38:46 -04:00
|
|
|
void setPrivateChatStyle(const QString &stylePath, const QString &styleVariant);
|
2010-09-07 11:49:31 -04:00
|
|
|
|
2010-09-07 19:19:27 -04:00
|
|
|
void getHistoryChatStyle(QString &stylePath, QString &styleVariant);
|
2010-09-10 14:38:46 -04:00
|
|
|
void setHistoryChatStyle(const QString &stylePath, const QString &styleVariant);
|
2010-09-07 11:49:31 -04:00
|
|
|
|
2010-11-04 07:14:47 -04:00
|
|
|
/* Chat */
|
|
|
|
int getPublicChatHistoryCount();
|
|
|
|
void setPublicChatHistoryCount(int value);
|
|
|
|
|
|
|
|
int getPrivateChatHistoryCount();
|
|
|
|
void setPrivateChatHistoryCount(int value);
|
|
|
|
|
2010-05-20 17:53:27 -04:00
|
|
|
//! Save placement, state and size information of a window.
|
|
|
|
void saveWidgetInformation(QWidget *widget);
|
2008-08-14 20:23:27 -04:00
|
|
|
|
2010-05-20 17:53:27 -04:00
|
|
|
//! Load placement, state and size information of a window.
|
|
|
|
void loadWidgetInformation(QWidget *widget);
|
2008-08-14 20:23:27 -04:00
|
|
|
|
2010-05-20 17:53:27 -04:00
|
|
|
//! Method overload. Save window and toolbar information.
|
|
|
|
void saveWidgetInformation(QMainWindow *widget, QToolBar *toolBar);
|
2008-08-14 20:23:27 -04:00
|
|
|
|
2010-05-20 17:53:27 -04:00
|
|
|
//! Method overload. Restore window and toolbar information.
|
|
|
|
void loadWidgetInformation(QMainWindow *widget, QToolBar *toolBar);
|
2008-08-14 20:23:27 -04:00
|
|
|
|
2010-11-04 07:14:47 -04:00
|
|
|
/* MainWindow */
|
|
|
|
int getLastPageInMainWindow ();
|
|
|
|
void setLastPageInMainWindow (int value);
|
2011-01-07 11:56:57 -05:00
|
|
|
uint getStatusBarFlags();
|
|
|
|
void setStatusBarFlags(uint flags);
|
|
|
|
void setStatusBarFlag(uint flag, bool enable);
|
2010-11-04 07:14:47 -04:00
|
|
|
|
2010-05-23 13:21:30 -04:00
|
|
|
/* Messages */
|
|
|
|
bool getMsgSetToReadOnActivate ();
|
|
|
|
void setMsgSetToReadOnActivate (bool bValue);
|
|
|
|
|
2011-06-03 20:46:02 -04:00
|
|
|
enumMsgOpen getMsgOpen();
|
|
|
|
void setMsgOpen(enumMsgOpen value);
|
|
|
|
|
2010-08-08 18:58:10 -04:00
|
|
|
/* Forums */
|
|
|
|
bool getForumMsgSetToReadOnActivate ();
|
|
|
|
void setForumMsgSetToReadOnActivate (bool bValue);
|
|
|
|
bool getExpandNewMessages ();
|
|
|
|
void setExpandNewMessages (bool bValue);
|
|
|
|
|
2010-07-21 03:39:14 -04:00
|
|
|
/* time before idle */
|
|
|
|
uint getMaxTimeBeforeIdle();
|
|
|
|
void setMaxTimeBeforeIdle(uint nValue);
|
|
|
|
|
2010-05-20 17:53:27 -04:00
|
|
|
protected:
|
|
|
|
/** Default constructor. */
|
|
|
|
RshareSettings();
|
2008-08-14 20:23:27 -04:00
|
|
|
|
2010-05-20 17:53:27 -04:00
|
|
|
void initSettings();
|
2010-07-21 03:39:14 -04:00
|
|
|
|
|
|
|
/* member for fast access */
|
|
|
|
int m_maxTimeBeforeIdle;
|
2008-08-14 20:23:27 -04:00
|
|
|
};
|
|
|
|
|
2010-05-20 17:53:27 -04:00
|
|
|
// the one and only global settings object
|
|
|
|
extern RshareSettings *Settings;
|
|
|
|
|
2008-08-14 20:23:27 -04:00
|
|
|
#endif
|
|
|
|
|