-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelppage.cpp
20 lines (18 loc) · 886 Bytes
/
helppage.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "helppage.h"
#include "ui_helppage.h"
HelpPage::HelpPage(QWidget *parent) :
QDialog(parent),
ui(new Ui::HelpPage)
{
ui->setupUi(this);
ui->textBrowser->setText("Introduction:\nA simple communication software.\nYou can use it to transfer text,image or small files to "
"devices in the same network even if not connected to the Internet.\n\n"
"Help:\nClick New Chat to find who is online and add some of them to a new chat."
"Use the IP shown below to help determine which device is the one you want to communicate with\n"
"If you want to chat with everyone in the same network,just click Start Chat.Otherwise,select one chat "
"from the Chat List and click Start Chat.");
}
HelpPage::~HelpPage()
{
delete ui;
}