mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
added view button
let left toolbar moveable to right side. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1144 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
1cc8639305
commit
88fa2715d5
@ -1052,7 +1052,7 @@
|
|||||||
<string>toolBar_2</string>
|
<string>toolBar_2</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="allowedAreas" >
|
<property name="allowedAreas" >
|
||||||
<set>Qt::LeftToolBarArea</set>
|
<set>Qt::LeftToolBarArea|Qt::RightToolBarArea</set>
|
||||||
</property>
|
</property>
|
||||||
<attribute name="toolBarArea" >
|
<attribute name="toolBarArea" >
|
||||||
<enum>LeftToolBarArea</enum>
|
<enum>LeftToolBarArea</enum>
|
||||||
|
@ -126,6 +126,13 @@ NetworkDialog::NetworkDialog(QWidget *parent)
|
|||||||
|
|
||||||
setLogInfo(tr("Welcome to RetroShare."), QString::fromUtf8("blue"));
|
setLogInfo(tr("Welcome to RetroShare."), QString::fromUtf8("blue"));
|
||||||
|
|
||||||
|
QMenu *menu = new QMenu("View");
|
||||||
|
menu->addAction(ui.actionTabsright);
|
||||||
|
menu->addAction(ui.actionTabswest);
|
||||||
|
menu->addAction(ui.actionTabssouth);
|
||||||
|
menu->addAction(ui.actionTabsnorth);
|
||||||
|
ui.viewButton->setMenu(menu);
|
||||||
|
|
||||||
|
|
||||||
/* Hide platform specific features */
|
/* Hide platform specific features */
|
||||||
#ifdef Q_WS_WIN
|
#ifdef Q_WS_WIN
|
||||||
@ -583,3 +590,23 @@ void NetworkDialog::displayInfoLogMenu(const QPoint& pos) {
|
|||||||
// XXX: Why mapToGlobal() is not enough?
|
// XXX: Why mapToGlobal() is not enough?
|
||||||
myLogMenu.exec(mapToGlobal(pos)+QPoint(0,320));
|
myLogMenu.exec(mapToGlobal(pos)+QPoint(0,320));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void NetworkDialog::on_actionTabsright_activated()
|
||||||
|
{
|
||||||
|
ui.networkTab->setTabPosition(QTabWidget::East);
|
||||||
|
}
|
||||||
|
|
||||||
|
void NetworkDialog::on_actionTabsnorth_activated()
|
||||||
|
{
|
||||||
|
ui.networkTab->setTabPosition(QTabWidget::North);
|
||||||
|
}
|
||||||
|
|
||||||
|
void NetworkDialog::on_actionTabssouth_activated()
|
||||||
|
{
|
||||||
|
ui.networkTab->setTabPosition(QTabWidget::South);
|
||||||
|
}
|
||||||
|
|
||||||
|
void NetworkDialog::on_actionTabswest_activated()
|
||||||
|
{
|
||||||
|
ui.networkTab->setTabPosition(QTabWidget::West);
|
||||||
|
}
|
||||||
|
@ -69,6 +69,12 @@ private slots:
|
|||||||
void on_actionClearLog_triggered();
|
void on_actionClearLog_triggered();
|
||||||
void displayInfoLogMenu(const QPoint& pos);
|
void displayInfoLogMenu(const QPoint& pos);
|
||||||
|
|
||||||
|
void on_actionTabsright_activated();
|
||||||
|
void on_actionTabsnorth_activated();
|
||||||
|
void on_actionTabssouth_activated();
|
||||||
|
void on_actionTabswest_activated();
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
||||||
|
@ -85,6 +85,13 @@ p, li { white-space: pre-wrap; }
|
|||||||
</property>
|
</property>
|
||||||
</spacer>
|
</spacer>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="0" column="3" >
|
||||||
|
<widget class="QPushButton" name="viewButton" >
|
||||||
|
<property name="text" >
|
||||||
|
<string>View</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="0" >
|
<item row="1" column="0" >
|
||||||
@ -231,6 +238,26 @@ p, li { white-space: pre-wrap; }
|
|||||||
<string>Clear</string>
|
<string>Clear</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
|
<action name="actionTabsright" >
|
||||||
|
<property name="text" >
|
||||||
|
<string>Set Tabs Right</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
<action name="actionTabsnorth" >
|
||||||
|
<property name="text" >
|
||||||
|
<string>Set Tabs North</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
<action name="actionTabssouth" >
|
||||||
|
<property name="text" >
|
||||||
|
<string>Set Tabs South</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
<action name="actionTabswest" >
|
||||||
|
<property name="text" >
|
||||||
|
<string>Set Tabs Left</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources/>
|
||||||
<connections/>
|
<connections/>
|
||||||
|
Loading…
Reference in New Issue
Block a user