Moved Id Chooser to Tool Menu

Added a place holder text.
This commit is contained in:
defnax 2015-08-30 03:48:45 +02:00
parent b11baa7a65
commit d9fd60ee75
3 changed files with 18 additions and 5 deletions

View file

@ -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())) ;

View file

@ -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 ;
}; };

View file

@ -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">