webcoreviewfactory.cpp

来自「khtml在gtk上的移植版本」· C++ 代码 · 共 64 行

CPP
64
字号
#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 + =
减小字号Ctrl + -
显示快捷键?