You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.0 KiB
C++
51 lines
1.0 KiB
C++
/*! @file
|
|
********************************************************************************
|
|
<PRE>
|
|
模块名 : NWell
|
|
文件名 : CViewStyle.h
|
|
相关文件 :
|
|
文件实现功能: 井图件样式
|
|
作者 :
|
|
版本 :
|
|
--------------------------------------------------------------------------------
|
|
备注 :
|
|
--------------------------------------------------------------------------------
|
|
修改记录:
|
|
日期 版本 修改人 修改内容
|
|
2010/07/30
|
|
</PRE>
|
|
*******************************************************************************/
|
|
|
|
#if !defined(_VIEWSTYLE_H)
|
|
#define _VIEWSTYLE_H
|
|
|
|
#include "Font.h"
|
|
#include "VAlignMode.h"
|
|
|
|
namespace NWell
|
|
{
|
|
|
|
class CViewStyle
|
|
{
|
|
public:
|
|
double m_dWidth;
|
|
double m_dHeight;
|
|
int m_iColor;
|
|
int m_iForeColor;
|
|
int m_iBackColor;
|
|
LOGFONT m_ftFont;
|
|
String m_strDash;
|
|
HAlignMode m_HAlign;
|
|
VAlignMode m_VAlign;
|
|
bool m_bVisiable;
|
|
int m_iFontSize;
|
|
String m_strFontName;
|
|
String m_strCharSet;
|
|
String m_strBorder;
|
|
int m_iBorderColor;
|
|
int m_iBorderWidth;
|
|
};
|
|
|
|
};
|
|
|
|
#endif //_VIEWSTYLE_H
|