⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chprefs.cpp

📁 Windows上的MUD客户端程序
💻 CPP
📖 第 1 页 / 共 2 页
字号:
/*----------------------------------------------------------------------------
                        _                              _ _       
        /\             | |                            | (_)      
       /  \   _ __   __| |_ __ ___  _ __ ___   ___  __| |_  __ _ 
      / /\ \ | '_ \ / _` | '__/ _ \| '_ ` _ \ / _ \/ _` | |/ _` |
     / ____ \| | | | (_| | | | (_) | | | | | |  __/ (_| | | (_| |
    /_/    \_\_| |_|\__,_|_|  \___/|_| |_| |_|\___|\__,_|_|\__,_|

    The contents of this file are subject to the Andromedia Public
	License Version 1.0 (the "License"); you may not use this file
	except in compliance with the License. You may obtain a copy of
	the License at http://www.andromedia.com/APL/

    Software distributed under the License is distributed on an
	"AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
	implied. See the License for the specific language governing
	rights and limitations under the License.

    The Original Code is Pueblo client code, released November 4, 1998.

    The Initial Developer of the Original Code is Andromedia Incorporated.
	Portions created by Andromedia are Copyright (C) 1998 Andromedia
	Incorporated.  All Rights Reserved.

	Andromedia Incorporated                         415.365.6700
	818 Mission Street - 2nd Floor                  415.365.6701 fax
	San Francisco, CA 94103

    Contributor(s):
	--------------------------------------------------------------------------
	   Chaco team:  Dan Greening, Glenn Crocker, Jim Doubek,
	                Coyote Lussier, Pritham Shetty.

					Wrote and designed original codebase.

------------------------------------------------------------------------------

	Implementation of the ChTextOutPrefsPage class.

----------------------------------------------------------------------------*/

// $Header: /home/cvs/chaco/modules/client/msw/ChText/ChPrefs.cpp,v 2.6 1996/02/17 01:46:40 coyote Exp $

#include "headers.h"
#include "resource.h"

#include "ChText.h"
#include "ChPrefs.h"
#include "ChKeyMapType.h"

#include <cderr.h>

#ifdef _DEBUG
	#undef THIS_FILE
	static char BASED_CODE THIS_FILE[] = __FILE__;
#endif


/*----------------------------------------------------------------------------
	Constants
----------------------------------------------------------------------------*/

#define OPEN_DLG_FLAGS		(OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST |\
								OFN_HIDEREADONLY | OFN_ENABLETEMPLATE)


/*----------------------------------------------------------------------------
	ChTextOutPrefsPage class
----------------------------------------------------------------------------*/
	
IMPLEMENT_DYNCREATE( ChTextOutPrefsPage, ChPropertyPage )

