summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/extensions/nsplugin/examples/trivial/trivial.cpp
blob: c1f1aed7c032ff738e7cf40bf162ebfdf64979e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// TQt stuff
#include "tqnp.h"
#include <tqpainter.h>
#include <tqmessagebox.h>

class Trivial : public TQNPWidget {
    TQ_OBJECT
public:
    void mouseReleaseEvent(TQMouseEvent* event)
    {
	TQMessageBox::aboutTQt(this);
    }

    void paintEvent(TQPaintEvent* event)
    {
	TQPainter 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 TQNPInstance {
    TQ_OBJECT
public:
    TQNPWidget* newWindow()
    {
	return new Trivial;
    }

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

class TrivialPlugin : public TQNPlugin {
public:
    TQNPInstance* newInstance()
    {
	return new TrivialInstance;
    }

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

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

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

};

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

#include "trivial.tqmoc"