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

📄 fontencodingpool.cpp

📁 okular
💻 CPP
字号:
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; c-brace-offset: 0; -*-// fontEncodingPool.cpp//// Part of KDVI - A DVI previewer for the KDE desktop environment//// (C) 2003 Stefan Kebekus// Distributed under the GPL#include <config.h>#ifdef HAVE_FREETYPE#include "fontEncodingPool.h"fontEncodingPool::fontEncodingPool(){}fontEncoding *fontEncodingPool::findByName(const QString &name){  fontEncoding *ptr = dictionary.find( name );  if (ptr == 0) {    ptr = new fontEncoding(name);    if (ptr->isValid())      dictionary.insert(name, ptr );    else {      delete ptr;      ptr = 0;    }  }  return ptr;}#endif // HAVE_FREETYPE

⌨️ 快捷键说明

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