Mercurial > vba-clojure
diff src/win32/GBColorDlg.h @ 1:f9f4f1b99eed
importing src directory
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:31:27 -0600 |
parents | |
children |
line wrap: on
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/win32/GBColorDlg.h Sat Mar 03 10:31:27 2012 -0600 1.3 @@ -0,0 +1,60 @@ 1.4 +#if !defined(AFX_GBCOLORDLG_H__8D6126EF_06BB_48CF_ABB3_2CC4B1B60358__INCLUDED_) 1.5 +#define AFX_GBCOLORDLG_H__8D6126EF_06BB_48CF_ABB3_2CC4B1B60358__INCLUDED_ 1.6 + 1.7 +#if _MSC_VER > 1000 1.8 +#pragma once 1.9 +#endif // _MSC_VER > 1000 1.10 +// GBColorDlg.h : header file 1.11 +// 1.12 + 1.13 +#include "ColorButton.h" // Added by ClassView 1.14 + 1.15 +///////////////////////////////////////////////////////////////////////////// 1.16 +// GBColorDlg dialog 1.17 + 1.18 +class GBColorDlg : public CDialog 1.19 +{ 1.20 + // Construction 1.21 +public: 1.22 + int getWhich(); 1.23 + afx_msg void OnColorClicked(UINT id); 1.24 + u16 *getColors(); 1.25 + void setWhich(int w); 1.26 + u16 colors[24]; 1.27 + ColorButton colorControls[8]; 1.28 + GBColorDlg(CWnd*pParent = NULL); // standard constructor 1.29 + 1.30 + // Dialog Data 1.31 + //{{AFX_DATA(GBColorDlg) 1.32 + enum { IDD = IDD_GB_COLORS }; 1.33 + CComboBox m_predefined; 1.34 + int which; 1.35 + //}}AFX_DATA 1.36 + 1.37 + // Overrides 1.38 + // ClassWizard generated virtual function overrides 1.39 + //{{AFX_VIRTUAL(GBColorDlg) 1.40 +protected: 1.41 + virtual void DoDataExchange(CDataExchange*pDX); // DDX/DDV support 1.42 + //}}AFX_VIRTUAL 1.43 + 1.44 + // Implementation 1.45 +protected: 1.46 + // Generated message map functions 1.47 + //{{AFX_MSG(GBColorDlg) 1.48 + afx_msg void OnDefault(); 1.49 + afx_msg void OnReset(); 1.50 + afx_msg void OnUser1(); 1.51 + afx_msg void OnUser2(); 1.52 + afx_msg void OnCancel(); 1.53 + afx_msg void OnOk(); 1.54 + virtual BOOL OnInitDialog(); 1.55 + afx_msg void OnSelchangePredefined(); 1.56 + //}}AFX_MSG 1.57 + DECLARE_MESSAGE_MAP() 1.58 +}; 1.59 + 1.60 +//{{AFX_INSERT_LOCATION}} 1.61 +// Microsoft Visual C++ will insert additional declarations immediately before the previous line. 1.62 + 1.63 +#endif // !defined(AFX_GBCOLORDLG_H__8D6126EF_06BB_48CF_ABB3_2CC4B1B60358__INCLUDED_)