mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-18 14:00:35 -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 <QInputDialog>
|
||||
#include <QMenu>
|
||||
#include <QWidgetAction>
|
||||
|
||||
#include "ChatLobbyDialog.h"
|
||||
#include "gui/ChatLobbyWidget.h"
|
||||
|
@ -81,8 +82,8 @@ ChatLobbyDialog::ChatLobbyDialog(const ChatLobbyId& lid, QWidget *parent, Qt::Wi
|
|||
// Add a button to invite friends.
|
||||
//
|
||||
inviteFriendsButton = new QToolButton ;
|
||||
inviteFriendsButton->setMinimumSize(QSize(2*S,2*S)) ;
|
||||
inviteFriendsButton->setMaximumSize(QSize(2*S,2*S)) ;
|
||||
inviteFriendsButton->setMinimumSize(QSize(2*S,2*S)) ;
|
||||
inviteFriendsButton->setMaximumSize(QSize(2*S,2*S)) ;
|
||||
inviteFriendsButton->setText(QString()) ;
|
||||
inviteFriendsButton->setAutoRaise(true) ;
|
||||
inviteFriendsButton->setToolTip(tr("Invite friends to this lobby"));
|
||||
|
@ -107,7 +108,13 @@ ChatLobbyDialog::ChatLobbyDialog(const ChatLobbyId& lid, QWidget *parent, Qt::Wi
|
|||
ownIdChooser = new GxsIdChooser() ;
|
||||
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())) ;
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
|
||||
class GxsIdChooser ;
|
||||
class QToolButton;
|
||||
class QWidgetAction;
|
||||
|
||||
class ChatLobbyDialog: public ChatDialog
|
||||
{
|
||||
|
@ -102,6 +103,7 @@ private:
|
|||
|
||||
QAction *muteAct;
|
||||
QAction *distantChatAct;
|
||||
QWidgetAction *checkableAction;
|
||||
|
||||
GxsIdChooser *ownIdChooser ;
|
||||
};
|
||||
|
|
|
@ -71,7 +71,11 @@
|
|||
</widget>
|
||||
</item>
|
||||
<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 row="2" column="0">
|
||||
<widget class="QLabel" name="label_4">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue