mirror of
https://github.com/gamecreature/QtAwesome.git
synced 2025-12-17 20:24:35 +03:00
initial commit
This commit is contained in:
26
QtAwesomeSample/main.cpp
Normal file
26
QtAwesomeSample/main.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* 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();
|
||||
}
|
||||
Reference in New Issue
Block a user