亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? chwlistd.h

?? Windows上的MUD客戶端程序
?? H
字號:
/*----------------------------------------------------------------------------
                        _                              _ _       
        /\             | |                            | (_)      
       /  \   _ __   __| |_ __ ___  _ __ ___   ___  __| |_  __ _ 
      / /\ \ | '_ \ / _` | '__/ _ \| '_ ` _ \ / _ \/ _` | |/ _` |
     / ____ \| | | | (_| | | | (_) | | | | | |  __/ (_| | | (_| |
    /_/    \_\_| |_|\__,_|_|  \___/|_| |_| |_|\___|\__,_|_|\__,_|

    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 for the ChWorldListDlg class.

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

// $Header: /home/cvs/chaco/modules/client/msw/ChWorld/ChWListD.h,v 2.17 1996/03/18 21:06:12 coyote Exp $

#if !defined( _CHWLISTD_H )
#define _CHWLISTD_H

#include <ChReg.h>
#include <ChDlg.h>

#include "ChWList.h"


class ChCore;

/*----------------------------------------------------------------------------
	ChWorldListDlg class
----------------------------------------------------------------------------*/

class ChWorldListDlg : public ChDialog
{
	public:
		ChWorldListDlg( ChCore* pCore, bool boolConnected, CWnd* pParent = 0 );

		inline const string& GetName() { return m_strName; }
		inline const string& GetDesc() { return m_strDesc; }
		inline const string& GetHost() { return m_strHost; }
		inline const string& GetAddr() { return m_strAddr; }
		inline chint16 GetPort() { return m_sPort; }
		inline const ChWorldType& GetType() { return m_type; }
		inline ChLoginType GetLoginType() { return m_loginType; }
		inline const string& GetUsername() { return m_strUsername; }
		inline const string& GetPassword() { return m_strPassword; }
		inline const string& GetHomePage() { return m_strHomePage; }

											// Dialog Data
		//{{AFX_DATA(ChWorldListDlg)
		enum { IDD = IDD_WORLD_LIST };
		CButton	m_btnAdd;
		CButton	m_btnEdit;
		CButton	m_btnDelete;
		CButton	m_btnConnect;
		CListBox	m_listWorlds;
		//}}AFX_DATA
											/* ClassWizard generated virtual
												function overrides */
		//{{AFX_VIRTUAL(ChWorldListDlg)
		protected:
		virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
		//}}AFX_VIRTUAL

	protected:
		void Add( bool boolChange, const string& strName,
					const string& strDesc, const string& strHost,
					chint16 sPort, const ChWorldType& type,
					ChLoginType login, const string& strUsername,
					const string& strPassword, const string& strHomePage );

		void UpdateButtons();

		void InstallWorldList();
		int AddNameToList( const string& strName, const string& strUsername );
		void ExtractName( const string& strListEntry, string& strName,
							string& strUsername );
		void CreateShortcut();
		bool SyncDataFields();
		ChWorldInfo* GetCurrInfo();
		void Delete( int iIndex );

	protected:
											// Generated message map functions
		//{{AFX_MSG(ChWorldListDlg)
		afx_msg void OnListAdd();
		virtual BOOL OnInitDialog();
		afx_msg void OnSelchangeWorldList();
		afx_msg void OnListDelete();
		afx_msg void OnListConnect();
		virtual void OnOK();
		afx_msg void OnListEdit();
		afx_msg void OnListCreateShortcut();
		//}}AFX_MSG

		DECLARE_MESSAGE_MAP()

	protected:
		ChCore*		m_pCore;
		bool		m_boolConnected;
		ChWorldList	m_worldList;

		string		m_strName;
		string		m_strDesc;
		string		m_strHost;
		string		m_strAddr;
		chint16		m_sPort;
		ChWorldType	m_type;
		ChLoginType	m_loginType;
		string		m_strUsername;
		string		m_strPassword;
		string		m_strHomePage;
};


/*----------------------------------------------------------------------------
	ChWorldListDlg class
----------------------------------------------------------------------------*/

class ChWorldListEdit : public CDialog
{
	public:
		ChWorldListEdit( CWnd* pParent = 0 );
		ChWorldListEdit( const string& strName, const string& strDesc,
							const string& strHost, chint16 sPort,
							ChWorldType type, ChLoginType loginType,
							const string& strUsername,
							const string& strPassword,
							const string& strHomePage, CWnd* pParent = 0 );

