123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- // EmployeeMsg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "ylgl.h"
- #include "EmployeeMsg.h"
- #include "MyMdi.H"
- #include "SendMsgDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // EmployeeMsg
- IMPLEMENT_DYNCREATE(EmployeeMsg, MyFormView)
- EmployeeMsg::EmployeeMsg()
- : MyFormView(EmployeeMsg::IDD)
- {
- //{{AFX_DATA_INIT(EmployeeMsg)
- //}}AFX_DATA_INIT
- }
- EmployeeMsg::~EmployeeMsg()
- {
- }
- void EmployeeMsg::DoDataExchange(CDataExchange* pDX)
- {
- MyFormView::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(EmployeeMsg)
- DDX_Control(pDX, IDC_LIST2, m_List1);
- DDX_Control(pDX, IDC_STATIC1, m_static1);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(EmployeeMsg, MyFormView)
- //{{AFX_MSG_MAP(EmployeeMsg)
- ON_BN_CLICKED(IDC_BUTclose, OnBUTclose)
- ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
- ON_BN_CLICKED(IDC_BUTTON3, OnButton3)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // EmployeeMsg diagnostics
- #ifdef _DEBUG
- void EmployeeMsg::AssertValid() const
- {
- MyFormView::AssertValid();
- }
- void EmployeeMsg::Dump(CDumpContext& dc) const
- {
- MyFormView::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // EmployeeMsg message handlers
- void EmployeeMsg::OnInitialUpdate()
- {
- MyFormView::OnInitialUpdate();
- // TODO: Add your specialized code here and/or call the base class
- CMyMdi Mdi;
- Mdi.SetSubView((CWnd*)GetParent(), (CWnd*)this);
- // Here we create the outbar control using the splitter as its parent
- // and setting its id to the first pane.
- CRect rc2;
- GetWindowRect(rc2);
- ::MoveWindow(m_hWnd, g_rc.left, g_rc.top, g_rc.Width(), g_rc.Height(), TRUE);
- EnumChildWindows(m_hWnd, (WNDENUMPROC)EnumChildProc, 0);
- m_static1.SetFont(&g_titlefont);
- m_List1.SetHeadings("编号, 100;姓名, 100;部门, 100;性别, 100;电话, 200;地址, 200");
- m_List1.LoadColumnInfo(137);
- g_sendhead.bsql = 0;
- g_sendhead.code[0] = 3;
- g_sendhead.tabcount = 1;
- g_pMainWnd->ProcessChatMessageRequest2(3); if (g_bSendOK == 0)return;
- DataToArray(&g_List1array);
- FillGrid();
- }
- void EmployeeMsg::FillGrid()
- {
- m_List1.DeleteAllItems2();
- int ii = 0;
- m_List1.m_arLabels.SetSize(g_userarray.GetSize(), 1);
- int count = 0;
- for (ii = 0; ii < m_List1.m_arLabels.GetSize(); ii++)
- {
- m_List1.m_arLabels.ElementAt(count++).Copy(g_userarray.ElementAt(ii));
- }
- m_List1.m_arLabels.SetSize(count, 1);
- ii = count;
- m_List1.m_LabelCount = ii;
- m_List1.SetItemCountEx(ii);
- }
- void EmployeeMsg::OnBUTclose()
- {
- // TODO: Add your control notification handler code here
- GetParent()->SendMessage(WM_CLOSE);
- }
- BOOL EmployeeMsg::PreTranslateMessage(MSG* pMsg)
- {
- // TODO: Add your specialized code here and/or call the base class
- try
- {
- if (pMsg->message == WM_KEYDOWN)
- {
- switch (pMsg->wParam)
- {
- case 0x43: // copy
- if ((GetKeyState(VK_CONTROL) & 0x80))
- {
- GetFocus()->SendMessage(WM_COPY);
- return TRUE;
- }
- break;
- case 0x56: //Ctrl + V:
- if ((GetKeyState(VK_CONTROL) & 0x80))
- {
- GetFocus()->SendMessage(WM_PASTE);
- return TRUE;
- }
- break;
- case 0x58: // cut
- if ((GetKeyState(VK_CONTROL) & 0x80))
- {
- GetFocus()->SendMessage(WM_CUT);
- return TRUE;
- }
- break;
- case 0x5A: //undo
- case 0x59: //redo
- if ((GetKeyState(VK_CONTROL) & 0x80))
- {
- GetFocus()->SendMessage(WM_UNDO);
- return TRUE;
- }
- break;
- }
- }
- return MyFormView::PreTranslateMessage(pMsg);
- }
- catch (...)
- {
- }
- return TRUE;
- }
- void EmployeeMsg::OnButton2() // 发送消息
- {
- // TODO: Add your control notification handler code here
- POSITION pos;
- pos = m_List1.GetFirstSelectedItemPosition();
- if (pos == NULL)
- {
- AfxMessageBox("请先选中您要发送短信的员工!", MB_ICONINFORMATION);
- return;
- }
- int iItem;
- CStringArray array;
- while (pos)
- {
- iItem = m_List1.GetNextSelectedItem(pos);
- if (!m_List1.GetItemText(iItem, 4).IsEmpty())
- array.Add(m_List1.GetItemText(iItem, 4));
- }
- SendMsgDlg dlg;
- dlg.m_mode = 1;
- dlg.m_pArray = &array;
- dlg.DoModal();
- }
- void EmployeeMsg::OnButton3()
- {
- // TODO: Add your control notification handler code here
- for (int i = 0; i < m_List1.GetItemCount(); i++)
- m_List1.SetItemState(i, LVIS_SELECTED, LVIS_SELECTED);
- }
|