raDIYo 0.4
main.cpp
1/***************************************************************************
2
3 source::worx raDIYo
4 Copyright © 2020-2022 c.holzheuer
5 c.holzheuer@sourceworx.org
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12***************************************************************************/
13
14
15#include <QApplication>
16#include <QCheckBox>
17
18#include <raDIYo.h>
19#include <swradiyomainwidget.h>
20
21
22int main(int argc, char *argv[])
23{
24
25 //qInstallMessageHandler( swMessageOutput );
26
28 QCoreApplication::setOrganizationName( raDIYo::OrgName );
29 QCoreApplication::setOrganizationDomain( raDIYo::DomainName );
30 QCoreApplication::setApplicationName( raDIYo::AppName );
31
32 QApplication application( argc, argv );
33 //Q_INIT_RESOURCE( application );
34 SWRaDIYoMainWidget raDIYo;
35 raDIYo.show();
36
37 /*
38 QCheckBox checkbox("Eyes:");
39 checkbox.setStyleSheet("QCheckBox::indicator { width:50px; height: 50px; }");
40 checkbox.show();
41 */
42
43 return application.exec();
44
45
46
47
48
49
50}