mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-03-01 11:21:25 -05:00
removed Toolbox frame
fixed toolbarservice added AddFriend,Invite Friend, Add Share, options, EXit to toolbarservice git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@440 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
211ec7ac01
commit
51b434fbdf
@ -505,6 +505,18 @@
|
|||||||
<iconset/>
|
<iconset/>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QGridLayout" >
|
<layout class="QGridLayout" >
|
||||||
|
<property name="leftMargin" >
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
<property name="topMargin" >
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="rightMargin" >
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
<property name="bottomMargin" >
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
<item row="0" column="0" >
|
<item row="0" column="0" >
|
||||||
<widget class="QSplitter" name="splitter" >
|
<widget class="QSplitter" name="splitter" >
|
||||||
<property name="baseSize" >
|
<property name="baseSize" >
|
||||||
|
@ -57,7 +57,7 @@
|
|||||||
#define IMAGE_NETWORK ":/images/network32.png"
|
#define IMAGE_NETWORK ":/images/network32.png"
|
||||||
#define IMAGE_PEERS ":/images/peers_24x24.png"
|
#define IMAGE_PEERS ":/images/peers_24x24.png"
|
||||||
#define IMAGE_SEARCH ":/images/filefind.png"
|
#define IMAGE_SEARCH ":/images/filefind.png"
|
||||||
#define IMAGE_TRANSFERS ":/images/ktorrent.png"
|
#define IMAGE_TRANSFERS ":/images/ktorrent32.png"
|
||||||
#define IMAGE_FILES ":/images/folder_green.png"
|
#define IMAGE_FILES ":/images/folder_green.png"
|
||||||
#define IMAGE_CHANNELS ":/images/channels.png"
|
#define IMAGE_CHANNELS ":/images/channels.png"
|
||||||
#define IMAGE_PREFERENCES ":/images/settings16.png"
|
#define IMAGE_PREFERENCES ":/images/settings16.png"
|
||||||
@ -76,7 +76,12 @@
|
|||||||
#define IMAGE_GAMES ":/images/kgames.png"
|
#define IMAGE_GAMES ":/images/kgames.png"
|
||||||
#define IMAGE_PHOTO ":/images/lphoto.png"
|
#define IMAGE_PHOTO ":/images/lphoto.png"
|
||||||
#define IMAGE_SMPLAYER ":/images/smplayer_icon32.png"
|
#define IMAGE_SMPLAYER ":/images/smplayer_icon32.png"
|
||||||
|
#define IMAGE_LINKS ":/images/ktorrent.png"
|
||||||
|
#define IMAGE_ADDFRIEND ":/images/add-friend24.png"
|
||||||
|
#define IMAGE_INVITEFRIEND ":/images/invite-friend24.png"
|
||||||
|
#define IMAGE_ADDSHARE ":/images/directoryadd_24x24_shadow.png"
|
||||||
|
#define IMAGE_OPTIONS ":/images/settings.png"
|
||||||
|
#define IMAGE_QUIT ":/images/exit_24x24.png"
|
||||||
|
|
||||||
/* Keys for UI Preferences */
|
/* Keys for UI Preferences */
|
||||||
#define UI_PREF_PROMPT_ON_QUIT "UIOptions/ConfirmOnQuit"
|
#define UI_PREF_PROMPT_ON_QUIT "UIOptions/ConfirmOnQuit"
|
||||||
@ -102,7 +107,7 @@ MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
|||||||
connect(ui.btnToggleConsole, SIGNAL(toggled(bool)), this, SLOT(showConsoleFrame(bool)));
|
connect(ui.btnToggleConsole, SIGNAL(toggled(bool)), this, SLOT(showConsoleFrame(bool)));
|
||||||
|
|
||||||
/* Hide ToolBox frame */
|
/* Hide ToolBox frame */
|
||||||
showToolboxFrame(true);
|
//showToolboxFrame(true);
|
||||||
|
|
||||||
// Setting icons
|
// Setting icons
|
||||||
this->setWindowIcon(QIcon(QString::fromUtf8(":/images/rstray3.png")));
|
this->setWindowIcon(QIcon(QString::fromUtf8(":/images/rstray3.png")));
|
||||||
@ -115,26 +120,26 @@ MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
|||||||
applicationWindow->hide();
|
applicationWindow->hide();
|
||||||
|
|
||||||
/** General ToolBox**/
|
/** General ToolBox**/
|
||||||
connect(ui.addfriendButton, SIGNAL(clicked( bool ) ), this , SLOT( addFriend() ) );
|
//connect(ui.addfriendButton, SIGNAL(clicked( bool ) ), this , SLOT( addFriend() ) );
|
||||||
connect(ui.invitefriendButton, SIGNAL(clicked( bool ) ), this , SLOT( inviteFriend() ) );
|
//connect(ui.invitefriendButton, SIGNAL(clicked( bool ) ), this , SLOT( inviteFriend() ) );
|
||||||
connect(ui.addshareButton, SIGNAL(clicked( bool ) ), this , SLOT( addSharedDirectory() ) );
|
//connect(ui.addshareButton, SIGNAL(clicked( bool ) ), this , SLOT( addSharedDirectory() ) );
|
||||||
connect(ui.optionsButton, SIGNAL(clicked( bool )), this, SLOT( showPreferencesWindow()) );
|
//connect(ui.optionsButton, SIGNAL(clicked( bool )), this, SLOT( showPreferencesWindow()) );
|
||||||
|
|
||||||
/** Games ToolBox*/
|
/** Games ToolBox*/
|
||||||
connect(ui.qbackgammonButton, SIGNAL(clicked( bool )), this, SLOT( startgammon()) );
|
//connect(ui.qbackgammonButton, SIGNAL(clicked( bool )), this, SLOT( startgammon()) );
|
||||||
connect(ui.qcheckersButton, SIGNAL(clicked( bool )), this, SLOT( startqcheckers()) );
|
//connect(ui.qcheckersButton, SIGNAL(clicked( bool )), this, SLOT( startqcheckers()) );
|
||||||
|
|
||||||
|
|
||||||
ui.addfriendButton->setToolTip(tr("Add a Friend"));
|
//ui.addfriendButton->setToolTip(tr("Add a Friend"));
|
||||||
ui.invitefriendButton->setToolTip(tr("Invite a Friend"));
|
//ui.invitefriendButton->setToolTip(tr("Invite a Friend"));
|
||||||
ui.addshareButton->setToolTip(tr("Add a Share"));
|
//ui.addshareButton->setToolTip(tr("Add a Share"));
|
||||||
ui.optionsButton->setToolTip(tr("Options"));
|
//ui.optionsButton->setToolTip(tr("Options"));
|
||||||
|
|
||||||
/** adjusted quit behaviour: trigger a warning that can be switched off in the saved
|
/** adjusted quit behaviour: trigger a warning that can be switched off in the saved
|
||||||
config file RetroShare.conf */
|
config file RetroShare.conf */
|
||||||
ui.quitButton->setToolTip(tr("Quit"));
|
//ui.quitButton->setToolTip(tr("Quit"));
|
||||||
//connect(ui.quitButton, SIGNAL(clicked()), qApp, SLOT(quit()));
|
//connect(ui.quitButton, SIGNAL(clicked()), qApp, SLOT(quit()));
|
||||||
connect(ui.quitButton, SIGNAL(clicked()), this, SLOT(doQuit()));
|
//connect(ui.quitButton, SIGNAL(clicked()), this, SLOT(doQuit()));
|
||||||
|
|
||||||
/* load the StyleSheet*/
|
/* load the StyleSheet*/
|
||||||
loadStyleSheet(Rshare::stylesheet());
|
loadStyleSheet(Rshare::stylesheet());
|
||||||
@ -143,8 +148,7 @@ MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
|||||||
|
|
||||||
/* Create the Main pages and actions */
|
/* Create the Main pages and actions */
|
||||||
QActionGroup *grp = new QActionGroup(this);
|
QActionGroup *grp = new QActionGroup(this);
|
||||||
/* Create the Service pages and actions */
|
|
||||||
QActionGroup *servicegrp = new QActionGroup(this);
|
|
||||||
|
|
||||||
ui.stackPages->add(networkDialog = new NetworkDialog(ui.stackPages),
|
ui.stackPages->add(networkDialog = new NetworkDialog(ui.stackPages),
|
||||||
createPageAction(QIcon(IMAGE_NETWORK), tr("Network"), grp));
|
createPageAction(QIcon(IMAGE_NETWORK), tr("Network"), grp));
|
||||||
@ -167,21 +171,7 @@ MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
|||||||
ui.stackPages->add(messagesDialog = new MessagesDialog(ui.stackPages),
|
ui.stackPages->add(messagesDialog = new MessagesDialog(ui.stackPages),
|
||||||
createPageAction(QIcon(IMAGE_MESSAGES), tr("Messages"), grp));
|
createPageAction(QIcon(IMAGE_MESSAGES), tr("Messages"), grp));
|
||||||
|
|
||||||
LinksDialog *linksDialog = NULL;
|
|
||||||
ui.stackPages->add(linksDialog = new LinksDialog(ui.stackPages),
|
|
||||||
createPageAction(QIcon(IMAGE_TRANSFERS), tr("Links Cloud"), servicegrp));
|
|
||||||
|
|
||||||
ChannelsDialog *channelsDialog = NULL;
|
|
||||||
ui.stackPages->add(channelsDialog = new ChannelsDialog(ui.stackPages),
|
|
||||||
createPageAction(QIcon(IMAGE_CHANNELS), tr("Channels"), servicegrp));
|
|
||||||
|
|
||||||
GamesDialog *gamesDialog = NULL;
|
|
||||||
ui.stackPages->add(gamesDialog = new GamesDialog(ui.stackPages),
|
|
||||||
createPageAction(QIcon(IMAGE_GAMES), tr("Games"), servicegrp));
|
|
||||||
|
|
||||||
PhotoDialog *photoDialog = NULL;
|
|
||||||
ui.stackPages->add(photoDialog = new PhotoDialog(ui.stackPages),
|
|
||||||
createPageAction(QIcon(IMAGE_PHOTO), tr("Photo View"), servicegrp));
|
|
||||||
|
|
||||||
#ifdef RS_RELEASE_VERSION
|
#ifdef RS_RELEASE_VERSION
|
||||||
channelsDialog = NULL;
|
channelsDialog = NULL;
|
||||||
@ -208,10 +198,7 @@ MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
|||||||
ui.toolBar->addActions(grp->actions());
|
ui.toolBar->addActions(grp->actions());
|
||||||
ui.toolBar->addSeparator();
|
ui.toolBar->addSeparator();
|
||||||
connect(grp, SIGNAL(triggered(QAction *)), ui.stackPages, SLOT(showPage(QAction *)));
|
connect(grp, SIGNAL(triggered(QAction *)), ui.stackPages, SLOT(showPage(QAction *)));
|
||||||
/* Create the toolbarservice */
|
|
||||||
ui.toolBarservice->addActions(servicegrp->actions());
|
|
||||||
ui.toolBarservice->addSeparator();
|
|
||||||
connect(servicegrp, SIGNAL(triggered(QAction *)), ui.stackPages, SLOT(showPage(QAction *)));
|
|
||||||
|
|
||||||
/* Create and bind the messenger button */
|
/* Create and bind the messenger button */
|
||||||
addAction(new QAction(QIcon(IMAGE_RSM32), tr("Messenger"), ui.toolBar), SLOT(showMessengerWindow()));
|
addAction(new QAction(QIcon(IMAGE_RSM32), tr("Messenger"), ui.toolBar), SLOT(showMessengerWindow()));
|
||||||
@ -235,7 +222,44 @@ MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
|||||||
/* Select the first action */
|
/* Select the first action */
|
||||||
grp->actions()[0]->setChecked(true);
|
grp->actions()[0]->setChecked(true);
|
||||||
/* Select the first action */
|
/* Select the first action */
|
||||||
servicegrp->actions()[0]->setChecked(true);
|
/* Create the Service pages and actions */
|
||||||
|
QActionGroup *servicegrp = new QActionGroup(this);
|
||||||
|
|
||||||
|
/* Create and bind the Add Friend button */
|
||||||
|
addActionservice(new QAction(QIcon(IMAGE_ADDFRIEND), tr("Add Friend"), ui.toolBarservice), SLOT(addFriend()));
|
||||||
|
addActionservice(new QAction(QIcon(IMAGE_INVITEFRIEND), tr("Invite Friend"), ui.toolBarservice), SLOT(inviteFriend()));
|
||||||
|
addActionservice(new QAction(QIcon(IMAGE_ADDSHARE), tr("Add Share"), ui.toolBarservice), SLOT(addSharedDirectory()));
|
||||||
|
|
||||||
|
LinksDialog *linksDialog = NULL;
|
||||||
|
ui.stackPages->add(linksDialog = new LinksDialog(ui.stackPages),
|
||||||
|
createPageAction(QIcon(IMAGE_LINKS), tr("Links Cloud"), servicegrp));
|
||||||
|
|
||||||
|
ChannelsDialog *channelsDialog = NULL;
|
||||||
|
ui.stackPages->add(channelsDialog = new ChannelsDialog(ui.stackPages),
|
||||||
|
createPageAction(QIcon(IMAGE_CHANNELS), tr("Channels"), servicegrp));
|
||||||
|
|
||||||
|
GamesDialog *gamesDialog = NULL;
|
||||||
|
ui.stackPages->add(gamesDialog = new GamesDialog(ui.stackPages),
|
||||||
|
createPageAction(QIcon(IMAGE_GAMES), tr("Games"), servicegrp));
|
||||||
|
|
||||||
|
PhotoDialog *photoDialog = NULL;
|
||||||
|
ui.stackPages->add(photoDialog = new PhotoDialog(ui.stackPages),
|
||||||
|
createPageAction(QIcon(IMAGE_PHOTO), tr("Photo View"), servicegrp));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Create the toolbarservice */
|
||||||
|
ui.toolBarservice->addActions(servicegrp->actions());
|
||||||
|
ui.toolBarservice->addSeparator();
|
||||||
|
connect(servicegrp, SIGNAL(triggered(QAction *)), ui.stackPages, SLOT(showPage(QAction *)));
|
||||||
|
|
||||||
|
addActionservice(new QAction(QIcon(IMAGE_OPTIONS), tr("Options"), ui.toolBarservice), SLOT(showPreferencesWindow()));
|
||||||
|
|
||||||
|
ui.toolBarservice->addSeparator();
|
||||||
|
|
||||||
|
addActionservice(new QAction(QIcon(IMAGE_QUIT), tr("Quit"), ui.toolBarservice), SLOT(doQuit()));
|
||||||
|
|
||||||
|
//servicegrp->actions()[0]->setChecked(true);
|
||||||
|
|
||||||
/* Create the actions that will go in the tray menu */
|
/* Create the actions that will go in the tray menu */
|
||||||
createActions();
|
createActions();
|
||||||
@ -300,16 +324,34 @@ QAction* MainWindow::createPageAction(QIcon img, QString text, QActionGroup *gro
|
|||||||
return action;
|
return action;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Creates a new action associated with a config page. */
|
||||||
|
QAction* MainWindow::createPageActionservice(QIcon img, QString text, QActionGroup *groupservice)
|
||||||
|
{
|
||||||
|
QAction *actionservice = new QAction(img, text, groupservice);
|
||||||
|
actionservice->setCheckable(true);
|
||||||
|
actionservice->setFont(FONT);
|
||||||
|
return actionservice;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/** Adds the given action to the toolbar and hooks its triggered() signal to
|
/** Adds the given action to the toolbar and hooks its triggered() signal to
|
||||||
* the specified slot (if given). */
|
* the specified slot (if given). */
|
||||||
void MainWindow::addAction(QAction *action, const char *slot)
|
void MainWindow::addAction(QAction *action, const char *slot)
|
||||||
{
|
{
|
||||||
action->setFont(FONT);
|
action->setFont(FONT);
|
||||||
ui.toolBar->addAction(action);
|
ui.toolBar->addAction(action);
|
||||||
ui.toolBarservice->addAction(action);
|
|
||||||
connect(action, SIGNAL(triggered()), this, slot);
|
connect(action, SIGNAL(triggered()), this, slot);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Adds the given action to the toolbar and hooks its triggered() signal to
|
||||||
|
* the specified slot (if given). */
|
||||||
|
void MainWindow::addActionservice(QAction *actionservice, const char *slot)
|
||||||
|
{
|
||||||
|
actionservice->setFont(FONT);
|
||||||
|
ui.toolBarservice->addAction(actionservice);
|
||||||
|
connect(actionservice, SIGNAL(triggered()), this, slot);
|
||||||
|
}
|
||||||
|
|
||||||
/** Overloads the default show so we can load settings */
|
/** Overloads the default show so we can load settings */
|
||||||
void MainWindow::show()
|
void MainWindow::show()
|
||||||
{
|
{
|
||||||
@ -455,7 +497,7 @@ void MainWindow::createActions()
|
|||||||
//connect(_smplayerAct, SIGNAL(triggered()),this, SLOT(showsmplayer()));
|
//connect(_smplayerAct, SIGNAL(triggered()),this, SLOT(showsmplayer()));
|
||||||
|
|
||||||
|
|
||||||
connect(ui.btntoggletoolbox, SIGNAL(toggled(bool)), this, SLOT(showToolboxFrame(bool)));
|
//connect(ui.btntoggletoolbox, SIGNAL(toggled(bool)), this, SLOT(showToolboxFrame(bool)));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -564,7 +606,7 @@ void MainWindow::showConsoleFrame(bool show)
|
|||||||
/**
|
/**
|
||||||
Toggles the ToolBox on and off, changes toggle button text
|
Toggles the ToolBox on and off, changes toggle button text
|
||||||
*/
|
*/
|
||||||
void MainWindow::showToolboxFrame(bool show)
|
/*void MainWindow::showToolboxFrame(bool show)
|
||||||
{
|
{
|
||||||
if (show) {
|
if (show) {
|
||||||
ui.toolboxframe->setVisible(true);
|
ui.toolboxframe->setVisible(true);
|
||||||
@ -577,7 +619,7 @@ void MainWindow::showToolboxFrame(bool show)
|
|||||||
ui.btntoggletoolbox->setToolTip(tr("Show ToolBox"));
|
ui.btntoggletoolbox->setToolTip(tr("Show ToolBox"));
|
||||||
ui.btntoggletoolbox->setIcon(QIcon(tr(":images/show_toolbox_frame.png")));
|
ui.btntoggletoolbox->setIcon(QIcon(tr(":images/show_toolbox_frame.png")));
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -132,7 +132,7 @@ private slots:
|
|||||||
void showConsoleFrame(bool show);
|
void showConsoleFrame(bool show);
|
||||||
|
|
||||||
/** Called when console button is toggled */
|
/** Called when console button is toggled */
|
||||||
void showToolboxFrame(bool show);
|
//void showToolboxFrame(bool show);
|
||||||
|
|
||||||
/** Called when user attempts to quit via quit button*/
|
/** Called when user attempts to quit via quit button*/
|
||||||
void doQuit();
|
void doQuit();
|
||||||
@ -164,11 +164,16 @@ private:
|
|||||||
PreferencesWindow* _preferencesWindow;
|
PreferencesWindow* _preferencesWindow;
|
||||||
|
|
||||||
|
|
||||||
/** Creates a new action for a config page. */
|
/** Creates a new action for a Main page. */
|
||||||
QAction* createPageAction(QIcon img, QString text, QActionGroup *group);
|
QAction* createPageAction(QIcon img, QString text, QActionGroup *group);
|
||||||
/** Adds a new action to the toolbar. */
|
/** Adds a new action to the toolbar. */
|
||||||
void addAction(QAction *action, const char *slot = 0);
|
void addAction(QAction *action, const char *slot = 0);
|
||||||
|
|
||||||
|
/** Creates a new action for a Service pages. */
|
||||||
|
QAction* createPageActionservice(QIcon img, QString text, QActionGroup *groupservice);
|
||||||
|
/** Adds a new action to the toolbar. */
|
||||||
|
void addActionservice(QAction *actionservice, const char *slot = 0);
|
||||||
|
|
||||||
void loadStyleSheet(const QString &sheetName);
|
void loadStyleSheet(const QString &sheetName);
|
||||||
|
|
||||||
QSystemTrayIcon *trayIcon;
|
QSystemTrayIcon *trayIcon;
|
||||||
|
@ -543,36 +543,6 @@
|
|||||||
<attribute name="title" >
|
<attribute name="title" >
|
||||||
<string>Home</string>
|
<string>Home</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
<layout class="QHBoxLayout" >
|
|
||||||
<property name="spacing" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="leftMargin" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="topMargin" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="rightMargin" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="bottomMargin" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<widget class="QFrame" name="toolboxframe" >
|
|
||||||
<property name="maximumSize" >
|
|
||||||
<size>
|
|
||||||
<width>74</width>
|
|
||||||
<height>16777215</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="frameShape" >
|
|
||||||
<enum>QFrame::StyledPanel</enum>
|
|
||||||
</property>
|
|
||||||
<property name="frameShadow" >
|
|
||||||
<enum>QFrame::Raised</enum>
|
|
||||||
</property>
|
|
||||||
<layout class="QGridLayout" >
|
<layout class="QGridLayout" >
|
||||||
<property name="leftMargin" >
|
<property name="leftMargin" >
|
||||||
<number>0</number>
|
<number>0</number>
|
||||||
@ -586,448 +556,7 @@
|
|||||||
<property name="bottomMargin" >
|
<property name="bottomMargin" >
|
||||||
<number>0</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<property name="horizontalSpacing" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="verticalSpacing" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<item row="0" column="0" >
|
<item row="0" column="0" >
|
||||||
<widget class="QToolBox" name="toolBox" >
|
|
||||||
<property name="sizePolicy" >
|
|
||||||
<sizepolicy vsizetype="Preferred" hsizetype="Maximum" >
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="minimumSize" >
|
|
||||||
<size>
|
|
||||||
<width>70</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize" >
|
|
||||||
<size>
|
|
||||||
<width>74</width>
|
|
||||||
<height>16777215</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="font" >
|
|
||||||
<font/>
|
|
||||||
</property>
|
|
||||||
<property name="styleSheet" >
|
|
||||||
<string>QToolBox::tab {
|
|
||||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);
|
|
||||||
|
|
||||||
border-radius: 5px;
|
|
||||||
color: darkgray;
|
|
||||||
}
|
|
||||||
QToolBox::tab:selected {
|
|
||||||
font: bold;
|
|
||||||
color: black;
|
|
||||||
}</string>
|
|
||||||
</property>
|
|
||||||
<property name="lineWidth" >
|
|
||||||
<number>1</number>
|
|
||||||
</property>
|
|
||||||
<property name="currentIndex" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<widget class="QWidget" name="page" >
|
|
||||||
<property name="geometry" >
|
|
||||||
<rect>
|
|
||||||
<x>0</x>
|
|
||||||
<y>0</y>
|
|
||||||
<width>72</width>
|
|
||||||
<height>269</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
<attribute name="label" >
|
|
||||||
<string>General</string>
|
|
||||||
</attribute>
|
|
||||||
<layout class="QGridLayout" >
|
|
||||||
<property name="leftMargin" >
|
|
||||||
<number>9</number>
|
|
||||||
</property>
|
|
||||||
<property name="topMargin" >
|
|
||||||
<number>9</number>
|
|
||||||
</property>
|
|
||||||
<property name="rightMargin" >
|
|
||||||
<number>9</number>
|
|
||||||
</property>
|
|
||||||
<property name="bottomMargin" >
|
|
||||||
<number>9</number>
|
|
||||||
</property>
|
|
||||||
<property name="horizontalSpacing" >
|
|
||||||
<number>6</number>
|
|
||||||
</property>
|
|
||||||
<property name="verticalSpacing" >
|
|
||||||
<number>6</number>
|
|
||||||
</property>
|
|
||||||
<item row="2" column="0" >
|
|
||||||
<widget class="QPushButton" name="quitButton" >
|
|
||||||
<property name="windowModality" >
|
|
||||||
<enum>Qt::NonModal</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizePolicy" >
|
|
||||||
<sizepolicy vsizetype="Fixed" hsizetype="Fixed" >
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="minimumSize" >
|
|
||||||
<size>
|
|
||||||
<width>48</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize" >
|
|
||||||
<size>
|
|
||||||
<width>32</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text" >
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="icon" >
|
|
||||||
<iconset resource="images.qrc" >:/images/exit_24x24.png</iconset>
|
|
||||||
</property>
|
|
||||||
<property name="iconSize" >
|
|
||||||
<size>
|
|
||||||
<width>24</width>
|
|
||||||
<height>24</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="3" column="0" >
|
|
||||||
<spacer>
|
|
||||||
<property name="orientation" >
|
|
||||||
<enum>Qt::Vertical</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" >
|
|
||||||
<size>
|
|
||||||
<width>20</width>
|
|
||||||
<height>40</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="0" >
|
|
||||||
<layout class="QGridLayout" >
|
|
||||||
<property name="leftMargin" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="topMargin" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="rightMargin" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="bottomMargin" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="horizontalSpacing" >
|
|
||||||
<number>7</number>
|
|
||||||
</property>
|
|
||||||
<property name="verticalSpacing" >
|
|
||||||
<number>7</number>
|
|
||||||
</property>
|
|
||||||
<item row="1" column="0" >
|
|
||||||
<widget class="QPushButton" name="invitefriendButton" >
|
|
||||||
<property name="sizePolicy" >
|
|
||||||
<sizepolicy vsizetype="Fixed" hsizetype="Fixed" >
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="minimumSize" >
|
|
||||||
<size>
|
|
||||||
<width>48</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize" >
|
|
||||||
<size>
|
|
||||||
<width>32</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text" >
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="icon" >
|
|
||||||
<iconset resource="images.qrc" >:/images/invite-friend24.png</iconset>
|
|
||||||
</property>
|
|
||||||
<property name="iconSize" >
|
|
||||||
<size>
|
|
||||||
<width>24</width>
|
|
||||||
<height>24</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="0" >
|
|
||||||
<widget class="QPushButton" name="addfriendButton" >
|
|
||||||
<property name="sizePolicy" >
|
|
||||||
<sizepolicy vsizetype="Fixed" hsizetype="Fixed" >
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="minimumSize" >
|
|
||||||
<size>
|
|
||||||
<width>48</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize" >
|
|
||||||
<size>
|
|
||||||
<width>32</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text" >
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="icon" >
|
|
||||||
<iconset resource="images.qrc" >:/images/add-friend24.png</iconset>
|
|
||||||
</property>
|
|
||||||
<property name="iconSize" >
|
|
||||||
<size>
|
|
||||||
<width>24</width>
|
|
||||||
<height>24</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="3" column="0" >
|
|
||||||
<widget class="QPushButton" name="optionsButton" >
|
|
||||||
<property name="sizePolicy" >
|
|
||||||
<sizepolicy vsizetype="Fixed" hsizetype="Fixed" >
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="minimumSize" >
|
|
||||||
<size>
|
|
||||||
<width>48</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize" >
|
|
||||||
<size>
|
|
||||||
<width>32</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text" >
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="icon" >
|
|
||||||
<iconset resource="images.qrc" >:/images/settings.png</iconset>
|
|
||||||
</property>
|
|
||||||
<property name="iconSize" >
|
|
||||||
<size>
|
|
||||||
<width>24</width>
|
|
||||||
<height>24</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="0" >
|
|
||||||
<widget class="QPushButton" name="addshareButton" >
|
|
||||||
<property name="sizePolicy" >
|
|
||||||
<sizepolicy vsizetype="Fixed" hsizetype="Fixed" >
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="minimumSize" >
|
|
||||||
<size>
|
|
||||||
<width>48</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize" >
|
|
||||||
<size>
|
|
||||||
<width>32</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text" >
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="icon" >
|
|
||||||
<iconset resource="images.qrc" >:/images/add-share24.png</iconset>
|
|
||||||
</property>
|
|
||||||
<property name="iconSize" >
|
|
||||||
<size>
|
|
||||||
<width>24</width>
|
|
||||||
<height>24</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="0" >
|
|
||||||
<spacer>
|
|
||||||
<property name="orientation" >
|
|
||||||
<enum>Qt::Vertical</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" >
|
|
||||||
<size>
|
|
||||||
<width>20</width>
|
|
||||||
<height>40</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
<widget class="QWidget" name="page_2" >
|
|
||||||
<property name="geometry" >
|
|
||||||
<rect>
|
|
||||||
<x>0</x>
|
|
||||||
<y>0</y>
|
|
||||||
<width>98</width>
|
|
||||||
<height>28</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
<attribute name="label" >
|
|
||||||
<string>Games</string>
|
|
||||||
</attribute>
|
|
||||||
<widget class="QPushButton" name="qcheckersButton" >
|
|
||||||
<property name="geometry" >
|
|
||||||
<rect>
|
|
||||||
<x>10</x>
|
|
||||||
<y>60</y>
|
|
||||||
<width>41</width>
|
|
||||||
<height>41</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
<property name="toolTip" >
|
|
||||||
<string><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
|
||||||
p, li { white-space: pre-wrap; }
|
|
||||||
</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal; text-decoration:none;">
|
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt; font-weight:600;">QCheckers</span></p></body></html></string>
|
|
||||||
</property>
|
|
||||||
<property name="text" >
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="icon" >
|
|
||||||
<iconset resource="../games/qcheckers/qcheckers.qrc" >:/icons/biglogo.png</iconset>
|
|
||||||
</property>
|
|
||||||
<property name="iconSize" >
|
|
||||||
<size>
|
|
||||||
<width>32</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
<widget class="QPushButton" name="qbackgammonButton" >
|
|
||||||
<property name="geometry" >
|
|
||||||
<rect>
|
|
||||||
<x>10</x>
|
|
||||||
<y>10</y>
|
|
||||||
<width>41</width>
|
|
||||||
<height>41</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
<property name="toolTip" >
|
|
||||||
<string><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
|
||||||
p, li { white-space: pre-wrap; }
|
|
||||||
</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal; text-decoration:none;">
|
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt; font-weight:600; color:#000000;">QBackgammon</span></p></body></html></string>
|
|
||||||
</property>
|
|
||||||
<property name="text" >
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="icon" >
|
|
||||||
<iconset resource="images.qrc" >:/images/kbackgammon.png</iconset>
|
|
||||||
</property>
|
|
||||||
<property name="iconSize" >
|
|
||||||
<size>
|
|
||||||
<width>32</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</widget>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<layout class="QGridLayout" >
|
|
||||||
<property name="leftMargin" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="topMargin" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="rightMargin" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="bottomMargin" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="horizontalSpacing" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="verticalSpacing" >
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<item row="0" column="0" >
|
|
||||||
<widget class="QPushButton" name="btntoggletoolbox" >
|
|
||||||
<property name="minimumSize" >
|
|
||||||
<size>
|
|
||||||
<width>14</width>
|
|
||||||
<height>31</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize" >
|
|
||||||
<size>
|
|
||||||
<width>14</width>
|
|
||||||
<height>32</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text" >
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="icon" >
|
|
||||||
<iconset resource="images.qrc" >:/images/hide_toolbox_frame.png</iconset>
|
|
||||||
</property>
|
|
||||||
<property name="iconSize" >
|
|
||||||
<size>
|
|
||||||
<width>16</width>
|
|
||||||
<height>31</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="checkable" >
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="0" >
|
|
||||||
<spacer>
|
|
||||||
<property name="orientation" >
|
|
||||||
<enum>Qt::Vertical</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" >
|
|
||||||
<size>
|
|
||||||
<width>14</width>
|
|
||||||
<height>191</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="MainPageStack" native="1" name="stackPages" >
|
<widget class="MainPageStack" native="1" name="stackPages" >
|
||||||
<property name="sizeIncrement" >
|
<property name="sizeIncrement" >
|
||||||
<size>
|
<size>
|
||||||
@ -1748,7 +1277,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<attribute name="toolBarArea" >
|
<attribute name="toolBarArea" >
|
||||||
<enum>RightToolBarArea</enum>
|
<enum>LeftToolBarArea</enum>
|
||||||
</attribute>
|
</attribute>
|
||||||
<attribute name="toolBarBreak" >
|
<attribute name="toolBarBreak" >
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
@ -1764,15 +1293,9 @@ p, li { white-space: pre-wrap; }
|
|||||||
</customwidgets>
|
</customwidgets>
|
||||||
<tabstops>
|
<tabstops>
|
||||||
<tabstop>tabWidget</tabstop>
|
<tabstop>tabWidget</tabstop>
|
||||||
<tabstop>addfriendButton</tabstop>
|
|
||||||
<tabstop>invitefriendButton</tabstop>
|
|
||||||
<tabstop>addshareButton</tabstop>
|
|
||||||
<tabstop>optionsButton</tabstop>
|
|
||||||
<tabstop>quitButton</tabstop>
|
|
||||||
<tabstop>textBrowser</tabstop>
|
<tabstop>textBrowser</tabstop>
|
||||||
<tabstop>lineEdit</tabstop>
|
<tabstop>lineEdit</tabstop>
|
||||||
<tabstop>btnToggleConsole</tabstop>
|
<tabstop>btnToggleConsole</tabstop>
|
||||||
<tabstop>btntoggletoolbox</tabstop>
|
|
||||||
</tabstops>
|
</tabstops>
|
||||||
<resources>
|
<resources>
|
||||||
<include location="images.qrc" />
|
<include location="images.qrc" />
|
||||||
|
@ -129,6 +129,7 @@
|
|||||||
<file>images/konsole.png</file>
|
<file>images/konsole.png</file>
|
||||||
<file>images/ksysguard.png</file>
|
<file>images/ksysguard.png</file>
|
||||||
<file>images/ktorrent.png</file>
|
<file>images/ktorrent.png</file>
|
||||||
|
<file>images/ktorrent32.png</file>
|
||||||
<file>images/loadcert16.png</file>
|
<file>images/loadcert16.png</file>
|
||||||
<file>images/locale.png</file>
|
<file>images/locale.png</file>
|
||||||
<file>images/lphoto.png</file>
|
<file>images/lphoto.png</file>
|
||||||
|
BIN
retroshare-gui/src/gui/images/hi32-app-ktorrent.png
Normal file
BIN
retroshare-gui/src/gui/images/hi32-app-ktorrent.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.5 KiB |
BIN
retroshare-gui/src/gui/images/ktorrent32.png
Normal file
BIN
retroshare-gui/src/gui/images/ktorrent32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.5 KiB |
Loading…
x
Reference in New Issue
Block a user