热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

事件驱动调度

问题如下:设有K个工序,每个工序编号为Ji,i1,2,…,K。总工序数。在M个设备上加工
问题如下:
设有K个工序,每个工序编号为Ji,i=1,2,…,K。总工序数。
在M个设备上加工,要求:
1.一台设备在某一时刻只能加工一道工序;
2.一台设备一旦加工某道工序,则直到该工序加工完毕后,这台设备才能加工其它工序;
3.一道工序只能被一台设备加工;
4.每道工序都必须在其紧前工序加工完后,方可开始加工;
5.每道工序的加工时间已知,且与加工顺序无关;
6.允许工序之间等待,允许设备在工序达到之前闲置










针对加工工序加工顺序的不确定性,利用构造事件驱动的思想,提出根据事件驱动产品加工的综合调度。
系统初始时所有设备的均空闲,此时由系统产生设备空闲事件,并驱动工序集中的可调度工序可在其加工设备上安排调度,使得该时刻工序集产生加工开始事件。随着系统加工时间推移,当有工序加工完毕时,工序集产生加工完毕事件,同时由于有工序加工完毕,其加工设备会在此时出现空闲,此时设备集产生设备空闲事件。
加工完毕事件与设备空闲事件在同一时刻发生,该时刻设备集中产生了新的空闲设备,工序集中产生了加工完毕的工序且有可能产生新的可调度工序。这两个事件更新了设备集和工序集中元素的状态,为触发新的加工开始事件创造了条件。
此时产生的设备空闲事件驱动空闲设备进行一次可调度工序的寻找,对于满足可调度约束条件的工序(即可调度工序),在该时刻安排调度,并由工序集产生新的加工开始事件。
通过以上描述,每次加工开始事件代表着工序的一次调度,加工完毕事件代表工序调度的结束,如此反复当加工完毕事件和设备空闲事件发生时,若所有设备均空闲,且无可调度工序,即工序集中的所有工序均已加工完毕,则系统加工结束。
具体思路是以每次工序加工结束作为一次设备空闲事件,驱动空闲设备进行一次可调度工序的寻找;如果可调度工序唯一,则调度此工序;如果可调度工序不唯一,选择用时短的工序。
数据结构分析

