返回介绍

Trivial Example

发布于 2019-10-04 15:05:01 字数 1751 浏览 998 评论 0 收藏 0

This example is trivial, and thus useful for investigating problems you might have installing the extension.

To build the example, you must first build the Qt Netscape Plugin Extension library. Then type make in extensions/nsplugin/examples/trivial/ and copy the resulting trivial.so or nptrivial.dll to the Plugins directory of your WWW browser.


Implementation:

// Qt stuff
#include "qnp.h"
#include <qpainter.h>
#include <qmessagebox.h>

class Trivial : public QNPWidget {
    Q_OBJECT
public:
    void mouseReleaseEvent(QMouseEvent* event)
    {
        QMessageBox::aboutQt(this);
    }

    void paintEvent(QPaintEvent* event)
    {
        QPainter p(this);
        p.setClipRect(event->rect());
        int w = width();
        p.drawRect(rect());
        p.drawText(w/8, 0, w-w/4, height(), AlignCenter|WordBreak, "Trivial!");
    }
};

class TrivialInstance : public QNPInstance {
    Q_OBJECT
public:
    QNPWidget* newWindow()
    {
        return new Trivial;
    }

    void print(QPainter* p)
    {
        p->drawText(0,0,"Hello");
    }
};

class TrivialPlugin : public QNPlugin {
public:
    QNPInstance* newInstance()
    {
        return new TrivialInstance;
    }

    const char* getMIMEDescription() const
    {
        return "trivial/very:xxx:Trivial and useless";
    }

    const char * getPluginNameString() const
    {
        return "Trivial Qt-based Plugin";
    }

    const char * getPluginDescriptionString() const
    {
        return "A Qt-based LiveConnected plug-in that does nothing";
    }

};

QNPlugin* QNPlugin::create()
{
    return new TrivialPlugin;
}

#include "trivial.moc"

See also LiveConnect Examples.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文