InputBox.h
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:5k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2001,2002,2003 Mike Matsnev.  All Rights Reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  *
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice immediately at the beginning of the file, without modification,
  10.  *    this list of conditions, and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. Absolutely no warranty of function or purpose is made by the author
  15.  *    Mike Matsnev.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  20.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  * 
  28.  * $Id: InputBox.h,v 1.9.2.1 2003/04/12 22:52:32 mike Exp $
  29.  * 
  30.  */
  31. #if !defined(AFX_FINDDLG_H__09B31140_5147_46BC_8900_1BA21CA1C569__INCLUDED_)
  32. #define AFX_FINDDLG_H__09B31140_5147_46BC_8900_1BA21CA1C569__INCLUDED_
  33. #if _MSC_VER >= 1000
  34. #pragma once
  35. #endif // _MSC_VER >= 1000
  36. // InputBox.h : header file
  37. //
  38. /////////////////////////////////////////////////////////////////////////////
  39. // InputBox dialog
  40. class InputBox : public CDialog
  41. {
  42. // Construction
  43. public:
  44.   InputBox(const CString& prompt,const CString& title,
  45.       CWnd* pParent = NULL);   // standard constructor
  46.   
  47.   // Dialog Data
  48.   //{{AFX_DATA(InputBox)
  49.   enum { IDD = IDD_FIND };
  50.   CString m_str;
  51.   //}}AFX_DATA
  52.   
  53.   
  54.   // Overrides
  55.   // ClassWizard generated virtual function overrides
  56.   //{{AFX_VIRTUAL(InputBox)
  57. protected:
  58.   virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  59.   //}}AFX_VIRTUAL
  60.   
  61.   // Implementation
  62. protected:
  63.   CString m_prompt,m_title;
  64.   // Generated message map functions
  65.   //{{AFX_MSG(InputBox)
  66.   virtual BOOL OnInitDialog();
  67.   afx_msg void OnWordSetFocus();
  68.   afx_msg void OnWordKillFocus();
  69.   //}}AFX_MSG
  70.   afx_msg void OnSettingChange(UINT uFlags,LPCTSTR lpszSection);
  71.   DECLARE_MESSAGE_MAP()
  72. };
  73. bool GetUserInput(const CString& prompt,const CString& title,
  74.      CString& def,CWnd *parent);
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CAddBmDialog dialog
  77. class CAddBmDialog : public CDialog
  78. {
  79.   // Construction
  80. public:
  81.   CAddBmDialog(CWnd* pParent = NULL);   // standard constructor
  82.   
  83.   // Dialog Data
  84.   //{{AFX_DATA(CAddBmDialog)
  85.   enum { IDD = IDD_ADDBMK };
  86.   CString     m_text;
  87.   //}}AFX_DATA
  88.   
  89.   // Overrides
  90.   // ClassWizard generated virtual function overrides
  91.   //{{AFX_VIRTUAL(CAddBmDialog)
  92. protected:
  93.   virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  94.   //}}AFX_VIRTUAL
  95.   
  96.   // Implementation
  97. protected:
  98.   // Generated message map functions
  99.   //{{AFX_MSG(CAddBmDialog)
  100.   afx_msg void OnSetfocusBmkedit();
  101.   afx_msg void OnKillfocusBmkedit();
  102. afx_msg void OnSize(UINT nType, int cx, int cy);
  103. virtual BOOL OnInitDialog();
  104. //}}AFX_MSG
  105.   DECLARE_MESSAGE_MAP()
  106. };
  107. /////////////////////////////////////////////////////////////////////////////
  108. // CFindDlg dialog
  109. class CFindDlg : public CDialog
  110. {
  111.   // Construction
  112. public:
  113.   CFindDlg(CWnd* pParent = NULL);   // standard constructor
  114.   
  115.   // Dialog Data
  116.   //{{AFX_DATA(CFindDlg)
  117.   enum { IDD = IDD_FINDDLG };
  118.   CString   m_text;
  119.   BOOL     m_matchcase;
  120.   //}}AFX_DATA
  121.   
  122.   
  123.   // Overrides
  124.   // ClassWizard generated virtual function overrides
  125.   //{{AFX_VIRTUAL(CFindDlg)
  126. protected:
  127.   virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  128.   //}}AFX_VIRTUAL
  129.   
  130.   // Implementation
  131. protected:
  132.   
  133.   // Generated message map functions
  134.   //{{AFX_MSG(CFindDlg)
  135. afx_msg void OnSetfocusFindtext();
  136. afx_msg void OnKillfocusFindtext();
  137. virtual BOOL OnInitDialog();
  138. //}}AFX_MSG
  139.   DECLARE_MESSAGE_MAP()
  140. };
  141. //{{AFX_INSERT_LOCATION}}
  142. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  143. #endif // !defined(AFX_FINDDLG_H__09B31140_5147_46BC_8900_1BA21CA1C569__INCLUDED_)