2 * Copyright (c) 1997-2004 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
23 Change History (most recent first):
25 $Log: SecondPage.h,v $
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
);
110 OnResolveService( Service
* service
);
115 LoadTextAndDisableWindow( CString
& text
);
118 SetPrinterInformationState( BOOL state
);
120 std::string m_selectedName
;
124 CStatic m_printerInformation
;
125 CStatic m_descriptionLabel
;
126 CStatic m_descriptionField
;
127 CStatic m_locationLabel
;
128 CStatic m_locationField
;