home *** CD-ROM | disk | FTP | other *** search
/ Tech Win 1999 February / TECH Win 02-1999 Disc A.iso / ols / lzh / csend1_s.lzh / csend / csendDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-05  |  1.5 KB  |  58 lines

  1. // csendDlg.h : ヘッダー ファイル
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CCsendDlg dialog
  6.  
  7. class CCsendDlg : public CDialog
  8. {
  9. // 構築
  10. public:
  11.     CCsendDlg(CWnd* pParent = NULL);    // 標準のコンストラクタ
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CCsendDlg)
  15.     enum { IDD = IDD_CSEND_DIALOG };
  16.     CListBox    m_CList;
  17.     //}}AFX_DATA
  18.  
  19.     // ClassWizard は仮想関数を生成しオーバーライドします。
  20.     //{{AFX_VIRTUAL(CCsendDlg)
  21.     protected:
  22.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV のサポート
  23.     //}}AFX_VIRTUAL
  24.  
  25. // インプリメンテーション
  26. protected:
  27.     void ChangeMessage( void );
  28.     void DeleteString(void);
  29.     void SendClipBoard( CString& text );
  30.     HICON m_hIcon;
  31.  
  32.     // 生成されたメッセージ マップ関数
  33.     //{{AFX_MSG(CCsendDlg)
  34.     virtual BOOL OnInitDialog();
  35.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  36.     afx_msg void OnPaint();
  37.     afx_msg HCURSOR OnQueryDragIcon();
  38.     afx_msg void OnSelchangeClist();
  39.     afx_msg void OnSize(UINT nType, int cx, int cy);
  40.     afx_msg void OnDblclkClist();
  41.     afx_msg void OnClose();
  42.     virtual void OnOK();
  43.     virtual void OnCancel();
  44.     afx_msg void OnDestroy();
  45.     afx_msg LRESULT OnNotifyIconIvents( WPARAM wParam, LPARAM lParam );
  46.     afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  47.     afx_msg void OnAddstring();
  48.     afx_msg void OnChange();
  49.     afx_msg void OnDeletestring();
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. private:
  53.     NOTIFYICONDATA m_stNtfyIcon;
  54.     RECT rect;
  55.     CString m_SelText;
  56. };
  57.  
  58.