Click here to Skip to main content
15,886,026 members
Articles / Desktop Programming / MFC

Embeddable script editor for MFC applications

Rate me:
Please Sign up or sign in to vote.
4.90/5 (60 votes)
15 Jul 20032 min read 335.5K   6.4K   130  
A library that allows you to embed scripting functionality to your C++ MFC application.
////////////////////////////////////////////////////////////////////////////////////////////////
// Class to display pop-up list of object's members 
// Derived from dialog which in turn contains CListCtrl
////////////////////////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_INTELLILIST_H__22A43AC4_E919_4F14_96A0_40D6BE696882__INCLUDED_)
#define AFX_INTELLILIST_H__22A43AC4_E919_4F14_96A0_40D6BE696882__INCLUDED_

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

// IntelliList.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CIntelliList dialog

class CIntelliList : public CDialog
{

public:
	// Construction
	CIntelliList(CWnd* pParent = NULL);   // standard constructor
	void Create(CWnd *pParent);

public:
	// Selection functions
	void SelectPgDn();
	void SelectPgUp();
	void SelectFirst();
	void SelectLast();
	void SelectPrev();
	void SelectNext();
	void SelectString(CString str);


	// Helper functions
	void SetCursorPoint(CPoint pt);		// Update position
	void Hide();						// Hide Me
	void Show();						// Show Me
	void Clear();						// Clear the list
	CString GetObject();				// Get the name of current object
	void SetObject(CString objectName); // Set the name of current object
	void AddItem(CString str, bool isprop);	// Add item to the list
	
	// Public data members
	int col;					// The position of the dot in color edit window
	int line;					// The line at which the list was activated
	CString SelectedString;		// Current selected string
	
	
	// Dialog Data
	//{{AFX_DATA(CIntelliList)
	enum { IDD = IDD_ILIST };
	CListCtrl	m_list;
	//}}AFX_DATA
	
	
	// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CIntelliList)
protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL
	
	// Implementation
protected:
	
	// Generated message map functions
	//{{AFX_MSG(CIntelliList)
	virtual BOOL OnInitDialog();
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnDblclkList1(NMHDR* pNMHDR, LRESULT* pResult);
	virtual void OnOK();
	afx_msg void OnItemchangedList1(NMHDR* pNMHDR, LRESULT* pResult);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	int GetSelectedItem();
	void UpdatePosition();

	// Private data members 
	CString m_szObjectName;	// Holds the current object's name
	CWnd* m_pParent;		// The pointer to parent window (the color edit window)
	CPoint m_ptPosition;			// Holds the Top-Left corner point
	CImageList m_ilList;		// Image list for CListCtrl
};

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

#endif // !defined(AFX_INTELLILIST_H__22A43AC4_E919_4F14_96A0_40D6BE696882__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
Software Developer (Senior) RDV Systems
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions