forked from yydcaib/TCPClient
Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
|
2998f4097f | |
|
ff385389a1 |
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
|
@ -1,5 +1,6 @@
|
||||||
#include "mainwidget.h"
|
#include "mainwidget.h"
|
||||||
#include "ui_mainwidget.h"
|
#include "ui_mainwidget.h"
|
||||||
|
#include <QPointer>
|
||||||
|
|
||||||
MainWidget::MainWidget(QString username,QWidget *parent) :
|
MainWidget::MainWidget(QString username,QWidget *parent) :
|
||||||
QWidget(parent),
|
QWidget(parent),
|
||||||
|
@ -243,7 +244,7 @@ void MainWidget::on_exit_btn_clicked()
|
||||||
close();
|
close();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWidget::on_stop_btn_clicked()
|
void MainWidget::on_stop_clicked()
|
||||||
{
|
{
|
||||||
zoom_down(ui->stop);
|
zoom_down(ui->stop);
|
||||||
zoom_up(ui->stop);
|
zoom_up(ui->stop);
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
#include <QDesktopServices>
|
#include <QDesktopServices>
|
||||||
#include <QPropertyAnimation>
|
#include <QPropertyAnimation>
|
||||||
#include <QPointer>
|
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class MainWidget;
|
class MainWidget;
|
||||||
|
@ -54,7 +53,7 @@ private slots:
|
||||||
void on_send_btn_clicked();
|
void on_send_btn_clicked();
|
||||||
void on_name_list_itemDoubleClicked(QListWidgetItem *item);
|
void on_name_list_itemDoubleClicked(QListWidgetItem *item);
|
||||||
void on_exit_btn_clicked();
|
void on_exit_btn_clicked();
|
||||||
void on_stop_btn_clicked();
|
void on_stop_clicked();
|
||||||
void message_reminder();
|
void message_reminder();
|
||||||
void onFlashTimerOut();
|
void onFlashTimerOut();
|
||||||
public slots:
|
public slots:
|
||||||
|
|
Loading…
Reference in New Issue