GradientDialog.h
上传用户:jinandeyu
上传日期:2007-01-05
资源大小:620k
文件大小:3k
源码类别:

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  3.     This program is free software; you can redistribute it and/or modify
  4.     it under the terms of the GNU General Public License as published by
  5.     the Free Software Foundation; either version 2 of the License, or
  6.     (at your option) any later version.
  7.     This program is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.     GNU General Public License for more details.
  11.     You should have received a copy of the GNU General Public License
  12.     along with this program; if not, write to the Free Software
  13.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. The author of this program may be contacted at dildog@l0pht.com. */
  15. #if !defined(AFX_CGRADIENTDIALOG_H__DF6EFCC3_AA89_11D2_ADC4_0000F8084273__INCLUDED_)
  16. #define AFX_CGRADIENTDIALOG_H__DF6EFCC3_AA89_11D2_ADC4_0000F8084273__INCLUDED_
  17. #if _MSC_VER > 1000
  18. #pragma once
  19. #endif // _MSC_VER > 1000
  20. // CGradientDialog.h : header file
  21. //
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CGradientDialog dialog
  24. class CGradientDialog : public CDialog
  25. {
  26. // Construction
  27. public:
  28. void SetGradient();
  29. void SetGradient(COLORREF c1, COLORREF c2, int dir);
  30. CGradientDialog();
  31. CGradientDialog(UINT uResource, CWnd* pParent=NULL);
  32. CGradientDialog(LPCTSTR pszResource, CWnd* pParent=NULL);
  33. virtual ~CGradientDialog();
  34. private:
  35. void CommonConstruct();
  36. BOOL CreateGradPalette();
  37. void CreateGradientBitmap(void);
  38. // Dialog Data
  39. //{{AFX_DATA(CGradientDialog)
  40. // NOTE: the ClassWizard will add data members here
  41. //}}AFX_DATA
  42. // Overrides
  43. // ClassWizard generated virtual function overrides
  44. //{{AFX_VIRTUAL(CGradientDialog)
  45. protected:
  46. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. protected:
  50. BOOL m_bGradient;
  51. COLORREF m_Color1,m_Color2;
  52. CBrush m_HollowBrush;
  53. CPalette m_Pal;
  54. COLORREF    m_PalVal[256];
  55. DWORD *m_pGradBits;
  56. BITMAPINFO m_biGradBitInfo;
  57.     int m_nNumColors;
  58. int m_nDir;
  59. // Generated message map functions
  60. //{{AFX_MSG(CGradientDialog)
  61. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  62. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  63. afx_msg BOOL OnQueryNewPalette();
  64. afx_msg void OnPaletteChanged(CWnd *pFocusWnd);
  65. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  66. //}}AFX_MSG
  67. DECLARE_MESSAGE_MAP()
  68. };
  69. //{{AFX_INSERT_LOCATION}}
  70. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  71. #endif // !defined(AFX_CGRADIENTDIALOG_H__DF6EFCC3_AA89_11D2_ADC4_0000F8084273__INCLUDED_)