00001
00042 #include "aiabout.hpp"
00043
00044 using namespace AiFractals;
00045
00046 AiAbout::AiAbout( QWidget * parent )
00047 :QDialog( parent )
00048 {
00049 QLabel * label = new QLabel( tr("<h1>AiFractals by Adrabi Abderrahim</h1>Open Source fractals generator under <b>Artistic License</b><br/>for Qt Buddhabrot Challenge!<br/>Copyleft 2009-2010 !(C)") );
00050 QHBoxLayout * layout = new QHBoxLayout();
00051 layout->addWidget( label );
00052 this->setLayout( layout );
00053 }