summaryrefslogtreecommitdiff
path: root/win/clrpopup.h
diff options
context:
space:
mode:
authordocwhat1999-11-14 06:43:18 +0000
committerdocwhat1999-11-14 06:43:18 +0000
commitd71eec8062e852e56f03102ba4b4e87dc485821d (patch)
tree452368ad0e7e24627e517a0c88c2508d02cea6dc /win/clrpopup.h
parent2046090b7ce8dd901ce43e650be5acf44016d714 (diff)
Initial revision
git-svn-id: http://svn.leocad.org/trunk@2 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'win/clrpopup.h')
-rw-r--r--win/clrpopup.h97
1 files changed, 97 insertions, 0 deletions
diff --git a/win/clrpopup.h b/win/clrpopup.h
new file mode 100644
index 0000000..66d058b
--- /dev/null
+++ b/win/clrpopup.h
@@ -0,0 +1,97 @@
+#if !defined(AFX_COLOURPOPUP_H__D0B75902_9830_11D1_9C0F_00A0243D1382__INCLUDED_)
+#define AFX_COLOURPOPUP_H__D0B75902_9830_11D1_9C0F_00A0243D1382__INCLUDED_
+
+#if _MSC_VER >= 1000
+#pragma once
+#endif // _MSC_VER >= 1000
+
+// ColorPopup.h : header file
+//
+
+// CColorPopup messages
+#define CPN_SELENDOK WM_USER + 1001 // Color Picker end OK
+#define CPN_SELENDCANCEL WM_USER + 1002 // Color Picker end (cancelled)
+
+// forward declaration
+class CColorPicker;
+
+/////////////////////////////////////////////////////////////////////////////
+// CColorPopup window
+
+class CColorPopup : public CWnd
+{
+// Construction
+public:
+ CColorPopup();
+ CColorPopup(CPoint p, COLORREF crColor, CWnd* pParentWnd, BOOL bDefaultText = FALSE, BOOL bCustomText = FALSE);
+ void Initialise();
+
+// Attributes
+public:
+
+// Operations
+public:
+ BOOL Create(CPoint p, COLORREF crColor, CWnd* pParentWnd, BOOL bDefaultText = FALSE, BOOL bCustomText = NULL);
+
+// Overrides
+ // ClassWizard generated virtual function overrides
+ //{{AFX_VIRTUAL(CColorPopup)
+ public:
+ virtual BOOL PreTranslateMessage(MSG* pMsg);
+ //}}AFX_VIRTUAL
+
+// Implementation
+public:
+ virtual ~CColorPopup();
+
+protected:
+ BOOL GetCellRect(int nIndex, const LPRECT& rect);
+ void FindCellFromColor(COLORREF crColor);
+ void SetWindowSize();
+ void CreateToolTips();
+ void ChangeSelection(int nIndex);
+ void EndSelection(int nMessage);
+ void DrawCell(CDC* pDC, int nIndex);
+
+ COLORREF GetColor(int nIndex);// { return m_crColors[nIndex].crColor; }
+ int GetIndex(int row, int col) const;
+ int GetRow(int nIndex) const;
+ int GetColumn(int nIndex) const;
+
+// protected attributes
+protected:
+ int m_nNumColumns, m_nNumRows;
+ int m_nBoxSize, m_nMargin;
+ int m_nCurrentSel;
+ int m_nChosenColorSel;
+ BOOL m_bDefaultText;
+ BOOL m_bCustomText;
+ CRect m_CustomTextRect, m_DefaultTextRect, m_WindowRect;
+ CFont m_Font;
+ CPalette m_Palette;
+ COLORREF m_crInitialColor, m_crColor;
+ CToolTipCtrl m_ToolTip;
+ CWnd* m_pParent;
+
+ // Generated message map functions
+protected:
+ //{{AFX_MSG(CColorPopup)
+ afx_msg void OnNcDestroy();
+ afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
+ afx_msg void OnPaint();
+ afx_msg void OnMouseMove(UINT nFlags, CPoint point);
+ afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
+ afx_msg BOOL OnQueryNewPalette();
+ afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
+ afx_msg void OnKillFocus(CWnd* pNewWnd);
+ afx_msg void OnActivateApp(BOOL bActive, HTASK hTask);
+ //}}AFX_MSG
+ DECLARE_MESSAGE_MAP()
+};
+
+/////////////////////////////////////////////////////////////////////////////
+
+//{{AFX_INSERT_LOCATION}}
+// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
+
+#endif // !defined(AFX_COLOURPOPUP_H__D0B75902_9830_11D1_9C0F_00A0243D1382__INCLUDED_)