FLImaging 7.3.16.1
GUIStaticText.h
1#pragma once
2#include <afxwin.h>
3#include "GUIWndCtrlBase.h"
4#include "GUIStyledCtrlBase.h"
5
6namespace FLImaging
7{
8 namespace GUI
9 {
10 class FL_EXPORT CGUIStaticText : public CStatic, public CGUIWndCtrlBase, public CGUIStyledCtrlBase
11 {
12 public:
13 CGUIStaticText();
14 virtual ~CGUIStaticText();
15
16 protected:
17 virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct) override;
18 virtual void DrawText(CDC* pDC);
19
20 public:
21 DECLARE_MESSAGE_MAP()
22 afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
23 afx_msg BOOL OnEraseBkgnd(CDC* pDC);
24 afx_msg void OnEnable(BOOL bEnable);
25 afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
26 };
27 }
28}
Definition D2DObject.h:12