142 lines
3.1 KiB
C++
142 lines
3.1 KiB
C++
// SendMDlg.h : header file
|
|
//
|
|
//=--------------------------------------------------------------------------=
|
|
// Copyright 1997-1999 Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
// PARTICULAR PURPOSE.
|
|
//=--------------------------------------------------------------------------=
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSendMessageDialog dialog
|
|
|
|
class CSendMessageDialog : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CSendMessageDialog(CArray <ARRAYQ*, ARRAYQ*>*, CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CSendMessageDialog)
|
|
enum { IDD = IDD_SEND_MESSAGE_DIALOG };
|
|
CComboBox m_AdminPathNameCB;
|
|
CComboBox m_PathNameCB;
|
|
CString m_strBody;
|
|
CString m_strLabel;
|
|
BYTE m_bPriority;
|
|
int m_iAck;
|
|
int m_iDelivery;
|
|
CString m_szPathName;
|
|
CString m_szAdminPathName;
|
|
BOOL m_Journal;
|
|
BOOL m_DeadLetter;
|
|
BOOL m_Authenticated;
|
|
BOOL m_Encrypted;
|
|
long m_dwTimeToReachQueue;
|
|
long m_dwTimeToBeReceived;
|
|
//}}AFX_DATA
|
|
|
|
/* pointer to the array with the strings for the combo box (Queues PathName). */
|
|
CArray <ARRAYQ*, ARRAYQ*>* m_pStrArray ;
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CSendMessageDialog)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CSendMessageDialog)
|
|
virtual BOOL OnInitDialog();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
public:
|
|
void GetPathName(TCHAR szPathName[BUFFERSIZE])
|
|
{
|
|
_tcscpy (szPathName, m_szPathName);
|
|
}
|
|
|
|
|
|
void GetAdminPathName(TCHAR szAdminPathName[BUFFERSIZE])
|
|
{
|
|
_tcscpy (szAdminPathName, m_szAdminPathName);
|
|
}
|
|
|
|
unsigned char GetDelivery()
|
|
{
|
|
return (m_iDelivery);
|
|
}
|
|
|
|
unsigned char GetJournal()
|
|
{
|
|
return (m_Journal);
|
|
}
|
|
|
|
unsigned char GetDeadLetter()
|
|
{
|
|
return (m_DeadLetter);
|
|
}
|
|
|
|
unsigned char GetAuthenticated()
|
|
{
|
|
return (m_Authenticated);
|
|
}
|
|
|
|
unsigned char GetEncrypted()
|
|
{
|
|
return (m_Encrypted);
|
|
}
|
|
|
|
unsigned char GetPriority()
|
|
{
|
|
return (m_bPriority);
|
|
}
|
|
|
|
unsigned char GetAcknowledge()
|
|
{
|
|
switch (m_iAck)
|
|
{
|
|
case 1 : return MQMSG_ACKNOWLEDGMENT_FULL_REACH_QUEUE;
|
|
case 2 : return MQMSG_ACKNOWLEDGMENT_FULL_RECEIVE;
|
|
case 3 : return MQMSG_ACKNOWLEDGMENT_NACK_REACH_QUEUE;
|
|
case 4 : return MQMSG_ACKNOWLEDGMENT_NACK_RECEIVE;
|
|
default: return MQMSG_ACKNOWLEDGMENT_NONE;
|
|
}
|
|
}
|
|
|
|
void GetMessageBody(TCHAR* pszMessageBodyBuffer)
|
|
{
|
|
_tcsncpy (pszMessageBodyBuffer, m_strBody, BUFFERSIZE);
|
|
}
|
|
|
|
void GetMessageLabel(TCHAR szMessageLabelBuffer[BUFFERSIZE])
|
|
{
|
|
_tcsncpy (szMessageLabelBuffer, m_strLabel, BUFFERSIZE);
|
|
}
|
|
|
|
DWORD GetTimeToReachQueue()
|
|
{
|
|
return (m_dwTimeToReachQueue);
|
|
}
|
|
|
|
DWORD GetTimeToBeReceived()
|
|
{
|
|
return (m_dwTimeToBeReceived);
|
|
}
|
|
|
|
};
|
|
|
|
//
|
|
// Two buffers to hold the last message label and body.
|
|
//
|
|
extern TCHAR szLastMessageLabel[BUFFERSIZE];
|
|
extern TCHAR szLastMessageBody[BUFFERSIZE];
|