blob: c5ffd7f97f125a2c4ac569635d8d71707a1af89f (
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
|
#!/usr/bin/env kjscmd
c = new QCanvas();
item = new QCanvasText( '<font="blue">hi</font>', c );
item.move( 50, 50 );
item.show();
item = new QCanvasText( '<font="blue">hi</font>', c );
item.move( 150, 50 );
item.show();
item = new QCanvasText( '<font="blue">hixxx</font>', c );
item.move( 50, 150 );
item.show();
item = new QCanvasText( '<font="blue">hixxxxxxx</font>', c );
item.move( 150, 150 );
item.show();
view = new QCanvasView();
view.setCanvas( c );
view.update();
view.show();
//load( '../docs/examples/docviewer/docviewer.js' );
application.exec();
|