1 |
786 |
skrzyp |
// ####ECOSHOSTGPLCOPYRIGHTBEGIN####
|
2 |
|
|
// -------------------------------------------
|
3 |
|
|
// This file is part of the eCos host tools.
|
4 |
|
|
// Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
|
5 |
|
|
//
|
6 |
|
|
// This program is free software; you can redistribute it and/or modify
|
7 |
|
|
// it under the terms of the GNU General Public License as published by
|
8 |
|
|
// the Free Software Foundation; either version 2 or (at your option) any
|
9 |
|
|
// later version.
|
10 |
|
|
//
|
11 |
|
|
// This program is distributed in the hope that it will be useful, but
|
12 |
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
13 |
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14 |
|
|
// General Public License for more details.
|
15 |
|
|
//
|
16 |
|
|
// You should have received a copy of the GNU General Public License
|
17 |
|
|
// along with this program; if not, write to the
|
18 |
|
|
// Free Software Foundation, Inc., 51 Franklin Street,
|
19 |
|
|
// Fifth Floor, Boston, MA 02110-1301, USA.
|
20 |
|
|
// -------------------------------------------
|
21 |
|
|
// ####ECOSHOSTGPLCOPYRIGHTEND####
|
22 |
|
|
#if !defined(AFX_ECOSPROPERTYPAGE_H__900AB3BE_8321_11D3_A534_00A0C949ADAC__INCLUDED_)
|
23 |
|
|
#define AFX_ECOSPROPERTYPAGE_H__900AB3BE_8321_11D3_A534_00A0C949ADAC__INCLUDED_
|
24 |
|
|
|
25 |
|
|
#if _MSC_VER > 1000
|
26 |
|
|
#pragma once
|
27 |
|
|
#endif // _MSC_VER > 1000
|
28 |
|
|
// eCosPropertyPage.h : header file
|
29 |
|
|
//
|
30 |
|
|
|
31 |
|
|
#ifdef PLUGIN
|
32 |
|
|
#include "ide.win32.h"
|
33 |
|
|
#include "ide.guicommon.h"
|
34 |
|
|
#else
|
35 |
|
|
#include "CSHPropertyPage.h"
|
36 |
|
|
#endif
|
37 |
|
|
|
38 |
|
|
#include "eCosDialog.h"
|
39 |
|
|
/////////////////////////////////////////////////////////////////////////////
|
40 |
|
|
// CeCosPropertyPage dialog
|
41 |
|
|
|
42 |
|
|
class CeCosPropertyPage : public CCSHPropertyPage
|
43 |
|
|
{
|
44 |
|
|
DECLARE_DYNCREATE(CeCosPropertyPage)
|
45 |
|
|
// Construction
|
46 |
|
|
public:
|
47 |
|
|
CeCosPropertyPage():CCSHPropertyPage(){};
|
48 |
|
|
CeCosPropertyPage(UINT nIDTemplate, UINT nIDCaption = 0 ):CCSHPropertyPage(nIDTemplate, nIDCaption){}
|
49 |
|
|
CeCosPropertyPage( LPCTSTR lpszTemplateName, UINT nIDCaption = 0 ):CCSHPropertyPage(lpszTemplateName, nIDCaption){}
|
50 |
|
|
|
51 |
|
|
// PropertyPage Data
|
52 |
|
|
//{{AFX_DATA(CeCosPropertyPage)
|
53 |
|
|
// NOTE: the ClassWizard will add data members here
|
54 |
|
|
//}}AFX_DATA
|
55 |
|
|
|
56 |
|
|
|
57 |
|
|
// Overrides
|
58 |
|
|
// ClassWizard generated virtual function overrides
|
59 |
|
|
//{{AFX_VIRTUAL(CeCosPropertyPage)
|
60 |
|
|
protected:
|
61 |
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
62 |
|
|
//}}AFX_VIRTUAL
|
63 |
|
|
|
64 |
|
|
// Implementation
|
65 |
|
|
protected:
|
66 |
|
|
virtual UINT HelpID (DWORD dwCtrlID) const;
|
67 |
|
|
virtual CString CSHFile() const;
|
68 |
|
|
void OnContextMenu(CWnd* pWnd, CPoint point);
|
69 |
|
|
BOOL OnHelpInfo(HELPINFO* pHelpInfo);
|
70 |
|
|
|
71 |
|
|
// Generated message map functions
|
72 |
|
|
//{{AFX_MSG(CeCosPropertyPage)
|
73 |
|
|
//}}AFX_MSG
|
74 |
|
|
DECLARE_MESSAGE_MAP()
|
75 |
|
|
};
|
76 |
|
|
|
77 |
|
|
//{{AFX_INSERT_LOCATION}}
|
78 |
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
79 |
|
|
|
80 |
|
|
#endif // !defined(AFX_ECOSPROPERTYPAGE_H__900AB3BE_8321_11D3_A534_00A0C949ADAC__INCLUDED_)
|