mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
fead: load without animation
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
|
||||
class UpdateController;
|
||||
class RecognizeSystem;
|
||||
class SendSystem;
|
||||
|
||||
class TCPClient : public QObject
|
||||
{
|
||||
@@ -23,12 +24,9 @@ class TCPClient : public QObject
|
||||
|
||||
public:
|
||||
explicit TCPClient(QObject *parent = 0);
|
||||
void initialize(RecognizeSystem *recognize,ExternalExecuter *externalExecuter);
|
||||
void setConnect(ServerSettings *serverSettings);
|
||||
void sendClientAutorization();
|
||||
void sendQTConnect();
|
||||
void initialize(RecognizeSystem *recognize,ExternalExecuter *externalExecuter,SendSystem *sendSystem);
|
||||
void setConnect(ServerSettings *serverSettings,QThread *thread);
|
||||
|
||||
void sendDisable();
|
||||
void waitRead(int time);
|
||||
QTcpSocket* getSocket();
|
||||
~TCPClient();
|
||||
@@ -36,23 +34,23 @@ public:
|
||||
signals:
|
||||
void sigSendDebugLog(QString message);
|
||||
void sigRecognize(QTcpSocket *socket);
|
||||
void sigConnectionState(bool flag);
|
||||
void sigServerDisconnect();
|
||||
QByteArray sigGetXmlAnswer(QString);
|
||||
void sigConnectionState(bool flag);
|
||||
void sigSetSocket(QTcpSocket *socket);
|
||||
|
||||
public slots:
|
||||
void slotMessageEntered(QString message);
|
||||
void slotSendCommand(QString message);
|
||||
void slotConnectNotify();
|
||||
|
||||
private slots:
|
||||
void slotReadyRead();
|
||||
|
||||
private:
|
||||
SendSystem *sendSystem;
|
||||
QTcpSocket *socket;
|
||||
RecognizeSystem *recognizeSystem;
|
||||
ExternalExecuter * externalExecuter;
|
||||
|
||||
void sendFile();
|
||||
void setDisconnect();
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user