#include <about.h>
Definition at line 33 of file about.h.
Signals | |
void | aboutClosed () |
Public Member Functions | |
About (QWidget *parent=0, const char *name=0) | |
void | closeEvent (QCloseEvent *e) |
Private Attributes | |
QGridLayout * | grid |
QLabel * | progDesc |
QLabel * | progIcon |
QPixmap * | progImage |
|
Definition at line 28 of file about.cpp. References grid, IMAGE_PATH, progDesc, progIcon, and progImage.
00029 : 00030 QWidget(parent,name) 00031 { 00032 //-- 00033 progDesc = new QLabel( "Album Shaper 1.0a2 - Will Stokes", this ); 00034 QFont font( "Times", 18, QFont::Bold ); 00035 progDesc->setFont( font ); 00036 // progImage = new QPixmap((const char**) about_xpm); 00037 progImage = new QPixmap(QString(IMAGE_PATH)+"about.png"); 00038 progIcon = new QLabel( this ); 00039 progIcon->setPixmap( *progImage ); 00040 00041 //-- 00042 grid = new QGridLayout( this, 2, 1, 0); 00043 grid->addWidget( progDesc, 0, 0, Qt::AlignCenter ); 00044 grid->addWidget( progIcon, 1, 0, Qt::AlignCenter ); 00045 //-- 00046 } |
|
Referenced by closeEvent(). |
|
Definition at line 48 of file about.cpp. References aboutClosed().
00049 { 00050 aboutClosed(); 00051 QWidget::closeEvent( e ); 00052 } |
|
Definition at line 45 of file about.h. Referenced by About(). |
|
Definition at line 46 of file about.h. Referenced by About(). |
|
Definition at line 47 of file about.h. Referenced by About(). |
|
Definition at line 48 of file about.h. Referenced by About(). |