		inline bool IsNew() { return m_boolNew; }
		inline const string& GetName() { return m_strName; }
		inline const string& GetDesc() { return m_strDesc; }
		inline const string& GetHost() { return m_strHost; }
		inline chint16 GetPort() { return m_sPort; }
		inline const ChWorldType& GetType() { return m_type; }
		inline const string& GetUsername() { return m_strUsername; }
		inline const string& GetPassword() { return m_strPassword; }
		inline const string& GetHomePage() { return m_strHomePage; }
		inline ChLoginType GetLoginType() { return m_loginType; }

		void UpdateButtons();
		void UpdateWarningMessage();

		void RemoveIllegalChars( CEdit& edit );
											// Dialog Data
		//{{AFX_DATA(ChWorldListEdit)
		enum { IDD = IDD_WORLD_LIST_EDIT };
		CEdit	m_editHomePage;
		CButton	m_radioMudLogin;
		CButton	m_radioConnectLogin;
		CComboBox	m_comboTypes;
		CStatic	m_staticMessage;
		CEdit	m_editUsername;
		CEdit	m_editPassword;
		CButton	m_btnOkay;
		CEdit	m_editPort;
		CEdit	m_editName;
		CEdit	m_editHost;
		CEdit	m_editDesc;
		CString	m_strName;
		CString	m_strType;
		CString	m_strDesc;
		CString	m_strHost;
		int		m_sPort;
		CString	m_strUsername;
		CString	m_strPassword;
		int		m_iLoginStyle;
		CString	m_strHomePage;
		//}}AFX_DATA
											/* ClassWizard generated virtual
												function overrides */
		//{{AFX_VIRTUAL(ChWorldListEdit)
		protected:
		virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
		//}}AFX_VIRTUAL

	protected:
											// Generated message map functions
		//{{AFX_MSG(ChWorldListEdit)
		afx_msg void OnChangeListName();
		afx_msg void OnChangeListHost();
		afx_msg void OnChangeListPort();
		afx_msg void OnSelchangeListType();
		virtual BOOL OnInitDialog();
		afx_msg void OnChangeListPassword();
		afx_msg void OnChangeListUsername();
		afx_msg void OnRadioLoginConnect();
		afx_msg void OnRadioLoginMud();
	afx_msg void OnUpdateListName();
	afx_msg void OnUpdateListUsername();
	//}}AFX_MSG

		DECLARE_MESSAGE_MAP()

	protected:
		bool		m_boolNew;
		ChWorldType	m_type;
		ChLoginType	m_loginType;
};


