⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rtfstyle.cpp

📁 把html转成txt 把html转成txt
💻 CPP
字号:
#include "Style.h"#include "RtfStyle.h"#include <vector>namespace DoxEngine{  RtfStyle::RtfStyle()  {    setPlain();    setSectionPlain();  }  RtfStyle::RtfStyle(DebugLog &newLog):log(newLog)  {    setPlain();
    setSectionPlain();
  }  RtfStyle::~RtfStyle()  {  }	void RtfStyle::setPlain( void )  {		style.setBold( false );		style.setItalic( false );		style.setUnderline( false );    style.setColour();    inTable = false;  }  void RtfStyle::setInTable( bool insideTable)  {    inTable = insideTable;  }  bool RtfStyle::getInTable()  {    return inTable;  }  void RtfStyle::setSectionPlain( void )  {    sectionColumns = 0;
  }    void RtfStyle::setSectionColumns( int columns )  {    sectionColumns = columns;
  }  int RtfStyle::getSectionColumns( void )  {    return sectionColumns;
  }  void RtfStyle::setRed( int value )  {#ifdef ENABLE_LOG_DEBUG    log[LOG_DEBUG] << DEBUG_ID << "Setting red to " << value << "\n";#endif	currentColour.SetRed(value);  }  void RtfStyle::setGreen( int value )  {#ifdef ENABLE_LOG_DEBUG    log[LOG_DEBUG] << DEBUG_ID << "Setting green to " << value << "\n";#endif	currentColour.SetGreen(value);  }  void RtfStyle::setBlue( int value )  {#ifdef ENABLE_LOG_DEBUG    log[LOG_DEBUG] << DEBUG_ID << "Setting blue to " << value << "\n";#endif    currentColour.SetBlue(value);  }  void RtfStyle::colourTerminate( void )  {#ifdef ENABLE_LOG_DEBUG    log[LOG_DEBUG] << DEBUG_ID << "Saving colour table entry\n";#endif	  colour.push_back(currentColour);  }  void RtfStyle::setForegroundColour( int index )  {    // Colour index is based on 1#ifdef ENABLE_LOG_DEBUG		log[LOG_DEBUG] << DEBUG_ID << "Setting foreground colour\n";#endif		if (index < 0)		{			// integer index can't be compared to unsigned size if negative
      log[LOG_WARNING] << DEBUG_ID << "Index cannot be negative\n";
		}		else if (unsigned(index) >= colour.size()) // cast to unsigned		{			log[LOG_WARNING] << DEBUG_ID << index << "is beyond bounds (" << colour.size() << "\n";		}		else		{			if (colour[index].IsDefault())				style.setColour();			else				style.setColour(colour[index].GetRed(), colour[index].GetGreen(),colour[index].GetBlue());    }  }	Style RtfStyle::getStyle() const	{		return style;
	}	void RtfStyle::setStyle(const Style &newStyle)	{		style = newStyle;
  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -