8 Star 31 Fork 19

乌合之众 / QFramer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.cpp 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
dingjiangfeng 提交于 2014-08-15 12:18 . add support for Qt4.8.6
/****************************************************************************
**
** Copyright (C) 2014 dragondjf
**
** QFramer is a frame based on Qt5.3, you will be more efficient with it.
** As an Qter, Qt give us a nice coding experience. With user interactive experience(UE)
** become more and more important in modern software, deveployers should consider business and UE.
** So, QFramer is born. QFramer's goal is to be a mature solution
** which you only need to be focus on your business but UE for all Qters.
**
** Version : 0.2.2.0
** Author : dragondjf
** Website : https://github.com/dragondjf
** Project : https://github.com/dragondjf/QCFramer
** Blog : http://my.oschina.net/dragondjf/home/?ft=atme
** Wiki : https://github.com/dragondjf/QCFramer/wiki
** Lincence: LGPL V2
** QQ: 465398889
** Email: dragondjf@gmail.com, ding465398889@163.com, 465398889@qq.com
**
****************************************************************************/
#include "QFramer/futil.h"
#include "mainwindow/mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
// qInstallMessageHandler(myMessageOutput);
QApplication app(argc, argv);
QApplication::setOrganizationName("DJF");
QApplication::setOrganizationDomain("https://github.com/dragondjf");
QApplication::setApplicationName("QFramer");
QApplication::setWindowIcon(QIcon(":/images/skin/images/QFramer.ico"));
MainWindow *main = MainWindow::getInstance();
main->setAttribute(Qt::WA_DeleteOnClose);
main->show();
return app.exec();
}
1
https://gitee.com/solym/QFramer.git
git@gitee.com:solym/QFramer.git
solym
QFramer
QFramer
master

搜索帮助