📄 tfontsettings.h
字号:
#ifndef _TFONTSETTINGS_H_
#define _TFONTSETTINGS_H_
#include "Toptions.h"
struct TfontSettings :Toptions
{
public:
TfontSettings(TintStrColl *Icoll=NULL);
TfontSettings& operator =(const TfontSettings &src)
{
memcpy(((uint8_t*)this)+sizeof(Toptions),((uint8_t*)&src)+sizeof(Toptions),sizeof(*this)-sizeof(Toptions));
return *this;
}
char_t name[260];
int charset;
int autosize,autosizeVideoWindow;
int sizeP,sizeA;
int xscale;
unsigned int getSize(unsigned int AVIdx,unsigned int AVIdy) const
{
if (autosize && AVIdx && AVIdy)
return limit(sizeA*ff_sqrt(AVIdx*AVIdx+AVIdy*AVIdy)/1000,3U,255U);
else
return sizeP;
}
struct Tweigth
{
const char_t *name;
int id;
};
static const Tweigth weights[];
static const int charsets[];
static const char_t *getCharset(int i);
static int getCharset(const char_t *name);
bool getTip(char_t *buf,size_t len)
{
tsnprintf(buf,len,_l("Font: %s, %s charset, %ssize:%i, %s, spacing:%i\nShadow intensity: %i, shadow radius:%i"),name,getCharset(charset),autosize?_l("auto"):_l(""),autosize?sizeA:sizeP,weights[weight/100-1].name,spacing,outlineStrength,outlineRadius);
return true;
}
int spacing,weight,color,outlineStrength,outlineRadius;
int split;
int fast;
virtual void reg_op(TregOp &t);
int shadowSize, shadowAlpha, shadowMode; // Subtitles shadow
static const char_t *shadowModes[];
};
struct TfontSettingsOSD :TfontSettings
{
TfontSettingsOSD(TintStrColl *Icoll=NULL);
};
struct TfontSettingsSub :TfontSettings
{
TfontSettingsSub(TintStrColl *Icoll=NULL);
virtual void reg_op(TregOp &t);
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -