Exemple #1
0
EventLogDlg::EventLogDlg(QWidget *parent) :
    QDialog(parent)
{
    curr_event_type_id_ = 0;
    InitPage();
    InitSignalSlots();
}
Exemple #2
0
RoadwayCoorSelDlg::RoadwayCoorSelDlg(QWidget *parent) :
    QDialog(parent)
{
    coor_int_type_ = -1;
    InitPage();
    InitSignalSlots();
}
Exemple #3
0
void CTeachingBox::Init()
{
	InitLayout();
	InitSignalSlots();
	InitThread();
	SlotChangeToScreenSetting();
	SlotOnButtonModelClicked();

	CTcpManager::GetInstance();	/*初始化net,用于在程序启动时建立连接*/
}
Exemple #4
0
TimeIPDlg::TimeIPDlg(QWidget *parent) :
    QDialog(parent)
{
    timer_id_ = 0;
    cmd_timer_ = new QTimer(this);
    curr_cmd_ = NoneCmd;
    has_disconnected_ = false;
    port_ = 0;
    InitPage();
    InitSignalSlots();
}
DetectorFlowDlg::DetectorFlowDlg(QWidget *parent) :
    QDialog(parent)
{
    curr_detector_id_ = 0;
    sync_cmd_ = SyncCommand::GetInstance();
    handler_ = new DetectorFlowHandler;
    for (int i = 0; i < MAX_DETECTOR; i++)
    {
        detector_flow_list_.append(0);
    }
    InitPage();
    InitSignalSlots();
}