📄 cdlginput1.h
字号:
// $Id: CDlgInput1.h,v 1.6 2003/09/19 16:41:16 genta Exp $
/*! @file
@brief 1行入力ダイアログボックス
@author Norio Nakatani
@date 1998/05/31 作成
$Revision: 1.6 $
*/
/*
Copyright (C) 1998-2001, Norio Nakatani
This source code is designed for sakura editor.
Please contact the copyright holder to use this code for other purpose.
*/
class CDlgInput1;
#ifndef _CDLGINPUT1_H_
#define _CDLGINPUT1_H_
#include <windows.h>
#include "CMemory.h"
/*-----------------------------------------------------------------------
クラスの宣言
-----------------------------------------------------------------------*/
/*!
@brief 1行入力ダイアログボックス
*/
class CDlgInput1
{
public:
/*
|| Constructors
*/
CDlgInput1();
~CDlgInput1();
BOOL DoModal( HINSTANCE , HWND , const char* , const char* , int , char* ); /* モードレスダイアログの表示 */
/*
|| Attributes & Operations
*/
INT_PTR DispatchEvent( HWND, UINT, WPARAM, LPARAM ); /* ダイアログのメッセージ処理 */
HINSTANCE m_hInstance; /* アプリケーションインスタンスのハンドル */
HWND m_hwndParent; /* オーナーウィンドウのハンドル */
HWND m_hWnd; /* このダイアログのハンドル */
const char* m_pszTitle; /* ダイアログタイトル */
const char* m_pszMessage; /* メッセージ */
int m_nMaxTextLen; /* 入力サイズ上限 */
// char* m_pszText; /* テキスト */
CMemory m_cmemText; /* テキスト */
char m_szHelpFile[_MAX_PATH + 1]; //@@@ 2002.01.07 add
protected:
/*
|| 実装ヘルパ関数
*/
};
///////////////////////////////////////////////////////////////////////
#endif /* _CDLGINPUT1_H_ */
/*[EOF]*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -