1 /* -*- Mode: C; tab-width: 4 -*-
3 * Copyright (c) 1997-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.
17 Change History (most recent first):
19 $Log: SecondPage.h,v $
20 Revision 1.9 2006/08/14 23:24:09 cheshire
21 Re-licensed mDNSResponder daemon source code under Apache License, Version 2.0
23 Revision 1.8 2005/03/20 20:08:37 shersche
24 <rdar://problem/4055670> Second screen should not select a printer by default
26 Revision 1.7 2005/01/31 23:54:30 shersche
27 <rdar://problem/3947508> Start browsing when printer wizard starts. Move browsing logic from CSecondPage object to CPrinterSetupWizardSheet object.
29 Revision 1.6 2005/01/04 21:09:14 shersche
30 Fix problems in parsing text records. Fix problems in remove event handling. Ensure that the same service can't be resolved more than once.
32 Revision 1.5 2004/12/31 07:25:27 shersche
33 Tidy up printer management, and fix memory leaks when hitting 'Cancel'
35 Revision 1.4 2004/12/30 01:02:46 shersche
36 <rdar://problem/3734478> Add Printer information box that displays description and location information when printer name is selected
39 Revision 1.3 2004/12/29 18:53:38 shersche
40 <rdar://problem/3725106>
41 <rdar://problem/3737413> Added support for LPR and IPP protocols as well as support for obtaining multiple text records. Reorganized and simplified codebase.
42 Bug #: 3725106, 3737413
44 Revision 1.2 2004/09/13 21:23:42 shersche
45 <rdar://problem/3796483> Add moreComing argument to OnAddPrinter and OnRemovePrinter callbacks
48 Revision 1.1 2004/06/18 04:36:57 rpantos
56 #include "PrinterSetupWizardSheet.h"
57 #include "CommonServices.h"
58 #include "UtilTypes.h"
64 using namespace PrinterSetupWizard
;
68 class CSecondPage
: public CPropertyPage
70 DECLARE_DYNAMIC(CSecondPage
)
74 virtual ~CSecondPage();
77 enum { IDD
= IDD_SECOND_PAGE
};
81 void InitBrowseList();
82 virtual void DoDataExchange(CDataExchange
* pDX
); // DDX/DDV support
83 afx_msg BOOL
OnSetCursor(CWnd
* pWnd
, UINT nHitTest
, UINT message
);
84 virtual BOOL
OnSetActive();
85 virtual BOOL
OnKillActive();
91 HTREEITEM m_emptyListItem
;
93 CTreeCtrl m_browseList
;
97 afx_msg
void OnTvnSelchangedBrowseList(NMHDR
*pNMHDR
, LRESULT
*pResult
);
98 afx_msg
void OnNmClickBrowseList(NMHDR
* pNMHDR
, LRESULT
* pResult
);
99 afx_msg
void OnTvnKeyDownBrowseList(NMHDR
* pNMHDR
, LRESULT
* pResult
);
112 OnResolveService( Service
* service
);
117 LoadTextAndDisableWindow( CString
& text
);
120 SetPrinterInformationState( BOOL state
);
122 std::string m_selectedName
;
129 CStatic m_printerInformation
;
131 CStatic m_descriptionLabel
;
133 CStatic m_descriptionField
;
135 CStatic m_locationLabel
;
137 CStatic m_locationField
;