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
68
69
70
71
72
73
|
/****************************************************************************
**
** Ritual main() for TQt applications
**
** Copyright (C) 1996-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for TQt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include <qapplication.h>
#include "dropsite.h"
#include "secret.h"
#include <qlayout.h>
#include <qcombobox.h>
#include <qlabel.h>
#include <qpixmap.h>
static void addStuff( TQWidget * parent, bool image, bool secret = FALSE )
{
TQVBoxLayout * tll = new TQVBoxLayout( parent, 10 );
DropSite * d = new DropSite( parent );
d->setFrameStyle( TQFrame::Sunken + TQFrame::WinPanel );
tll->addWidget( d );
if ( image ) {
TQPixmap stuff;
if ( !stuff.load( "trolltech.bmp" ) ) {
stuff = TQPixmap(20,20);
stuff.fill(TQt::green);
}
d->setPixmap( stuff );
} else {
d->setText("Drag and Drop");
}
d->setFont(TQFont("Helvetica",18));
if ( secret ) {
SecretSource *s = new SecretSource( 42, parent );
tll->addWidget( s );
}
TQLabel * format = new TQLabel( "\n\n\n\nNone\n\n\n\n", parent );
tll->addWidget( format );
tll->activate();
parent->resize( parent->sizeHint() );
TQObject::connect( d, SIGNAL(message(const TQString&)),
format, SLOT(setText(const TQString&)) );
}
int main( int argc, char ** argv )
{
TQApplication a( argc, argv );
TQWidget mw;
addStuff( &mw, TRUE );
mw.setCaption( "TQt Example - Drag and Drop" );
mw.show();
TQWidget mw2;
addStuff( &mw2, FALSE );
mw2.setCaption( "TQt Example - Drag and Drop" );
mw2.show();
TQWidget mw3;
addStuff( &mw3, TRUE, TRUE );
mw3.setCaption( "TQt Example - Drag and Drop" );
mw3.show();
TQObject::connect(qApp,SIGNAL(lastWindowClosed()),qApp,SLOT(quit()));
return a.exec();
}
|