readme.htmlwidget
来自「pixil 最新的嵌入linux 應用程序集,別的地方很難下載」· HTMLWIDGET 代码 · 共 61 行
HTMLWIDGET
61 行
KDE HTML Widget===============Developers----------The first version was written byTorben Weis <weis@stud.uni-frankfurt.de>It was extended byJosip A. Gracin <grac@fly.cc.fer.hr>andMartin Jones <mjones@kde.org>It is currently primarily maintained and developed by Martin Jones.Libraries Required------------------libkde-develStarting Point--------------You can add the widget to your program by doing something like:#include <html.h> . . . KHTMLWidget *view = new KHTMLWidget( parent, "Name" ); view->show(); view->begin( "file:/tmp/test.html" ); view->parse(); view->write( "<HTML><TITLE>...." ); view->write( "..." ); . . . view->write( "</HTML>" ); view->end();After doing this, control must be returned to the event loop as the HTMLis parsed in the background using a Qt timer.For more information see the full documentation in JavaDoc format includedin the header files.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?