comparison host/tools/Utils/win32/ComboEdit.cpp @ 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 eb9fd8c04db3
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 // ComboEdit.cpp : implementation file
26 //
27
28 #include "stdafx.h"
29 #include "ComboEdit.h"
30
31 #ifdef _DEBUG
32 #define new DEBUG_NEW
33 #undef THIS_FILE
34 static char THIS_FILE[] = __FILE__;
35 #endif
36
37 /////////////////////////////////////////////////////////////////////////////
38 // CComboEdit
39
40 CComboEdit::CComboEdit(LPCTSTR pszInitialValue,const CStringArray &arValues):
41 CCell(pszInitialValue)
42 {
43 m_arValues.Copy(arValues);
44 }
45
46 CComboEdit::~CComboEdit()
47 {
48 }
49
50
51 BEGIN_MESSAGE_MAP(CComboEdit, CCell)
52 //{{AFX_MSG_MAP(CComboEdit)
53 ON_WM_CREATE()
54 //}}AFX_MSG_MAP
55 END_MESSAGE_MAP()
56
57 /////////////////////////////////////////////////////////////////////////////
58 // CComboEdit message handlers
59
60
61 BOOL CComboEdit::Create(DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext*)
62 {
63 return CWnd::CreateEx(WS_EX_CLIENTEDGE,_T("COMBOBOX"), NULL, dwStyle, rect, pParentWnd, nID);
64 }
65
66 int CComboEdit::OnCreate(LPCREATESTRUCT lpCreateStruct)
67 {
68 if (CCell::OnCreate(lpCreateStruct) == -1)
69 return -1;
70
71 SendMessage(WM_SETFONT,(WPARAM)(HFONT)GetStockObject(DEFAULT_GUI_FONT),0);
72
73 CStringArray arEnum;
74 for(int i=0;i<m_arValues.GetSize();i++){
75 SendMessage(CB_ADDSTRING,0,(LPARAM)(LPCTSTR)m_arValues[i]);
76 }
77 int nIndex=SendMessage(CB_FINDSTRINGEXACT, (WPARAM)-1, (LPARAM)(LPCTSTR)m_strInitialValue);
78 SendMessage(CB_SETCURSEL, nIndex == CB_ERR ? 0 : nIndex, 0);
79
80 return 0;
81 }