LISTCONTROLDlg.cpp
上传用户:z_mail1980
上传日期:2007-06-01
资源大小:647k
文件大小:7k
- // LISTCONTROLDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "LISTCONTROL.h"
- #include "LISTCONTROLDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CAboutDlg dialog used for App About
- SPS Sps[]={
- {"红梅",0,"1000","30","30000"},
- {"黄梅",0,"1000","29","29000"},
- {"绿梅",0,"1000","28","28000"},
- {"青梅",0,"1000","27","27000"},
- {"白梅",0,"1000","31","31000"},
- {"红梅",1,"1000","30","30000"},
- {"黄梅",1,"1000","29","29000"},
- {"绿梅",1,"1000","28","28000"},
- {"青梅",1,"1000","27","27000"},
- {"白梅",1,"1000","31","31000"}
- };
- CImageList Cil1,Cil2;
- class CAboutDlg : public CDialog
- {
- public:
- CAboutDlg();
- // Dialog Data
- //{{AFX_DATA(CAboutDlg)
- enum { IDD = IDD_ABOUTBOX };
- //}}AFX_DATA
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CAboutDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- //{{AFX_MSG(CAboutDlg)
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
- {
- //{{AFX_DATA_INIT(CAboutDlg)
- //}}AFX_DATA_INIT
- }
- void CAboutDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CAboutDlg)
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
- //{{AFX_MSG_MAP(CAboutDlg)
- // No message handlers
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CLISTCONTROLDlg dialog
- CLISTCONTROLDlg::CLISTCONTROLDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CLISTCONTROLDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CLISTCONTROLDlg)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
- m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
- }
- void CLISTCONTROLDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CLISTCONTROLDlg)
- DDX_Control(pDX, IDC_LISTCTRL, m_ListCtrl);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CLISTCONTROLDlg, CDialog)
- //{{AFX_MSG_MAP(CLISTCONTROLDlg)
- ON_WM_SYSCOMMAND()
- ON_WM_PAINT()
- ON_WM_QUERYDRAGICON()
- ON_BN_CLICKED(IDC_STDICON, OnStdicon)
- ON_BN_CLICKED(IDC_SMLICON, OnSmlicon)
- ON_BN_CLICKED(IDC_LIST, OnList)
- ON_BN_CLICKED(IDC_REPORT, OnReport)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CLISTCONTROLDlg message handlers
- BOOL CLISTCONTROLDlg::OnInitDialog()
- {
- CDialog::OnInitDialog();
- // Add "About..." menu item to system menu.
- // IDM_ABOUTBOX must be in the system command range.
- ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
- ASSERT(IDM_ABOUTBOX < 0xF000);
- CMenu* pSysMenu = GetSystemMenu(FALSE);
- if (pSysMenu != NULL)
- {
- CString strAboutMenu;
- strAboutMenu.LoadString(IDS_ABOUTBOX);
- if (!strAboutMenu.IsEmpty())
- {
- pSysMenu->AppendMenu(MF_SEPARATOR);
- pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
- }
- }
- // Set the icon for this dialog. The framework does this automatically
- // when the application's main window is not a dialog
- SetIcon(m_hIcon, TRUE); // Set big icon
- SetIcon(m_hIcon, FALSE); // Set small icon
-
- // TODO: Add extra initialization here
- LV_ITEM lvitem;
- LV_COLUMN lvcol;
- int i,iPos,iItemNum;
- CLISTCONTROLApp *pApp=(CLISTCONTROLApp *)AfxGetApp();
- Cil1.Create(32,32,TRUE,2,2);
- Cil1.Add(pApp->LoadIcon(IDI_GJ));
- Cil1.Add(pApp->LoadIcon(IDI_XS));
- Cil2.Create(16,16,TRUE,2,2);
- Cil2.Add(pApp->LoadIcon(IDI_GJ));
- Cil2.Add(pApp->LoadIcon(IDI_XS));
- m_ListCtrl.SetImageList(&Cil1,LVSIL_NORMAL);
- m_ListCtrl.SetImageList(&Cil2,LVSIL_SMALL);
- lvcol.mask=LVCF_FMT|LVCF_SUBITEM|LVCF_TEXT|LVCF_WIDTH;
- lvcol.fmt=LVCFMT_CENTER;
- i=0;
- lvcol.pszText="品名";
- lvcol.iSubItem=i;
- lvcol.cx=70;
- m_ListCtrl.InsertColumn(i++,&lvcol);
- lvcol.pszText="数量";
- lvcol.iSubItem=i;
- lvcol.cx=70;
- m_ListCtrl.InsertColumn(i++,&lvcol);
- lvcol.pszText="单价";
- lvcol.iSubItem=i;
- lvcol.cx=70;
- m_ListCtrl.InsertColumn(i++,&lvcol);
- lvcol.pszText="金额";
- lvcol.iSubItem=i;
- lvcol.cx=70;
- m_ListCtrl.InsertColumn(i++,&lvcol);
- iItemNum=sizeof(Sps)/sizeof(SPS);
- for(i=0;i<iItemNum;i++)
- {
- lvitem.mask=LVIF_TEXT|LVIF_IMAGE|LVIF_PARAM;
- lvitem.iItem=i;
- lvitem.iSubItem=0;
- lvitem.pszText=Sps[i].szPm;
- lvitem.iImage=Sps[i].Lx;
- iPos=m_ListCtrl.InsertItem(&lvitem);
- lvitem.mask=LVIF_TEXT;
- lvitem.iItem=iPos;
- lvitem.iSubItem=1;
- lvitem.pszText=Sps[i].szSl;
- m_ListCtrl.SetItem(&lvitem);
- lvitem.iSubItem=2;
- lvitem.pszText=Sps[i].szDj;
- m_ListCtrl.SetItem(&lvitem);
- lvitem.iSubItem=3;
- lvitem.pszText=Sps[i].szJe;
- m_ListCtrl.SetItem(&lvitem);
- }
- CheckRadioButton(IDC_STDICON,IDC_REPORT,IDC_STDICON);
- return TRUE; // return TRUE unless you set the focus to a control
- }
- void CLISTCONTROLDlg::OnSysCommand(UINT nID, LPARAM lParam)
- {
- if ((nID & 0xFFF0) == IDM_ABOUTBOX)
- {
- CAboutDlg dlgAbout;
- dlgAbout.DoModal();
- }
- else
- {
- CDialog::OnSysCommand(nID, lParam);
- }
- }
- // If you add a minimize button to your dialog, you will need the code below
- // to draw the icon. For MFC applications using the document/view model,
- // this is automatically done for you by the framework.
- void CLISTCONTROLDlg::OnPaint()
- {
- if (IsIconic())
- {
- CPaintDC dc(this); // device context for painting
- SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
- // Center icon in client rectangle
- int cxIcon = GetSystemMetrics(SM_CXICON);
- int cyIcon = GetSystemMetrics(SM_CYICON);
- CRect rect;
- GetClientRect(&rect);
- int x = (rect.Width() - cxIcon + 1) / 2;
- int y = (rect.Height() - cyIcon + 1) / 2;
- // Draw the icon
- dc.DrawIcon(x, y, m_hIcon);
- }
- else
- {
- CDialog::OnPaint();
- }
- }
- // The system calls this to obtain the cursor to display while the user drags
- // the minimized window.
- HCURSOR CLISTCONTROLDlg::OnQueryDragIcon()
- {
- return (HCURSOR) m_hIcon;
- }
- void CLISTCONTROLDlg::OnStdicon()
- {
- // TODO: Add your control notification handler code here
- LONG lStyle;
- lStyle=GetWindowLong(m_ListCtrl.m_hWnd,GWL_STYLE);
- lStyle &=~LVS_TYPEMASK;
- lStyle |=LVS_ICON;
- SetWindowLong(m_ListCtrl.m_hWnd,GWL_STYLE,lStyle);
- }
- void CLISTCONTROLDlg::OnSmlicon()
- {
- // TODO: Add your control notification handler code here
- LONG lStyle;
- lStyle=GetWindowLong(m_ListCtrl.m_hWnd,GWL_STYLE);
- lStyle &=~LVS_TYPEMASK;
- lStyle |=LVS_SMALLICON;
- SetWindowLong(m_ListCtrl.m_hWnd,GWL_STYLE,lStyle);
-
- }
- void CLISTCONTROLDlg::OnList()
- {
- // TODO: Add your control notification handler code here
- LONG lStyle;
- lStyle=GetWindowLong(m_ListCtrl.m_hWnd,GWL_STYLE);
- lStyle &=~LVS_TYPEMASK;
- lStyle |=LVS_LIST;
- SetWindowLong(m_ListCtrl.m_hWnd,GWL_STYLE,lStyle);
- }
- void CLISTCONTROLDlg::OnReport()
- {
- // TODO: Add your control notification handler code here
- LONG lStyle;
- lStyle=GetWindowLong(m_ListCtrl.m_hWnd,GWL_STYLE);
- lStyle &=~LVS_TYPEMASK;
- lStyle |=LVS_REPORT;
- SetWindowLong(m_ListCtrl.m_hWnd,GWL_STYLE,lStyle);
-
-
- }