[Sphere-axis-commits] CVS: Axis AdditionalSettingsDlg.cpp,NONE,1.1 AdditionalSettingsDlg.h,NONE,1.1
Brought to you by:
pesterle
From: Philip E. <pes...@us...> - 2002-05-12 16:24:06
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv16891 Modified Files: Drewsky.dsp Added Files: AdditionalSettingsDlg.cpp AdditionalSettingsDlg.h Log Message: adding two new files and fixed missing library --- NEW FILE: AdditionalSettingsDlg.cpp --- // AdditionalSettingsDlg.cpp : implementation file // #include "stdafx.h" #include "drewsky.h" #include "AdditionalSettingsDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CAdditionalSettingsDlg dialog CAdditionalSettingsDlg::CAdditionalSettingsDlg(CWnd* pParent /*=NULL*/) : CDialog(CAdditionalSettingsDlg::IDD, pParent) { //{{AFX_DATA_INIT(CAdditionalSettingsDlg) m_b3DRoomView = FALSE; m_bDisplayItems = FALSE; m_bAlwaysOnTop = FALSE; m_bShowRadarMap = FALSE; m_bScaleItems = FALSE; m_bShowChars = FALSE; m_bShowSpawns = FALSE; m_bSpawnMessage = FALSE; m_bStartLauncher = FALSE; m_bSysClose = FALSE; //}}AFX_DATA_INIT } void CAdditionalSettingsDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CAdditionalSettingsDlg) DDX_Control(pDX, IDC_AS_USESAMEPATHASCLIENT, m_cbMulPathFromClient); DDX_Control(pDX, IDC_AS_PROFILES, m_clbProfiles); DDX_Control(pDX, IDC_AS_NEWPROFILE, m_cbNewProfile); DDX_Control(pDX, IDC_AS_MULBROWSE, m_cbMulBrowse); DDX_Control(pDX, IDC_AS_EDITPROFILE, m_cbEditProfile); DDX_Control(pDX, IDC_AS_DELETEPROFILE, m_cbDeleteProfile); DDX_Control(pDX, IDC_AS_DEFUALTMULPATH, m_csDefaultMulPath); DDX_Control(pDX, IDC_AS_DEFUALTCLIENT, m_csDefaultClient); DDX_Control(pDX, IDC_AS_CUSTOMMULS, m_clcMuls); DDX_Control(pDX, IDC_AS_AVAILABLESCRIPTS, m_ctcScripts); DDX_Check(pDX, IDC_AS_3DROOMVIEW, m_b3DRoomView); DDX_Check(pDX, IDC_AS_DISPLAYITEMS, m_bDisplayItems); DDX_Check(pDX, IDC_AS_ONTOP, m_bAlwaysOnTop); DDX_Check(pDX, IDC_AS_RADAR, m_bShowRadarMap); DDX_Check(pDX, IDC_AS_SCALE, m_bScaleItems); DDX_Check(pDX, IDC_AS_SHOWCHARS, m_bShowChars); DDX_Check(pDX, IDC_AS_SHOWSPAWNS, m_bShowSpawns); DDX_Check(pDX, IDC_AS_SPAWNMSG, m_bSpawnMessage); DDX_Check(pDX, IDC_AS_STARTLAUNCHER, m_bStartLauncher); DDX_Check(pDX, IDC_AS_SYSCLOSE, m_bSysClose); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CAdditionalSettingsDlg, CDialog) //{{AFX_MSG_MAP(CAdditionalSettingsDlg) // NOTE: the ClassWizard will add message map macros here //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CAdditionalSettingsDlg message handlers --- NEW FILE: AdditionalSettingsDlg.h --- #if !defined(AFX_ADDITIONALSETTINGSDLG_H__3DEA5C6A_693B_47A9_834D_DB6297F788C1__INCLUDED_) #define AFX_ADDITIONALSETTINGSDLG_H__3DEA5C6A_693B_47A9_834D_DB6297F788C1__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // AdditionalSettingsDlg.h : header file // ///////////////////////////////////////////////////////////////////////////// // CAdditionalSettingsDlg dialog class CAdditionalSettingsDlg : public CDialog { // Construction public: CAdditionalSettingsDlg(CWnd* pParent = NULL); // standard constructor // Dialog Data //{{AFX_DATA(CAdditionalSettingsDlg) enum { IDD = IDD_ADDITIONAL_SETTINGS }; CButton m_cbMulPathFromClient; CListBox m_clbProfiles; CButton m_cbNewProfile; CButton m_cbMulBrowse; CButton m_cbEditProfile; CButton m_cbDeleteProfile; CStatic m_csDefaultMulPath; CStatic m_csDefaultClient; CListCtrl m_clcMuls; CTreeCtrl m_ctcScripts; BOOL m_b3DRoomView; BOOL m_bDisplayItems; BOOL m_bAlwaysOnTop; BOOL m_bShowRadarMap; BOOL m_bScaleItems; BOOL m_bShowChars; BOOL m_bShowSpawns; BOOL m_bSpawnMessage; BOOL m_bStartLauncher; BOOL m_bSysClose; //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CAdditionalSettingsDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: // Generated message map functions //{{AFX_MSG(CAdditionalSettingsDlg) // NOTE: the ClassWizard will add member functions here //}}AFX_MSG DECLARE_MESSAGE_MAP() }; //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_ADDITIONALSETTINGSDLG_H__3DEA5C6A_693B_47A9_834D_DB6297F788C1__INCLUDED_) Index: Drewsky.dsp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/Drewsky.dsp,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** Drewsky.dsp 1 May 2002 04:21:46 -0000 1.22 --- Drewsky.dsp 12 May 2002 16:23:59 -0000 1.23 *************** *** 56,63 **** LINK32=link.exe # ADD BASE LINK32 /nologo /subsystem:windows /machine:I386 ! # ADD LINK32 /nologo /subsystem:windows /machine:I386 /out:"Release/axis.exe" # Begin Special Build Tool SOURCE="$(InputPath)" ! PostBuild_Cmds=copy Release\axis.exe install\ copy axis.txt install\ copy hlp\axis.hlp install\ copy hlp\axis.cnt install\ copy ..\axissvr\gwhogsvr\axissvr.exe install\ copy ..\axissvr\axissvr.cfg install\ copy ..\UOMap\Release\UOMap.ocx install\ copy ..\UOArt\Release\UOArt.ocx install\ copy AMPatch\Release\AMPatch.exe install\ copy LICENSE install\ # End Special Build Tool --- 56,63 ---- LINK32=link.exe # ADD BASE LINK32 /nologo /subsystem:windows /machine:I386 ! # ADD LINK32 version.lib /nologo /subsystem:windows /machine:I386 /out:"Release/axis.exe" # Begin Special Build Tool SOURCE="$(InputPath)" ! PostBuild_Cmds=copy Release\axis.exe install\ copy axis.txt install\ copy hlp\axis.hlp install\ copy hlp\axis.cnt install\ copy ..\axissvr\gwhogsvr\axissvr.exe install\ copy ..\axissvr\axissvr.cfg install\ copy ..\UOMap\Release\UOMap.ocx install\ copy ..\UOArt\Release\UOArt.ocx install\ copy AMPatch\Release\AMPatch.exe install\ copy LICENSE install\ # End Special Build Tool *************** *** 86,90 **** LINK32=link.exe # ADD BASE LINK32 /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 /nologo /subsystem:windows /debug /machine:I386 /out:"Debug/axis.exe" /pdbtype:sept # SUBTRACT LINK32 /incremental:no /nodefaultlib --- 86,90 ---- LINK32=link.exe # ADD BASE LINK32 /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 version.lib /nologo /subsystem:windows /debug /machine:I386 /out:"Debug/axis.exe" /pdbtype:sept # SUBTRACT LINK32 /incremental:no /nodefaultlib *************** *** 118,122 **** SOURCE="$(InputPath)" PostBuild_Desc=Moving files to install directory ! PostBuild_Cmds=copy Release\axis.exe install\ copy axis.txt install\ copy hlp\axis.hlp install\ copy hlp\axis.cnt install\ copy ..\axissvr\gwhogsvr\axissvr.exe install\ copy ..\axissvr\axissvr.cfg install\ # End Special Build Tool --- 118,122 ---- SOURCE="$(InputPath)" PostBuild_Desc=Moving files to install directory ! PostBuild_Cmds=copy Release\axis.exe install\ copy axis.txt install\ copy hlp\axis.hlp install\ copy hlp\axis.cnt install\ copy ..\axissvr\gwhogsvr\axissvr.exe install\ copy ..\axissvr\axissvr.cfg install\ # End Special Build Tool *************** *** 175,178 **** --- 175,182 ---- # Begin Source File + SOURCE=.\AdditionalSettingsDlg.cpp + # End Source File + # Begin Source File + SOURCE=.\AddServer.cpp # End Source File *************** *** 553,556 **** --- 557,564 ---- SOURCE=.\AddDestination.h + # End Source File + # Begin Source File + + SOURCE=.\AdditionalSettingsDlg.h # End Source File # Begin Source File |