home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / msmqocm.cab / DRAWDLG.H < prev    next >
C/C++ Source or Header  |  1997-10-06  |  1KB  |  55 lines

  1. // drawdlg.h : header file
  2. //
  3.  
  4. #include "drawarea.h"
  5.  
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CDisdrawDlg dialog
  8.  
  9. class CDisdrawDlg : public CDialog
  10. {
  11. // Construction
  12. public:
  13.     CDisdrawDlg(CWnd* pParent = NULL);    // standard constructor
  14.  
  15.     void SendMouseMovement(LINE lineNew);
  16.     void SendKeystroke(UINT uChar);
  17.  
  18. // Data
  19.     CString m_strLogin;
  20.     HANDLE m_hqIncoming;
  21.     HANDLE m_hqOutgoing;
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CDisdrawDlg)
  25.     enum { IDD = IDD_DISDRAW_DIALOG };
  26.     CDrawArea    m_drawScribble;
  27.     CButton    m_btnAttach;
  28.     CString    m_strFriend;
  29.     int        m_iDelivery;
  30.     //}}AFX_DATA
  31.  
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CDisdrawDlg)
  34.     protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.     HICON m_hIcon;
  41.  
  42.     BOOL OpenReceiveQueue();
  43.  
  44.     // Generated message map functions
  45.     //{{AFX_MSG(CDisdrawDlg)
  46.     virtual BOOL OnInitDialog();
  47.     afx_msg void OnPaint();
  48.     afx_msg HCURSOR OnQueryDragIcon();
  49.     afx_msg void OnButtonAttach();
  50.     afx_msg void OnChangeEditFriend();
  51.     afx_msg void OnClose();
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.