// BatchDis.cpp : Defines the class behaviors for the application.
//#include "stdafx.h"
#include "BatchDis.h"
#include "BatchDisDlg.h"
#pragma comment(lib,"SkinPPWTL.lib");
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif/
// CBatchDisAppBEGIN_MESSAGE_MAP(CBatchDisApp, CWinApp)//{{AFX_MSG_MAP(CBatchDisApp)// NOTE - the ClassWizard will add and remove mapping macros here.// DO NOT EDIT what you see in these blocks of generated code!//}}AFX_MSGON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()/
// CBatchDisApp constructionCBatchDisApp::CBatchDisApp()
{// TODO: add construction code here,// Place all significant initialization in InitInstance
}/
// The one and only CBatchDisApp objectCBatchDisApp theApp;/
// CBatchDisApp initializationBOOL CBatchDisApp::InitInstance()
{AfxEnableControlContainer();// Standard initialization// If you are not using these features and wish to reduce the size// of your final executable, you should remove from the following// the specific initialization routines you do not need.skinppLoadSkin(_T("Devoir.ssk"));
#ifdef _AFXDLLEnable3dControls(); // Call this when using MFC in a shared DLL
#elseEnable3dControlsStatic(); // Call this when linking to MFC statically
#endifCBatchDisDlg dlg;m_pMainWnd = &dlg;int nResponse = dlg.DoModal();if (nResponse == IDOK){// TODO: Place code here to handle when the dialog is// dismissed with OK}else if (nResponse == IDCANCEL){// TODO: Place code here to handle when the dialog is// dismissed with Cancel}// Since the dialog has been closed, return FALSE so that we exit the// application, rather than start the application's message pump.return FALSE;
}int CBatchDisApp::ExitInstance()
{// TODO: Add your specialized code here and/or call the base classskinppExitSkin();return CWinApp::ExitInstance();
}// BatchDisDlg.cpp : implementation file
//#include "stdafx.h"
#include "BatchDis.h"
#include "BatchDisDlg.h"#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif/
// CAboutDlg dialog used for App Aboutclass CAboutDlg : public CDialog
{
public:CAboutDlg();// Dialog Data//{{AFX_DATA(CAboutDlg)enum { IDD = IDD_ABOUTBOX };//}}AFX_DATA// ClassWizard generated virtual function overrides//{{AFX_VIRTUAL(CAboutDlg)protected:virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support//}}AFX_VIRTUAL// Implementation
protected://{{AFX_MSG(CAboutDlg)//}}AFX_MSGDECLARE_MESSAGE_MAP()
};CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{//{{AFX_DATA_INIT(CAboutDlg)//}}AFX_DATA_INIT
}void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{CDialog::DoDataExchange(pDX);//{{AFX_DATA_MAP(CAboutDlg)//}}AFX_DATA_MAP
}BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)//{{AFX_MSG_MAP(CAboutDlg)// No message handlers//}}AFX_MSG_MAP
END_MESSAGE_MAP()/
// CBatchDisDlg dialogCBatchDisDlg::CBatchDisDlg(CWnd* pParent /*=NULL*/): CDialog(CBatchDisDlg::IDD, pParent)
{//{{AFX_DATA_INIT(CBatchDisDlg)// NOTE: the ClassWizard will add member initialization here//}}AFX_DATA_INIT// Note that LoadIcon does not require a subsequent DestroyIcon in Win32m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);}void CBatchDisDlg::DoDataExchange(CDataExchange* pDX)
{CDialog::DoDataExchange(pDX);//{{AFX_DATA_MAP(CBatchDisDlg)// NOTE: the ClassWizard will add DDX and DDV calls here//}}AFX_DATA_MAP
}BEGIN_MESSAGE_MAP(CBatchDisDlg, CDialog)//{{AFX_MSG_MAP(CBatchDisDlg)ON_WM_SYSCOMMAND()ON_WM_PAINT()ON_WM_QUERYDRAGICON()ON_BN_CLICKED(IDC_ADD_DATA, OnAddData)ON_BN_CLICKED(IDC_DATA_SHOW, OnDataShow)ON_WM_MOUSEMOVE()//}}AFX_MSG_MAP
END_MESSAGE_MAP()/
// CBatchDisDlg message handlersBOOL CBatchDisDlg::OnInitDialog()
{CDialog::OnInitDialog();// Add "About..." menu item to system menu.// IDM_ABOUTBOX must be in the system command range.ASSERT((IDM_ABOUTBOX & 0xFFF0) &#61;&#61; IDM_ABOUTBOX);ASSERT(IDM_ABOUTBOX <0xF000);CMenu* pSysMenu &#61; GetSystemMenu(FALSE);if (pSysMenu !&#61; NULL){CString strAboutMenu;strAboutMenu.LoadString(IDS_ABOUTBOX);if (!strAboutMenu.IsEmpty()){pSysMenu->AppendMenu(MF_SEPARATOR);pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);}}// Set the icon for this dialog. The framework does this automatically// when the application&#39;s main window is not a dialogSetIcon(m_hIcon, TRUE); // Set big iconSetIcon(m_hIcon, FALSE);// Set small iconthis->SetWindowText(_T("主对话框"));GetDlgItem(IDC_DATA_SHOW)->EnableWindow(FALSE);// TODO: Add extra initialization hereCShowDlg dlgshow;dlgshow.DoModal();return TRUE; // return TRUE unless you set the focus to a control
}void CBatchDisDlg::OnSysCommand(UINT nID, LPARAM lParam)
{if ((nID & 0xFFF0) &#61;&#61; IDM_ABOUTBOX){CAboutDlg dlgAbout;dlgAbout.DoModal();}else{CDialog::OnSysCommand(nID, lParam);}
}// If you add a minimize button to your dialog, you will need the code below
// to draw the icon. For MFC applications using the document/view model,
// this is automatically done for you by the framework.void CBatchDisDlg::OnPaint()
{if (IsIconic()){CPaintDC dc(this); // device context for paintingSendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);// Center icon in client rectangleint cxIcon &#61; GetSystemMetrics(SM_CXICON);int cyIcon &#61; GetSystemMetrics(SM_CYICON);CRect rect;GetClientRect(&rect);int x &#61; (rect.Width() - cxIcon &#43; 1) / 2;int y &#61; (rect.Height() - cyIcon &#43; 1) / 2;// Draw the icondc.DrawIcon(x, y, m_hIcon);}else{CDialog::OnPaint();}
}// The system calls this to obtain the cursor to display while the user drags
// the minimized window.
HCURSOR CBatchDisDlg::OnQueryDragIcon()
{return (HCURSOR) m_hIcon;
}void CBatchDisDlg::OnAddData()
{// TODO: Add your control notification handler code hereif(dlg.DoModal() &#61;&#61; IDOK){GetDlgItem(IDC_DATA_SHOW)->EnableWindow(TRUE);}
}
void CBatchDisDlg::OnDataShow()
{// TODO: Add your control notification handler code hereCClientDC dc(this);//dc.Ellipse(CRect(100,100,200,200));//划y拱形线dc.MoveTo(65,55);dc.LineTo(70,50);dc.LineTo(75,55);//划xy轴dc.MoveTo(70,50);dc.LineTo(70,420);dc.LineTo(800,420);//画x拱形线dc.MoveTo(795,415);dc.LineTo(800,420);dc.LineTo(795,425);//画机器标线dc.MoveTo(70,330);dc.LineTo(76,330);dc.MoveTo(70,240);dc.LineTo(76,240);dc.MoveTo(70,150);dc.LineTo(76,150);//画机器坐标并且画出M0-7机器int zone&#61; (420-50)/dlg.m_macCount;int halfzone&#61;zone/2;UINT i;for(i&#61;0;i&#61;mylist[minRange].GetAt(mylist[minRange].FindIndex(i)).childFinishTime){have&#61;true;break;}}if(have){CRect rect&#61;CRect(time[minRange]&#43;70,420-halfzone-minRange*zone-10,time[minRange]\&#43;70&#43;mylist[minRange].GetAt(mylist[minRange].FindIndex(i)).m_usedtime*2,\420-halfzone-minRange*zone&#43;10);dc.FillRect(rect,&brush);dc.TextOut(time[minRange]&#43;70,420-halfzone-minRange*zone&#43;10,\mylist[minRange].GetAt(mylist[minRange].FindIndex(i)).m_name);time[minRange]&#43;&#61;mylist[minRange].GetAt(mylist[minRange].FindIndex(i)).m_usedtime*2;if(mylist[minRange].GetAt(mylist[minRange].FindIndex(i)).m_parent !&#61; NULL){if(mylist[minRange].GetAt(mylist[minRange].FindIndex(i)).m_parent->childFinishTimechildFinishTime&#61;time[minRange];}}mylist[minRange].RemoveAt(mylist[minRange].FindIndex(i));InitialMylist(mylist);}else{UINT min;min&#61;mylist[minRange].GetHead().childFinishTime;i&#61;0;for(UINT pp&#61;0;ppmylist[minRange].GetAt(mylist[minRange].FindIndex(pp)).childFinishTime){min&#61;mylist[minRange].GetAt(mylist[minRange].FindIndex(pp)).childFinishTime;i&#61;pp;}}dc.FillRect(CRect(min&#43;70,420-halfzone-minRange*zone-10,min\&#43;70&#43;mylist[minRange].GetAt(mylist[minRange].FindIndex(i)).m_usedtime*2,\420-halfzone-minRange*zone&#43;10),&brush);dc.TextOut(min&#43;70,420-halfzone-minRange*zone&#43;10,\mylist[minRange].GetAt(mylist[minRange].FindIndex(i)).m_name);time[minRange]&#61;min&#43;mylist[minRange].GetAt(mylist[minRange].FindIndex(i)).m_usedtime*2;if(mylist[minRange].GetAt(mylist[minRange].FindIndex(i)).m_parent !&#61; NULL){mylist[minRange].GetAt(mylist[minRange].FindIndex(i)).m_parent->childFinishTime&#61;time[minRange];}mylist[minRange].RemoveAt(mylist[minRange].FindIndex(i));InitialMylist(mylist);}clor[minRange]&#43;&#43;;brush.Detach();for(i&#61;0;i}
//找出第几xiao的数的索引&#xff1f;还未解决
// 程序已经验证了&#xff0c;符合ok
UINT CBatchDisDlg::CompareTime(UINT *time,int parmMin)
{UINT maxNumber&#61;0;UINT min&#61;10000;CArray tmp;BOOL judge&#61;FALSE;for(int m&#61;1;m<&#61;parmMin;m&#43;&#43;){ min&#61;10000;for(UINT i&#61;0;itime[i]){maxNumber&#61;i;min&#61;time[i];}}tmp.Add(maxNumber);}return tmp[parmMin-1];
}
//这个函数应该没问题
// this function is OK
//这个函数是为了把m_vecTotalTrue中的变量加入到mylist链表中&#xff08;按增序&#xff09;同时删除该元素在m_vecTotalTrue中的存在
void CBatchDisDlg::InitialMylist(CMyList *mylist)
{for(int i&#61;0;i/* if(m_vecTotalTrue[i].m_parent->m_leftchild &#61;&#61; &m_vecTotalTrue[i]){m_vecTotalTrue[i].m_parent->m_leftchild &#61;NULL;}else{m_vecTotalTrue[i].m_parent->m_rightchild &#61;NULL;}
*/for(j&#61;0;jm_childAddress.GetCount();j&#43;&#43;){if(m_vecTotalTrue[i].m_parent->m_childAddress.GetAt(\m_vecTotalTrue[i].m_parent->m_childAddress.FindIndex(j)) &#61;&#61; &m_vecTotalTrue[i]){m_vecTotalTrue[i].m_parent->m_childAddress.SetAt(\m_vecTotalTrue[i].m_parent->m_childAddress.FindIndex(j),NULL);break;}}}// m_vecTotalTrue.RemoveAt(i);// i--;m_vecTotalTrue[i].m_flags &#61;FALSE;if(mylist[tmp.m_machine].GetCount() &#61;&#61; 0){mylist[tmp.m_machine].AddHead(tmp);//continue;}else{pt&#61;mylist[tmp.m_machine].GetHeadPosition();for(int p&#61;0; p}
//this function is OK
//confirm
//查找name所代表的父节点
ListStructTrue * CBatchDisDlg::FindParent(CString name)
{if(name !&#61;""){for(int i&#61;0; i }//this function is OK
//confirm
//查找name所代表的昨孩子
ListStructTrue * CBatchDisDlg::FindLeftChild(CString name)
{if(name !&#61; ""){for(int i&#61;0; i }
//this function is OK
//confirm
//查找name所代表的右孩子
ListStructTrue* CBatchDisDlg::FindRightChild(CString name)
{if(name !&#61; ""){for(int i&#61;0; i }void CBatchDisDlg::OnMouseMove(UINT nFlags, CPoint point)
{// TODO: Add your message handler code here and/or call defaultCFont font;CClientDC dc(GetDlgItem(IDC_ZUOBIAO));font.CreateFont(10,10,0,0,FW_NORMAL,false,false,false,CHINESEBIG5_CHARSET,OUT_CHARACTER_PRECIS,CLIP_CHARACTER_PRECIS,DEFAULT_QUALITY,FF_MODERN,"黑体");dc.SelectObject(&font);CPen pen(PS_SOLID,1,RGB(255,0,0));
// dc.SetBkMode(TRANSPARENT);dc.SelectObject(&pen);CString str&#61;"";str.Format("x&#61;%d,y&#61;%d",(point.x-70)/2,420-point.y);dc.SetTextColor(RGB(255,0,0));dc.TextOut(2,2,str);CDialog::OnMouseMove(nFlags, point);
}// DataDlg.cpp : implementation file
//#include "stdafx.h"
#include "BatchDis.h"
#include "DataDlg.h"#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] &#61; __FILE__;
#endif/
// CDataDlg dialogCDataDlg::CDataDlg(CWnd* pParent /*&#61;NULL*/): CDialog(CDataDlg::IDD, pParent)
{//{{AFX_DATA_INIT(CDataDlg)m_macCount &#61; 0;//}}AFX_DATA_INITm_vecTmp.RemoveAll();m_vecTotal.RemoveAll();m_hIcon&#61;(HICON)LoadImage(AfxGetInstanceHandle(),MAKEINTRESOURCE(IDI_ICON1),IMAGE_ICON,0,0,LR_DEFAULTSIZE);m_images.Create(32,32,ILC_COLOR32,1,1);m_images.Add(m_hIcon);
}void CDataDlg::DoDataExchange(CDataExchange* pDX)
{CDialog::DoDataExchange(pDX);//{{AFX_DATA_MAP(CDataDlg)DDX_Control(pDX, IDC_LIST1, m_list);DDX_Text(pDX, IDC_MAC_COUNT, m_macCount);DDV_MinMaxUInt(pDX, m_macCount, 1, 8);//}}AFX_DATA_MAP
}BEGIN_MESSAGE_MAP(CDataDlg, CDialog)//{{AFX_MSG_MAP(CDataDlg)ON_BN_CLICKED(IDC_ADD, OnAdd)ON_BN_CLICKED(IDC_CANCLE, OnCancle)ON_BN_CLICKED(IDC_DELETE, OnDelete)//}}AFX_MSG_MAP
END_MESSAGE_MAP()/
// CDataDlg message handlersvoid CDataDlg::OnAdd()
{// TODO: Add your control notification handler code hereint nCount &#61; m_list.GetItemCount();ListStruct m_lineTmp;CInsertDlg dlg;if(dlg.DoModal() &#61;&#61; IDOK){ CString m_tmp;m_lineTmp.m_name &#61; dlg.m_name;m_lineTmp.m_parent &#61; dlg.m_parent;//m_lineTmp.m_leftchild &#61; dlg.m_leftchild;//m_lineTmp.m_rightchild &#61; dlg.m_rightchild;m_tmp&#61;dlg.m_child;m_tmp.Replace(&#39;&#64;&#39;,&#39; &#39;);m_lineTmp.m_child &#61; m_tmp;m_lineTmp.m_usedtime &#61; dlg.m_usedtime;m_lineTmp.m_machine &#61; dlg.m_machine;m_list.InsertItem(nCount,m_lineTmp.m_name);m_list.SetItemText(nCount,1,m_lineTmp.m_parent);m_list.SetItemText(nCount,2,m_lineTmp.m_child);// m_list.SetItemText(nCount,3,m_lineTmp.m_rightchild);m_tmp&#61;"";m_tmp.Format("%d",dlg.m_usedtime);m_list.SetItemText(nCount,3,m_tmp);m_tmp&#61;"";m_tmp.Format("%d",m_lineTmp.m_machine);m_list.SetItemText(nCount,4,m_tmp);m_vecTmp.Add(m_lineTmp);}
}BOOL CDataDlg::OnInitDialog()
{CDialog::OnInitDialog();this->SetWindowText(_T("插入数据对话框"));// TODO: Add extra initialization hereif(m_list.InsertColumn(0,_T("工序名"),LVCFMT_LEFT,100)&#61;&#61;-1){MessageBox("插入失败");}m_list.InsertColumn(1,_T("父节点"),LVCFMT_LEFT,100);m_list.InsertColumn(2,_T("儿子节点"),LVCFMT_LEFT,200);
// m_list.InsertColumn(3,_T("右子节点"),LVCFMT_LEFT,100);m_list.InsertColumn(3,_T("所用时间"),LVCFMT_LEFT,100);m_list.InsertColumn(4,_T("所用机器"),LVCFMT_LEFT,100);int nCount &#61; m_list.GetItemCount();for(int i&#61;0;i}void CDataDlg::OnDataSave2()
{// TODO: Add your control notification handler code herefor(int m&#61;0;mDestroyWindow();
}void CDataDlg::OnCancle()
{// TODO: Add your control notification handler code hereEndDialog(IDCANCEL);
}void CDataDlg::OnOK()
{// TODO: Add extra validation hereListStructTrue tmp;for(int m&#61;0;m}void CDataDlg::OnDelete()
{// TODO: Add your control notification handler code hereint nCount &#61;m_list.GetItemCount()-1;for(int i&#61;nCount;i>&#61;0;i--){if(m_list.GetItemState(i,LVIS_SELECTED) &#61;&#61; LVIS_SELECTED){m_list.DeleteItem(i);if(i<&#61;(m_vecTotal.GetSize()-1)){m_vecTotal.RemoveAt(i);m_vecTotalTrue.RemoveAt(i);}else{int test&#61; m_vecTmp.GetSize();test&#61; i-m_vecTotal.GetSize();m_vecTmp.RemoveAt(test);}}}
}void CDataDlg::TravelTree( ListStructTrue *root)
{//注释是2叉遍历
// if(root)
// {
// root->m_flags&#61;TRUE;
//
// TravelTree(root->m_leftchild);
// TravelTree(root->m_rightchild);
// }//遍历n叉树
/* queue queue ;queue.push((TreeNode*)this);TreeNode *p &#61; NULL;while (!queue.empty()){p &#61; queue.front();queue.pop();cout<<"treenode is: "<getSelfId()<getChildList()){list::iterator it &#61; (p->getChildList())->begin();while(it!&#61; (p->getChildList())->end()){queue.push((*it));&#43;&#43;it;}}}
*/CList Travel;Travel.AddHead(root);ListStructTrue* p&#61;NULL;while(Travel.GetCount()){p&#61;Travel.GetHead();p->m_flags&#61;TRUE;if(p->m_childAddress.GetCount()){for(int i&#61;0;i<(p->m_childAddress.GetCount());i&#43;&#43;){Travel.AddTail(p->m_childAddress.GetAt(p->m_childAddress.FindIndex(i)));}}Travel.RemoveHead();}
}ListStructTrue * CDataDlg::FindParent(CString name)
{if(name !&#61;""){for(int i&#61;0; i }ListStructTrue * CDataDlg::FindLeftChild(CString name)
{ if(name !&#61; ""){for(int i&#61;0; i }ListStructTrue * CDataDlg::FindRightChild(CString name)
{ if(name !&#61; ""){for(int i&#61;0; i }CString CDataDlg::SplitCString(CString &str, char split_char)
{str.TrimLeft();str.TrimRight();int index&#61;str.Find(split_char);if(index&#61;&#61;-1){return "";}else{CString tmp&#61; str.Left(index);str&#61;str.Right(str.GetLength()-index);return tmp;}
}// InsertDlg.cpp : implementation file
//#include "stdafx.h"
#include "BatchDis.h"
#include "InsertDlg.h"#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] &#61; __FILE__;
#endif/
// CInsertDlg dialogCInsertDlg::CInsertDlg(CWnd* pParent /*&#61;NULL*/): CDialog(CInsertDlg::IDD, pParent)
{//{{AFX_DATA_INIT(CInsertDlg)m_name &#61; _T("");m_parent &#61; _T("");m_usedtime &#61; 0;m_machine &#61; 0;m_child &#61; _T("");//}}AFX_DATA_INIT
}void CInsertDlg::DoDataExchange(CDataExchange* pDX)
{CDialog::DoDataExchange(pDX);//{{AFX_DATA_MAP(CInsertDlg)DDX_Text(pDX, IDC_EDIT1, m_name);DDX_Text(pDX, IDC_EDIT2, m_parent);DDX_Text(pDX, IDC_EDIT5, m_usedtime);DDX_Text(pDX, IDC_EDIT6, m_machine);DDV_MinMaxUInt(pDX, m_machine, 1, 8);DDX_Text(pDX, IDC_EDIT3, m_child);//}}AFX_DATA_MAP
}BEGIN_MESSAGE_MAP(CInsertDlg, CDialog)//{{AFX_MSG_MAP(CInsertDlg)//}}AFX_MSG_MAP
END_MESSAGE_MAP()/
// CInsertDlg message handlersvoid CInsertDlg::OnOK()
{// TODO: Add extra validation hereCString name;CString usedtime;CString machine;this->GetDlgItem(IDC_EDIT1)->GetWindowText(name);this->GetDlgItem(IDC_EDIT5)->GetWindowText(usedtime);this->GetDlgItem(IDC_EDIT6)->GetWindowText(machine);if(name.IsEmpty()){MessageBox("工序名称不能为空");return;}if(usedtime&#61;&#61;"0"){MessageBox("所用时间不能为0");return;}if(!machine){MessageBox("所使用的机器编号不能为0");return;}CDialog::OnOK();
}BOOL CInsertDlg::OnInitDialog()
{CDialog::OnInitDialog();// TODO: Add extra initialization herethis->SetWindowText(_T("插入一条数据"));return TRUE; // return TRUE unless you set the focus to a control// EXCEPTION: OCX Property Pages should return FALSE
}// ShowDlg.cpp : implementation file
//#include "stdafx.h"
#include "BatchDis.h"
#include "ShowDlg.h"#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] &#61; __FILE__;
#endif/
// CShowDlg dialogCShowDlg::CShowDlg(CWnd* pParent /*&#61;NULL*/): CDialog(CShowDlg::IDD, pParent)
{//{{AFX_DATA_INIT(CShowDlg)// NOTE: the ClassWizard will add member initialization here//}}AFX_DATA_INIT
}void CShowDlg::DoDataExchange(CDataExchange* pDX)
{CDialog::DoDataExchange(pDX);//{{AFX_DATA_MAP(CShowDlg)// NOTE: the ClassWizard will add DDX and DDV calls here//}}AFX_DATA_MAP
}BEGIN_MESSAGE_MAP(CShowDlg, CDialog)//{{AFX_MSG_MAP(CShowDlg)//}}AFX_MSG_MAP
END_MESSAGE_MAP()/
// CShowDlg message handlersBOOL CShowDlg::OnInitDialog()
{CDialog::OnInitDialog();// TODO: Add extra initialization herethis->SetWindowText(_T("软件使用说明"));GetDlgItem(IDC_EDIT2)->SetWindowText(" 软件说明 \n 软件仅仅支持二叉树&#xff0c;即&#xff1a;加工树的度最多为2 。数据\n 输入后进行树的遍历&#xff0c;可以对用户输入的数据进行验证\n\n 软件所用算法&#xff1a;\n 把加工树的叶子节点截取下来&#xff0c;根据该节点所用机器编号加入到相对应的链表中&#xff0c;之后再遍历所用的链表时间&#xff0c;看哪个时间最短&#xff0c;之后处理时间最短的链表中数据&#xff0c;如果链表中没数据的话&#xff0c;就在比较时间找第二小的&#xff0c;以此类推&#xff0c;进行处理&#xff0c;直到链表和树中的数据处理完之后&#xff0c;进行算法演示");return TRUE; // return TRUE unless you set the focus to a control// EXCEPTION: OCX Property Pages should return FALSE
}
皮肤文件#ifndef _SKINPPWTL_H_
#define _SKINPPWTL_H_#ifdef _SKINPP_STATIC#define SKINPPWTL_API
#else#ifdef SKINPPWTL_EXPORTS#define SKINPPWTL_API __declspec(dllexport)#else#define SKINPPWTL_API __declspec(dllimport)#endif
#endif#define WM_TOOLBARPAINTPRE (WM_USER &#43; 802)
#define WM_TOOLBARPAINTEND (WM_USER &#43; 803)#define SM_LBUTTONUP (WM_USER &#43; 804)//按钮状态
enum BUTTONSTATE
{NORMAL &#61; 0,PRESS &#61; 1,DISABLE &#61; 2,HOT &#61; 3,FOCUS &#61; 4,LAST &#61; 5
};//绘制类型
enum DRAWTYPE
{BUTTON &#61; 0,SCROLLARROWUP &#61; 1,SCROLLARROWDOWN &#61; 2,SPLITTERBARHORZ &#61; 3,SPLITTERBARVERT &#61; 4,SPLITTERBARBORDER &#61; 5,LISTHEAD &#61; 6
};//获得皮肤资源的类型
enum SKINOBJTYPE
{DIALOGTYPE &#61; 0,BUTTONTYPE &#61; 1,CHECKBOXTYPE &#61; 2,RADIOBOXTYPE &#61; 3,STATICTYPE &#61; 4,TRACKBARTYPE &#61; 5,
};struct ListBoxItem
{HIMAGELIST hImageList;int nImageIndex;ListBoxItem(){hImageList &#61; NULL;nImageIndex &#61; -1;}
};#define REST_BITMAP 0x0001 //.bmp
#define REST_ICON 0x0002 //.ico
#define REST_CURSOR 0x0003 //.cur
#define REST_ANIMATE 0x0004 //.anitypedef struct _ResourceInfo
{HGDIOBJ hGdiObj;//[OUT]DWORD dwType; //[OUT]int nWidth; //[OUT]int nHeight;//[OUT]TCHAR szResImageName[_MAX_FNAME];//[IN]BOOL bHorzSplit;//[IN]int nLength;//[IN]int nCount; //[IN]int nIndex; //[IN]_ResourceInfo(){hGdiObj &#61; NULL;dwType &#61; REST_BITMAP;nWidth &#61; 0;nHeight &#61; 0;_tcscpy(szResImageName,_T(""));bHorzSplit &#61; TRUE;nLength &#61; -1;nCount &#61; -1;nIndex &#61; -1;}}ResInfo,* PRESINFO;////加载皮肤
//SkinFile :皮肤路径,注意可以是*.ssk,也可以是皮肤目录中的INI文件.
//bFromIni :该参数指定皮肤文件是从*.ssk读取,还是从INI文件读取.
SKINPPWTL_API BOOL skinppLoadSkin(TCHAR* szSkinFile,BOOL bFromIni &#61; FALSE);SKINPPWTL_API BOOL skinppLoadSkinFromRes(HINSTANCE hInstance,LPCTSTR szResourceName,LPCTSTR szResourceType,TCHAR* szSkinFileName);//移除皮肤
SKINPPWTL_API BOOL skinppRemoveSkin();//退出界面库&#xff0c;做清理工作。
SKINPPWTL_API BOOL skinppExitSkin();//设置ListBox控件的自画信息
//hWnd : ListBox控件的句柄
//nIndex : Item项的索引
//pListBoxItem : Item项自画的结构信息
SKINPPWTL_API void skinppSetListBoxItemDrawInfo(HWND hWnd,int nIndex,struct ListBoxItem* pListBoxItem);//获得换肤后的系统颜色
//nColorIndex : 要获取的颜色类型
SKINPPWTL_API COLORREF skinppGetSkinSysColor(int nColorIndex);//获得Windows系统默认的颜色
//nColorIndex : 要获取的颜色类型
SKINPPWTL_API COLORREF skinppGetDefaultSysColor(int nColorIndex);//hWnd : 对话框窗口的句柄
//nResID : 对话框资源ID
SKINPPWTL_API BOOL skinppSetWindowResID(HWND hWnd,int nResID);//[多语言]SKINPPWTL_API BOOL skinppSetFreeDlgID(HWND hWnd,int nResID);SKINPPWTL_API BOOL skinppSetSkinResID(HWND hWnd,int nResID);//设置ListHeader窗口的排序信息
//hWnd : ListHeader的窗口句柄
//nSortColumn : 要对ListHeader排序的列的索引
//bSortAscending: 是否为升序
SKINPPWTL_API void skinppSetListHeaderSortInfo(HWND hWnd,int nSortColumn,BOOL bSortAscending &#61; TRUE);//在给定的HDC上,指定相应的绘制类型和状态,在相应的矩形区域中进行绘制.
//hdc :目标DC
//rect :绘制区域
//eDrawType :绘制类型&#xff0c;目前支持SPLITTERBARHORZ,SPLITTERBARVERT,SPLITTERBARBORDER
//nState :选择绘制状态
SKINPPWTL_API void skinppDrawSkinObject(HDC hdc,RECT rect,DRAWTYPE eDrawType,int nState);//通过资源ID,获得相应类型的皮肤资源位图句柄
//nSkinObjType : 皮肤类型,目前支持 DIALOGTYPE,BUTTONTYPE,CHECKBOXTYPE,RADIOBOXTYPE
//nResID : 资源ID
//nState : 状态,对BUTTONTYPE,CHECKBOXTYPE,RADIOBOXTYPE有效
SKINPPWTL_API HBITMAP skinppGetResFromID(SKINOBJTYPE nSkinObjType,int nResID,int nState &#61;0 );//设置是否自己画对话框背景,该方法用在需要自己对背景进行处理的情况下.
//hWnd : 对话框的句柄
//bErase : TRUE 为自己画背景,FALSE 为Skin&#43;&#43;画,如果没有调用该方法,Skin&#43;&#43;将画对话框背景.
SKINPPWTL_API void skinppSetDialogEraseBkgnd(HWND hWnd,BOOL bErase);//设置对话框背景是否剪切子控件区域。
//hWnd : 对话框句柄
//bNoClip : TRUE为不需要剪切,FALSE为需要剪切区域
//bAllChild : TRUE为该窗体的所有子对话框都剪切.
SKINPPWTL_API void skinppSetDialogBkClipRgn(HWND hWnd,BOOL bClip,BOOL bAllChild &#61; TRUE);//通过皮肤资源名称获得皮肤资源中位图
//szName : 皮肤资源名称
//HBITMAP : 返回资源中的位图
SKINPPWTL_API HBITMAP skinppGetBitmapRes(LPCTSTR szName);//通过资源名称取资源的内存指针
//szName : 资源名称
//nSize : 资源大小
//pByte : 返回值&#xff0c;成功返回非NULL&#xff0c;失败返回NULL
SKINPPWTL_API BYTE* skinppGetSkinResource(LPCTSTR szName,int& nSize);//通过皮肤资源的名称获得位图不被拉伸的区域值
//szName : 皮肤资源名称
//nTopHeight : 返回不被拉伸的顶高
//nBottomHeight : 返回不被拉伸的底高
//nLeftWidth : 返回不被拉伸的左宽
//nRightWidth : 返回不被拉伸的右宽
SKINPPWTL_API BOOL skinppGetBitmapResRect(LPCTSTR szName,int& nTopHeight,int& nBottomHeight,int& nLeftWidth,int& nRightWidth);//设置窗口自画是否自己来处理,该方法用于自画部分需要自己处理的情况下
//hWnd : 要自画的窗口句柄
//bCustomDraw : TRUE为自己处理自画,FALSE为交给Skin&#43;&#43;处理自画
SKINPPWTL_API void skinppSetCustomDraw(HWND hWnd,BOOL bCustomDraw);//设置菜单的皮肤标识
//hWnd : 拥有菜单的窗口句柄
//nSkinObjectID : 菜单皮肤的标识
SKINPPWTL_API void skinppSetMenuSkinObjectID(HWND hWnd,int nSkinObjectID);//设置是否对自画菜单进行换肤
//bSkin : TRUE为换肤
SKINPPWTL_API void skinppSetSkinOwnerMenu(BOOL bSkin);//对菜单进行换肤控制
//hMenu : 想换肤的菜单句柄
//bNoSkin : 是否换肤,TRUE为不换肤,FALSE为换肤
SKINPPWTL_API void skinppSetDrawMenu(HMENU hMenu,BOOL bNoSkin);//对指定的窗口去掉皮肤,并且保证不会再被换肤,即使使用SetSkinHwnd也不会换肤.
//hWnd : 指定的窗口句柄
//bChildNoSkin : 是否对该窗口中的子窗口去掉皮肤
SKINPPWTL_API void skinppSetNoSkinHwnd(HWND hWnd,BOOL bChildNoSkin &#61; TRUE);//对指定的窗口进行换肤
//hWnd : 指定的窗口句柄
//szClassName : 要子类化的Skin类型 WC_DIALOGBOX/WC_CONTROLBAR等
SKINPPWTL_API void skinppSetSkinHwnd(HWND hWnd,LPCTSTR szClassName &#61; NULL);//对指定的窗口临时去掉皮肤,可以通过SetSkinHwnd进行再次换肤
SKINPPWTL_API void skinppRemoveSkinHwnd(HWND hWnd);//是对SetNoSkinHwnd的进一步处理,可以解决使用SetNoSkinHwnd引起的Debug版的断言错
#define SETNOSKINHWND(x) {\HWND w&#61;(x).UnsubclassWindow();\skinppSetNoSkinHwnd(w);\(x).SubclassWindow(w);\
} //是对RemoveSkinHwnd的进一步处理,可以解决使用RemoveSkinHwnd引起的Debug版的断言错
#define REMOVESKINHWND(x){\HWND w&#61;(x).UnsubclassWindow();\skinppRemoveSkinHwnd(w);\(x).SubclassWindow(w);\
}SKINPPWTL_API HGDIOBJ skinppGetResFromID(PRESINFO pResInfo);#endif //_SKINPPWTL_H_







推荐阅读
  • [转]doc,ppt,xls文件格式转PDF格式http:blog.csdn.netlee353086articledetails7920355确实好用。需要注意的是#import ... [详细]
  • 本文详细介绍了 PHP 中对象的生命周期、内存管理和魔术方法的使用,包括对象的自动销毁、析构函数的作用以及各种魔术方法的具体应用场景。 ... [详细]
  • 本文详细解析了使用C++实现的键盘输入记录程序的源代码,该程序在Windows应用程序开发中具有很高的实用价值。键盘记录功能不仅在远程控制软件中广泛应用,还为开发者提供了强大的调试和监控工具。通过具体实例,本文深入探讨了C++键盘记录程序的设计与实现,适合需要相关技术的开发者参考。 ... [详细]
  • 单片微机原理P3:80C51外部拓展系统
      外部拓展其实是个相对来说很好玩的章节,可以真正开始用单片机写程序了,比较重要的是外部存储器拓展,81C55拓展,矩阵键盘,动态显示,DAC和ADC。0.IO接口电路概念与存 ... [详细]
  • 如何在Java中使用DButils类
    这期内容当中小编将会给大家带来有关如何在Java中使用DButils类,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。D ... [详细]
  • 在Delphi7下要制作系统托盘,只能制作一个比较简单的系统托盘,因为ShellAPI文件定义的TNotifyIconData结构体是比较早的版本。定义如下:1234 ... [详细]
  • 检查在所有可能的“?”替换中,给定的二进制字符串中是否出现子字符串“10”带 1 或 0 ... [详细]
  • 开机自启动的几种方式
    0x01快速自启动目录快速启动目录自启动方式源于Windows中的一个目录,这个目录一般叫启动或者Startup。位于该目录下的PE文件会在开机后进行自启动 ... [详细]
  • 在尝试对 QQmlPropertyMap 类进行测试驱动开发时,发现其派生类中无法正常调用槽函数或 Q_INVOKABLE 方法。这可能是由于 QQmlPropertyMap 的内部实现机制导致的,需要进一步研究以找到解决方案。 ... [详细]
  • 本文详细解析了 Android 系统启动过程中的核心文件 `init.c`,探讨了其在系统初始化阶段的关键作用。通过对 `init.c` 的源代码进行深入分析,揭示了其如何管理进程、解析配置文件以及执行系统启动脚本。此外,文章还介绍了 `init` 进程的生命周期及其与内核的交互方式,为开发者提供了深入了解 Android 启动机制的宝贵资料。 ... [详细]
  • C++ 异步编程中获取线程执行结果的方法与技巧及其在前端开发中的应用探讨
    本文探讨了C++异步编程中获取线程执行结果的方法与技巧,并深入分析了这些技术在前端开发中的应用。通过对比不同的异步编程模型,本文详细介绍了如何高效地处理多线程任务,确保程序的稳定性和性能。同时,文章还结合实际案例,展示了这些方法在前端异步编程中的具体实现和优化策略。 ... [详细]
  • 本文介绍了 .NET 中用于线程间通信的工具 WaitHandle 及其子类 ManualResetEvent 和 AutoResetEvent,并详细解释了线程池的概念及其在优化资源利用方面的优势。 ... [详细]
  • 本文总结了一些开发中常见的问题及其解决方案,包括特性过滤器的使用、NuGet程序集版本冲突、线程存储、溢出检查、ThreadPool的最大线程数设置、Redis使用中的问题以及Task.Result和Task.GetAwaiter().GetResult()的区别。 ... [详细]
  • 在本文中,我们将探讨如何在Docker环境中高效地管理和利用数据库。首先,需要安装Docker Desktop以确保本地环境准备就绪。接下来,可以从Docker Hub中选择合适的数据库镜像,并通过简单的命令将其拉取到本地。此外,我们还将介绍如何配置和优化这些数据库容器,以实现最佳性能和安全性。 ... [详细]
  • 在Cisco IOS XR系统中,存在提供服务的服务器和使用这些服务的客户端。本文深入探讨了进程与线程状态转换机制,分析了其在系统性能优化中的关键作用,并提出了改进措施,以提高系统的响应速度和资源利用率。通过详细研究状态转换的各个环节,本文为开发人员和系统管理员提供了实用的指导,旨在提升整体系统效率和稳定性。 ... [详细]
author-avatar
我心飞翔
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有