Click here to Skip to main content
15,892,643 members
Articles / Desktop Programming / MFC

The ALXGrid Control Library.

Rate me:
Please Sign up or sign in to vote.
5.00/5 (29 votes)
10 Nov 20021 min read 201.1K   5.5K   85  
The ALXGrid Control Library is a set of classes for management of data as a table.
// GridCtrl.h : interface of the CGridCtrl class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_GRIDCTRL_H_INCLUDED_)
#define AFX_GRIDCTRL_H_INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "Grid.h"
#include "XGridCtrl.h"

typedef struct Reestr
{
	COleCurrency m_Dedet;
	COleCurrency m_Credit;
} RECORD_INFO;

/////////////////////////////////////////////////////////////////////////////
// CGridCtrl

class CGridCtrl : public CXGridCtrl
{
public:
// Construction/destruction
	DECLARE_DYNCREATE(CGridCtrl)

	CGridCtrl();
	~CGridCtrl();

	CArray < RECORD_INFO, RECORD_INFO& > m_RowInfo;

// Attributes
private:
    CSize       m_LogicalPageSize,      // Page size in gridctrl units.
                m_PaperSize;            // Page size in device units.

	int m_nRowInPage;
	int m_nPageWight;
	int m_nPageHight;

// Operations
private:
	// �������������� ����������� ������� ������ CXGridCtrl
	virtual CELL_DATA GetCellData(int nCol, int nRow);
	virtual BOOL OnSaveCellData(int nCol, int nRow);

	// ������� ��� ������
	void PrintHead(CDC* pDC, CPrintInfo* pInfo);						// ������ ��������� �������
	void PrintGridPage(CDC* pDC, CPrintInfo* pInfo);					// ������ ��� ����� ����� �� �������� 
	void PrintHeadCell(CDC* pDC, int nCol, int nRow, int x, int y);		// ������ ������ ���������
	void PrintGridCell(CDC* pDC, int nCol, int nRow, int x, int y);		// ������ ������ �����
	void PrintText(CDC* pDC, CString& str, CRect& rect, UINT nFormat );	// ������ ������ � ������
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CGridCtrl)
	//}}AFX_VIRTUAL

// Implementation
public:
	void Print();

protected:
	BOOL DoPreparePrinting(CPrintInfo* pInfo);

	virtual void OnPrepareDC(CDC* pDC, CPrintInfo* pInfo = NULL);
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
    virtual void OnBeginPrinting(CDC *pDC, CPrintInfo *pInfo);
    virtual void OnPrint(CDC *pDC, CPrintInfo *pInfo);
    virtual void OnEndPrinting(CDC *pDC, CPrintInfo *pInfo);
	// Generated message map functions
protected:

	//{{AFX_MSG(CGridCtrl)
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_GRIDCTRL_H_INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Russian Federation Russian Federation
Year of birth - 1974.
Eeducation - was ended by Kaliningrad State University in 1997.
Now I work as the engineer-programmer in Kaliningrad (RUSSIA).

Comments and Discussions