ChTextOutPrefsPage::ChTextOutPrefsPage() :
			ChPropertyPage( ChTextOutPrefsPage::IDD, 0, hTextDLL ),
			m_reg( TEXT_OUT_PREFS_GROUP ),
			m_boolDirty( false ),
			m_boolInitialized( false ),
			m_lLines( 0 )
{
	//{{AFX_DATA_INIT(ChTextOutPrefsPage)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}

ChTextOutPrefsPage::~ChTextOutPrefsPage()
{
}


bool ChTextOutPrefsPage::OnSetActive()
{
	bool	boolResult;

	boolResult = ChPropertyPage::OnSetActive();

	if (!m_boolInitialized)
	{
		char		buffer[32];
		chint32		lLines;

		m_reg.Read( TEXT_OUT_PREFS_LINES, lLines, TEXT_OUT_PREFS_LINES_DEF );
		SetLines( lLines );
											/* Limit text to 4 digits and set
												the initial value */
		m_editLines.LimitText( 4 );

		sprintf( buffer, "%ld", GetLines() );
		m_editLines.SetWindowText( buffer );
											/* Set the initialized flag so
												that we don't do this again */
		m_boolInitialized = true;
	}

	return boolResult;
}


void ChTextOutPrefsPage::OnCommit()
{
	if (m_boolInitialized)
	{										// Write data to registry

		m_reg.Write( TEXT_OUT_PREFS_LINES, GetLines() );
	}     
}


void ChTextOutPrefsPage::DoDataExchange(CDataExchange* pDX)
{
	ChPropertyPage::DoDataExchange( pDX );

	//{{AFX_DATA_MAP(ChTextOutPrefsPage)
	DDX_Control(pDX, IDC_EDIT_LINES, m_editLines);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP( ChTextOutPrefsPage, ChPropertyPage )
	//{{AFX_MSG_MAP(ChTextOutPrefsPage)
	ON_EN_CHANGE(IDC_EDIT_LINES, OnChangeEditLines)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()


/*----------------------------------------------------------------------------
	ChTextOutPrefsPage message handlers
----------------------------------------------------------------------------*/
	
void ChTextOutPrefsPage::OnChangeEditLines() 
{
	string		strText;
	chint32		lLines;
	char		buffer[32];

	m_editLines.GetWindowText( strText );

	lLines = atol( strText );
	sprintf( buffer, "%ld", lLines );

	if (strText != buffer)
	{
		m_editLines.SetWindowText( buffer );
		m_editLines.SetSel( 32767, 32767 );
	}

	if (GetLines() != lLines)
	{
		SetLines( lLines );
		SetDirty();
	}
}



/*----------------------------------------------------------------------------
	ChTextInPrefsPage class
----------------------------------------------------------------------------*/
	
IMPLEMENT_DYNCREATE( ChTextInPrefsPage, ChPropertyPage )

ChTextInPrefsPage::ChTextInPrefsPage() :
			ChPropertyPage( ChTextInPrefsPage::IDD, 0, hTextDLL ),
			m_reg( TEXT_IN_PREFS_GROUP ),
			m_boolDirty( false ),
			m_boolInitialized( false ),
			m_sEditLines( 0 )
{
	//{{AFX_DATA_INIT(ChTextInPrefsPage)
	m_iKeyMap = -1;
	m_boolClear = FALSE;
	m_strLineCount = _T("");
	//}}AFX_DATA_INIT
}

ChTextInPrefsPage::~ChTextInPrefsPage()
{
}


bool ChTextInPrefsPage::OnSetActive()
{
	bool	boolResult;

	boolResult = ChPropertyPage::OnSetActive();

	if (!m_boolInitialized)
	{
		string		strKeyMap;

		m_reg.Read( TEXT_IN_PREFS_KEYMAP, strKeyMap,
					TEXT_IN_PREFS_KEYMAP_DEF );
		m_keyMap.Set( strKeyMap );

		m_reg.Read( TEXT_IN_EDIT_LINES, m_sEditLines,
					TEXT_IN_EDIT_LINES_DEF );

		m_reg.Read( TEXT_IN_TINTIN_FILE, m_strTinTinFile,
					TEXT_IN_TINTIN_FILE_DEF );
		DisplayTinTinName( m_strTinTinFile );
											// Initialize the dialog data
		UpdateData( false );
											// Limit the edit field to 2 digits
		m_editLineCount.LimitText( 2 );
											/* Set the initialized flag so
												that we don't do this again */
		m_boolInitialized = true;
	}

	return boolResult;
}


bool ChTextInPrefsPage::OnKillActive()
{
	bool	boolSuccess;

	if (boolSuccess = ChPropertyPage::OnKillActive())
	{
		if ((GetEditLines() <= 0) || (GetEditLines() > TEXT_IN_EDIT_LINES_MAX))
		{
			string		strFormat;
			string		strOut;

			LOADSTRING( IDS_LINES_OUT_OF_RANGE, strFormat );
			strOut.Format( strFormat, (int)TEXT_IN_EDIT_LINES_MAX );
			MessageBox( strOut );
			m_editLineCount.SetFocus();

			boolSuccess = false;
		}
	}

	return boolSuccess;
}


void ChTextInPrefsPage::OnCommit()
{
	if (m_boolInitialized)
	{										// Write data to registry

		m_reg.Write( TEXT_IN_PREFS_KEYMAP, m_keyMap.GetName() );
		m_reg.Write( TEXT_IN_EDIT_LINES, m_sEditLines );
		m_reg.Write( TEXT_IN_TINTIN_FILE, m_strTinTinFile );
	}     
}


void ChTextInPrefsPage::SetEditLines( chint16 sLines )
{
	m_sEditLines = sLines;

	if (GetEditLines() <= 0)
	{
		m_sEditLines = 1;
	}
	else if (GetEditLines() > TEXT_IN_EDIT_LINES_MAX)
	{
		m_sEditLines = TEXT_IN_EDIT_LINES_MAX;
	}
}


void ChTextInPrefsPage::DoDataExchange( CDataExchange* pDX )
{
	ChPropertyPage::DoDataExchange( pDX );

	if (!pDX->m_bSaveAndValidate)
	{
		m_strLineCount.Format( "%hd", m_sEditLines );

		switch( m_keyMap )
		{
			case keymapEmacs:
			{
				m_iKeyMap = 1;
				break;
			}

			default:
			{
				m_iKeyMap = 0;
				break;
			}
		}
	}

	//{{AFX_DATA_MAP(ChTextInPrefsPage)
	DDX_Control(pDX, IDC_EDIT_LINE_COUNT, m_editLineCount);
	DDX_Radio(pDX, IDC_RADIO_WINDOWS, m_iKeyMap);
	DDX_Check(pDX, IDC_CHECK_CLEAR, m_boolClear);
	DDX_Text(pDX, IDC_EDIT_LINE_COUNT, m_strLineCount);
	//}}AFX_DATA_MAP

	if (pDX->m_bSaveAndValidate)
	{
		m_sEditLines = atoi( m_strLineCount );

		switch( m_iKeyMap )
		{
			case 1:
			{
				m_keyMap = keymapEmacs;
				break;
			}

			default:
			{
				m_keyMap = keymapWindows;
				break;
			}
		}
	}
}


BEGIN_MESSAGE_MAP( ChTextInPrefsPage, ChPropertyPage )
	//{{AFX_MSG_MAP(ChTextInPrefsPage)
	ON_EN_UPDATE(IDC_EDIT_LINE_COUNT, OnUpdateEditLineCount)
	ON_BN_CLICKED(IDC_TINTIN_FILE, OnTintinFile)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()


/*----------------------------------------------------------------------------
	ChTextInPrefsPage protected methods
----------------------------------------------------------------------------*/

void ChTextInPrefsPage::DisplayTinTinName( const string& strName )
{
	CStatic*	pStatic = (CStatic*)GetDlgItem( IDC_STATIC_TINTIN_FILE );

	if (strName.GetLength())
	{
		string		strBrowserName( strName );
		int			iIndex = strBrowserName.ReverseFind( '\\' );

		if (-1 != iIndex)
		{
			strBrowserName = strBrowserName.Mid( iIndex + 1 );
		}

		pStatic->SetWindowText( strBrowserName );
	}
	else

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -