From c36e0403012fda6101c176be7a875846fe383a53 Mon Sep 17 00:00:00 2001 From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com> Date: 星期二, 16 九月 2025 18:03:05 +0800 Subject: [PATCH] 1.CJ管理功能持续实现中... --- SourceCode/Bond/Servo/CControlJobManagerDlg.h | 23 ++++++++++++++++++++++- 1 files changed, 22 insertions(+), 1 deletions(-) diff --git a/SourceCode/Bond/Servo/CControlJobManagerDlg.h b/SourceCode/Bond/Servo/CControlJobManagerDlg.h index ebc1f11..23d6523 100644 --- a/SourceCode/Bond/Servo/CControlJobManagerDlg.h +++ b/SourceCode/Bond/Servo/CControlJobManagerDlg.h @@ -1,5 +1,8 @@ 锘�#pragma once #include "CCjPage1.h" +#include "CCjPage2.h" +#include "CCjPage3.h" +#include "ApredTreeCtrl2.h" // CControlJobManagerDlg 瀵硅瘽妗� @@ -14,9 +17,20 @@ private: void Resize(); + void UpdateCtrlState(); + void UpdateProcessJobs(); + void UpdateControlJob(); + bool AddPorcessJob(SERVO::CProcessJob* pj); + bool RemovePorcessJob(SERVO::CProcessJob* pj); + void UpProcessJobId(SERVO::CProcessJob* pJob); private: - CCjPage1* m_pPage1; + std::vector<CCjPageBase*> m_pages; + SERVO::CControlJob* m_pControlJob; + std::vector<SERVO::CProcessJob*> m_processJobs; + CCheckListBox m_listBox; + CApredTreeCtrl2 m_tree; + // 瀵硅瘽妗嗘暟鎹� #ifdef AFX_DESIGN_TIME @@ -31,4 +45,11 @@ virtual BOOL OnInitDialog(); afx_msg void OnSize(UINT nType, int cx, int cy); afx_msg void OnGetMinMaxInfo(MINMAXINFO* lpMMI); + afx_msg void OnBnClickedCreateCJ(); + afx_msg void OnBnClickedButtonCreatePj(); + afx_msg void OnListChkChange(); + afx_msg void OnLbnSelchangeList1(); + afx_msg void OnTvnSelchangedTree1(NMHDR* pNMHDR, LRESULT* pResult); + afx_msg void OnDestroy(); + afx_msg void OnBnClickedButtonApply(); }; -- Gitblit v1.9.3