last changes

This commit is contained in:
2020-06-15 22:22:46 +03:00
parent 5f405ca403
commit 259f321df4
53 changed files with 3368 additions and 842 deletions

View File

@@ -0,0 +1,81 @@
/****************************************************************************
** Meta object code from reading C++ file 'client.h'
**
** Created: Tue 8. Jan 13:24:46 2013
** by: The Qt Meta Object Compiler version 63 (Qt 4.8.1)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../client.h"
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'client.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 63
#error "This file was generated using the moc from 4.8.1. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
static const uint qt_meta_data_Client[] = {
// content:
6, // revision
0, // classname
0, 0, // classinfo
0, 0, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
0 // eod
};
static const char qt_meta_stringdata_Client[] = {
"Client\0"
};
void Client::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
Q_UNUSED(_o);
Q_UNUSED(_id);
Q_UNUSED(_c);
Q_UNUSED(_a);
}
const QMetaObjectExtraData Client::staticMetaObjectExtraData = {
0, qt_static_metacall
};
const QMetaObject Client::staticMetaObject = {
{ &ClientBase::staticMetaObject, qt_meta_stringdata_Client,
qt_meta_data_Client, &staticMetaObjectExtraData }
};
#ifdef Q_NO_DATA_RELOCATION
const QMetaObject &Client::getStaticMetaObject() { return staticMetaObject; }
#endif //Q_NO_DATA_RELOCATION
const QMetaObject *Client::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject;
}
void *Client::qt_metacast(const char *_clname)
{
if (!_clname) return 0;
if (!strcmp(_clname, qt_meta_stringdata_Client))
return static_cast<void*>(const_cast< Client*>(this));
return ClientBase::qt_metacast(_clname);
}
int Client::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = ClientBase::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
return _id;
}
QT_END_MOC_NAMESPACE

View File

@@ -0,0 +1,116 @@
/****************************************************************************
** Meta object code from reading C++ file 'clientbase.h'
**
** Created: Tue 8. Jan 13:24:47 2013
** by: The Qt Meta Object Compiler version 63 (Qt 4.8.1)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../clientbase.h"
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'clientbase.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 63
#error "This file was generated using the moc from 4.8.1. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
static const uint qt_meta_data_ClientBase[] = {
// content:
6, // revision
0, // classname
0, 0, // classinfo
4, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
2, // signalCount
// signals: signature, parameters, type, tag, flags
12, 11, 11, 11, 0x05,
30, 27, 11, 11, 0x05,
// slots: signature, parameters, type, tag, flags
50, 11, 11, 11, 0x09,
61, 11, 11, 11, 0x09,
0 // eod
};
static const char qt_meta_stringdata_ClientBase[] = {
"ClientBase\0\0disconnected()\0ba\0"
"receive(QByteArray)\0readData()\0"
"Disconnection()\0"
};
void ClientBase::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
Q_ASSERT(staticMetaObject.cast(_o));
ClientBase *_t = static_cast<ClientBase *>(_o);
switch (_id) {
case 0: _t->disconnected(); break;
case 1: _t->receive((*reinterpret_cast< QByteArray(*)>(_a[1]))); break;
case 2: _t->readData(); break;
case 3: _t->Disconnection(); break;
default: ;
}
}
}
const QMetaObjectExtraData ClientBase::staticMetaObjectExtraData = {
0, qt_static_metacall
};
const QMetaObject ClientBase::staticMetaObject = {
{ &QObject::staticMetaObject, qt_meta_stringdata_ClientBase,
qt_meta_data_ClientBase, &staticMetaObjectExtraData }
};
#ifdef Q_NO_DATA_RELOCATION
const QMetaObject &ClientBase::getStaticMetaObject() { return staticMetaObject; }
#endif //Q_NO_DATA_RELOCATION
const QMetaObject *ClientBase::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject;
}
void *ClientBase::qt_metacast(const char *_clname)
{
if (!_clname) return 0;
if (!strcmp(_clname, qt_meta_stringdata_ClientBase))
return static_cast<void*>(const_cast< ClientBase*>(this));
return QObject::qt_metacast(_clname);
}
int ClientBase::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QObject::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 4)
qt_static_metacall(this, _c, _id, _a);
_id -= 4;
}
return _id;
}
// SIGNAL 0
void ClientBase::disconnected()
{
QMetaObject::activate(this, &staticMetaObject, 0, 0);
}
// SIGNAL 1
void ClientBase::receive(QByteArray _t1)
{
void *_a[] = { 0, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
QMetaObject::activate(this, &staticMetaObject, 1, _a);
}
QT_END_MOC_NAMESPACE

View File

@@ -0,0 +1,81 @@
/****************************************************************************
** Meta object code from reading C++ file 'connection.h'
**
** Created: Tue 8. Jan 13:24:45 2013
** by: The Qt Meta Object Compiler version 63 (Qt 4.8.1)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../connection.h"
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'connection.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 63
#error "This file was generated using the moc from 4.8.1. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
static const uint qt_meta_data_Connection[] = {
// content:
6, // revision
0, // classname
0, 0, // classinfo
0, 0, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
0 // eod
};
static const char qt_meta_stringdata_Connection[] = {
"Connection\0"
};
void Connection::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
Q_UNUSED(_o);
Q_UNUSED(_id);
Q_UNUSED(_c);
Q_UNUSED(_a);
}
const QMetaObjectExtraData Connection::staticMetaObjectExtraData = {
0, qt_static_metacall
};
const QMetaObject Connection::staticMetaObject = {
{ &ClientBase::staticMetaObject, qt_meta_stringdata_Connection,
qt_meta_data_Connection, &staticMetaObjectExtraData }
};
#ifdef Q_NO_DATA_RELOCATION
const QMetaObject &Connection::getStaticMetaObject() { return staticMetaObject; }
#endif //Q_NO_DATA_RELOCATION
const QMetaObject *Connection::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject;
}
void *Connection::qt_metacast(const char *_clname)
{
if (!_clname) return 0;
if (!strcmp(_clname, qt_meta_stringdata_Connection))
return static_cast<void*>(const_cast< Connection*>(this));
return ClientBase::qt_metacast(_clname);
}
int Connection::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = ClientBase::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
return _id;
}
QT_END_MOC_NAMESPACE

View File

@@ -0,0 +1,110 @@
/****************************************************************************
** Meta object code from reading C++ file 'server.h'
**
** Created: Tue 8. Jan 13:24:44 2013
** by: The Qt Meta Object Compiler version 63 (Qt 4.8.1)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../server.h"
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'server.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 63
#error "This file was generated using the moc from 4.8.1. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
static const uint qt_meta_data_Server[] = {
// content:
6, // revision
0, // classname
0, 0, // classinfo
4, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
1, // signalCount
// signals: signature, parameters, type, tag, flags
11, 8, 7, 7, 0x05,
// slots: signature, parameters, type, tag, flags
35, 7, 7, 7, 0x08,
51, 7, 7, 7, 0x08,
70, 8, 7, 7, 0x08,
0 // eod
};
static const char qt_meta_stringdata_Server[] = {
"Server\0\0ba\0receiveData(QByteArray)\0"
"newConnection()\0connectionClosed()\0"
"received(QByteArray)\0"
};
void Server::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
Q_ASSERT(staticMetaObject.cast(_o));
Server *_t = static_cast<Server *>(_o);
switch (_id) {
case 0: _t->receiveData((*reinterpret_cast< QByteArray(*)>(_a[1]))); break;
case 1: _t->newConnection(); break;
case 2: _t->connectionClosed(); break;
case 3: _t->received((*reinterpret_cast< QByteArray(*)>(_a[1]))); break;
default: ;
}
}
}
const QMetaObjectExtraData Server::staticMetaObjectExtraData = {
0, qt_static_metacall
};
const QMetaObject Server::staticMetaObject = {
{ &QObject::staticMetaObject, qt_meta_stringdata_Server,
qt_meta_data_Server, &staticMetaObjectExtraData }
};
#ifdef Q_NO_DATA_RELOCATION
const QMetaObject &Server::getStaticMetaObject() { return staticMetaObject; }
#endif //Q_NO_DATA_RELOCATION
const QMetaObject *Server::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject;
}
void *Server::qt_metacast(const char *_clname)
{
if (!_clname) return 0;
if (!strcmp(_clname, qt_meta_stringdata_Server))
return static_cast<void*>(const_cast< Server*>(this));
return QObject::qt_metacast(_clname);
}
int Server::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QObject::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 4)
qt_static_metacall(this, _c, _id, _a);
_id -= 4;
}
return _id;
}
// SIGNAL 0
void Server::receiveData(QByteArray _t1)
{
void *_a[] = { 0, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
QMetaObject::activate(this, &staticMetaObject, 0, _a);
}
QT_END_MOC_NAMESPACE

View File

@@ -0,0 +1,115 @@
/****************************************************************************
** Meta object code from reading C++ file 'widget.h'
**
** Created: Tue 8. Jan 13:24:43 2013
** by: The Qt Meta Object Compiler version 63 (Qt 4.8.1)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../widget.h"
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'widget.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 63
#error "This file was generated using the moc from 4.8.1. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
static const uint qt_meta_data_Widget[] = {
// content:
6, // revision
0, // classname
0, 0, // classinfo
9, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
// slots: signature, parameters, type, tag, flags
8, 7, 7, 7, 0x08,
33, 7, 7, 7, 0x08,
60, 7, 7, 7, 0x08,
86, 7, 7, 7, 0x08,
111, 7, 7, 7, 0x08,
134, 7, 7, 7, 0x08,
163, 160, 7, 7, 0x08,
185, 7, 7, 7, 0x08,
205, 7, 7, 7, 0x08,
0 // eod
};
static const char qt_meta_stringdata_Widget[] = {
"Widget\0\0on_bpSetServer_clicked()\0"
"on_bpStartServer_clicked()\0"
"on_pbStopServer_clicked()\0"
"on_pbSetClient_clicked()\0"
"on_pbConnect_clicked()\0on_pbDisconnect_clicked()\0"
"ba\0onReceive(QByteArray)\0on_bpSend_clicked()\0"
"on_leText_returnPressed()\0"
};
void Widget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
Q_ASSERT(staticMetaObject.cast(_o));
Widget *_t = static_cast<Widget *>(_o);
switch (_id) {
case 0: _t->on_bpSetServer_clicked(); break;
case 1: _t->on_bpStartServer_clicked(); break;
case 2: _t->on_pbStopServer_clicked(); break;
case 3: _t->on_pbSetClient_clicked(); break;
case 4: _t->on_pbConnect_clicked(); break;
case 5: _t->on_pbDisconnect_clicked(); break;
case 6: _t->onReceive((*reinterpret_cast< QByteArray(*)>(_a[1]))); break;
case 7: _t->on_bpSend_clicked(); break;
case 8: _t->on_leText_returnPressed(); break;
default: ;
}
}
}
const QMetaObjectExtraData Widget::staticMetaObjectExtraData = {
0, qt_static_metacall
};
const QMetaObject Widget::staticMetaObject = {
{ &QWidget::staticMetaObject, qt_meta_stringdata_Widget,
qt_meta_data_Widget, &staticMetaObjectExtraData }
};
#ifdef Q_NO_DATA_RELOCATION
const QMetaObject &Widget::getStaticMetaObject() { return staticMetaObject; }
#endif //Q_NO_DATA_RELOCATION
const QMetaObject *Widget::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject;
}
void *Widget::qt_metacast(const char *_clname)
{
if (!_clname) return 0;
if (!strcmp(_clname, qt_meta_stringdata_Widget))
return static_cast<void*>(const_cast< Widget*>(this));
return QWidget::qt_metacast(_clname);
}
int Widget::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QWidget::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 9)
qt_static_metacall(this, _c, _id, _a);
_id -= 9;
}
return _id;
}
QT_END_MOC_NAMESPACE