mirror of
https://github.com/gamecreature/QtAwesome.git
synced 2025-01-14 17:12:05 +08:00
27 lines
576 B
C++
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( icon_beer), "Cheers!" );
|
||
|
w.setCentralWidget( beerButton );
|
||
|
w.show();
|
||
|
|
||
|
return app.exec();
|
||
|
}
|