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.
|
|
|
|
#pragma once
|
|
|
|
|
#include "fonttype.h"
|
|
|
|
|
|
|
|
|
|
typedef pair<CString,int> BarcodeType;
|
|
|
|
|
class CFontBarcode :public CFontType
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
CFontBarcode(void);
|
|
|
|
|
~CFontBarcode(void);
|
|
|
|
|
virtual CString GetFontType(){return "FontBarcode";};
|
|
|
|
|
virtual void Initialize();
|
|
|
|
|
virtual int GetCurFontNameIdx();
|
|
|
|
|
private:
|
|
|
|
|
void IniBarcodeTypeVec();
|
|
|
|
|
private:
|
|
|
|
|
vector<BarcodeType> m_BarcodeTypeVec;//<2F><><EFBFBD><EFBFBD>ʹ<EFBFBD>õ<EFBFBD><C3B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>,<2C><><EFBFBD><EFBFBD>ֵ<EFBFBD><D6B5>tag_BarCType <20>ж<EFBFBD>Ӧ
|
|
|
|
|
};
|
|
|
|
|
|