comparison host/tools/Utils/win32/StringEdit.h @ 76:435cced73e2f ecos-v1_3_1-release

eCos v1.3.1 merged from eCos master repository on 2000-03-27-23:22:51-BST
author jlarmour
date Tue, 28 Mar 2000 14:10:45 +0000
parents
children
comparison
equal deleted inserted replaced
75:41bf073c0c32 76:435cced73e2f
1 //####COPYRIGHTBEGIN####
2 //
3 // ----------------------------------------------------------------------------
4 // Copyright (C) 1998, 1999, 2000 Red Hat, Inc.
5 //
6 // This program is part of the eCos host tools.
7 //
8 // This program is free software; you can redistribute it and/or modify it
9 // under the terms of the GNU General Public License as published by the Free
10 // Software Foundation; either version 2 of the License, or (at your option)
11 // any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but WITHOUT
14 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 // more details.
17 //
18 // You should have received a copy of the GNU General Public License along with
19 // this program; if not, write to the Free Software Foundation, Inc.,
20 // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 //
22 // ----------------------------------------------------------------------------
23 //
24 //####COPYRIGHTEND####
25 //===========================================================================
26 //#####DESCRIPTIONBEGIN####
27 //
28 // Author(s): sdf
29 // Contact(s): sdf
30 // Date: 1998/08/11
31 // Version: 0.01
32 // Purpose:
33 // Description: Interface of the masked edit control used by the control view for
34 // in-cell editing
35 // Requires:
36 // Provides:
37 // See also:
38 // Known bugs:
39 // Usage:
40 //
41 //####DESCRIPTIONEND####
42 //
43 //===========================================================================
44 #if !defined(AFX_STRINGEDIT_H__8F19DC24_06B9_11D2_80BE_00A0C949ADAC__INCLUDED_)
45 #define AFX_STRINGEDIT_H__8F19DC24_06B9_11D2_80BE_00A0C949ADAC__INCLUDED_
46
47 #if _MSC_VER >= 1000
48 #pragma once
49 #endif // _MSC_VER >= 1000
50 // IntegerEdit.h : header file
51 //
52
53 /////////////////////////////////////////////////////////////////////////////
54 // CStringEdit window
55 #include "CellEdit.h"
56 class CStringEdit : public CCellEdit
57 {
58 // Construction
59 public:
60 CStringEdit(LPCTSTR pszInitialValue);
61
62 // Attributes
63 public:
64 static LPCTSTR FORMAT_HEX;
65 static LPCTSTR FORMAT_INT;
66 // Operations
67 public:
68 void EnableDoubleClickEdit(bool bEnable=true,UINT idEdit=42) { m_bDoubleClickEdit=bEnable; m_idEdit=idEdit; }
69 // Overrides
70 // ClassWizard generated virtual function overrides
71 //{{AFX_VIRTUAL(CStringEdit)
72 public:
73 //}}AFX_VIRTUAL
74
75 // Implementation
76 public:
77 void SetValue(__int64 n);
78 virtual ~CStringEdit();
79
80 // Generated message map functions
81 protected:
82 bool m_bDoubleClickEdit;
83 UINT m_idEdit;
84
85 //CIdleMessage CI;
86 CString m_strData;
87 //{{AFX_MSG(CStringEdit)
88 afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
89 afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
90 //}}AFX_MSG
91
92 DECLARE_MESSAGE_MAP()
93 };
94
95 /////////////////////////////////////////////////////////////////////////////
96
97 //{{AFX_INSERT_LOCATION}}
98 // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
99
100 #endif // !defined(AFX_STRINGEDIT_H__8F19DC24_06B9_11D2_80BE_00A0C949ADAC__INCLUDED_)