summaryrefslogtreecommitdiffstats
path: root/examples/canvas/main.cpp
blob: 92c720d7bcd13e692e9c3761aa8e1611d1c2016c (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
#include <ntqstatusbar.h>
#include <ntqmessagebox.h>
#include <ntqmenubar.h>
#include <ntqapplication.h>
#include <ntqimage.h>

#include "canvas.h"

#include <stdlib.h>

extern TQString butterfly_fn;
extern TQString logo_fn;

int main(int argc, char** argv)
{
    TQApplication app(argc,argv);
    
    if ( argc > 1 )
	butterfly_fn = argv[1];
    else
	butterfly_fn = "butterfly.png";
    
    if ( argc > 2 )
	logo_fn = argv[2];
    else
	logo_fn = "qtlogo.png";
    
    TQCanvas canvas(800,600);
    canvas.setAdvancePeriod(30);
    Main m(canvas);
    m.resize(m.sizeHint());
    m.setCaption("TQt Example - Canvas");
    if ( TQApplication::desktop()->width() > m.width() + 10
	&& TQApplication::desktop()->height() > m.height() +30 )
	m.show();
    else
	m.showMaximized();
    
    TQObject::connect( tqApp, SIGNAL(lastWindowClosed()), tqApp, SLOT(quit()) );
    
    return app.exec();
}