1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/*
* XEvil(TM) Copyright (C) 1994,2000 Steve Hardt and Michael Judge
* http://www.xevil.com
* satan@xevil.com
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program, the file "gpl.txt"; if not, write to the Free
* Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA, or visit http://www.gnu.org.
*/
// AboutDialog.cpp : implementation file
//
#include "stdafx.h"
#include "XEvil.h"
#include "AboutDialog.h"
#include "l_agreement.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// AboutDialog dialog
AboutDialog::AboutDialog(CWnd* pParent /*=NULL*/)
: CDialog(AboutDialog::IDD, pParent)
{
//{{AFX_DATA_INIT(AboutDialog)
m_fullscreenvalue = FALSE;
m_versionvalue = _T("");
m_licensetextvalue = _T("");
m_drawbackgroundvalue = FALSE;
//}}AFX_DATA_INIT
m_Dfullscreenmode=FALSE;
m_Denablefullscreen=FALSE;
m_Ddrawbackground=TRUE;
m_Denabledrawbackground=FALSE;
m_Denablereject = TRUE;
}
void AboutDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(AboutDialog)
DDX_Control(pDX, IDC_DRAWBACKGROUND, m_drawbackgroundcontrol);
DDX_Control(pDX, IDCANCEL, m_rejectcontrol);
DDX_Control(pDX, IDC_LICENSETEXT, m_licensetextcontrol);
DDX_Control(pDX, IDC_FULLSCREEN, m_fullscreencontrol);
DDX_Check(pDX, IDC_FULLSCREEN, m_fullscreenvalue);
DDX_Text(pDX, IDC_VERSION, m_versionvalue);
DDX_Text(pDX, IDC_LICENSETEXT, m_licensetextvalue);
DDX_Check(pDX, IDC_DRAWBACKGROUND, m_drawbackgroundvalue);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(AboutDialog, CDialog)
//{{AFX_MSG_MAP(AboutDialog)
ON_EN_SETFOCUS(IDC_LICENSETEXT, OnSetfocusLicensetext)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// AboutDialog message handlers
BOOL AboutDialog::OnInitDialog()
{
CDialog::OnInitDialog();
CenterWindow();
m_fullscreencontrol.EnableWindow(m_Denablefullscreen);
m_fullscreenvalue=m_Dfullscreenmode;
m_drawbackgroundcontrol.EnableWindow(m_Denabledrawbackground);
m_drawbackgroundvalue=m_Ddrawbackground;
m_rejectcontrol.EnableWindow(m_Denablereject);
UpdateData(FALSE);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void AboutDialog::OnOK()
{
UpdateData(TRUE);
m_Dfullscreenmode=m_fullscreenvalue;
m_Ddrawbackground=m_drawbackgroundvalue;
#ifdef MODELESS_DIALOGS
if (!m_Denablefullscreen)
PostMessage(WM_COMMAND,IDOK,0);
#else
CDialog::OnOK();
#endif
}
void AboutDialog::OnCancel()
{
m_licensetextcontrol.SetSel(-1,0,TRUE);
CDialog::OnCancel();
}
void AboutDialog::setVersionString(const char* version) {
m_versionvalue = "XEvil(TM) ";
m_versionvalue += version;
// m_versionvalue += " (Shareware)";
}
void AboutDialog::setLicenseText(const char* text) {
m_licensetextvalue = "";
// Parse the text into fixed width columns of lines of text.
// 80 column.
Line::set_text_columns(75);
// Do the parse.
Page thePage(NULL,text);
// Recreate the license text from the parsed text.
const PtrList& lines = thePage.get_lines();
for (int n = 0; n < lines.length(); n++) {
int length;
const char* txt = ((Line*)lines.get(n))->get_text(length);
CString cstr(txt,length);
m_licensetextvalue += cstr;
if (n < lines.length() - 1) {
m_licensetextvalue += "\r\n";
}
}
}
void AboutDialog::OnSetfocusLicensetext()
{
m_licensetextcontrol.SetSel(-1,0);
}
|