QtAwesome/QtAwesomeSample/main.cpp
Rick Blommers 1e5a68d2bd Updated the Readme file with new version information.
Fixed the cheers icon in the example project ;)
2014-05-07 20:10:57 +02:00

27 lines
576 B
C++

/**
* Copyright 2011-2013 - Reliable Bits Software by Blommers IT. All Rights Reserved.
* Author Rick Blommers
*/
#include "QtAwesome.h"
#include <QApplication>
#include <QMainWindow>
#include <QPushButton>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QMainWindow w;
QtAwesome* awesome = new QtAwesome(&w);
awesome->initFontAwesome();
// a simple beer button
QPushButton* beerButton = new QPushButton( awesome->icon( fa::beer ), "Cheers!" );
w.setCentralWidget( beerButton );
w.show();
return app.exec();
}