File: aapjedialog.cpp

package info (click to toggle)
kascade 1.0-beta10-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 964 kB
  • ctags: 815
  • sloc: cpp: 7,780; makefile: 39
file content (19 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <qdialog.h>
#include <qpixmap.h>
#include <qlabel.h>

#include "aapjedialog.h"
#include "globals.h"
#include "preferences.h"

AapjeDialog::AapjeDialog( QWidget *parent, const char *name )
	: QDialog( parent, name, TRUE )
{
	QPixmap nettorandus = QPixmap( "/usr/share/kascade/netto.gif" );

	QLabel *netto = new QLabel( this );
	netto->setPixmap( nettorandus );
	netto->resize( netto->sizeHint() );
	
	setCaption( "Ernesto Dufour" );
}