2009-07-23 13:11:51 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 - 2009 RetroShare Team
|
|
|
|
*
|
|
|
|
* 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-19 18:15:16 -04:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
2009-07-23 13:11:51 -04:00
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef _APPERARANCEPAGE_H
|
|
|
|
#define _APPERARANCEPAGE_H
|
|
|
|
|
2012-02-18 09:55:50 -05:00
|
|
|
#include <retroshare-gui/configpage.h>
|
2017-01-26 16:35:33 -05:00
|
|
|
#include "gui/MainWindow.h"
|
2009-07-23 13:11:51 -04:00
|
|
|
#include "ui_AppearancePage.h"
|
|
|
|
|
2009-08-19 18:15:16 -04:00
|
|
|
class AppearancePage : public ConfigPage
|
2009-07-23 13:11:51 -04:00
|
|
|
{
|
2012-08-24 19:35:57 -04:00
|
|
|
Q_OBJECT
|
2009-07-23 13:11:51 -04:00
|
|
|
|
2012-08-24 19:35:57 -04:00
|
|
|
public:
|
|
|
|
/** Default Constructor */
|
2013-10-18 17:10:33 -04:00
|
|
|
AppearancePage(QWidget * parent = 0, Qt::WindowFlags flags = 0);
|
2009-07-23 13:11:51 -04:00
|
|
|
|
2012-08-24 19:35:57 -04:00
|
|
|
/** Loads the settings for this page */
|
|
|
|
virtual void load();
|
2012-02-18 09:55:50 -05:00
|
|
|
|
2016-08-27 12:15:13 -04:00
|
|
|
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/appearance.svg") ; }
|
2012-08-24 19:35:57 -04:00
|
|
|
virtual QString pageName() const { return tr("Appearance") ; }
|
2013-10-09 05:31:40 -04:00
|
|
|
virtual QString helpText() const { return ""; }
|
2012-02-18 09:55:50 -05:00
|
|
|
|
2012-08-24 19:35:57 -04:00
|
|
|
private slots:
|
|
|
|
void loadStyleSheet(int index);
|
2009-07-23 13:11:51 -04:00
|
|
|
|
2017-01-26 16:35:33 -05:00
|
|
|
void switch_status_grpStatus(bool b) ;
|
|
|
|
void switch_status_compactMode(bool b) ;
|
|
|
|
void switch_status_showToolTip(bool b) ;
|
|
|
|
void switch_status_ShowStatus(bool) ;
|
|
|
|
void switch_status_ShowPeer(bool) ;
|
|
|
|
void switch_status_ShowDHT(bool) ;
|
|
|
|
void switch_status_ShowHashing(bool) ;
|
|
|
|
void switch_status_ShowDisc(bool) ;
|
|
|
|
void switch_status_ShowRate(bool) ;
|
|
|
|
void switch_status_ShowOpMode(bool) ;
|
|
|
|
void switch_status_ShowSound(bool) ;
|
|
|
|
void switch_status_ShowToaster(bool) ;
|
|
|
|
void switch_status_ShowSystray(bool) ;
|
|
|
|
|
2017-01-29 15:47:13 -05:00
|
|
|
void updateLanguageCode() ;
|
|
|
|
void updateInterfaceStyle() ;
|
|
|
|
void updateSheetName() ;
|
|
|
|
void updateRbtPageOnToolBar();
|
2017-02-15 15:50:53 -05:00
|
|
|
// void updateActionButtonLoc() ;
|
2017-01-29 15:47:13 -05:00
|
|
|
void updateStatusToolTip() ;
|
|
|
|
|
|
|
|
void updateCmboToolButtonStyle();
|
|
|
|
void updateCmboToolButtonSize();
|
2017-02-15 15:50:53 -05:00
|
|
|
// void updateCmboListItemSize();
|
2017-01-29 15:47:13 -05:00
|
|
|
|
|
|
|
void updateStyle() ;
|
2012-08-24 19:35:57 -04:00
|
|
|
private:
|
2017-01-29 15:47:13 -05:00
|
|
|
void switch_status(MainWindow::StatusElement s,const QString& key,bool b);
|
2017-01-26 16:35:33 -05:00
|
|
|
|
2012-08-24 19:35:57 -04:00
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::AppearancePage ui;
|
2009-07-23 13:11:51 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|