1 /* -*- Mode: C; tab-width: 4 -*-
3 * Copyright (c) 2002-2004 Apple Computer, Inc. All rights reserved.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
23 #include <DebugServices.h>
33 //---------------------------------------------------------------------------------------------------------------------------
35 //---------------------------------------------------------------------------------------------------------------------------
37 class CBrowsingPage
: public CPropertyPage
45 //{{AFX_DATA(CBrowsingPage)
46 enum { IDD
= IDR_APPLET_PAGE3
};
49 //{{AFX_VIRTUAL(CBrowsingPage)
50 virtual void DoDataExchange(CDataExchange
* pDX
); // DDX/DDV support
53 DECLARE_DYNCREATE(CBrowsingPage
)
55 //{{AFX_MSG(CBrowsingPage)
61 typedef std::list
<CString
> StringList
;
70 SetModified( BOOL bChanged
= TRUE
);
82 SortFunc(LPARAM lParam1
, LPARAM lParam2
, LPARAM lParamSort
);
86 CListCtrl m_browseListCtrl
;
98 afx_msg
void OnBnClickedAddBrowseDomain();
100 afx_msg
void OnBnClickedRemoveBrowseDomain();
102 afx_msg
void OnLvnItemchangedBrowseList(NMHDR
*pNMHDR
, LRESULT
*pResult
);
104 CButton m_removeButton
;
112 //---------------------------------------------------------------------------------------------------------------------------
114 //---------------------------------------------------------------------------------------------------------------------------
117 class CAddBrowseDomain
: public CDialog
121 DECLARE_DYNAMIC(CAddBrowseDomain
)
127 CAddBrowseDomain(CWnd
* pParent
= NULL
); // standard constructor
129 virtual ~CAddBrowseDomain();
135 enum { IDD
= IDR_ADD_BROWSE_DOMAIN
};
141 virtual void DoDataExchange(CDataExchange
* pDX
); // DDX/DDV support
143 virtual BOOL
OnInitDialog();
147 DECLARE_MESSAGE_MAP()
151 CComboBox m_comboBox
;