mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-19 06:20:44 -04:00
Moved Id Chooser to Tool Menu
Added a place holder text.
This commit is contained in:
parent
b11baa7a65
commit
d9fd60ee75
3 changed files with 18 additions and 5 deletions
|
@ -25,6 +25,7 @@
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include <QInputDialog>
|
#include <QInputDialog>
|
||||||
#include <QMenu>
|
#include <QMenu>
|
||||||
|
#include <QWidgetAction>
|
||||||
|
|
||||||
#include "ChatLobbyDialog.h"
|
#include "ChatLobbyDialog.h"
|
||||||
#include "gui/ChatLobbyWidget.h"
|
#include "gui/ChatLobbyWidget.h"
|
||||||
|
@ -107,7 +108,13 @@ ChatLobbyDialog::ChatLobbyDialog(const ChatLobbyId& lid, QWidget *parent, Qt::Wi
|
||||||
ownIdChooser = new GxsIdChooser() ;
|
ownIdChooser = new GxsIdChooser() ;
|
||||||
ownIdChooser->loadIds(IDCHOOSER_ID_REQUIRED,current_id) ;
|
ownIdChooser->loadIds(IDCHOOSER_ID_REQUIRED,current_id) ;
|
||||||
|
|
||||||
getChatWidget()->addChatBarWidget(ownIdChooser) ;
|
QWidgetAction *checkableAction = new QWidgetAction(this);
|
||||||
|
checkableAction->setDefaultWidget(ownIdChooser);
|
||||||
|
|
||||||
|
ui.chatWidget->addToolsAction(checkableAction);
|
||||||
|
//getChatWidget()->addChatBarWidget(ownIdChooser);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
connect(ownIdChooser,SIGNAL(currentIndexChanged(int)),this,SLOT(changeNickname())) ;
|
connect(ownIdChooser,SIGNAL(currentIndexChanged(int)),this,SLOT(changeNickname())) ;
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
|
|
||||||
class GxsIdChooser ;
|
class GxsIdChooser ;
|
||||||
class QToolButton;
|
class QToolButton;
|
||||||
|
class QWidgetAction;
|
||||||
|
|
||||||
class ChatLobbyDialog: public ChatDialog
|
class ChatLobbyDialog: public ChatDialog
|
||||||
{
|
{
|
||||||
|
@ -102,6 +103,7 @@ private:
|
||||||
|
|
||||||
QAction *muteAct;
|
QAction *muteAct;
|
||||||
QAction *distantChatAct;
|
QAction *distantChatAct;
|
||||||
|
QWidgetAction *checkableAction;
|
||||||
|
|
||||||
GxsIdChooser *ownIdChooser ;
|
GxsIdChooser *ownIdChooser ;
|
||||||
};
|
};
|
||||||
|
|
|
@ -71,7 +71,11 @@
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="2">
|
<item row="1" column="2">
|
||||||
<widget class="QLineEdit" name="lobbyTopic_LE"/>
|
<widget class="QLineEdit" name="lobbyTopic_LE">
|
||||||
|
<property name="placeholderText">
|
||||||
|
<string>Set a descriptive topic here</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="2" column="0">
|
<item row="2" column="0">
|
||||||
<widget class="QLabel" name="label_4">
|
<widget class="QLabel" name="label_4">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue