2012-01-11 19:13:25 -05:00
# include <QTreeWidget>
2013-02-24 17:44:14 -05:00
# include <QTextBrowser>
# include <QTimer>
2012-01-11 19:13:25 -05:00
# include <QMenu>
2013-03-02 16:27:38 -05:00
# include <QMessageBox>
2013-02-25 09:16:07 -05:00
# include <time.h>
2012-01-07 14:52:58 -05:00
# include "ChatLobbyWidget.h"
2012-01-11 19:13:25 -05:00
# include "chat/CreateLobbyDialog.h"
2013-02-22 16:42:27 -05:00
# include "chat/ChatTabWidget.h"
2012-01-11 19:13:25 -05:00
# include "common/RSTreeWidgetItem.h"
# include "notifyqt.h"
# include "chat/ChatLobbyDialog.h"
2014-12-12 18:50:35 -05:00
# include "chat/ChatLobbyUserNotify.h"
2013-07-01 16:35:07 -04:00
# include "util/HandleRichText.h"
2013-10-19 09:25:06 -04:00
# include "util/QtVersion.h"
2015-03-06 16:13:23 -05:00
# include "gui/settings/rsharesettings.h"
# include "gui/gxs/GxsIdDetails.h"
2015-05-17 06:13:32 -04:00
# include "gui/Identity/IdEditDialog.h"
2012-01-07 14:52:58 -05:00
2012-01-11 19:13:25 -05:00
# include "retroshare/rsmsgs.h"
# include "retroshare/rspeers.h"
# include "retroshare/rsnotify.h"
2015-03-06 16:13:23 -05:00
# include "retroshare/rsidentity.h"
2012-01-11 19:13:25 -05:00
# define COLUMN_NAME 0
# define COLUMN_USER_COUNT 1
2012-03-16 18:47:49 -04:00
# define COLUMN_TOPIC 2
2013-09-19 15:22:17 -04:00
# define COLUMN_SUBSCRIBED 3
# define COLUMN_COUNT 4
2012-01-11 19:13:25 -05:00
# define COLUMN_DATA 0
# define ROLE_SORT Qt::UserRole
# define ROLE_ID Qt::UserRole + 1
# define ROLE_SUBSCRIBED Qt::UserRole + 2
2012-01-30 18:20:42 -05:00
# define ROLE_PRIVACYLEVEL Qt::UserRole + 3
2013-06-29 12:15:33 -04:00
# define ROLE_AUTOSUBSCRIBE Qt::UserRole + 4
2012-01-11 19:13:25 -05:00
# define TYPE_FOLDER 0
# define TYPE_LOBBY 1
2013-09-04 20:57:48 -04:00
# define IMAGE_CREATE ""
# define IMAGE_PUBLIC ": / images / chat_x24.png"
# define IMAGE_PRIVATE ": / images / chat_red24.png"
# define IMAGE_SUBSCRIBE ": / images / edit_add24.png"
# define IMAGE_UNSUBSCRIBE ": / images / cancel.png"
# define IMAGE_PEER_ENTERING ":images / user / add_user24.png"
# define IMAGE_PEER_LEAVING ":images / user / remove_user24.png"
# define IMAGE_TYPING ":images / typing.png"
2013-12-26 16:44:02 -05:00
# define IMAGE_MESSAGE ":images / chat.png"
2013-09-04 20:57:48 -04:00
# define IMAGE_AUTOSUBSCRIBE ":images / accepted16.png"
2012-01-11 19:13:25 -05:00
2013-10-18 17:10:33 -04:00
ChatLobbyWidget : : ChatLobbyWidget ( QWidget * parent , Qt : : WindowFlags flags )
2014-05-09 22:38:47 -04:00
: RsAutoUpdatePage ( 5000 , parent , flags )
2012-01-07 14:52:58 -05:00
{
2014-05-09 22:38:47 -04:00
ui . setupUi ( this ) ;
2012-01-11 19:13:25 -05:00
2014-05-09 22:38:47 -04:00
m_bProcessSettings = false ;
2015-04-17 17:36:22 -04:00
myChatLobbyUserNotify = NULL ;
2013-09-19 15:22:17 -04:00
2014-05-09 22:38:47 -04:00
QObject : : connect ( NotifyQt : : getInstance ( ) , SIGNAL ( lobbyListChanged ( ) ) , SLOT ( lobbyChanged ( ) ) ) ;
QObject : : connect ( NotifyQt : : getInstance ( ) , SIGNAL ( chatLobbyEvent ( qulonglong , int , const QString & , const QString & ) ) , this , SLOT ( displayChatLobbyEvent ( qulonglong , int , const QString & , const QString & ) ) ) ;
QObject : : connect ( NotifyQt : : getInstance ( ) , SIGNAL ( chatLobbyInviteReceived ( ) ) , this , SLOT ( readChatLobbyInvites ( ) ) ) ;
2012-01-11 19:13:25 -05:00
2014-05-09 22:38:47 -04:00
QObject : : connect ( ui . lobbyTreeWidget , SIGNAL ( customContextMenuRequested ( QPoint ) ) , this , SLOT ( lobbyTreeWidgetCustomPopupMenu ( QPoint ) ) ) ;
QObject : : connect ( ui . lobbyTreeWidget , SIGNAL ( itemDoubleClicked ( QTreeWidgetItem * , int ) ) , this , SLOT ( itemDoubleClicked ( QTreeWidgetItem * , int ) ) ) ;
QObject : : connect ( ui . lobbyTreeWidget , SIGNAL ( itemSelectionChanged ( ) ) , this , SLOT ( updateCurrentLobby ( ) ) ) ;
2012-01-18 15:02:19 -05:00
2014-05-09 22:38:47 -04:00
QObject : : connect ( ui . filterLineEdit , SIGNAL ( textChanged ( const QString & ) ) , this , SLOT ( filterItems ( QString ) ) ) ;
QObject : : connect ( ui . filterLineEdit , SIGNAL ( filterChanged ( int ) ) , this , SLOT ( filterColumnChanged ( int ) ) ) ;
QObject : : connect ( ui . createlobbytoolButton , SIGNAL ( clicked ( ) ) , this , SLOT ( createChatLobby ( ) ) ) ;
2012-01-11 19:13:25 -05:00
compareRole = new RSTreeWidgetItemCompareRole ;
compareRole - > setRole ( COLUMN_NAME , ROLE_SORT ) ;
2014-05-09 22:38:47 -04:00
ui . lobbyTreeWidget - > setColumnCount ( COLUMN_COUNT ) ;
ui . lobbyTreeWidget - > sortItems ( COLUMN_NAME , Qt : : AscendingOrder ) ;
2012-01-11 19:13:25 -05:00
2014-05-09 22:38:47 -04:00
ui . lobbyTreeWidget - > setContextMenuPolicy ( Qt : : CustomContextMenu ) ;
2013-03-17 11:03:21 -04:00
2014-05-09 22:38:47 -04:00
QTreeWidgetItem * headerItem = ui . lobbyTreeWidget - > headerItem ( ) ;
2012-01-11 19:13:25 -05:00
headerItem - > setText ( COLUMN_NAME , tr ( " Name " ) ) ;
headerItem - > setText ( COLUMN_USER_COUNT , tr ( " Count " ) ) ;
2012-03-16 18:47:49 -04:00
headerItem - > setText ( COLUMN_TOPIC , tr ( " Topic " ) ) ;
2013-09-19 15:22:17 -04:00
headerItem - > setText ( COLUMN_SUBSCRIBED , tr ( " Subscribed " ) ) ;
2012-01-11 19:13:25 -05:00
headerItem - > setTextAlignment ( COLUMN_NAME , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
2013-09-01 20:08:38 -04:00
headerItem - > setTextAlignment ( COLUMN_TOPIC , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
2012-01-11 19:13:25 -05:00
headerItem - > setTextAlignment ( COLUMN_USER_COUNT , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
2014-05-09 22:38:47 -04:00
headerItem - > setTextAlignment ( COLUMN_SUBSCRIBED , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
2012-01-11 19:13:25 -05:00
2014-05-09 22:38:47 -04:00
QHeaderView * header = ui . lobbyTreeWidget - > header ( ) ;
2013-10-19 09:25:06 -04:00
QHeaderView_setSectionResizeMode ( header , COLUMN_NAME , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeMode ( header , COLUMN_USER_COUNT , QHeaderView : : Interactive ) ;
2014-05-09 22:38:47 -04:00
QHeaderView_setSectionResizeMode ( header , COLUMN_TOPIC , QHeaderView : : Interactive ) ;
2013-10-19 09:25:06 -04:00
QHeaderView_setSectionResizeMode ( header , COLUMN_SUBSCRIBED , QHeaderView : : Interactive ) ;
2012-01-11 19:13:25 -05:00
2013-10-11 16:46:25 -04:00
privateSubLobbyItem = new RSTreeWidgetItem ( compareRole , TYPE_FOLDER ) ;
privateSubLobbyItem - > setText ( COLUMN_NAME , tr ( " Private Subscribed Lobbies " ) ) ;
2014-05-09 22:38:47 -04:00
privateSubLobbyItem - > setData ( COLUMN_NAME , ROLE_SORT , " 1 " ) ;
// privateLobbyItem->setIcon(COLUMN_NAME, QIcon(IMAGE_PRIVATE));
2015-03-06 16:13:23 -05:00
privateSubLobbyItem - > setData ( COLUMN_DATA , ROLE_PRIVACYLEVEL , CHAT_LOBBY_PRIVACY_LEVEL_PRIVATE ) ;
2014-05-09 22:38:47 -04:00
ui . lobbyTreeWidget - > insertTopLevelItem ( 0 , privateSubLobbyItem ) ;
publicSubLobbyItem = new RSTreeWidgetItem ( compareRole , TYPE_FOLDER ) ;
publicSubLobbyItem - > setText ( COLUMN_NAME , tr ( " Public Subscribed Lobbies " ) ) ;
publicSubLobbyItem - > setData ( COLUMN_NAME , ROLE_SORT , " 2 " ) ;
// publicLobbyItem->setIcon(COLUMN_NAME, QIcon(IMAGE_PUBLIC));
2015-03-06 16:13:23 -05:00
publicSubLobbyItem - > setData ( COLUMN_DATA , ROLE_PRIVACYLEVEL , CHAT_LOBBY_PRIVACY_LEVEL_PUBLIC ) ;
2014-05-09 22:38:47 -04:00
ui . lobbyTreeWidget - > insertTopLevelItem ( 1 , publicSubLobbyItem ) ;
2013-10-11 16:46:25 -04:00
2012-01-11 19:13:25 -05:00
privateLobbyItem = new RSTreeWidgetItem ( compareRole , TYPE_FOLDER ) ;
privateLobbyItem - > setText ( COLUMN_NAME , tr ( " Private Lobbies " ) ) ;
2014-05-09 22:38:47 -04:00
privateLobbyItem - > setData ( COLUMN_NAME , ROLE_SORT , " 3 " ) ;
// privateLobbyItem->setIcon(COLUMN_NAME, QIcon(IMAGE_PRIVATE));
2015-03-06 16:13:23 -05:00
privateLobbyItem - > setData ( COLUMN_DATA , ROLE_PRIVACYLEVEL , CHAT_LOBBY_PRIVACY_LEVEL_PRIVATE ) ;
2014-05-09 22:38:47 -04:00
ui . lobbyTreeWidget - > insertTopLevelItem ( 2 , privateLobbyItem ) ;
2012-01-11 19:13:25 -05:00
publicLobbyItem = new RSTreeWidgetItem ( compareRole , TYPE_FOLDER ) ;
publicLobbyItem - > setText ( COLUMN_NAME , tr ( " Public Lobbies " ) ) ;
2014-05-09 22:38:47 -04:00
publicLobbyItem - > setData ( COLUMN_NAME , ROLE_SORT , " 4 " ) ;
// publicLobbyItem->setIcon(COLUMN_NAME, QIcon(IMAGE_PUBLIC));
2015-03-06 16:13:23 -05:00
publicLobbyItem - > setData ( COLUMN_DATA , ROLE_PRIVACYLEVEL , CHAT_LOBBY_PRIVACY_LEVEL_PUBLIC ) ;
2014-05-09 22:38:47 -04:00
ui . lobbyTreeWidget - > insertTopLevelItem ( 3 , publicLobbyItem ) ;
ui . lobbyTreeWidget - > expandAll ( ) ;
ui . lobbyTreeWidget - > setColumnHidden ( COLUMN_NAME , false ) ;
ui . lobbyTreeWidget - > setColumnHidden ( COLUMN_USER_COUNT , true ) ;
ui . lobbyTreeWidget - > setColumnHidden ( COLUMN_TOPIC , true ) ;
ui . lobbyTreeWidget - > setColumnHidden ( COLUMN_SUBSCRIBED , true ) ;
ui . lobbyTreeWidget - > setSortingEnabled ( true ) ;
ui . lobbyTreeWidget - > adjustSize ( ) ;
ui . lobbyTreeWidget - > setColumnWidth ( COLUMN_NAME , 100 ) ;
ui . lobbyTreeWidget - > setColumnWidth ( COLUMN_USER_COUNT , 50 ) ;
ui . lobbyTreeWidget - > setColumnWidth ( COLUMN_TOPIC , 50 ) ;
/** Setup the actions for the header context menu */
showUserCountAct = new QAction ( headerItem - > text ( COLUMN_USER_COUNT ) , this ) ;
2013-09-19 15:22:17 -04:00
showUserCountAct - > setCheckable ( true ) ; showUserCountAct - > setToolTip ( tr ( " Show " ) + showUserCountAct - > text ( ) + tr ( " Column " ) ) ;
connect ( showUserCountAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowUserCountColumn ( bool ) ) ) ;
showTopicAct = new QAction ( headerItem - > text ( COLUMN_TOPIC ) , this ) ;
showTopicAct - > setCheckable ( true ) ; showTopicAct - > setToolTip ( tr ( " Show " ) + showTopicAct - > text ( ) + tr ( " Column " ) ) ;
connect ( showTopicAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowTopicColumn ( bool ) ) ) ;
showSubscribeAct = new QAction ( headerItem - > text ( COLUMN_SUBSCRIBED ) , this ) ;
showSubscribeAct - > setCheckable ( true ) ; showSubscribeAct - > setToolTip ( tr ( " Show " ) + showSubscribeAct - > text ( ) + tr ( " Column " ) ) ;
connect ( showSubscribeAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowSubscribeColumn ( bool ) ) ) ;
2013-03-19 16:49:24 -04:00
2013-03-19 18:34:30 -04:00
// Set initial size of the splitter
2014-12-13 18:32:23 -05:00
ui . splitter - > setStretchFactor ( 0 , 0 ) ;
ui . splitter - > setStretchFactor ( 1 , 1 ) ;
2013-03-19 18:34:30 -04:00
QList < int > sizes ;
sizes < < 200 < < width ( ) ; // Qt calculates the right sizes
2014-05-09 22:38:47 -04:00
ui . splitter - > setSizes ( sizes ) ;
2013-03-19 18:34:30 -04:00
2012-01-11 19:13:25 -05:00
lobbyChanged ( ) ;
2013-02-24 17:44:14 -05:00
showBlankPage ( 0 ) ;
2014-05-09 22:38:47 -04:00
/* add filter actions */
ui . filterLineEdit - > addFilter ( QIcon ( ) , tr ( " Name " ) , COLUMN_NAME , tr ( " Search Name " ) ) ;
ui . filterLineEdit - > setCurrentFilter ( COLUMN_NAME ) ;
// load settings
processSettings ( true ) ;
QString help_str = tr ( " \
< h1 > < img width = \ " 32 \" src= \" :/images/64px_help.png \" > Chat Lobbies</h1> \
< p > Chat lobbies are distributed chat rooms , and work pretty much like IRC . \
They allow you to talk anonymously with tons of people without the need to make friends . < / p > \
< p > A chat lobby can be public ( your friends see it ) or private ( your friends can ' t see it , unless you \
invite them with < img src = \ " :/images/add_24x24.png \" width=12/>). \
Once you have been invited to a private lobby , you will be able to see it when your friends \
are using it . < / p > \
< p > The list at left shows \
chat lobbies your friends are participating in . You can either \
2013-07-19 14:36:09 -04:00
< ul > \
< li > Right click to create a new chat lobby < / li > \
< li > Double click a chat lobby to enter , chat , and show it to your friends < / li > \
2014-05-09 22:38:47 -04:00
< / ul > \
Note : For the chat lobbies to work properly , your computer needs be on time . So check your system clock ! \
< / p > \
"
) ;
registerHelpButton ( ui . helpButton , help_str ) ;
2012-01-07 14:52:58 -05:00
}
2012-01-11 19:13:25 -05:00
2012-01-07 14:52:58 -05:00
ChatLobbyWidget : : ~ ChatLobbyWidget ( )
{
2013-09-19 15:22:17 -04:00
// save settings
processSettings ( false ) ;
2012-06-09 10:14:04 -04:00
if ( compareRole ) {
delete ( compareRole ) ;
}
2012-01-11 19:13:25 -05:00
}
2014-12-12 18:50:35 -05:00
UserNotify * ChatLobbyWidget : : getUserNotify ( QObject * parent )
{
2015-04-17 17:36:22 -04:00
if ( ! myChatLobbyUserNotify ) {
myChatLobbyUserNotify = new ChatLobbyUserNotify ( parent ) ;
connect ( myChatLobbyUserNotify , SIGNAL ( countChanged ( ChatLobbyId , unsigned int ) ) , this , SLOT ( updateNotify ( ChatLobbyId , unsigned int ) ) ) ;
}
return myChatLobbyUserNotify ;
}
void ChatLobbyWidget : : updateNotify ( ChatLobbyId id , unsigned int count )
{
ChatLobbyDialog * dialog = NULL ;
dialog = _lobby_infos [ id ] . dialog ;
if ( ! dialog ) return ;
QToolButton * notifyButton = dialog - > getChatWidget ( ) - > getNotifyButton ( ) ;
if ( ! notifyButton ) return ;
dialog - > getChatWidget ( ) - > setNotify ( myChatLobbyUserNotify ) ;
if ( count > 0 ) {
notifyButton - > setVisible ( true ) ;
notifyButton - > setIcon ( _lobby_infos [ id ] . default_icon ) ;
notifyButton - > setToolTip ( QString ( " (%1) " ) . arg ( count ) ) ;
} else {
notifyButton - > setVisible ( false ) ;
}
2014-12-12 18:50:35 -05:00
}
2013-02-24 17:44:14 -05:00
void ChatLobbyWidget : : lobbyTreeWidgetCustomPopupMenu ( QPoint )
2012-01-11 19:13:25 -05:00
{
2013-02-24 17:44:14 -05:00
std : : cerr < < " Creating customPopupMennu " < < std : : endl ;
2014-05-09 22:38:47 -04:00
QTreeWidgetItem * item = ui . lobbyTreeWidget - > currentItem ( ) ;
2012-01-30 18:20:42 -05:00
2012-01-11 19:13:25 -05:00
QMenu contextMnu ( this ) ;
2012-01-30 18:20:42 -05:00
if ( item & & item - > type ( ) = = TYPE_FOLDER ) {
QAction * action = contextMnu . addAction ( QIcon ( IMAGE_CREATE ) , tr ( " Create chat lobby " ) , this , SLOT ( createChatLobby ( ) ) ) ;
action - > setData ( item - > data ( COLUMN_DATA , ROLE_PRIVACYLEVEL ) . toInt ( ) ) ;
}
2012-01-11 19:13:25 -05:00
2015-03-06 16:13:23 -05:00
if ( item & & item - > type ( ) = = TYPE_LOBBY )
{
2015-04-22 13:33:53 -04:00
std : : list < RsGxsId > own_identities ;
rsIdentity - > getOwnIds ( own_identities ) ;
2015-03-06 16:13:23 -05:00
if ( item - > data ( COLUMN_DATA , ROLE_SUBSCRIBED ) . toBool ( ) )
contextMnu . addAction ( QIcon ( IMAGE_UNSUBSCRIBE ) , tr ( " Leave this lobby " ) , this , SLOT ( unsubscribeItem ( ) ) ) ;
else
{
QTreeWidgetItem * item = ui . lobbyTreeWidget - > currentItem ( ) ;
uint32_t item_flags = item - > data ( COLUMN_DATA , ROLE_ID ) . toUInt ( ) ;
2015-05-17 06:13:32 -04:00
if ( own_identities . empty ( ) )
{
contextMnu . addAction ( QIcon ( IMAGE_SUBSCRIBE ) , tr ( " Create a nickname and enter this lobby " ) , this , SLOT ( createIdentityAndSubscribe ( ) ) ) ;
}
else if ( own_identities . size ( ) = = 1 )
2015-03-06 16:13:23 -05:00
{
QAction * action = contextMnu . addAction ( QIcon ( IMAGE_SUBSCRIBE ) , tr ( " Enter this lobby " ) , this , SLOT ( subscribeChatLobbyAs ( ) ) ) ;
2015-05-17 06:13:32 -04:00
action - > setData ( QString : : fromStdString ( ( own_identities . front ( ) ) . toStdString ( ) ) ) ;
2015-03-06 16:13:23 -05:00
}
else
{
QMenu * mnu = contextMnu . addMenu ( QIcon ( IMAGE_SUBSCRIBE ) , tr ( " Enter this lobby as... " ) ) ;
for ( std : : list < RsGxsId > : : const_iterator it = own_identities . begin ( ) ; it ! = own_identities . end ( ) ; + + it )
{
RsIdentityDetails idd ;
rsIdentity - > getIdDetails ( * it , idd ) ;
QPixmap pixmap ;
if ( idd . mAvatar . mSize = = 0 | | ! pixmap . loadFromData ( idd . mAvatar . mData , idd . mAvatar . mSize , " PNG " ) )
pixmap = QPixmap : : fromImage ( GxsIdDetails : : makeDefaultIcon ( * it ) ) ;
QAction * action = mnu - > addAction ( QIcon ( pixmap ) , QString ( " %1 (%2) " ) . arg ( QString : : fromUtf8 ( idd . mNickname . c_str ( ) ) , QString : : fromStdString ( ( * it ) . toStdString ( ) ) ) , this , SLOT ( subscribeChatLobbyAs ( ) ) ) ;
action - > setData ( QString : : fromStdString ( ( * it ) . toStdString ( ) ) ) ;
}
}
2015-03-07 09:49:33 -05:00
}
2015-03-06 16:13:23 -05:00
2015-04-22 13:33:53 -04:00
if ( item - > data ( COLUMN_DATA , ROLE_AUTOSUBSCRIBE ) . toBool ( ) )
contextMnu . addAction ( QIcon ( IMAGE_AUTOSUBSCRIBE ) , tr ( " Remove Auto Subscribe " ) , this , SLOT ( autoSubscribeItem ( ) ) ) ;
else if ( ! own_identities . empty ( ) )
contextMnu . addAction ( QIcon ( IMAGE_SUBSCRIBE ) , tr ( " Add Auto Subscribe " ) , this , SLOT ( autoSubscribeItem ( ) ) ) ;
2015-03-06 16:13:23 -05:00
}
2012-01-11 19:13:25 -05:00
2015-03-06 16:13:23 -05:00
contextMnu . addSeparator ( ) ; //-------------------------------------------------------------------
2013-09-19 15:22:17 -04:00
2015-03-06 16:13:23 -05:00
showUserCountAct - > setChecked ( ! ui . lobbyTreeWidget - > isColumnHidden ( COLUMN_USER_COUNT ) ) ;
showTopicAct - > setChecked ( ! ui . lobbyTreeWidget - > isColumnHidden ( COLUMN_TOPIC ) ) ;
showSubscribeAct - > setChecked ( ! ui . lobbyTreeWidget - > isColumnHidden ( COLUMN_SUBSCRIBED ) ) ;
2013-09-19 15:22:17 -04:00
2015-03-06 16:13:23 -05:00
QMenu * menu = contextMnu . addMenu ( tr ( " Columns " ) ) ;
menu - > addAction ( showUserCountAct ) ;
menu - > addAction ( showTopicAct ) ;
menu - > addAction ( showSubscribeAct ) ;
2013-09-19 15:22:17 -04:00
2015-03-06 16:13:23 -05:00
contextMnu . exec ( QCursor : : pos ( ) ) ;
2013-09-19 15:22:17 -04:00
}
2012-01-11 19:13:25 -05:00
void ChatLobbyWidget : : lobbyChanged ( )
{
updateDisplay ( ) ;
}
2013-07-04 16:09:46 -04:00
static void updateItem ( QTreeWidget * treeWidget , QTreeWidgetItem * item , ChatLobbyId id , const std : : string & name , const std : : string & topic , int count , bool subscribed , bool autoSubscribe )
2012-01-11 19:13:25 -05:00
{
item - > setText ( COLUMN_NAME , QString : : fromUtf8 ( name . c_str ( ) ) ) ;
item - > setData ( COLUMN_NAME , ROLE_SORT , QString : : fromUtf8 ( name . c_str ( ) ) ) ;
2012-03-16 19:07:28 -04:00
if ( topic . empty ( ) )
{
2012-03-30 19:02:52 -04:00
item - > setText ( COLUMN_TOPIC , qApp - > translate ( " ChatLobbyWidget " , " [No topic provided] " ) ) ;
item - > setData ( COLUMN_TOPIC , ROLE_SORT , qApp - > translate ( " ChatLobbyWidget " , " [No topic provided] " ) ) ;
2012-03-16 19:07:28 -04:00
}
else
{
item - > setText ( COLUMN_TOPIC , QString : : fromUtf8 ( topic . c_str ( ) ) ) ;
item - > setData ( COLUMN_TOPIC , ROLE_SORT , QString : : fromUtf8 ( topic . c_str ( ) ) ) ;
}
2012-03-16 18:47:49 -04:00
2013-09-19 15:22:17 -04:00
//item->setText(COLUMN_USER_COUNT, QString::number(count));
2013-10-11 16:46:25 -04:00
item - > setData ( COLUMN_USER_COUNT , Qt : : EditRole , count ) ;
2013-09-19 15:22:17 -04:00
item - > setText ( COLUMN_SUBSCRIBED , subscribed ? qApp - > translate ( " ChatLobbyWidget " , " Yes " ) : qApp - > translate ( " ChatLobbyWidget " , " No " ) ) ;
2012-01-11 19:13:25 -05:00
2012-01-12 06:14:50 -05:00
item - > setData ( COLUMN_DATA , ROLE_ID , ( qulonglong ) id ) ;
2012-01-11 19:13:25 -05:00
item - > setData ( COLUMN_DATA , ROLE_SUBSCRIBED , subscribed ) ;
2013-06-29 12:15:33 -04:00
item - > setData ( COLUMN_DATA , ROLE_AUTOSUBSCRIBE , autoSubscribe ) ;
2012-01-11 19:13:25 -05:00
2013-07-04 16:09:46 -04:00
QColor color = treeWidget - > palette ( ) . color ( QPalette : : Active , QPalette : : Text ) ;
2013-03-02 16:27:38 -05:00
if ( ! subscribed ) {
// Average between Base and Text colors
2013-07-04 16:09:46 -04:00
QColor color2 = treeWidget - > palette ( ) . color ( QPalette : : Active , QPalette : : Base ) ;
2013-03-02 16:27:38 -05:00
color . setRgbF ( ( color2 . redF ( ) + color . redF ( ) ) / 2 , ( color2 . greenF ( ) + color . greenF ( ) ) / 2 , ( color2 . blueF ( ) + color . blueF ( ) ) / 2 ) ;
}
2012-01-11 19:13:25 -05:00
for ( int column = 0 ; column < COLUMN_COUNT ; + + column ) {
2013-03-02 16:27:38 -05:00
item - > setTextColor ( column , color ) ;
2012-01-11 19:13:25 -05:00
}
2015-04-30 03:06:16 -04:00
item - > setToolTip ( 0 , QObject : : tr ( " Subject: " ) + item - > text ( COLUMN_TOPIC ) + " \n "
+ QObject : : tr ( " Participants: " ) + QString : : number ( count ) + " \n "
+ QObject : : tr ( " Auto Subscribe: " ) + ( autoSubscribe ? QObject : : tr ( " enabled " ) : QObject : : tr ( " disabled " ) ) + " \n "
+ QObject : : tr ( " Id: " ) + QString : : number ( id , 16 ) ) ;
2012-01-07 14:52:58 -05:00
}
2013-02-24 17:44:14 -05:00
void ChatLobbyWidget : : addChatPage ( ChatLobbyDialog * d )
{
// check that the page does not already exist.
2013-02-27 17:17:49 -05:00
if ( _lobby_infos . find ( d - > id ( ) ) = = _lobby_infos . end ( ) )
2013-02-24 17:44:14 -05:00
{
2014-05-09 22:38:47 -04:00
ui . stackedWidget - > addWidget ( d ) ;
2013-02-24 17:44:14 -05:00
connect ( d , SIGNAL ( lobbyLeave ( ChatLobbyId ) ) , this , SLOT ( unsubscribeChatLobby ( ChatLobbyId ) ) ) ;
connect ( d , SIGNAL ( typingEventReceived ( ChatLobbyId ) ) , this , SLOT ( updateTypingStatus ( ChatLobbyId ) ) ) ;
2015-04-17 17:36:22 -04:00
connect ( d , SIGNAL ( messageReceived ( bool , ChatLobbyId , QDateTime , QString , QString ) ) , this , SLOT ( updateMessageChanged ( bool , ChatLobbyId , QDateTime , QString , QString ) ) ) ;
2013-02-27 17:17:49 -05:00
connect ( d , SIGNAL ( peerJoined ( ChatLobbyId ) ) , this , SLOT ( updatePeerEntering ( ChatLobbyId ) ) ) ;
connect ( d , SIGNAL ( peerLeft ( ChatLobbyId ) ) , this , SLOT ( updatePeerLeaving ( ChatLobbyId ) ) ) ;
2013-02-24 17:44:14 -05:00
2013-08-26 19:37:13 -04:00
ChatLobbyId id = d - > id ( ) ;
_lobby_infos [ id ] . dialog = d ;
_lobby_infos [ id ] . default_icon = QIcon ( ) ;
_lobby_infos [ id ] . last_typing_event = time ( NULL ) ;
2015-03-06 16:13:23 -05:00
ChatLobbyInfo linfo ;
if ( rsMsgs - > getChatLobbyInfo ( id , linfo ) )
_lobby_infos [ id ] . default_icon = ( linfo . lobby_flags & RS_CHAT_LOBBY_FLAGS_PUBLIC ) ? QIcon ( IMAGE_PUBLIC ) : QIcon ( IMAGE_PRIVATE ) ;
else
std : : cerr < < " (EE) cannot find info for lobby " < < std : : hex < < id < < std : : dec < < std : : endl ;
2013-02-24 17:44:14 -05:00
}
}
void ChatLobbyWidget : : setCurrentChatPage ( ChatLobbyDialog * d )
{
2014-05-09 22:38:47 -04:00
ui . stackedWidget - > setCurrentWidget ( d ) ;
2013-08-27 11:26:11 -04:00
if ( d ) {
QTreeWidgetItem * item = getTreeWidgetItem ( d - > id ( ) ) ;
if ( item ) {
2014-05-09 22:38:47 -04:00
ui . lobbyTreeWidget - > setCurrentItem ( item ) ;
2013-08-27 11:26:11 -04:00
}
}
2013-02-24 17:44:14 -05:00
}
2013-12-26 16:44:02 -05:00
//#define CHAT_LOBBY_GUI_DEBUG
2012-01-07 14:52:58 -05:00
void ChatLobbyWidget : : updateDisplay ( )
{
2012-01-28 08:20:01 -05:00
# ifdef CHAT_LOBBY_GUI_DEBUG
2012-01-07 16:01:43 -05:00
std : : cerr < < " updating chat lobby display! " < < std : : endl ;
2012-01-28 08:20:01 -05:00
# endif
2012-12-04 16:36:05 -05:00
std : : vector < VisibleChatLobbyRecord > visibleLobbies ;
rsMsgs - > getListOfNearbyChatLobbies ( visibleLobbies ) ;
2012-01-07 14:52:58 -05:00
2015-03-06 16:13:23 -05:00
std : : list < ChatLobbyId > lobbies ;
2012-01-11 19:13:25 -05:00
rsMsgs - > getChatLobbyList ( lobbies ) ;
2012-01-07 16:01:43 -05:00
2012-01-28 08:20:01 -05:00
# ifdef CHAT_LOBBY_GUI_DEBUG
2013-12-26 16:44:02 -05:00
std : : cerr < < " got " < < visibleLobbies . size ( ) < < " visible lobbies " < < std : : endl ;
2012-01-28 08:20:01 -05:00
# endif
2012-01-07 16:37:31 -05:00
2012-01-11 19:13:25 -05:00
// now, do a nice display of lobbies
2012-01-07 14:52:58 -05:00
2014-03-17 16:56:06 -04:00
RsPeerId vpid ;
2015-03-06 16:13:23 -05:00
std : : list < ChatLobbyId > : : const_iterator lobbyIt ;
2012-01-11 19:13:25 -05:00
// remove not existing public lobbies
2013-12-26 16:44:02 -05:00
for ( int p = 0 ; p < 4 ; + + p )
2012-12-04 16:36:05 -05:00
{
2013-12-26 16:44:02 -05:00
QTreeWidgetItem * lobby_item = NULL ;
switch ( p )
{
case 0 : lobby_item = privateSubLobbyItem ; break ;
case 1 : lobby_item = publicSubLobbyItem ; break ;
case 2 : lobby_item = privateLobbyItem ; break ;
default :
case 3 : lobby_item = publicLobbyItem ; break ;
}
//QTreeWidgetItem *lobby_item = (p==0)?publicLobbyItem:privateLobbyItem ;
2012-12-04 16:36:05 -05:00
int childCnt = lobby_item - > childCount ( ) ;
int childIndex = 0 ;
while ( childIndex < childCnt ) {
QTreeWidgetItem * itemLoop = lobby_item - > child ( childIndex ) ;
if ( itemLoop - > type ( ) = = TYPE_LOBBY )
{
// check for visible lobby
2013-12-26 16:44:02 -05:00
//
uint32_t i ;
for ( i = 0 ; i < visibleLobbies . size ( ) ; + + i )
2012-12-04 16:36:05 -05:00
if ( itemLoop - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) = = visibleLobbies [ i ] . lobby_id )
2012-01-11 19:13:25 -05:00
break ;
2013-12-26 16:44:02 -05:00
if ( i > = visibleLobbies . size ( ) )
2012-12-04 16:36:05 -05:00
{
// Check for participating lobby with public level
//
for ( lobbyIt = lobbies . begin ( ) ; lobbyIt ! = lobbies . end ( ) ; + + lobbyIt )
2015-03-06 16:13:23 -05:00
if ( itemLoop - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) = = * lobbyIt )
2012-12-04 16:36:05 -05:00
break ;
if ( lobbyIt = = lobbies . end ( ) )
{
delete ( lobby_item - > takeChild ( lobby_item - > indexOfChild ( itemLoop ) ) ) ;
childCnt = lobby_item - > childCount ( ) ;
continue ;
}
2012-01-11 19:13:25 -05:00
}
}
2014-10-21 18:33:02 -04:00
+ + childIndex ;
2012-01-11 19:13:25 -05:00
}
}
2012-01-07 16:01:43 -05:00
2012-12-04 16:36:05 -05:00
// Now add visible lobbies
//
2013-12-26 16:44:02 -05:00
for ( uint32_t i = 0 ; i < visibleLobbies . size ( ) ; + + i )
2012-12-04 16:36:05 -05:00
{
const VisibleChatLobbyRecord & lobby = visibleLobbies [ i ] ;
2012-01-07 16:37:31 -05:00
2012-01-23 17:49:47 -05:00
# ifdef CHAT_LOBBY_GUI_DEBUG
2012-12-04 16:36:05 -05:00
std : : cerr < < " adding " < < lobby . lobby_name < < " topic " < < lobby . lobby_topic < < " # " < < std : : hex < < lobby . lobby_id < < std : : dec < < " public " < < lobby . total_number_of_peers < < " peers. Lobby type: " < < lobby . lobby_privacy_level < < std : : endl ;
2012-01-23 17:49:47 -05:00
# endif
2012-01-07 18:03:59 -05:00
2013-10-11 16:46:25 -04:00
2013-12-26 16:44:02 -05:00
bool subscribed = false ;
if ( rsMsgs - > getVirtualPeerId ( lobby . lobby_id , vpid ) ) {
subscribed = true ;
}
2013-10-11 16:46:25 -04:00
2012-01-11 19:13:25 -05:00
QTreeWidgetItem * item = NULL ;
2013-12-26 16:44:02 -05:00
QTreeWidgetItem * lobby_item = NULL ;
2015-03-06 16:13:23 -05:00
QTreeWidgetItem * lobby_other_item = NULL ;
if ( lobby . lobby_flags & RS_CHAT_LOBBY_FLAGS_PUBLIC )
{
if ( subscribed )
{
lobby_item = publicSubLobbyItem ;
lobby_other_item = publicLobbyItem ;
}
else
{
lobby_item = publicLobbyItem ;
lobby_other_item = publicSubLobbyItem ;
}
}
else
{
if ( subscribed )
{
lobby_item = privateSubLobbyItem ;
lobby_other_item = privateLobbyItem ;
}
else
{
lobby_item = privateLobbyItem ;
lobby_other_item = privateSubLobbyItem ;
}
}
2013-12-26 16:44:02 -05:00
//QTreeWidgetItem *lobby_item = (lobby.lobby_privacy_level == RS_CHAT_LOBBY_PRIVACY_LEVEL_PUBLIC)?publicLobbyItem:privateLobbyItem ;
2012-12-04 16:36:05 -05:00
// Search existing item
//
2013-12-26 16:44:02 -05:00
int childCnt = lobby_other_item - > childCount ( ) ;
2014-10-21 18:33:02 -04:00
for ( int childIndex = 0 ; childIndex < childCnt ; + + childIndex )
2013-12-26 16:44:02 -05:00
{
QTreeWidgetItem * itemLoop = lobby_other_item - > child ( childIndex ) ;
if ( itemLoop - > type ( ) = = TYPE_LOBBY & & itemLoop - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) = = lobby . lobby_id ) {
delete ( lobby_other_item - > takeChild ( lobby_other_item - > indexOfChild ( itemLoop ) ) ) ;
childCnt = lobby_other_item - > childCount ( ) ;
break ;
}
}
childCnt = lobby_item - > childCount ( ) ;
2014-10-21 18:33:02 -04:00
for ( int childIndex = 0 ; childIndex < childCnt ; + + childIndex )
2012-12-04 16:36:05 -05:00
{
QTreeWidgetItem * itemLoop = lobby_item - > child ( childIndex ) ;
2012-01-11 19:13:25 -05:00
if ( itemLoop - > type ( ) = = TYPE_LOBBY & & itemLoop - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) = = lobby . lobby_id ) {
item = itemLoop ;
break ;
}
2012-01-07 16:37:31 -05:00
}
2012-01-07 16:01:43 -05:00
2013-09-05 16:12:24 -04:00
QIcon icon ;
2013-12-26 16:44:02 -05:00
if ( item = = NULL )
{
2012-01-11 19:13:25 -05:00
item = new RSTreeWidgetItem ( compareRole , TYPE_LOBBY ) ;
2015-03-06 16:13:23 -05:00
icon = ( lobby . lobby_flags & RS_CHAT_LOBBY_FLAGS_PUBLIC ) ? QIcon ( IMAGE_PUBLIC ) : QIcon ( IMAGE_PRIVATE ) ;
2012-12-04 16:36:05 -05:00
lobby_item - > addChild ( item ) ;
2013-12-26 16:44:02 -05:00
}
else
{
2013-09-05 16:12:24 -04:00
if ( item - > data ( COLUMN_DATA , ROLE_SUBSCRIBED ) . toBool ( ) ! = subscribed ) {
// Replace icon
2015-03-06 16:13:23 -05:00
icon = ( lobby . lobby_flags & RS_CHAT_LOBBY_FLAGS_PUBLIC ) ? QIcon ( IMAGE_PUBLIC ) : QIcon ( IMAGE_PRIVATE ) ;
2013-09-05 16:12:24 -04:00
}
2012-01-11 19:13:25 -05:00
}
2013-09-05 16:12:24 -04:00
if ( ! icon . isNull ( ) ) {
2014-05-09 22:38:47 -04:00
item - > setIcon ( COLUMN_NAME , subscribed ? icon : icon . pixmap ( ui . lobbyTreeWidget - > iconSize ( ) , QIcon : : Disabled ) ) ;
2012-01-11 19:13:25 -05:00
}
2012-01-07 16:37:31 -05:00
2013-12-26 16:44:02 -05:00
bool autoSubscribe = rsMsgs - > getLobbyAutoSubscribe ( lobby . lobby_id ) ;
2013-06-29 12:15:33 -04:00
2013-12-26 16:44:02 -05:00
if ( autoSubscribe & & subscribed )
{
if ( _lobby_infos . find ( lobby . lobby_id ) = = _lobby_infos . end ( ) )
{
2014-05-09 22:38:47 -04:00
if ( item = = ui . lobbyTreeWidget - > currentItem ( ) )
2013-12-26 16:44:02 -05:00
{
2014-12-29 16:41:05 -05:00
ChatDialog : : chatFriend ( ChatId ( lobby . lobby_id ) ) ;
2013-12-26 16:44:02 -05:00
} else {
2014-12-29 16:41:05 -05:00
ChatDialog : : chatFriend ( ChatId ( lobby . lobby_id ) , false ) ;
2013-12-26 16:44:02 -05:00
}
}
}
2013-06-29 12:15:33 -04:00
2014-05-09 22:38:47 -04:00
updateItem ( ui . lobbyTreeWidget , item , lobby . lobby_id , lobby . lobby_name , lobby . lobby_topic , lobby . total_number_of_peers , subscribed , autoSubscribe ) ;
2012-01-11 19:13:25 -05:00
}
2012-01-07 18:03:59 -05:00
2014-05-09 22:38:47 -04:00
// time_t now = time(NULL) ;
2013-02-27 17:17:49 -05:00
2012-12-04 16:36:05 -05:00
// Now add participating lobbies.
//
for ( lobbyIt = lobbies . begin ( ) ; lobbyIt ! = lobbies . end ( ) ; + + lobbyIt )
2015-03-06 16:13:23 -05:00
{
ChatLobbyInfo lobby ;
rsMsgs - > getChatLobbyInfo ( * lobbyIt , lobby ) ;
2012-01-11 19:13:25 -05:00
2012-01-23 17:49:47 -05:00
# ifdef CHAT_LOBBY_GUI_DEBUG
2012-03-16 18:47:49 -04:00
std : : cerr < < " adding " < < lobby . lobby_name < < " topic " < < lobby . lobby_topic < < " # " < < std : : hex < < lobby . lobby_id < < std : : dec < < " private " < < lobby . nick_names . size ( ) < < " peers. " < < std : : endl ;
2012-01-23 17:49:47 -05:00
# endif
2012-01-11 19:13:25 -05:00
QTreeWidgetItem * itemParent ;
2015-03-06 16:13:23 -05:00
if ( lobby . lobby_flags & RS_CHAT_LOBBY_FLAGS_PUBLIC )
2013-10-11 16:46:25 -04:00
itemParent = publicSubLobbyItem ;
2015-03-06 16:13:23 -05:00
else
2013-10-11 16:46:25 -04:00
itemParent = privateSubLobbyItem ;
2012-01-11 19:13:25 -05:00
QTreeWidgetItem * item = NULL ;
// search existing item
2012-12-04 16:36:05 -05:00
int childCount = itemParent - > childCount ( ) ;
2014-10-21 18:33:02 -04:00
for ( int childIndex = 0 ; childIndex < childCount ; + + childIndex ) {
2012-01-11 19:13:25 -05:00
QTreeWidgetItem * itemLoop = itemParent - > child ( childIndex ) ;
if ( itemLoop - > type ( ) = = TYPE_LOBBY & & itemLoop - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) = = lobby . lobby_id ) {
item = itemLoop ;
break ;
}
}
2013-09-05 16:12:24 -04:00
QIcon icon ;
2015-03-06 16:13:23 -05:00
if ( item = = NULL ) {
item = new RSTreeWidgetItem ( compareRole , TYPE_LOBBY ) ;
icon = ( lobby . lobby_flags & RS_CHAT_LOBBY_FLAGS_PUBLIC ) ? QIcon ( IMAGE_PUBLIC ) : QIcon ( IMAGE_PRIVATE ) ;
itemParent - > addChild ( item ) ;
} else {
if ( ! item - > data ( COLUMN_DATA , ROLE_SUBSCRIBED ) . toBool ( ) ) {
// Replace icon
icon = ( lobby . lobby_flags & RS_CHAT_LOBBY_FLAGS_PUBLIC ) ? QIcon ( IMAGE_PUBLIC ) : QIcon ( IMAGE_PRIVATE ) ;
}
}
2013-09-05 16:12:24 -04:00
if ( ! icon . isNull ( ) ) {
item - > setIcon ( COLUMN_NAME , icon ) ;
2012-01-11 19:13:25 -05:00
}
2014-05-09 22:38:47 -04:00
bool autoSubscribe = rsMsgs - > getLobbyAutoSubscribe ( lobby . lobby_id ) ;
2013-06-29 12:15:33 -04:00
2015-03-06 16:13:23 -05:00
updateItem ( ui . lobbyTreeWidget , item , lobby . lobby_id , lobby . lobby_name , lobby . lobby_topic , lobby . gxs_ids . size ( ) , true , autoSubscribe ) ;
2012-01-07 16:37:31 -05:00
}
2014-05-09 22:38:47 -04:00
publicSubLobbyItem - > setHidden ( publicSubLobbyItem - > childCount ( ) = = 0 ) ;
privateSubLobbyItem - > setHidden ( privateSubLobbyItem - > childCount ( ) = = 0 ) ;
2012-01-07 16:37:31 -05:00
}
2012-01-07 16:01:43 -05:00
2012-01-11 19:13:25 -05:00
void ChatLobbyWidget : : createChatLobby ( )
2012-01-07 16:37:31 -05:00
{
2012-01-30 18:20:42 -05:00
int privacyLevel = 0 ;
QAction * action = qobject_cast < QAction * > ( sender ( ) ) ;
if ( action ) {
privacyLevel = action - > data ( ) . toInt ( ) ;
}
2015-04-17 17:36:22 -04:00
std : : set < RsPeerId > friends ;
2012-01-30 18:20:42 -05:00
CreateLobbyDialog ( friends , privacyLevel ) . exec ( ) ;
2012-01-11 19:13:25 -05:00
}
2013-02-24 17:44:14 -05:00
void ChatLobbyWidget : : showLobby ( QTreeWidgetItem * item )
{
2013-09-01 20:08:38 -04:00
if ( item = = NULL | | item - > type ( ) ! = TYPE_LOBBY ) {
2013-02-24 17:44:14 -05:00
showBlankPage ( 0 ) ;
return ;
}
ChatLobbyId id = item - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) ;
2013-02-27 17:17:49 -05:00
if ( _lobby_infos . find ( id ) = = _lobby_infos . end ( ) )
2013-02-24 17:44:14 -05:00
showBlankPage ( id ) ;
else
2014-05-09 22:38:47 -04:00
ui . stackedWidget - > setCurrentWidget ( _lobby_infos [ id ] . dialog ) ;
2013-02-24 17:44:14 -05:00
}
2015-04-17 17:36:22 -04:00
2015-05-17 06:13:32 -04:00
// this function is for the case where we don't have any identity yet
void ChatLobbyWidget : : createIdentityAndSubscribe ( )
{
QTreeWidgetItem * item = ui . lobbyTreeWidget - > currentItem ( ) ;
if ( ! item )
return ;
ChatLobbyId id = item - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) ;
IdEditDialog dlg ( this ) ;
dlg . setupNewId ( false ) ;
dlg . exec ( ) ;
// fetch new id
std : : list < RsGxsId > own_ids ;
if ( ! rsIdentity - > getOwnIds ( own_ids ) | | own_ids . empty ( ) )
return ;
if ( rsMsgs - > joinVisibleChatLobby ( id , own_ids . front ( ) ) )
ChatDialog : : chatFriend ( ChatId ( id ) , true ) ;
}
2015-03-06 16:13:23 -05:00
void ChatLobbyWidget : : subscribeChatLobbyAs ( )
{
QTreeWidgetItem * item = ui . lobbyTreeWidget - > currentItem ( ) ;
if ( ! item )
return ;
ChatLobbyId id = item - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) ;
2013-02-24 17:44:14 -05:00
2015-03-06 16:13:23 -05:00
QAction * action = qobject_cast < QAction * > ( QObject : : sender ( ) ) ;
if ( ! action )
return ;
RsGxsId gxs_id ( action - > data ( ) . toString ( ) . toStdString ( ) ) ;
uint32_t error_code ;
if ( rsMsgs - > joinVisibleChatLobby ( id , gxs_id ) )
ChatDialog : : chatFriend ( ChatId ( id ) , true ) ;
}
2015-04-17 17:36:22 -04:00
void ChatLobbyWidget : : showLobbyAnchor ( ChatLobbyId id , QString anchor )
{
QTreeWidgetItem * item = getTreeWidgetItem ( id ) ;
if ( item ! = NULL ) {
if ( item - > type ( ) = = TYPE_LOBBY ) {
if ( _lobby_infos . find ( id ) = = _lobby_infos . end ( ) ) {
showBlankPage ( id ) ;
} else {
//ChatLobbyDialog cldChatLobby =_lobby_infos[id].dialog;
ui . stackedWidget - > setCurrentWidget ( _lobby_infos [ id ] . dialog ) ;
ChatLobbyDialog * cldCW = NULL ;
if ( NULL ! = ( cldCW = dynamic_cast < ChatLobbyDialog * > ( ui . stackedWidget - > currentWidget ( ) ) ) )
cldCW - > getChatWidget ( ) - > scrollToAnchor ( anchor ) ;
ui . lobbyTreeWidget - > setCurrentItem ( item ) ;
}
}
}
}
2015-03-06 16:13:23 -05:00
void ChatLobbyWidget : : subscribeChatLobbyAtItem ( QTreeWidgetItem * item )
2012-01-11 19:13:25 -05:00
{
2015-03-06 16:13:23 -05:00
if ( item = = NULL | | item - > type ( ) ! = TYPE_LOBBY ) {
return ;
}
2012-01-11 19:13:25 -05:00
2015-03-06 16:13:23 -05:00
ChatLobbyId id = item - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) ;
RsGxsId gxs_id ;
2015-05-17 06:13:32 -04:00
std : : list < RsGxsId > own_ids ;
// not using rsMsgs->getDefaultIdentityForChatLobby(), to check if we have an identity
// to work around the case when the identity was deleted and is invalid
// (the chatservervice does not know if a default identity was deleted)
// only rsIdentity knows the truth at the moment!
if ( ! rsIdentity - > getOwnIds ( own_ids ) )
return ;
// if there is no identity yet, show the dialog to create a new identity
if ( own_ids . empty ( ) )
{
IdEditDialog dlg ( this ) ;
dlg . setupNewId ( false ) ;
dlg . exec ( ) ;
// fetch new id
if ( ! rsIdentity - > getOwnIds ( own_ids ) | | own_ids . empty ( ) )
return ;
gxs_id = own_ids . front ( ) ;
}
else
rsMsgs - > getDefaultIdentityForChatLobby ( gxs_id ) ;
if ( rsMsgs - > joinVisibleChatLobby ( id , gxs_id ) )
2014-12-29 16:41:05 -05:00
ChatDialog : : chatFriend ( ChatId ( id ) , true ) ;
2012-01-11 19:13:25 -05:00
}
2013-06-29 12:15:33 -04:00
void ChatLobbyWidget : : autoSubscribeLobby ( QTreeWidgetItem * item )
{
2015-01-05 15:00:32 -05:00
if ( item = = NULL | | item - > type ( ) ! = TYPE_LOBBY ) {
2013-06-29 12:15:33 -04:00
return ;
}
ChatLobbyId id = item - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) ;
bool isAutoSubscribe = rsMsgs - > getLobbyAutoSubscribe ( id ) ;
rsMsgs - > setLobbyAutoSubscribe ( id , ! isAutoSubscribe ) ;
2015-03-06 16:13:23 -05:00
if ( ! isAutoSubscribe ) subscribeChatLobbyAtItem ( item ) ;
2013-06-29 12:15:33 -04:00
}
2013-02-24 17:44:14 -05:00
void ChatLobbyWidget : : showBlankPage ( ChatLobbyId id )
{
// show the default blank page.
2014-05-09 22:38:47 -04:00
ui . stackedWidget - > setCurrentWidget ( ui . _lobby_blank_page ) ;
2013-09-24 17:09:49 -04:00
2013-02-24 17:44:14 -05:00
// Update information
std : : vector < VisibleChatLobbyRecord > lobbies ;
2015-03-07 09:49:33 -05:00
rsMsgs - > getListOfNearbyChatLobbies ( lobbies ) ;
std : : list < RsGxsId > my_ids ;
rsIdentity - > getOwnIds ( my_ids ) ;
2013-02-24 17:44:14 -05:00
for ( std : : vector < VisibleChatLobbyRecord > : : const_iterator it ( lobbies . begin ( ) ) ; it ! = lobbies . end ( ) ; + + it )
if ( ( * it ) . lobby_id = = id )
{
2014-05-09 22:38:47 -04:00
ui . lobbyname_lineEdit - > setText ( RsHtml : : plainText ( it - > lobby_name ) ) ;
ui . lobbyid_lineEdit - > setText ( QString : : number ( ( * it ) . lobby_id , 16 ) ) ;
ui . lobbytopic_lineEdit - > setText ( RsHtml : : plainText ( it - > lobby_topic ) ) ;
2015-03-06 16:13:23 -05:00
ui . lobbytype_lineEdit - > setText ( ( ( ( * it ) . lobby_flags & RS_CHAT_LOBBY_FLAGS_PUBLIC ) ? tr ( " Public " ) : tr ( " Private " ) ) ) ;
2014-05-09 22:38:47 -04:00
ui . lobbypeers_lineEdit - > setText ( QString : : number ( ( * it ) . total_number_of_peers ) ) ;
2015-03-07 09:49:33 -05:00
QString text = tr ( " You're not subscribed to this lobby; Double click-it to enter and chat. " ) ;
if ( my_ids . empty ( ) )
text + = " \n \n " + tr ( " You will need to create an identity in order to join chat lobbies. " ) ;
ui . lobbyInfoLabel - > setText ( text ) ;
2013-02-24 17:44:14 -05:00
return ;
}
2013-09-24 17:09:49 -04:00
2014-05-09 22:38:47 -04:00
ui . lobbyname_lineEdit - > clear ( ) ;
ui . lobbyid_lineEdit - > clear ( ) ;
ui . lobbytopic_lineEdit - > clear ( ) ;
ui . lobbytype_lineEdit - > clear ( ) ;
ui . lobbypeers_lineEdit - > clear ( ) ;
2013-09-23 18:31:52 -04:00
QString text = tr ( " No lobby selected. \n Select lobbies at left to show details. \n Double click lobbies to enter and chat. " ) ;
2014-12-06 17:09:44 -05:00
ui . lobbyInfoLabel - > setText ( text ) ;
2013-02-24 17:44:14 -05:00
}
2013-09-24 17:09:49 -04:00
2012-01-27 13:51:27 -05:00
void ChatLobbyWidget : : subscribeItem ( )
{
2015-03-06 16:13:23 -05:00
subscribeChatLobbyAtItem ( ui . lobbyTreeWidget - > currentItem ( ) ) ;
2012-01-27 13:51:27 -05:00
}
2013-06-29 12:15:33 -04:00
void ChatLobbyWidget : : autoSubscribeItem ( )
{
2015-03-06 16:13:23 -05:00
autoSubscribeLobby ( ui . lobbyTreeWidget - > currentItem ( ) ) ;
2013-06-29 12:15:33 -04:00
}
2013-02-24 17:44:14 -05:00
QTreeWidgetItem * ChatLobbyWidget : : getTreeWidgetItem ( ChatLobbyId id )
{
2013-10-11 16:46:25 -04:00
for ( int p = 0 ; p < 4 ; + + p )
2013-02-24 17:44:14 -05:00
{
2013-10-11 16:46:25 -04:00
QTreeWidgetItem * lobby_item = NULL ;
switch ( p ) {
case 0 : lobby_item = privateSubLobbyItem ; break ;
case 1 : lobby_item = publicSubLobbyItem ; break ;
case 2 : lobby_item = privateLobbyItem ; break ;
case 4 : lobby_item = publicLobbyItem ; break ;
default : lobby_item = publicLobbyItem ;
}
//QTreeWidgetItem *lobby_item = (p==0)?publicLobbyItem:privateLobbyItem ;
2013-02-24 17:44:14 -05:00
int childCnt = lobby_item - > childCount ( ) ;
int childIndex = 0 ;
while ( childIndex < childCnt ) {
QTreeWidgetItem * itemLoop = lobby_item - > child ( childIndex ) ;
if ( itemLoop - > type ( ) = = TYPE_LOBBY & & itemLoop - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) = = id )
return itemLoop ;
2013-02-24 17:55:58 -05:00
+ + childIndex ;
2013-02-24 17:44:14 -05:00
}
}
return NULL ;
}
void ChatLobbyWidget : : updateTypingStatus ( ChatLobbyId id )
{
QTreeWidgetItem * item = getTreeWidgetItem ( id ) ;
if ( item ! = NULL )
{
2013-08-26 19:37:13 -04:00
item - > setIcon ( COLUMN_NAME , QIcon ( IMAGE_TYPING ) ) ;
2013-02-27 17:17:49 -05:00
_lobby_infos [ id ] . last_typing_event = time ( NULL ) ;
2013-02-24 17:44:14 -05:00
2013-02-27 17:17:49 -05:00
QTimer : : singleShot ( 5000 , this , SLOT ( resetLobbyTreeIcons ( ) ) ) ;
}
}
void ChatLobbyWidget : : updatePeerLeaving ( ChatLobbyId id )
{
QTreeWidgetItem * item = getTreeWidgetItem ( id ) ;
if ( item ! = NULL )
{
2013-08-26 19:37:13 -04:00
item - > setIcon ( COLUMN_NAME , QIcon ( IMAGE_PEER_LEAVING ) ) ;
2013-02-27 17:17:49 -05:00
_lobby_infos [ id ] . last_typing_event = time ( NULL ) ;
2013-02-24 17:44:14 -05:00
QTimer : : singleShot ( 5000 , this , SLOT ( resetLobbyTreeIcons ( ) ) ) ;
}
}
2013-02-27 17:17:49 -05:00
void ChatLobbyWidget : : updatePeerEntering ( ChatLobbyId id )
{
QTreeWidgetItem * item = getTreeWidgetItem ( id ) ;
if ( item ! = NULL )
{
2013-08-26 19:37:13 -04:00
item - > setIcon ( COLUMN_NAME , QIcon ( IMAGE_PEER_ENTERING ) ) ;
2013-02-27 17:17:49 -05:00
_lobby_infos [ id ] . last_typing_event = time ( NULL ) ;
2013-02-24 17:44:14 -05:00
2013-02-27 17:17:49 -05:00
QTimer : : singleShot ( 5000 , this , SLOT ( resetLobbyTreeIcons ( ) ) ) ;
}
}
2013-02-24 17:44:14 -05:00
void ChatLobbyWidget : : resetLobbyTreeIcons ( )
{
time_t now = time ( NULL ) ;
2013-02-27 17:17:49 -05:00
for ( std : : map < ChatLobbyId , ChatLobbyInfoStruct > : : iterator it ( _lobby_infos . begin ( ) ) ; it ! = _lobby_infos . end ( ) ; + + it )
if ( it - > second . last_typing_event + 5 < = now )
2013-02-24 17:44:14 -05:00
{
2013-08-26 19:37:13 -04:00
getTreeWidgetItem ( it - > first ) - > setIcon ( COLUMN_NAME , it - > second . default_icon ) ;
2014-05-09 22:38:47 -04:00
//std::cerr << "Reseted 1 lobby icon." << std::endl;
2013-02-24 17:44:14 -05:00
}
}
2012-01-11 19:13:25 -05:00
void ChatLobbyWidget : : unsubscribeItem ( )
{
2014-05-09 22:38:47 -04:00
QTreeWidgetItem * item = ui . lobbyTreeWidget - > currentItem ( ) ;
2015-01-05 15:00:32 -05:00
if ( item = = NULL | | item - > type ( ) ! = TYPE_LOBBY ) {
2012-01-11 19:13:25 -05:00
return ;
}
const ChatLobbyId id = item - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) ;
2013-02-24 17:44:14 -05:00
unsubscribeChatLobby ( id ) ;
}
void ChatLobbyWidget : : unsubscribeChatLobby ( ChatLobbyId id )
{
std : : cerr < < " Unsubscribing from chat lobby " < < std : : endl ;
// close the tab.
2013-02-27 17:17:49 -05:00
std : : map < ChatLobbyId , ChatLobbyInfoStruct > : : iterator it = _lobby_infos . find ( id ) ;
2013-02-24 17:44:14 -05:00
2013-02-27 17:17:49 -05:00
if ( it ! = _lobby_infos . end ( ) )
2013-02-24 17:44:14 -05:00
{
2015-04-17 17:36:22 -04:00
if ( myChatLobbyUserNotify ) {
myChatLobbyUserNotify - > chatLobbyCleared ( id , " " ) ;
}
2014-05-09 22:38:47 -04:00
ui . stackedWidget - > removeWidget ( it - > second . dialog ) ;
2013-02-27 17:17:49 -05:00
_lobby_infos . erase ( it ) ;
2013-02-24 17:44:14 -05:00
}
2014-05-09 22:38:47 -04:00
2013-02-24 17:44:14 -05:00
// Unsubscribe the chat lobby
2014-12-29 16:41:05 -05:00
ChatDialog : : closeChat ( ChatId ( id ) ) ;
2012-01-11 19:13:25 -05:00
rsMsgs - > unsubscribeChatLobby ( id ) ;
2013-06-29 12:15:33 -04:00
bool isAutoSubscribe = rsMsgs - > getLobbyAutoSubscribe ( id ) ;
2014-05-09 22:38:47 -04:00
if ( isAutoSubscribe ) rsMsgs - > setLobbyAutoSubscribe ( id , ! isAutoSubscribe ) ;
2013-06-29 12:15:33 -04:00
2014-05-09 22:38:47 -04:00
ChatLobbyDialog * cldCW = NULL ;
if ( NULL ! = ( cldCW = dynamic_cast < ChatLobbyDialog * > ( ui . stackedWidget - > currentWidget ( ) ) ) )
{
2013-08-28 17:13:35 -04:00
2014-05-09 22:38:47 -04:00
QTreeWidgetItem * qtwiFound = getTreeWidgetItem ( cldCW - > id ( ) ) ;
if ( qtwiFound ) {
ui . lobbyTreeWidget - > setCurrentItem ( qtwiFound ) ;
}
} else {
ui . lobbyTreeWidget - > clearSelection ( ) ;
2013-08-28 17:13:35 -04:00
2014-05-09 22:38:47 -04:00
}
2012-01-11 19:13:25 -05:00
}
2013-02-24 17:44:14 -05:00
void ChatLobbyWidget : : updateCurrentLobby ( )
2012-01-11 19:13:25 -05:00
{
2014-05-09 22:38:47 -04:00
QList < QTreeWidgetItem * > items = ui . lobbyTreeWidget - > selectedItems ( ) ;
2013-02-24 17:44:14 -05:00
if ( items . empty ( ) )
showLobby ( 0 ) ;
else
2013-02-27 17:17:49 -05:00
{
2013-08-26 19:37:13 -04:00
QTreeWidgetItem * item = items . front ( ) ;
showLobby ( item ) ;
2013-02-28 16:47:37 -05:00
2013-08-26 19:37:13 -04:00
ChatLobbyId id = item - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) ;
2013-02-28 16:47:37 -05:00
2013-08-26 19:37:13 -04:00
if ( _lobby_infos . find ( id ) ! = _lobby_infos . end ( ) ) {
2013-10-11 16:46:25 -04:00
int iPrivacyLevel = item - > parent ( ) - > data ( COLUMN_DATA , ROLE_PRIVACYLEVEL ) . toInt ( ) ;
2015-03-06 16:13:23 -05:00
QIcon icon = ( iPrivacyLevel = = CHAT_LOBBY_PRIVACY_LEVEL_PUBLIC ) ? QIcon ( IMAGE_PUBLIC ) : QIcon ( IMAGE_PRIVATE ) ;
2013-08-26 19:37:13 -04:00
_lobby_infos [ id ] . default_icon = icon ;
item - > setIcon ( COLUMN_NAME , icon ) ;
}
2013-02-27 17:17:49 -05:00
}
2014-05-09 22:38:47 -04:00
if ( ui . filterLineEdit - > text ( ) . isEmpty ( ) = = false ) {
filterItems ( ui . filterLineEdit - > text ( ) ) ;
2013-09-01 20:08:38 -04:00
}
2013-02-27 17:17:49 -05:00
}
2015-04-17 17:36:22 -04:00
void ChatLobbyWidget : : updateMessageChanged ( bool incoming , ChatLobbyId id , QDateTime time , QString senderName , QString msg )
2013-02-27 17:17:49 -05:00
{
2014-05-09 22:38:47 -04:00
QTreeWidgetItem * current_item = ui . lobbyTreeWidget - > currentItem ( ) ;
2015-04-17 17:36:22 -04:00
bool bIsCurrentItem = ( current_item ! = NULL & & current_item - > data ( COLUMN_DATA , ROLE_ID ) . toULongLong ( ) = = id ) ;
if ( myChatLobbyUserNotify ) {
if ( incoming ) myChatLobbyUserNotify - > chatLobbyNewMessage ( id , time , senderName , msg ) ;
}
2013-03-03 16:41:56 -05:00
// Don't show anything for current lobby.
//
2015-04-17 17:36:22 -04:00
if ( bIsCurrentItem )
2013-03-03 16:41:56 -05:00
return ;
2013-02-27 17:17:49 -05:00
_lobby_infos [ id ] . default_icon = QIcon ( IMAGE_MESSAGE ) ;
QTreeWidgetItem * item = getTreeWidgetItem ( id ) ;
2013-03-01 15:51:40 -05:00
if ( item = = NULL )
return ;
2013-08-26 19:37:13 -04:00
item - > setIcon ( COLUMN_NAME , _lobby_infos [ id ] . default_icon ) ;
2012-01-11 19:13:25 -05:00
}
2013-02-24 17:44:14 -05:00
void ChatLobbyWidget : : itemDoubleClicked ( QTreeWidgetItem * item , int /*column*/ )
2013-02-22 16:42:27 -05:00
{
2015-03-06 16:13:23 -05:00
subscribeChatLobbyAtItem ( item ) ;
2013-02-22 16:42:27 -05:00
}
2015-03-06 16:13:23 -05:00
void ChatLobbyWidget : : displayChatLobbyEvent ( qulonglong lobby_id , int event_type , const QString & gxs_id , const QString & str )
2012-01-11 19:13:25 -05:00
{
2014-12-29 16:41:05 -05:00
if ( ChatLobbyDialog * cld = dynamic_cast < ChatLobbyDialog * > ( ChatDialog : : getExistingChat ( ChatId ( lobby_id ) ) ) ) {
2015-03-06 16:13:23 -05:00
cld - > displayLobbyEvent ( event_type , RsGxsId ( gxs_id . toStdString ( ) ) , str ) ;
2014-12-29 16:41:05 -05:00
}
2012-01-07 14:52:58 -05:00
}
2012-01-11 19:13:25 -05:00
void ChatLobbyWidget : : readChatLobbyInvites ( )
{
2015-03-06 16:13:23 -05:00
std : : list < ChatLobbyInvite > invites ;
rsMsgs - > getPendingChatLobbyInvites ( invites ) ;
2012-01-11 19:13:25 -05:00
2015-03-06 16:13:23 -05:00
RsGxsId default_id ;
rsMsgs - > getDefaultIdentityForChatLobby ( default_id ) ;
2012-01-11 19:13:25 -05:00
2015-03-06 16:13:23 -05:00
for ( std : : list < ChatLobbyInvite > : : const_iterator it ( invites . begin ( ) ) ; it ! = invites . end ( ) ; + + it )
{
QMessageBox mb ( QObject : : tr ( " Join chat lobby " ) ,
tr ( " %1 invites you to chat lobby named %2 " ) . arg ( QString : : fromUtf8 ( rsPeers - > getPeerName ( ( * it ) . peer_id ) . c_str ( ) ) ) . arg ( RsHtml : : plainText ( it - > lobby_name ) ) ,
QMessageBox : : Question , QMessageBox : : Yes , QMessageBox : : No , 0 ) ;
2012-01-07 14:52:58 -05:00
2015-03-06 16:13:23 -05:00
GxsIdChooser * idchooser = new GxsIdChooser ;
idchooser - > loadIds ( IDCHOOSER_ID_REQUIRED , default_id ) ;
mb . layout ( ) - > addWidget ( new QLabel ( tr ( " Choose an identity for this lobby: " ) ) ) ;
mb . layout ( ) - > addWidget ( idchooser ) ;
int res = mb . exec ( ) ;
if ( res = = QMessageBox : : No )
{
rsMsgs - > denyLobbyInvite ( ( * it ) . lobby_id ) ;
continue ;
}
RsGxsId chosen_id ;
idchooser - > getChosenId ( chosen_id ) ;
if ( chosen_id . isNull ( ) )
{
rsMsgs - > denyLobbyInvite ( ( * it ) . lobby_id ) ;
continue ;
}
rsMsgs - > acceptLobbyInvite ( ( * it ) . lobby_id , chosen_id ) ;
RsPeerId vpid ;
if ( rsMsgs - > getVirtualPeerId ( ( * it ) . lobby_id , vpid ) )
ChatDialog : : chatFriend ( ChatId ( ( * it ) . lobby_id ) , true ) ;
else
std : : cerr < < " No lobby known with id 0x " < < std : : hex < < ( * it ) . lobby_id < < std : : dec < < std : : endl ;
}
2012-01-11 19:13:25 -05:00
}
2013-09-01 20:08:38 -04:00
void ChatLobbyWidget : : filterColumnChanged ( int )
{
2014-05-09 22:38:47 -04:00
filterItems ( ui . filterLineEdit - > text ( ) ) ;
2013-09-01 20:08:38 -04:00
}
void ChatLobbyWidget : : filterItems ( const QString & text )
{
2014-05-09 22:38:47 -04:00
int filterColumn = ui . filterLineEdit - > currentFilter ( ) ;
2013-09-01 20:08:38 -04:00
2014-05-09 22:38:47 -04:00
int count = ui . lobbyTreeWidget - > topLevelItemCount ( ) ;
2014-10-21 18:33:02 -04:00
for ( int index = 0 ; index < count ; + + index ) {
2014-05-09 22:38:47 -04:00
filterItem ( ui . lobbyTreeWidget - > topLevelItem ( index ) , text , filterColumn ) ;
}
2013-09-01 20:08:38 -04:00
}
bool ChatLobbyWidget : : filterItem ( QTreeWidgetItem * item , const QString & text , int filterColumn )
{
bool visible = true ;
if ( text . isEmpty ( ) = = false ) {
if ( item - > text ( filterColumn ) . contains ( text , Qt : : CaseInsensitive ) = = false ) {
visible = false ;
}
}
int visibleChildCount = 0 ;
int count = item - > childCount ( ) ;
2014-10-21 18:33:02 -04:00
for ( int index = 0 ; index < count ; + + index ) {
2013-09-01 20:08:38 -04:00
if ( filterItem ( item - > child ( index ) , text , filterColumn ) ) {
2014-10-21 18:33:02 -04:00
+ + visibleChildCount ;
2013-09-01 20:08:38 -04:00
}
}
if ( visible | | visibleChildCount ) {
item - > setHidden ( false ) ;
} else {
item - > setHidden ( true ) ;
}
return ( visible | | visibleChildCount ) ;
}
2013-09-19 15:22:17 -04:00
void ChatLobbyWidget : : processSettings ( bool bLoad )
{
2014-05-09 22:38:47 -04:00
m_bProcessSettings = true ;
2013-09-19 15:22:17 -04:00
2014-05-09 22:38:47 -04:00
QHeaderView * Header = ui . lobbyTreeWidget - > header ( ) ;
2013-09-19 15:22:17 -04:00
2014-05-09 22:38:47 -04:00
Settings - > beginGroup ( QString ( " ChatLobbyWidget " ) ) ;
2013-09-19 15:22:17 -04:00
if ( bLoad ) {
// load settings
2014-05-09 22:38:47 -04:00
// state of the lists
Header - > restoreState ( Settings - > value ( " lobbyList " ) . toByteArray ( ) ) ;
2013-09-19 15:22:17 -04:00
2014-05-09 22:38:47 -04:00
setShowUserCountColumn ( Settings - > value ( " showUserCountColumn " , ! ui . lobbyTreeWidget - > isColumnHidden ( COLUMN_USER_COUNT ) ) . toBool ( ) ) ;
setShowTopicColumn ( Settings - > value ( " showTopicColumn " , ! ui . lobbyTreeWidget - > isColumnHidden ( COLUMN_TOPIC ) ) . toBool ( ) ) ;
setShowSubscribeColumn ( Settings - > value ( " showSubscribeColumn " , ! ui . lobbyTreeWidget - > isColumnHidden ( COLUMN_SUBSCRIBED ) ) . toBool ( ) ) ;
} else {
// save settings
2013-09-19 15:22:17 -04:00
2014-05-09 22:38:47 -04:00
// state of the lists
Settings - > setValue ( " lobbyList " , Header - > saveState ( ) ) ;
2013-09-19 15:22:17 -04:00
2014-05-09 22:38:47 -04:00
Settings - > setValue ( " showUserCountColumn " , ! ui . lobbyTreeWidget - > isColumnHidden ( COLUMN_USER_COUNT ) ) ;
Settings - > setValue ( " showTopicColumn " , ! ui . lobbyTreeWidget - > isColumnHidden ( COLUMN_TOPIC ) ) ;
Settings - > setValue ( " showSubscribeColumn " , ! ui . lobbyTreeWidget - > isColumnHidden ( COLUMN_SUBSCRIBED ) ) ;
}
2013-09-19 15:22:17 -04:00
2014-05-09 22:38:47 -04:00
Settings - > endGroup ( ) ;
2013-09-19 15:22:17 -04:00
m_bProcessSettings = false ;
}
void ChatLobbyWidget : : setShowUserCountColumn ( bool show )
{
2014-05-09 22:38:47 -04:00
if ( ui . lobbyTreeWidget - > isColumnHidden ( COLUMN_USER_COUNT ) = = show ) {
ui . lobbyTreeWidget - > setColumnHidden ( COLUMN_USER_COUNT , ! show ) ;
}
ui . lobbyTreeWidget - > header ( ) - > setVisible ( getNumColVisible ( ) > 1 ) ;
2013-09-19 15:22:17 -04:00
}
void ChatLobbyWidget : : setShowTopicColumn ( bool show )
{
2014-05-09 22:38:47 -04:00
if ( ui . lobbyTreeWidget - > isColumnHidden ( COLUMN_TOPIC ) = = show ) {
ui . lobbyTreeWidget - > setColumnHidden ( COLUMN_TOPIC , ! show ) ;
}
ui . lobbyTreeWidget - > header ( ) - > setVisible ( getNumColVisible ( ) > 1 ) ;
2013-09-19 15:22:17 -04:00
}
void ChatLobbyWidget : : setShowSubscribeColumn ( bool show )
{
2014-05-09 22:38:47 -04:00
if ( ui . lobbyTreeWidget - > isColumnHidden ( COLUMN_SUBSCRIBED ) = = show ) {
ui . lobbyTreeWidget - > setColumnHidden ( COLUMN_SUBSCRIBED , ! show ) ;
}
ui . lobbyTreeWidget - > header ( ) - > setVisible ( getNumColVisible ( ) > 1 ) ;
2013-10-11 16:46:25 -04:00
}
int ChatLobbyWidget : : getNumColVisible ( )
{
2014-05-09 22:38:47 -04:00
int iNumColVis = 0 ;
for ( int iColumn = 0 ; iColumn < COLUMN_COUNT ; + + iColumn ) {
if ( ! ui . lobbyTreeWidget - > isColumnHidden ( iColumn ) ) {
+ + iNumColVis ;
}
}
2013-10-11 16:46:25 -04:00
return iNumColVis ;
2013-09-19 15:22:17 -04:00
}