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.
22 lines
426 B
C++
22 lines
426 B
C++
#pragma once
|
|
#include "item.h"
|
|
|
|
namespace NItem
|
|
{
|
|
class CItemScaleEmbellish :
|
|
public CItem
|
|
{
|
|
public:
|
|
CItemScaleEmbellish(CSigmaDoc * ppDoc);
|
|
virtual ~CItemScaleEmbellish(void);
|
|
|
|
void ScaleEmbellish(void);
|
|
void ScaleFont(double dScale);//½ö·ÅËõ×ÖÌå
|
|
void ScaleProperty(double sx, double sy, BOOL bPersonalEmbellish, BOOL bOwnerProperties);
|
|
|
|
double coefficient;
|
|
BOOL m_bPersonalEmbellish;
|
|
BOOL m_bOwnerProperties;
|
|
};
|
|
|
|
}; |