00001 #ifndef PANEL_VCOLOR_H
00002 #define PANEL_VCOLOR_H
00003
00004 #include "Panel.h"
00005 #include "Color.h"
00006
00007
00008
00009 class VPanel_VColor : public VPanel
00010 {
00011
00012 public:
00013 VPanel_VColor(CWnd* pParent = NULL);
00014 int m_R;
00015 int m_G;
00016 int m_B;
00017 bool m_bOpaque;
00018
00019
00020
00021 enum { IDD = IDD_PANEL_COLOR };
00022
00023
00024
00025
00026
00027
00028 protected:
00029 virtual void DoDataExchange(CDataExchange* pDX);
00030
00031
00032
00033 protected:
00034
00035
00036
00037 afx_msg void OnClickPopColor();
00038 afx_msg void OnPaint();
00039 afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
00040
00041 DECLARE_MESSAGE_MAP()
00042 };
00043
00044 #endif