1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #if !defined(AFX_SETSIZE_H__D0D56FDB_04DB_4D8B_AE4F_326F94B06263__INCLUDED_)
- #define AFX_SETSIZE_H__D0D56FDB_04DB_4D8B_AE4F_326F94B06263__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // SetSize.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // SetSize dialog
- class SetSize : public CDialog
- {
- CStringArray namearray;
- CArray<int,int>widtharray;
- CArray<int,int>heightarray;
- // Construction
- public:
- void SaveToFile();
- SetSize(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(SetSize)
- enum { IDD = IDD_DLGSetSize };
- CListBox m_List1;
- CString m_name;
- UINT m_width;
- UINT m_height;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(SetSize)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(SetSize)
- virtual BOOL OnInitDialog();
- afx_msg void OnSelchangeList1();
- afx_msg void OnBUTadd();
- afx_msg void OnBUTdel();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_SETSIZE_H__D0D56FDB_04DB_4D8B_AE4F_326F94B06263__INCLUDED_)
|