📄 webcoreviewfactory.cpp
字号:
#include "WebCoreViewFactory.h"WebCoreViewFactory* WebCoreViewFactory::m_sharedFactory = 0;WebCoreViewFactory::WebCoreViewFactory(){}WebCoreViewFactory::~WebCoreViewFactory(){}const GList* WebCoreViewFactory::pluginsInfo(){ return 0;}void WebCoreViewFactory::refreshPlugins(bool reloadPages){ }const gchar* WebCoreViewFactory::inputElementAltText(){ return "Input";}const gchar* WebCoreViewFactory::resetButtonDefaultLabel(){ return "Reset";}const gchar* WebCoreViewFactory::searchableIndexIntroduction(){ return "This is a searchable index. Enter search keywords:";} const gchar* WebCoreViewFactory::submitButtonDefaultLabel(){ return "Submit";}const gchar* WebCoreViewFactory::fileButtonDefaultLabel(){ return "Browse...";}const gchar* WebCoreViewFactory::defaultLanguageCode(){ return "en";}WebCoreViewFactory* WebCoreViewFactory::sharedFactory(){ static WebCoreViewFactory singleton; if (!m_sharedFactory) m_sharedFactory = &singleton; return m_sharedFactory;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -