Subversion Repositories spk

Rev

Rev 79 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 79 Rev 123
Line 13... Line 13...
13
#define _LCDTEXT_H_INCLUDED_ 
13
#define _LCDTEXT_H_INCLUDED_ 
14
 
14
 
15
#include "LCDBase.h"
15
#include "LCDBase.h"
16
 
16
 
17
#include <string>
17
#include <string>
18
using namespace std;
-
 
19
 
18
 
20
class CLCDText : public CLCDBase
19
class CLCDText : public CLCDBase
21
{
20
{
22
 
21
 
23
public:
22
public:
Line 56... Line 55...
56
#else
55
#else
57
    std::string m_sText;
56
    std::string m_sText;
58
#endif
57
#endif
59
    HFONT m_hFont;
58
    HFONT m_hFont;
60
    COLORREF m_crColor;
59
    COLORREF m_crColor;
61
    basic_string <TCHAR>::size_type m_nTextLength;
60
    std::basic_string <TCHAR>::size_type m_nTextLength;
62
    UINT m_nTextFormat;
61
    UINT m_nTextFormat;
63
    BOOL m_bRecalcExtent;
62
    BOOL m_bRecalcExtent;
64
    DRAWTEXTPARAMS m_dtp;
63
    DRAWTEXTPARAMS m_dtp;
65
    int m_nTextAlignment;
64
    int m_nTextAlignment;
66
    SIZE m_sizeVExtent, m_sizeHExtent;
65
    SIZE m_sizeVExtent, m_sizeHExtent;