00001 // 00002 // PageSettingsInterface.cpp 00003 // 00004 // Copyright (c) Shareaza Development Team, 2002-2005. 00005 // This file is part of SHAREAZA (www.shareaza.com) 00006 // 00007 // Shareaza is free software; you can redistribute it 00008 // and/or modify it under the terms of the GNU General Public License 00009 // as published by the Free Software Foundation; either version 2 of 00010 // the License, or (at your option) any later version. 00011 // 00012 // Shareaza is distributed in the hope that it will be useful, 00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 // GNU General Public License for more details. 00016 // 00017 // You should have received a copy of the GNU General Public License 00018 // along with Shareaza; if not, write to the Free Software 00019 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00020 // 00021 00022 #include "StdAfx.h" 00023 #include "Shareaza.h" 00024 #include "Settings.h" 00025 #include "PageSettingsInterface.h" 00026 00027 #ifdef _DEBUG 00028 #define new DEBUG_NEW 00029 #undef THIS_FILE 00030 static char THIS_FILE[] = __FILE__; 00031 #endif 00032 00033 IMPLEMENT_DYNCREATE(CInterfaceSettingsPage, CSettingsPage) 00034 00035 BEGIN_MESSAGE_MAP(CInterfaceSettingsPage, CSettingsPage) 00036 //{{AFX_MSG_MAP(CInterfaceSettingsPage) 00037 //}}AFX_MSG_MAP 00038 END_MESSAGE_MAP() 00039 00040 00042 // CInterfaceSettingsPage property page 00043 00044 CInterfaceSettingsPage::CInterfaceSettingsPage() : CSettingsPage(CInterfaceSettingsPage::IDD) 00045 { 00046 //{{AFX_DATA_INIT(CInterfaceSettingsPage) 00047 //}}AFX_DATA_INIT 00048 } 00049 00050 CInterfaceSettingsPage::~CInterfaceSettingsPage() 00051 { 00052 } 00053 00054 void CInterfaceSettingsPage::DoDataExchange(CDataExchange* pDX) 00055 { 00056 CSettingsPage::DoDataExchange(pDX); 00057 //{{AFX_DATA_MAP(CInterfaceSettingsPage) 00058 //}}AFX_DATA_MAP 00059 } 00060 00062 // CInterfaceSettingsPage message handlers 00063 00064 BOOL CInterfaceSettingsPage::OnInitDialog() 00065 { 00066 CSettingsPage::OnInitDialog(); 00067 00068 return TRUE; 00069 } 00070 00071 void CInterfaceSettingsPage::OnOK() 00072 { 00073 CSettingsPage::OnOK(); 00074 }