Click here to Skip to main content
15,893,588 members
Articles / Mobile Apps

The StateWizard VC++ Add-in and Engine with Source Code

Rate me:
Please Sign up or sign in to vote.
4.73/5 (24 votes)
26 Mar 2009CPOL12 min read 190.7K   2.8K   132  
A cross-platform state-oriented application framework and a ClassWizard-like round-trip UML dynamic modeling/development tool that runs in popular IDEs. Aims at providing concurrent, distributed, and real-time application development tools for Win32/Linux
#pragma once

// AddAppDlg.h : header file

#include "resource.h"
#include "StateTreeCtrl.h"

/////////////////////////////////////////////////////////////////////////////
// CAddAppDlg dialog

class CAddAppDlg : public CDialog
{
	// Construction
public:
	CStateTreeCtrl* m_pStateTree;
	CAddAppDlg(CWnd* pParent = NULL);   // standard constructor

	// Dialog Data
	//{{AFX_DATA(CAddAppDlg)
	enum { IDD = IDD_ADDAPPBOX };
	CString	m_entryHdlName;
	CString	m_exitHdlName;
	CString	m_appStateName;
	CString	m_parentStateName;
	//}}AFX_DATA


	// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CAddAppDlg)
protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

	// Implementation
protected:
	void AddEntryExitHandlers();

	// Generated message map functions
	//{{AFX_MSG(CAddAppDlg)
	virtual void OnOK();
	afx_msg void OnAppNameEditTextChange();
	virtual BOOL OnInitDialog();
	afx_msg void OnDestroy();
	afx_msg void OnEntryCheck();
	afx_msg void OnExitCheck();
	afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:

};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
Alex "Question is more important than the answer."

Comments and Discussions