Follow-on fix for bug 457825. Use sheet principal for agent and user sheets. r=dbaron...
[wine-gecko.git] / embedding / qa / testembed / Preferences.cpp
blob9d54230c0b8122236c7af138d31f3bb5fa9ef200
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
23 * Chak Nanga <chak@netscape.com>
25 * Alternatively, the contents of this file may be used under the terms of
26 * either the GNU General Public License Version 2 or later (the "GPL"), or
27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
39 #include "stdafx.h"
40 #include "Preferences.h"
42 #ifdef _DEBUG
43 #define new DEBUG_NEW
44 #undef THIS_FILE
45 static char THIS_FILE[] = __FILE__;
46 #endif
48 /////////////////////////////////////////////////////////////////
49 // CPreferences
51 IMPLEMENT_DYNAMIC(CPreferences, CPropertySheet)
53 CPreferences::CPreferences(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
54 :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
56 AddPage(&m_startupPage);
59 CPreferences::~CPreferences()
63 BEGIN_MESSAGE_MAP(CPreferences, CPropertySheet)
64 //{{AFX_MSG_MAP(CPreferences)
65 // NOTE - the ClassWizard will add and remove mapping macros here.
66 //}}AFX_MSG_MAP
67 END_MESSAGE_MAP()
70 BOOL CPreferences::OnInitDialog()
72 BOOL bResult = CPropertySheet::OnInitDialog();
74 // Hide the Apply button
75 CWnd* pApplyButton = GetDlgItem(ID_APPLY_NOW);
76 ASSERT(pApplyButton);
77 pApplyButton->ShowWindow(SW_HIDE);
79 return bResult;
83 /////////////////////////////////////////////////////////////////
84 // CStartupPrefsPage property page
86 IMPLEMENT_DYNCREATE(CStartupPrefsPage, CPropertyPage)
88 CStartupPrefsPage::CStartupPrefsPage() : CPropertyPage(CStartupPrefsPage::IDD)
90 //{{AFX_DATA_INIT(CStartupPrefsPage)
91 m_strHomePage = _T("");
92 m_iStartupPage = -1;
93 //}}AFX_DATA_INIT
96 CStartupPrefsPage::~CStartupPrefsPage()
100 void CStartupPrefsPage::DoDataExchange(CDataExchange* pDX)
102 CPropertyPage::DoDataExchange(pDX);
103 //{{AFX_DATA_MAP(CStartupPrefsPage)
104 DDX_Control(pDX, IDC_EDIT_HOMEPAGE, m_HomePage);
105 DDX_Text(pDX, IDC_EDIT_HOMEPAGE, m_strHomePage);
106 DDX_Radio(pDX, IDC_RADIO_BLANK_PAGE, m_iStartupPage);
107 //}}AFX_DATA_MAP
111 BEGIN_MESSAGE_MAP(CStartupPrefsPage, CPropertyPage)
112 //{{AFX_MSG_MAP(CStartupPrefsPage)
113 //}}AFX_MSG_MAP
114 END_MESSAGE_MAP()