#endif	// !defined( _CHWLISTD_H )

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产欧美在线人成| 亚洲日本免费电影| 欧美亚洲免费在线一区| 国产suv精品一区二区三区| 日韩精品电影在线| 日韩和欧美一区二区三区| 亚洲成av人片在www色猫咪| 亚洲人成亚洲人成在线观看图片| 久久一日本道色综合| 日韩视频在线你懂得| 欧美本精品男人aⅴ天堂| 欧美精品 国产精品| 9191成人精品久久| 欧美一区二区福利在线| 精品不卡在线视频| 久久久久久久久久久黄色| 欧美激情在线一区二区| 国产精品久久二区二区| 亚洲视频一区二区在线| 一个色综合网站| 爽爽淫人综合网网站| 久久99深爱久久99精品| 懂色av噜噜一区二区三区av| voyeur盗摄精品| 日本韩国精品一区二区在线观看| 欧美日韩高清一区二区三区| 91麻豆精品91久久久久同性| 久久综合色播五月| 国产精品久久精品日日| 亚洲国产精品自拍| 久久福利视频一区二区| 国产白丝网站精品污在线入口| 色婷婷久久一区二区三区麻豆| 欧美精品aⅴ在线视频| 国产亚洲美州欧州综合国| 一区在线中文字幕| 日韩激情中文字幕| 成人午夜激情片| 色视频欧美一区二区三区| 精品制服美女丁香| 国产一区二区三区免费| 成人在线视频一区二区| 欧美日韩你懂的| 精品国产一二三区| 一区二区三区四区精品在线视频| 全部av―极品视觉盛宴亚洲| 国产高清视频一区| 欧美色图激情小说| 国产午夜久久久久| 调教+趴+乳夹+国产+精品| 国产高清精品久久久久| 欧美日韩1区2区| 国产精品毛片无遮挡高清| 日本成人在线网站| 99久久亚洲一区二区三区青草| 91精品免费在线观看| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 男女激情视频一区| 色88888久久久久久影院野外| www国产精品av| 亚洲成av人片在www色猫咪| 成人午夜av影视| 日韩女优电影在线观看| 亚洲成人免费在线| 99精品偷自拍| 中文字幕一区二区5566日韩| 久久99蜜桃精品| 91精品国产高清一区二区三区蜜臀 | 国产视频一区二区在线观看| 午夜不卡在线视频| 欧美亚洲综合久久| 亚洲三级电影网站| www.av亚洲| 国产精品美女www爽爽爽| 国产精品一区专区| 久久网站热最新地址| 毛片av一区二区三区| 欧美丰满少妇xxxbbb| 亚洲午夜久久久久久久久久久| 91免费视频网| 成人欧美一区二区三区1314| 99久久综合国产精品| 亚洲欧洲国产专区| 91麻豆精品在线观看| 专区另类欧美日韩| 色呦呦网站一区| 亚洲精品国产a| 在线观看视频欧美| 性感美女久久精品| 日韩一区二区在线观看| 久久99国产精品尤物| 久久亚洲一级片| caoporm超碰国产精品| 自拍偷拍亚洲欧美日韩| 在线免费一区三区| 肉肉av福利一精品导航| 日韩一区二区三区视频在线| 青青草国产精品97视觉盛宴| 色悠久久久久综合欧美99| 欧美国产日韩一二三区| 成人中文字幕电影| 国产精品久久久久久福利一牛影视| 一本色道久久综合精品竹菊| 亚洲欧美日韩国产综合在线 | av高清不卡在线| 欧美极品少妇xxxxⅹ高跟鞋| 国产精品一区免费在线观看| 久久精品无码一区二区三区| 麻豆国产欧美日韩综合精品二区 | 国产精品不卡视频| 风间由美性色一区二区三区| 中文字幕欧美日本乱码一线二线| 国产真实精品久久二三区| 中文字幕免费观看一区| 99久久伊人精品| 亚洲一区二区三区中文字幕在线| 午夜视黄欧洲亚洲| 日韩一区二区三区在线视频| 99精品在线观看视频| 亚洲电影一区二区| 日韩一卡二卡三卡| 国产成人av网站| 中文字幕一区二区不卡| 在线国产亚洲欧美| 粉嫩嫩av羞羞动漫久久久 | 欧美大片日本大片免费观看| 国内精品伊人久久久久av一坑 | 久久精品一区蜜桃臀影院| 国产99久久久久久免费看农村| 中文字幕一区二区三区在线观看| 91福利国产成人精品照片| 日韩高清在线不卡| 国产亚洲欧美在线| 欧美第一区第二区| 99国产精品久久久久久久久久| 一区二区三区日韩欧美精品| 欧美一级淫片007| 成人高清在线视频| 首页国产欧美日韩丝袜| 亚洲免费观看在线观看| 日韩美女主播在线视频一区二区三区| 国产精品12区| 日韩综合一区二区| 17c精品麻豆一区二区免费| 欧美日韩国产三级| 奇米影视一区二区三区小说| 午夜电影一区二区三区| 国产精品福利一区二区三区| 日韩欧美一卡二卡| 一本色道久久综合亚洲精品按摩| 精品一区二区三区香蕉蜜桃 | 丰满少妇在线播放bd日韩电影| 亚洲一区二区av电影| 国产丝袜欧美中文另类| 欧美高清性hdvideosex| a在线播放不卡| 成人一区二区三区| 麻豆91在线播放免费| 亚洲综合成人网| 亚洲三级免费观看| 国产精品久久久久久久久动漫 | 一个色在线综合| 亚洲国产精品成人综合色在线婷婷| 欧美一区二区视频在线观看2022| 国产精品白丝av| 成人av在线资源网站| 国产一区二区三区四区五区入口| 日韩电影在线观看电影| 亚洲一区二区偷拍精品| 亚洲黄网站在线观看| 中文字幕一区日韩精品欧美| 亚洲综合在线五月| 亚洲综合色视频| 一区二区三区在线看| 亚洲精品中文字幕在线观看| 亚洲欧美色一区| 石原莉奈在线亚洲二区| 亚洲成va人在线观看| 亚洲欧美电影院| 一区二区三区精品久久久| 一区二区三区在线免费播放| 亚洲资源在线观看| 亚洲综合图片区| 国产精品白丝在线| 日韩国产欧美视频| 美女视频黄 久久| 久久成人18免费观看| 精品一区二区精品| 国产盗摄视频一区二区三区| 丁香另类激情小说| 国产v综合v亚洲欧| 在线不卡欧美精品一区二区三区| 欧美伦理电影网| 欧美一区二区三区免费视频| 日韩一区二区电影网| 久久综合久久综合久久| 一区二区三区在线免费视频| 日韩精品色哟哟| 国产v综合v亚洲欧| 欧美在线你懂得|