C#+ html 实现类似QQ聊天界面的气泡效果

1 /**定义两个人的头像*/
2     Myhead = "";
3     QString strHead = QString("C:/Users/tax10_000/Desktop/ql_184555_828078.jpg");
4     otherhead = QString ("").arg(strHead);

加载html文件

 1 void chatdemo::slot_btnpicClicked()
 2 {
 3     QString FilePath = QFileDialog::getOpenFileName();
 4     QFile file( FilePath );
 5     bool ok = file.open( QIODevice::ReadOnly );
 6     if( !ok ) { return; }
 7     QString msg = QString("")
 8         .arg( FilePath );
 9     QString MyHead = QString("").arg(FilePath);
10     QString Msg = QString ("");
11     SendMsgShow(msg,MyHead);
12     RevMsgShow( Msg,otherhead);
13 
14 }1
15 2
16 3
17 4
18 5
19 6
20 7
21 8
22 9
23 10
24 11
25 12
26 13
27 14
28 
29 
30 
31 下面这个函数的功能是当LineEdit中有内容时,将LineEdit中的内容显示在界面上并清除LineEdit中的内容,如果发送是“你好”或者“时间”时,假设对方会回答你。
32 
33 void chatdemo::slot_lineEditReturnpressed()
34 {
35     if( m_ui.lineEdit->text() == NULL )
36     {
37         QMessageBox::warning( this , "warning","Can't send an empty msg!" );
38         return;
39     }
40     /**自己发送的消息*/
41     SendMsgShow( m_ui.lineEdit->text() , Myhead );
42 
43     if( m_ui.lineEdit->text() == QString::fromLocal8Bit("你好") )
44     {
45         RevMsgShow( QString::fromLocal8Bit( "请问有什么可以帮助你吗?" ), otherhead );
46     }
47     else if(m_ui.lineEdit->text() == QString::fromLocal8Bit( "时间" ) )
48     {
49         RevMsgShow( QString::fromLocal8Bit( "北京时间:%1" )
50                     .arg( QTime::currentTime().toString( "hh:mm:ss" ) ), otherhead );
51     }
52 
53     m_ui.lineEdit->clear();
54 }

 

你可能感兴趣的:(C#+ html 实现类似QQ聊天界面的气泡效果)