QTfrontend/about.cpp
changeset 221 0f451dae4251
parent 187 96c3154efee5
child 235 28903e620258
equal deleted inserted replaced
220:d79eaeaf969d 221:0f451dae4251
    14  * You should have received a copy of the GNU General Public License
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program; if not, write to the Free Software
    15  * along with this program; if not, write to the Free Software
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
    17  */
    17  */
    18 
    18 
       
    19 #include <QGridLayout>
       
    20 #include <QSvgWidget>
    19 #include "about.h"
    21 #include "about.h"
    20 
    22 
    21 About::About(QWidget * parent) :
    23 About::About(QWidget * parent) :
    22   QWidget(parent)
    24   QWidget(parent)
    23 {
    25 {
    24 
    26 	QGridLayout *mainLayout = new QGridLayout(this);
       
    27 	QSvgWidget *hedgehog = new QSvgWidget(":/res/Hedgehog.svg", this);
       
    28 	hedgehog->setFixedSize(300, 329);
       
    29 	mainLayout->addWidget(hedgehog);
    25 }
    30 }