mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-02 11:16:34 -04:00
StyleSheet Rewrite
Use QDarkStyle to make Standard_Dark.qss and Standard_Light.qss Use Widget name to stylize them.
This commit is contained in:
parent
16ca0dc52c
commit
d7981f3811
772 changed files with 12162 additions and 11459 deletions
|
@ -20,20 +20,23 @@
|
|||
|
||||
#include "QuickStartWizard.h"
|
||||
|
||||
#include <QFileDialog>
|
||||
#include <QSettings>
|
||||
#include <QCheckBox>
|
||||
#include <QMessageBox>
|
||||
#include <QComboBox>
|
||||
#include <QHeaderView>
|
||||
|
||||
#include <retroshare/rsfiles.h>
|
||||
#include <retroshare/rsconfig.h>
|
||||
#include <retroshare/rspeers.h>
|
||||
#include <retroshare/rstypes.h>
|
||||
#include "gui/common/FilesDefs.h"
|
||||
#ifdef USE_COMBOBOX
|
||||
#include "gui/common/RSComboBox.h"
|
||||
#endif
|
||||
#include "settings/rsharesettings.h"
|
||||
#include "util/QtVersion.h"
|
||||
#include "gui/common/FilesDefs.h"
|
||||
|
||||
#include "retroshare/rsfiles.h"
|
||||
#include "retroshare/rsconfig.h"
|
||||
#include "retroshare/rspeers.h"
|
||||
#include "retroshare/rstypes.h"
|
||||
|
||||
#include <QCheckBox>
|
||||
#include <QFileDialog>
|
||||
#include <QHeaderView>
|
||||
#include <QMessageBox>
|
||||
#include <QSettings>
|
||||
|
||||
QuickStartWizard::QuickStartWizard(QWidget *parent) :
|
||||
QDialog(parent)
|
||||
|
@ -53,7 +56,7 @@ QuickStartWizard::QuickStartWizard(QWidget *parent) :
|
|||
// ui.checkBoxF2FRouting->setChecked(true) ;
|
||||
// ui.checkBoxF2FRouting->setEnabled(false) ;
|
||||
|
||||
connect( ui.netModeComboBox, SIGNAL( activated ( int ) ), this, SLOT( toggleUPnP( ) ) );
|
||||
connect( ui.netModeComboBox, SIGNAL( activated(int) ), this, SLOT( toggleUPnP() ) );
|
||||
// connect( ui.checkBoxTunnelConnection, SIGNAL( toggled( bool ) ), this, SLOT( toggleTunnelConnection(bool) ) );
|
||||
|
||||
// bool b = rsPeers->getAllowTunnelConnection() ;
|
||||
|
@ -299,7 +302,7 @@ void QuickStartWizard::loadShare()
|
|||
listWidget->insertRow(row) ;
|
||||
listWidget->setItem(row,0,new QTableWidgetItem(QString::fromStdString((*it).filename)));
|
||||
#ifdef USE_COMBOBOX
|
||||
QComboBox *cb = new QComboBox ;
|
||||
RSComboBox *cb = new RSComboBox ;
|
||||
cb->addItem(tr("Network Wide")) ;
|
||||
cb->addItem(tr("Browsable")) ;
|
||||
cb->addItem(tr("Universal")) ;
|
||||
|
@ -494,7 +497,6 @@ void QuickStartWizard::loadNetwork()
|
|||
|
||||
void QuickStartWizard::saveChanges()
|
||||
{
|
||||
QString str;
|
||||
|
||||
//bool saveAddr = false;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue