2007-11-14 22:18:48 -05:00
/****************************************************************
* RetroShare is distributed under the following license :
*
* Copyright ( C ) 2006 , crypton
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation ; either version 2
* of the License , or ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 51 Franklin Street , Fifth Floor ,
* Boston , MA 02110 - 1301 , USA .
2009-01-01 18:25:16 -05:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-11-14 22:18:48 -05:00
2009-01-01 18:25:16 -05:00
# include <QFile>
2007-11-14 22:18:48 -05:00
# include <QFileInfo>
2008-01-25 03:49:40 -05:00
# include "common/vmessagebox.h"
2007-11-14 22:18:48 -05:00
# include "rsiface/rsiface.h"
2008-01-25 03:49:40 -05:00
# include "rsiface/rspeers.h"
2009-01-30 18:51:59 -05:00
# include "rsiface/rsmsgs.h"
2010-02-03 12:39:30 -05:00
# include "rsiface/rsstatus.h"
# include "rsiface/rsnotify.h"
2008-01-25 03:49:40 -05:00
# include "rshare.h"
# include "MessengerWindow.h"
2007-11-14 22:18:48 -05:00
# include "chat/PopupChatDialog.h"
# include "msgs/ChanMsgDialog.h"
2008-07-10 14:52:56 -04:00
# include "PeersDialog.h"
2007-11-14 22:18:48 -05:00
# include "connect/ConfCertDialog.h"
# include "util/PixmapMerging.h"
# include "LogoBar.h"
# include "util/Widget.h"
2009-09-30 18:10:49 -04:00
2009-03-28 06:41:49 -04:00
# include "gui/connect/ConnectFriendWizard.h"
2009-01-08 12:29:01 -05:00
# include "MessagesPopupDialog.h"
# include "ShareManager.h"
2007-11-14 22:18:48 -05:00
# include <iostream>
# include <sstream>
# include <QContextMenuEvent>
# include <QMenu>
# include <QCursor>
# include <QPoint>
# include <QPixmap>
# include <QMouseEvent>
# include <QHeaderView>
2009-01-01 18:25:16 -05:00
/* Images for context menu icons */
2007-11-14 22:18:48 -05:00
# define IMAGE_REMOVEFRIEND ": / images / removefriend16.png"
# define IMAGE_EXPIORTFRIEND ": / images / exportpeers_16x16.png"
# define IMAGE_CHAT ": / images / chat.png"
2010-02-03 12:39:30 -05:00
# define IMAGE_MSG ": / images / message-mail.png"
# define IMAGE_CONNECT ": / images / connect_friend.png"
# define IMAGE_PEERINFO ": / images / peerdetails_16x16.png"
# define IMAGE_AVAIBLE ": / images / user / identityavaiblecyan24.png"
# define IMAGE_CONNECT2 ": / images / reload24.png"
2007-11-14 22:18:48 -05:00
/* Images for Status icons */
2009-09-08 12:26:52 -04:00
# define IMAGE_ONLINE ": / images / im-user.png"
# define IMAGE_OFFLINE ": / images / im-user-offline.png"
2010-02-03 12:39:30 -05:00
2008-07-09 05:53:47 -04:00
/******
* # define MSG_DEBUG 1
* * * * */
2009-11-30 11:12:13 -05:00
MessengerWindow * MessengerWindow : : mv = 0 ;
2008-07-09 05:53:47 -04:00
2009-11-30 11:12:13 -05:00
MessengerWindow * MessengerWindow : : getInstance ( )
{
if ( mv = = 0 )
{
mv = new MessengerWindow ( ) ;
}
return mv ;
}
void MessengerWindow : : releaseInstance ( )
{
if ( mv ! = 0 )
{
delete mv ;
}
}
2008-07-09 05:53:47 -04:00
2009-01-01 18:25:16 -05:00
/** Constructor */
2009-01-07 16:12:31 -05:00
MessengerWindow : : MessengerWindow ( QWidget * parent , Qt : : WFlags flags )
: RWindow ( " MessengerWindow " , parent , flags )
2009-01-01 18:25:16 -05:00
{
/* Invoke the Qt Designer generated object setup routine */
2008-04-07 07:11:16 -04:00
ui . setupUi ( this ) ;
2007-11-18 18:35:53 -05:00
2009-01-01 18:25:16 -05:00
connect ( ui . messengertreeWidget , SIGNAL ( customContextMenuRequested ( QPoint ) ) , this , SLOT ( messengertreeWidgetCostumPopupMenu ( QPoint ) ) ) ;
2010-02-03 12:39:30 -05:00
connect ( ui . messengertreeWidget , SIGNAL ( itemDoubleClicked ( QTreeWidgetItem * , int ) ) , this , SLOT ( chatfriend ( ) ) ) ;
2007-11-14 22:18:48 -05:00
2009-01-30 18:51:59 -05:00
connect ( ui . avatarButton , SIGNAL ( clicked ( ) ) , SLOT ( getAvatar ( ) ) ) ;
2009-01-08 12:29:01 -05:00
connect ( ui . shareButton , SIGNAL ( clicked ( ) ) , SLOT ( openShareManager ( ) ) ) ;
2010-02-03 12:39:30 -05:00
connect ( ui . addIMAccountButton , SIGNAL ( clicked ( bool ) ) , this , SLOT ( addFriend ( ) ) ) ;
2010-02-03 19:04:41 -05:00
connect ( ui . actionHide_Offline_Friends , SIGNAL ( triggered ( ) ) , this , SLOT ( insertPeers ( ) ) ) ;
2007-11-14 22:18:48 -05:00
2009-01-01 18:25:16 -05:00
/* to hide the header */
2008-04-07 07:11:16 -04:00
ui . messengertreeWidget - > header ( ) - > hide ( ) ;
2007-11-14 22:18:48 -05:00
2009-09-30 18:10:49 -04:00
/* Set header resize modes and initial section sizes */
2010-02-03 12:39:30 -05:00
ui . messengertreeWidget - > setColumnCount ( 4 ) ;
ui . messengertreeWidget - > setColumnHidden ( 3 , true ) ;
ui . messengertreeWidget - > setColumnHidden ( 2 , true ) ;
//ui.messengertreeWidget->sortItems( 0, Qt::AscendingOrder );
2007-11-14 22:18:48 -05:00
2009-01-01 18:25:16 -05:00
QHeaderView * _header = ui . messengertreeWidget - > header ( ) ;
2010-02-03 17:42:23 -05:00
_header - > setResizeMode ( 0 , QHeaderView : : Stretch ) ;
_header - > setResizeMode ( 1 , QHeaderView : : Interactive ) ;
_header - > setStretchLastSection ( false ) ;
2009-01-01 18:25:16 -05:00
2010-02-03 17:42:23 -05:00
_header - > resizeSection ( 0 , 200 ) ;
_header - > resizeSection ( 1 , 100 ) ;
2009-01-01 18:25:16 -05:00
2008-04-07 07:11:16 -04:00
//LogoBar
_rsLogoBarmessenger = NULL ;
_rsLogoBarmessenger = new LogoBar ( ui . logoframe ) ;
Widget : : createLayout ( ui . logoframe ) - > addWidget ( _rsLogoBarmessenger ) ;
ui . statuscomboBox - > setMinimumWidth ( 20 ) ;
2010-01-25 17:08:23 -05:00
ui . messagelineEdit - > setMinimumWidth ( 20 ) ;
2008-04-24 08:58:27 -04:00
2009-09-30 18:10:49 -04:00
itemFont = QFont ( " ARIAL " , 10 ) ;
itemFont . setBold ( true ) ;
2010-02-03 12:39:30 -05:00
insertPeers ( ) ;
updateAvatar ( ) ;
2010-01-25 17:08:23 -05:00
loadmystatus ( ) ;
2010-02-03 17:42:23 -05:00
//loadstatus();
2010-02-03 12:39:30 -05:00
displayMenu ( ) ;
2010-02-03 18:38:38 -05:00
updateMessengerDisplay ( ) ;
2007-11-14 22:18:48 -05:00
2008-04-24 08:58:27 -04:00
/* Hide platform specific features */
# ifdef Q_WS_WIN
# endif
}
2007-11-14 22:18:48 -05:00
2009-01-01 18:25:16 -05:00
void MessengerWindow : : messengertreeWidgetCostumPopupMenu ( QPoint point )
{
2010-02-15 18:47:12 -05:00
QTreeWidgetItem * c = getCurrentPeer ( ) ;
if ( ! c )
{
//no peer selected
return ;
}
2009-01-01 18:25:16 -05:00
QMenu contextMnu ( this ) ;
QMouseEvent * mevent = new QMouseEvent ( QEvent : : MouseButtonPress , point , Qt : : RightButton , Qt : : RightButton , Qt : : NoModifier ) ;
2010-02-03 12:39:30 -05:00
QAction * expandAll = new QAction ( tr ( " Expand all " ) , this ) ;
connect ( expandAll , SIGNAL ( triggered ( ) ) , ui . messengertreeWidget , SLOT ( expandAll ( ) ) ) ;
QAction * collapseAll = new QAction ( tr ( " Collapse all " ) , this ) ;
connect ( collapseAll , SIGNAL ( triggered ( ) ) , ui . messengertreeWidget , SLOT ( collapseAll ( ) ) ) ;
2009-01-01 18:25:16 -05:00
chatAct = new QAction ( QIcon ( IMAGE_CHAT ) , tr ( " Chat " ) , this ) ;
2010-02-03 12:39:30 -05:00
connect ( chatAct , SIGNAL ( triggered ( ) ) , this , SLOT ( chatfriend ( ) ) ) ;
sendMessageAct = new QAction ( QIcon ( IMAGE_MSG ) , tr ( " Message Friend " ) , this ) ;
2007-11-14 22:18:48 -05:00
connect ( sendMessageAct , SIGNAL ( triggered ( ) ) , this , SLOT ( sendMessage ( ) ) ) ;
2010-02-03 12:39:30 -05:00
connectfriendAct = new QAction ( QIcon ( IMAGE_CONNECT ) , tr ( " Connect To Friend " ) , this ) ;
connect ( connectfriendAct , SIGNAL ( triggered ( ) ) , this , SLOT ( connectfriend ( ) ) ) ;
configurefriendAct = new QAction ( QIcon ( IMAGE_PEERINFO ) , tr ( " Peer Details " ) , this ) ;
connect ( configurefriendAct , SIGNAL ( triggered ( ) ) , this , SLOT ( configurefriend ( ) ) ) ;
//profileviewAct = new QAction(QIcon(IMAGE_PEERINFO), tr( "Profile View" ), this );
//connect( profileviewAct , SIGNAL( triggered() ), this, SLOT( viewprofile() ) );
2009-01-01 18:25:16 -05:00
exportfriendAct = new QAction ( QIcon ( IMAGE_EXPIORTFRIEND ) , tr ( " Export Friend " ) , this ) ;
2010-02-03 12:39:30 -05:00
connect ( exportfriendAct , SIGNAL ( triggered ( ) ) , this , SLOT ( exportfriend ( ) ) ) ;
2009-01-01 18:25:16 -05:00
2010-02-03 12:39:30 -05:00
if ( c - > type ( ) = = 0 ) {
//this is a GPG key
removefriendAct = new QAction ( QIcon ( IMAGE_REMOVEFRIEND ) , tr ( " Deny Friend " ) , this ) ;
} else {
removefriendAct = new QAction ( QIcon ( IMAGE_REMOVEFRIEND ) , tr ( " Remove Friend Location " ) , this ) ;
}
connect ( removefriendAct , SIGNAL ( triggered ( ) ) , this , SLOT ( removefriend ( ) ) ) ;
QWidget * widget = new QWidget ( ) ;
widget - > setStyleSheet ( " .QWidget{background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,stop:0 #FEFEFE, stop:1 #E8E8E8); border: 1px solid #CCCCCC;} " ) ;
QHBoxLayout * hbox = new QHBoxLayout ( ) ;
hbox - > setMargin ( 0 ) ;
hbox - > setSpacing ( 6 ) ;
iconLabel = new QLabel ( this ) ;
iconLabel - > setPixmap ( QPixmap : : QPixmap ( " :/images/user/friends24.png " ) ) ;
iconLabel - > setMaximumSize ( iconLabel - > frameSize ( ) . height ( ) + 24 , 24 ) ;
hbox - > addWidget ( iconLabel ) ;
if ( c - > type ( ) = = 0 ) {
//this is a GPG key
textLabel = new QLabel ( tr ( " <strong>GPG Key</strong> " ) , this ) ;
} else {
textLabel = new QLabel ( tr ( " <strong>RetroShare instance</strong> " ) , this ) ;
}
hbox - > addWidget ( textLabel ) ;
spacerItem = new QSpacerItem ( 40 , 20 , QSizePolicy : : Expanding , QSizePolicy : : Minimum ) ;
hbox - > addItem ( spacerItem ) ;
widget - > setLayout ( hbox ) ;
QWidgetAction * widgetAction = new QWidgetAction ( this ) ;
widgetAction - > setDefaultWidget ( widget ) ;
2007-11-16 20:35:52 -05:00
2009-01-01 18:25:16 -05:00
contextMnu . clear ( ) ;
2010-02-03 12:39:30 -05:00
contextMnu . addAction ( widgetAction ) ;
2007-11-14 22:18:48 -05:00
contextMnu . addAction ( chatAct ) ;
contextMnu . addAction ( sendMessageAct ) ;
contextMnu . addAction ( configurefriendAct ) ;
2010-02-03 12:39:30 -05:00
//contextMnu.addAction( profileviewAct);
if ( c - > type ( ) ! = 0 ) {
//this is a SSL key
contextMnu . addAction ( connectfriendAct ) ;
}
contextMnu . addAction ( removefriendAct ) ;
//contextMnu.addAction( exportfriendAct);
contextMnu . addSeparator ( ) ;
contextMnu . addAction ( expandAll ) ;
contextMnu . addAction ( collapseAll ) ;
2009-01-01 18:25:16 -05:00
contextMnu . exec ( mevent - > globalPos ( ) ) ;
}
2010-02-03 12:39:30 -05:00
void MessengerWindow : : updateMessengerDisplay ( )
{
// add self nick and Avatar to Friends.
RsPeerDetails pd ;
if ( rsPeers - > getPeerDetails ( rsPeers - > getOwnId ( ) , pd ) ) {
2010-02-03 18:38:38 -05:00
QString titleStr ( " <span style= \" font-size:14pt; font-weight:500; "
" color:#FFFFFF; \" >%1</span> " ) ;
ui . nicklabel - > setText ( titleStr . arg ( QString : : fromStdString ( pd . name ) + tr ( " - " ) + QString : : fromStdString ( pd . location ) ) ) ;
2010-02-03 12:39:30 -05:00
}
insertPeers ( ) ;
}
2007-11-14 22:18:48 -05:00
/* get the list of peers from the RsIface. */
void MessengerWindow : : insertPeers ( )
{
2010-02-03 12:39:30 -05:00
std : : list < std : : string > gpgFriends ;
std : : list < std : : string > : : iterator it ;
if ( ! rsPeers ) {
2008-01-25 03:49:40 -05:00
/* not ready yet! */
2010-02-03 12:39:30 -05:00
std : : cerr < < " PeersDialog::insertPeers() not ready yet : rsPeers unintialized. " < < std : : endl ;
2008-01-25 03:49:40 -05:00
return ;
}
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
rsPeers - > getGPGAcceptedList ( gpgFriends ) ;
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
//add own gpg id, if we have more than on location (ssl client)
std : : list < std : : string > ownSslContacts ;
rsPeers - > getSSLChildListOfGPGId ( rsPeers - > getGPGOwnId ( ) , ownSslContacts ) ;
if ( ownSslContacts . size ( ) > 0 ) {
gpgFriends . push_back ( rsPeers - > getGPGOwnId ( ) ) ;
}
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
/* get a link to the table */
QTreeWidget * peertreeWidget = ui . messengertreeWidget ;
//remove items that are not fiends anymore
int index = 0 ;
while ( index < peertreeWidget - > topLevelItemCount ( ) ) {
std : : string gpg_widget_id = ( peertreeWidget - > topLevelItem ( index ) ) - > text ( 3 ) . toStdString ( ) ;
std : : list < std : : string > : : iterator gpgfriendIt ;
bool found = false ;
for ( gpgfriendIt = gpgFriends . begin ( ) ; gpgfriendIt ! = gpgFriends . end ( ) ; gpgfriendIt + + ) {
if ( gpg_widget_id = = * gpgfriendIt ) {
found = true ;
break ;
2008-01-25 03:49:40 -05:00
}
2010-02-03 12:39:30 -05:00
}
if ( ! found ) {
peertreeWidget - > takeTopLevelItem ( index ) ;
} else {
index + + ;
}
}
2010-01-25 17:08:23 -05:00
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
//add the gpg friends
for ( it = gpgFriends . begin ( ) ; it ! = gpgFriends . end ( ) ; it + + ) {
// if (*it == rsPeers->getGPGOwnId()) {
// continue;
// }
/* make a widget per friend */
QTreeWidgetItem * gpg_item ;
QList < QTreeWidgetItem * > list = peertreeWidget - > findItems ( QString : : fromStdString ( * it ) , Qt : : MatchExactly , 3 ) ;
if ( list . size ( ) = = 1 ) {
gpg_item = list . front ( ) ;
} else {
gpg_item = new QTreeWidgetItem ( 0 ) ; //set type to 0 for custom popup menu
gpg_item - > setChildIndicatorPolicy ( QTreeWidgetItem : : DontShowIndicatorWhenChildless ) ;
}
RsPeerDetails detail ;
if ( ( ! rsPeers - > getPeerDetails ( * it , detail ) | | ! detail . accept_connection )
& & detail . gpg_id ! = rsPeers - > getGPGOwnId ( ) ) {
//don't accept anymore connection, remove from the view
peertreeWidget - > takeTopLevelItem ( peertreeWidget - > indexOfTopLevelItem ( gpg_item ) ) ;
continue ;
}
//use to mark item as updated
gpg_item - > setData ( 0 , Qt : : UserRole , true ) ;
gpg_item - > setTextAlignment ( 0 , Qt : : AlignLeft | Qt : : AlignVCenter ) ;
/* not displayed, used to find back the item */
gpg_item - > setText ( 3 , QString : : fromStdString ( detail . id ) ) ;
//remove items that are not friends anymore
int childIndex = 0 ;
while ( childIndex < gpg_item - > childCount ( ) ) {
std : : string ssl_id = ( gpg_item - > child ( childIndex ) ) - > text ( 3 ) . toStdString ( ) ;
if ( ! rsPeers - > isFriend ( ssl_id ) ) {
gpg_item - > takeChild ( childIndex ) ;
} else {
childIndex + + ;
}
}
//update the childs (ssl certs)
bool gpg_connected = false ;
bool gpg_online = false ;
std : : list < std : : string > sslContacts ;
rsPeers - > getSSLChildListOfGPGId ( detail . gpg_id , sslContacts ) ;
for ( std : : list < std : : string > : : iterator sslIt = sslContacts . begin ( ) ; sslIt ! = sslContacts . end ( ) ; sslIt + + ) {
QTreeWidgetItem * sslItem ;
//find the corresponding sslItem child item of the gpg item
bool newChild = true ;
for ( int childIndex = 0 ; childIndex < gpg_item - > childCount ( ) ; childIndex + + ) {
if ( gpg_item - > child ( childIndex ) - > text ( 3 ) . toStdString ( ) = = * sslIt ) {
sslItem = gpg_item - > child ( childIndex ) ;
newChild = false ;
break ;
}
}
if ( newChild ) {
sslItem = new QTreeWidgetItem ( 1 ) ; //set type to 1 for custom popup menu
}
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
RsPeerDetails sslDetail ;
if ( ! rsPeers - > getPeerDetails ( * sslIt , sslDetail ) | | ! rsPeers - > isFriend ( * sslIt ) ) {
std : : cerr < < " Removing widget from the view : id : " < < * sslIt < < std : : endl ;
//child has disappeared, remove it from the gpg_item
gpg_item - > removeChild ( sslItem ) ;
}
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
/* not displayed, used to find back the item */
sslItem - > setText ( 3 , QString : : fromStdString ( sslDetail . id ) ) ;
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
if ( rsMsgs - > getCustomStateString ( sslDetail . id ) ! = " " ) {
sslItem - > setText ( 0 , tr ( " location : " ) + QString : : fromStdString ( sslDetail . location ) ) ;
sslItem - > setToolTip ( 0 , tr ( " location : " ) + QString : : fromStdString ( sslDetail . location ) + tr ( " - " ) + QString : : fromStdString ( rsMsgs - > getCustomStateString ( sslDetail . id ) ) ) ;
gpg_item - > setText ( 0 , QString : : fromStdString ( detail . name ) + tr ( " \n " ) + QString : : fromStdString ( rsMsgs - > getCustomStateString ( sslDetail . id ) ) ) ;
2009-09-30 18:10:49 -04:00
2010-02-03 12:39:30 -05:00
} else {
sslItem - > setText ( 0 , tr ( " location : " ) + QString : : fromStdString ( sslDetail . location ) ) ;
sslItem - > setToolTip ( 0 , tr ( " location : " ) + QString : : fromStdString ( sslDetail . location ) ) ;
gpg_item - > setText ( 0 , QString : : fromStdString ( detail . name ) + tr ( " \n " ) + QString : : fromStdString ( sslDetail . location ) ) ;
}
/* not displayed, used to find back the item */
sslItem - > setText ( 1 , QString : : fromStdString ( sslDetail . autoconnect ) ) ;
int i ;
if ( sslDetail . state & RS_PEER_STATE_CONNECTED ) {
sslItem - > setHidden ( false ) ;
gpg_connected = true ;
/* change color and icon */
sslItem - > setIcon ( 0 , ( QIcon ( " :/images/connect_established.png " ) ) ) ;
sslItem - > setIcon ( 1 , ( QIcon ( " :/images/encrypted32.png " ) ) ) ;
QFont font ;
font . setBold ( true ) ;
for ( i = 0 ; i < 3 ; i + + ) {
sslItem - > setTextColor ( i , ( Qt : : darkBlue ) ) ;
sslItem - > setFont ( i , font ) ;
}
} else if ( sslDetail . state & RS_PEER_STATE_ONLINE ) {
sslItem - > setHidden ( ui . actionHide_Offline_Friends - > isChecked ( ) ) ;
gpg_online = true ;
QFont font ;
font . setBold ( true ) ;
for ( i = 0 ; i < 3 ; i + + ) {
sslItem - > setTextColor ( i , ( Qt : : black ) ) ;
sslItem - > setFont ( i , font ) ;
}
} else {
sslItem - > setHidden ( ui . actionHide_Offline_Friends - > isChecked ( ) ) ;
if ( sslDetail . autoconnect ! = " Offline " ) {
sslItem - > setIcon ( 0 , ( QIcon ( " :/images/connect_creating.png " ) ) ) ;
} else {
sslItem - > setIcon ( 0 , ( QIcon ( " :/images/connect_no.png " ) ) ) ;
}
QFont font ;
font . setBold ( false ) ;
for ( i = 0 ; i < 3 ; i + + ) {
sslItem - > setTextColor ( i , ( Qt : : black ) ) ;
sslItem - > setFont ( i , font ) ;
}
}
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
# ifdef PEERS_DEBUG
std : : cerr < < " PeersDialog::insertPeers() inserting sslItem. " < < std : : endl ;
# endif
/* add sl child to the list. If item is already in the list, it won't be duplicated thanks to Qt */
gpg_item - > addChild ( sslItem ) ;
if ( newChild ) {
gpg_item - > setExpanded ( true ) ;
}
}
int i = 0 ;
if ( gpg_connected ) {
gpg_item - > setHidden ( false ) ;
gpg_item - > setIcon ( 0 , ( QIcon ( IMAGE_ONLINE ) ) ) ;
gpg_item - > setText ( 1 , tr ( " Online " ) ) ;
QFont font ;
font . setBold ( true ) ;
for ( i = 0 ; i < 3 ; i + + ) {
gpg_item - > setTextColor ( i , ( Qt : : darkBlue ) ) ;
gpg_item - > setFont ( i , font ) ;
}
} else if ( gpg_online ) {
gpg_item - > setHidden ( ui . actionHide_Offline_Friends - > isChecked ( ) ) ;
gpg_item - > setIcon ( 0 , ( QIcon ( IMAGE_AVAIBLE ) ) ) ;
gpg_item - > setText ( 1 , tr ( " Available " ) ) ;
QFont font ;
font . setBold ( true ) ;
for ( i = 0 ; i < 3 ; i + + ) {
gpg_item - > setTextColor ( i , ( Qt : : black ) ) ;
gpg_item - > setFont ( i , font ) ;
}
} else {
gpg_item - > setHidden ( ui . actionHide_Offline_Friends - > isChecked ( ) ) ;
gpg_item - > setIcon ( 0 , ( QIcon ( IMAGE_OFFLINE ) ) ) ;
gpg_item - > setText ( 1 , tr ( " Offline " ) ) ;
QFont font ;
font . setBold ( false ) ;
for ( i = 0 ; i < 3 ; i + + ) {
gpg_item - > setTextColor ( i , ( Qt : : black ) ) ;
gpg_item - > setFont ( i , font ) ;
}
}
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
/* add gpg item to the list. If item is already in the list, it won't be duplicated thanks to Qt */
peertreeWidget - > addTopLevelItem ( gpg_item ) ;
}
2007-11-14 22:18:48 -05:00
}
/* Utility Fns */
2010-02-03 12:39:30 -05:00
std : : string getPeersRsCertId ( QTreeWidgetItem * i )
2007-11-14 22:18:48 -05:00
{
2010-02-03 12:39:30 -05:00
std : : string id = ( i - > text ( 3 ) ) . toStdString ( ) ;
2007-11-14 22:18:48 -05:00
return id ;
}
2010-02-03 12:39:30 -05:00
/** Add a Friend ShortCut */
void MessengerWindow : : addFriend ( )
{
ConnectFriendWizard * connwiz = new ConnectFriendWizard ( this ) ;
// set widget to be deleted after close
connwiz - > setAttribute ( Qt : : WA_DeleteOnClose , true ) ;
connwiz - > show ( ) ;
}
2007-11-14 22:18:48 -05:00
/** Open a QFileDialog to browse for export a file. */
2010-02-03 12:39:30 -05:00
void MessengerWindow : : exportfriend ( )
2007-11-14 22:18:48 -05:00
{
2010-02-03 12:39:30 -05:00
QTreeWidgetItem * c = getCurrentPeer ( ) ;
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
# ifdef PEERS_DEBUG
std : : cerr < < " PeersDialog::exportfriend() " < < std : : endl ;
# endif
if ( ! c )
{
# ifdef PEERS_DEBUG
std : : cerr < < " PeersDialog::exportfriend() None Selected -- sorry " < < std : : endl ;
# endif
return ;
}
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
std : : string id = getPeersRsCertId ( c ) ;
QString fileName = QFileDialog : : getSaveFileName ( this , tr ( " Save Certificate " ) , " " ,
tr ( " Certificates (*.pqi) " ) ) ;
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
std : : string file = fileName . toStdString ( ) ;
if ( file ! = " " )
{
# ifdef PEERS_DEBUG
std : : cerr < < " PeersDialog::exportfriend() Saving to: " < < file < < std : : endl ;
std : : cerr < < std : : endl ;
# endif
if ( rsPeers )
{
rsPeers - > saveCertificateToFile ( id , file ) ;
}
}
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
}
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
void MessengerWindow : : chatfriend ( )
2007-11-14 22:18:48 -05:00
{
2010-02-03 12:39:30 -05:00
QTreeWidgetItem * i = getCurrentPeer ( ) ;
2007-11-14 22:18:48 -05:00
if ( ! i )
2010-02-03 12:39:30 -05:00
return ;
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
//std::string name = (i -> text(2)).toStdString();
std : : string id = ( i - > text ( 3 ) ) . toStdString ( ) ;
bool oneLocationConnected = false ;
RsPeerDetails detail ;
if ( ! rsPeers - > getPeerDetails ( id , detail ) ) {
return ;
2007-11-14 22:18:48 -05:00
}
2010-02-03 12:39:30 -05:00
if ( detail . isOnlyGPGdetail ) {
//let's get the ssl child details, and open all the chat boxes
std : : list < std : : string > sslIds ;
rsPeers - > getSSLChildListOfGPGId ( detail . gpg_id , sslIds ) ;
for ( std : : list < std : : string > : : iterator it = sslIds . begin ( ) ; it ! = sslIds . end ( ) ; it + + ) {
RsPeerDetails sslDetails ;
if ( rsPeers - > getPeerDetails ( * it , sslDetails ) ) {
if ( sslDetails . state & RS_PEER_STATE_CONNECTED ) {
oneLocationConnected = true ;
getPrivateChat ( * it , sslDetails . name + " - " + sslDetails . location , RS_CHAT_REOPEN ) ;
}
}
}
} else {
if ( detail . state & RS_PEER_STATE_CONNECTED ) {
oneLocationConnected = true ;
getPrivateChat ( id , detail . name + " - " + detail . location , RS_CHAT_REOPEN ) ;
}
}
if ( ! oneLocationConnected ) {
/* info dialog */
2010-02-04 18:12:35 -05:00
if ( ( QMessageBox : : question ( this , tr ( " Friend Not Online " ) , tr ( " Your Friend is offline \n Do you want to send them a Message instead " ) , QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : Yes ) ) = = QMessageBox : : Yes )
{
sendMessage ( ) ;
}
2007-11-14 22:18:48 -05:00
}
2010-02-03 12:39:30 -05:00
return ;
2007-11-14 22:18:48 -05:00
}
2010-02-03 12:39:30 -05:00
QTreeWidgetItem * MessengerWindow : : getCurrentPeer ( )
2007-11-14 22:18:48 -05:00
{
2010-02-03 12:39:30 -05:00
/* get the current, and extract the Id */
/* get a link to the table */
QTreeWidget * peerWidget = ui . messengertreeWidget ;
QTreeWidgetItem * item = peerWidget - > currentItem ( ) ;
if ( ! item )
{
# ifdef PEERS_DEBUG
std : : cerr < < " Invalid Current Item " < < std : : endl ;
# endif
return NULL ;
}
# ifdef PEERS_DEBUG
/* Display the columns of this item. */
std : : ostringstream out ;
out < < " CurrentPeerItem: " < < std : : endl ;
for ( int i = 1 ; i < 6 ; i + + )
{
QString txt = item - > text ( i ) ;
out < < " \t " < < i < < " : " < < txt . toStdString ( ) < < std : : endl ;
}
std : : cerr < < out . str ( ) ;
# endif
return item ;
2007-11-14 22:18:48 -05:00
}
2010-02-03 12:39:30 -05:00
/* So from the Peers Dialog we can call the following control Functions:
* ( 1 ) Remove Current . FriendRemove ( id )
* ( 2 ) Allow / DisAllow . FriendStatus ( id , accept )
* ( 2 ) Connect . FriendConnectAttempt ( id , accept )
* ( 3 ) Set Address . FriendSetAddress ( id , str , port )
* ( 4 ) Set Trust . FriendTrustSignature ( id , bool )
* ( 5 ) Configure ( GUI Only ) - > 3 / 4
*
* All of these rely on the finding of the current Id .
*/
void MessengerWindow : : removefriend ( )
2007-11-14 22:18:48 -05:00
{
2010-02-03 12:39:30 -05:00
QTreeWidgetItem * c = getCurrentPeer ( ) ;
# ifdef PEERS_DEBUG
std : : cerr < < " PeersDialog::removefriend() " < < std : : endl ;
# endif
if ( ! c )
{
# ifdef PEERS_DEBUG
std : : cerr < < " PeersDialog::removefriend() Noone Selected -- sorry " < < std : : endl ;
# endif
return ;
}
if ( rsPeers )
{
rsPeers - > removeFriend ( getPeersRsCertId ( c ) ) ;
emit friendsUpdated ( ) ;
}
2007-11-14 22:18:48 -05:00
}
2010-02-03 12:39:30 -05:00
void MessengerWindow : : connectfriend ( )
{
QTreeWidgetItem * c = getCurrentPeer ( ) ;
# ifdef PEERS_DEBUG
std : : cerr < < " PeersDialog::connectfriend() " < < std : : endl ;
# endif
if ( ! c )
{
# ifdef PEERS_DEBUG
std : : cerr < < " PeersDialog::connectfriend() Noone Selected -- sorry " < < std : : endl ;
# endif
return ;
}
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
if ( rsPeers )
{
rsPeers - > connectAttempt ( getPeersRsCertId ( c ) ) ;
c - > setIcon ( 0 , ( QIcon ( IMAGE_CONNECT2 ) ) ) ;
}
}
2007-11-14 22:18:48 -05:00
/* GUI stuff -> don't do anything directly with Control */
2010-02-03 12:39:30 -05:00
void MessengerWindow : : configurefriend ( )
2007-11-14 22:18:48 -05:00
{
2010-02-03 12:39:30 -05:00
ConfCertDialog : : show ( getPeersRsCertId ( getCurrentPeer ( ) ) ) ;
2007-11-14 22:18:48 -05:00
}
2010-02-03 12:39:30 -05:00
void MessengerWindow : : updatePeersAvatar ( const QString & peer_id )
{
std : : cerr < < " PeersDialog: Got notified of new avatar for peer " < < peer_id . toStdString ( ) < < std : : endl ;
PopupChatDialog * pcd = getPrivateChat ( peer_id . toStdString ( ) , rsPeers - > getPeerName ( peer_id . toStdString ( ) ) , 0 ) ;
pcd - > updatePeerAvatar ( peer_id . toStdString ( ) ) ;
}
//============================================================================
PopupChatDialog *
MessengerWindow : : getPrivateChat ( std : : string id , std : : string name , uint chatflags )
{
/* see if it exists already */
PopupChatDialog * popupchatdialog = NULL ;
bool show = false ;
if ( chatflags & RS_CHAT_REOPEN )
{
show = true ;
std : : cerr < < " reopen flag so: enable SHOW popupchatdialog() " ;
std : : cerr < < std : : endl ;
}
std : : map < std : : string , PopupChatDialog * > : : iterator it ;
if ( chatDialogs . end ( ) ! = ( it = chatDialogs . find ( id ) ) )
{
/* exists already */
popupchatdialog = it - > second ;
}
else
{
popupchatdialog = new PopupChatDialog ( id , name ) ;
chatDialogs [ id ] = popupchatdialog ;
if ( chatflags & RS_CHAT_OPEN_NEW )
{
std : : cerr < < " new chat so: enable SHOW popupchatdialog() " ;
std : : cerr < < std : : endl ;
show = true ;
}
}
if ( show )
{
std : : cerr < < " SHOWING popupchatdialog() " ;
std : : cerr < < std : : endl ;
popupchatdialog - > show ( ) ;
}
/* now only do these if the window is visible */
if ( popupchatdialog - > isVisible ( ) )
{
if ( chatflags & RS_CHAT_FOCUS )
{
std : : cerr < < " focus chat flag so: GETFOCUS popupchatdialog() " ;
std : : cerr < < std : : endl ;
popupchatdialog - > getfocus ( ) ;
}
else
{
std : : cerr < < " no focus chat flag so: FLASH popupchatdialog() " ;
std : : cerr < < std : : endl ;
popupchatdialog - > flash ( ) ;
}
}
else
{
std : : cerr < < " not visible ... so leave popupchatdialog() " ;
std : : cerr < < std : : endl ;
}
return popupchatdialog ;
}
//============================================================================
2009-01-01 18:25:16 -05:00
/** Overloads the default show */
void MessengerWindow : : show ( )
{
if ( ! this - > isVisible ( ) ) {
QWidget : : show ( ) ;
} else {
QWidget : : activateWindow ( ) ;
setWindowState ( windowState ( ) & ~ Qt : : WindowMinimized | Qt : : WindowActive ) ;
QWidget : : raise ( ) ;
}
2007-11-14 22:18:48 -05:00
}
void MessengerWindow : : closeEvent ( QCloseEvent * event )
{
2009-01-07 16:12:31 -05:00
//RshareSettings config;
//config.saveWidgetInformation(this);
2007-11-18 18:35:53 -05:00
2007-11-14 22:18:48 -05:00
hide ( ) ;
event - > ignore ( ) ;
}
2009-01-08 12:29:01 -05:00
/** Shows Share Manager */
void MessengerWindow : : openShareManager ( )
{
2009-08-03 15:43:52 -04:00
ShareManager : : showYourself ( ) ;
2009-01-08 12:29:01 -05:00
}
2007-11-14 22:18:48 -05:00
void MessengerWindow : : sendMessage ( )
{
2010-02-03 12:39:30 -05:00
# ifdef MESSENGERWINDOW_DEBUG
std : : cerr < < " SharedFilesDialog::sendMessage() " < < std : : endl ;
2008-07-09 05:53:47 -04:00
# endif
2007-11-14 22:18:48 -05:00
2010-02-03 12:39:30 -05:00
QTreeWidgetItem * i = getCurrentPeer ( ) ;
2007-11-14 22:18:48 -05:00
if ( ! i )
return ;
2010-02-03 12:39:30 -05:00
std : : string status = ( i - > text ( 1 ) ) . toStdString ( ) ;
std : : string name = ( i - > text ( 2 ) ) . toStdString ( ) ;
std : : string id = ( i - > text ( 3 ) ) . toStdString ( ) ;
2007-11-14 22:18:48 -05:00
rsicontrol - > ClearInMsg ( ) ;
rsicontrol - > SetInMsg ( id , true ) ;
2010-02-03 12:39:30 -05:00
std : : list < std : : string > sslIds ;
rsPeers - > getSSLChildListOfGPGId ( id , sslIds ) ;
for ( std : : list < std : : string > : : iterator it = sslIds . begin ( ) ; it ! = sslIds . end ( ) ; it + + ) {
//put all sslChilds in message list
rsicontrol - > SetInMsg ( * it , true ) ;
}
2007-11-14 22:18:48 -05:00
/* create a message */
ChanMsgDialog * nMsgDialog = new ChanMsgDialog ( true ) ;
nMsgDialog - > newMsg ( ) ;
nMsgDialog - > show ( ) ;
}
2010-02-03 12:39:30 -05:00
LogoBar & MessengerWindow : : getLogoBar ( ) const {
return * _rsLogoBarmessenger ;
2007-11-16 20:35:52 -05:00
}
2007-11-14 22:18:48 -05:00
void MessengerWindow : : changeAvatarClicked ( )
{
updateAvatar ( ) ;
}
2009-01-30 18:51:59 -05:00
void MessengerWindow : : updateAvatar ( )
2007-11-14 22:18:48 -05:00
{
2009-01-30 18:51:59 -05:00
unsigned char * data = NULL ;
int size = 0 ;
2007-11-14 22:18:48 -05:00
2009-01-30 18:51:59 -05:00
rsMsgs - > getOwnAvatarData ( data , size ) ;
2007-11-14 22:18:48 -05:00
2009-01-30 18:51:59 -05:00
std : : cerr < < " Image size = " < < size < < std : : endl ;
2007-11-14 22:18:48 -05:00
2009-01-30 18:51:59 -05:00
if ( size = = 0 )
std : : cerr < < " Got no image " < < std : : endl ;
// set the image
QPixmap pix ;
2009-09-07 09:59:38 -04:00
pix . loadFromData ( data , size , " PNG " ) ;
ui . avatarButton - > setIcon ( pix ) ; // writes image into ba in PNG format
2009-01-30 18:51:59 -05:00
delete [ ] data ;
2009-01-01 18:25:16 -05:00
}
2007-11-14 22:18:48 -05:00
2009-01-30 18:51:59 -05:00
void MessengerWindow : : getAvatar ( )
2009-01-03 21:28:30 -05:00
{
2009-01-30 18:51:59 -05:00
QString fileName = QFileDialog : : getOpenFileName ( this , " Load File " , QDir : : homePath ( ) , " Pictures (*.png *.xpm *.jpg) " ) ;
2009-01-03 21:28:30 -05:00
if ( ! fileName . isEmpty ( ) )
{
2009-01-30 18:51:59 -05:00
picture = QPixmap ( fileName ) . scaled ( 82 , 82 , Qt : : IgnoreAspectRatio ) ;
std : : cerr < < " Sending avatar image down the pipe " < < std : : endl ;
// send avatar down the pipe for other peers to get it.
QByteArray ba ;
QBuffer buffer ( & ba ) ;
buffer . open ( QIODevice : : WriteOnly ) ;
2009-09-07 09:59:38 -04:00
picture . save ( & buffer , " PNG " ) ; // writes image into ba in PNG format
2009-01-30 18:51:59 -05:00
std : : cerr < < " Image size = " < < ba . size ( ) < < std : : endl ;
rsMsgs - > setOwnAvatarData ( ( unsigned char * ) ( ba . data ( ) ) , ba . size ( ) ) ; // last char 0 included.
updateAvatar ( ) ;
2009-01-03 21:28:30 -05:00
}
}
2010-01-25 17:08:23 -05:00
/** Loads own personal status */
void MessengerWindow : : loadmystatus ( )
{
ui . messagelineEdit - > setText ( QString : : fromStdString ( rsMsgs - > getCustomStateString ( ) ) ) ;
}
2010-02-03 12:39:30 -05:00
void MessengerWindow : : on_actionSort_Peers_Descending_Order_activated ( )
{
ui . messengertreeWidget - > sortItems ( 0 , Qt : : DescendingOrder ) ;
}
void MessengerWindow : : on_actionSort_Peers_Ascending_Order_activated ( )
{
ui . messengertreeWidget - > sortItems ( 0 , Qt : : AscendingOrder ) ;
}
void MessengerWindow : : on_actionRoot_is_decorated_activated ( )
{
ui . messengertreeWidget - > setRootIsDecorated ( true ) ;
}
void MessengerWindow : : on_actionRoot_isnot_decorated_activated ( )
{
ui . messengertreeWidget - > setRootIsDecorated ( false ) ;
}
void MessengerWindow : : displayMenu ( )
{
QMenu * lookmenu = new QMenu ( ) ;
lookmenu - > addAction ( ui . actionSort_Peers_Descending_Order ) ;
lookmenu - > addAction ( ui . actionSort_Peers_Ascending_Order ) ;
lookmenu - > addAction ( ui . actionHide_Offline_Friends ) ;
QMenu * viewMenu = new QMenu ( tr ( " View " ) , this ) ;
viewMenu - > addAction ( ui . actionRoot_is_decorated ) ;
viewMenu - > addAction ( ui . actionRoot_isnot_decorated ) ;
lookmenu - > addMenu ( viewMenu ) ;
ui . displaypushButton - > setMenu ( lookmenu ) ;
}
/** Load own status Online,Away,Busy **/
void MessengerWindow : : loadstatus ( )
{
/* load up configuration from rsPeers */
/*RsPeerDetails detail;
if ( ! rsPeers - > getPeerDetails ( rsPeers - > getOwnId ( ) , detail ) )
{
return ;
}
StatusInfo si ;
if ( ! rsStatus - > getStatus ( detail . id , si ) )
{
return ;
} */
/* set status mode */
/*int statusIndex = 0;
switch ( si . status )
{
case RS_STATUS_OFFLINE :
statusIndex = 3 ;
break ;
case RS_STATUS_AWAY :
statusIndex = 2 ;
break ;
case RS_STATUS_BUSY :
statusIndex = 1 ;
break ;
default :
case RS_STATUS_ONLINE :
statusIndex = 0 ;
break ;
}
ui . statuscomboBox - > setCurrentIndex ( statusIndex ) ; */
}