48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
#ifndef _QX_SERVER_MAIN_DLG_H_
|
|
#define _QX_SERVER_MAIN_DLG_H_
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma once
|
|
#endif
|
|
|
|
#ifdef _QX_NO_PRECOMPILED_HEADER
|
|
#ifndef Q_MOC_RUN
|
|
#include "../include/precompiled.h" // Need to include precompiled header for the generated moc file
|
|
#endif // Q_MOC_RUN
|
|
#endif // _QX_NO_PRECOMPILED_HEADER
|
|
|
|
#include "../qt/ui/include/ui_qxServer.h"
|
|
|
|
class main_dlg : public QWidget, private Ui::dlgServer
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private:
|
|
|
|
qx::service::QxThreadPool_ptr m_pThreadPool; // Server thread pool to receive all requests
|
|
qx::QxDaoAsync m_daoAsync; // To test to run queries in a different thread
|
|
|
|
public:
|
|
|
|
main_dlg(QWidget * parent = NULL) : QWidget(parent), Ui::dlgServer() { main_dlg::init(); }
|
|
virtual ~main_dlg() { ; }
|
|
|
|
private:
|
|
|
|
void init();
|
|
void loadServices();
|
|
|
|
private Q_SLOTS:
|
|
|
|
void onClickStartStop();
|
|
void onCboIndexChanged(int index);
|
|
void onError(const QString & err, qx::service::QxTransaction_ptr transaction);
|
|
void onServerIsRunning(bool bIsRunning, qx::service::QxServer * pServer);
|
|
void onTransactionFinished(qx::service::QxTransaction_ptr transaction);
|
|
void onQueryFinished(const QSqlError & daoError, qx::dao::detail::QxDaoAsyncParams_ptr pDaoParams);
|
|
|
|
};
|
|
|
|
#endif // _QX_SERVER_MAIN_DLG_H_
|