mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-03 01:42:20 +08:00
58 lines
1.7 KiB
C++
58 lines
1.7 KiB
C++
#include <DApplication>
|
||
#include <DWidgetUtil> //Dtk::Widget::moveToCenter(&w); 要调用它,就得引用DWidgetUtil
|
||
#include <QDesktopWidget>
|
||
#include <widget.h>
|
||
#include <QTranslator>
|
||
DWIDGET_USE_NAMESPACE
|
||
int main(int argc, char *argv[])
|
||
{
|
||
DApplication::loadDXcbPlugin(); //让bar处在标题栏中
|
||
DApplication a(argc, argv);
|
||
a.setAttribute(Qt::AA_UseHighDpiPixmaps);
|
||
a.loadTranslator();
|
||
|
||
a.setOrganizationName("spark-union");
|
||
a.setApplicationVersion(DApplication::buildVersion("2.0"));
|
||
a.setApplicationAcknowledgementPage("https://gitee.com/deepin-community-store/spark-store");
|
||
a.setProductIcon(QIcon::fromTheme("spark-store")); //设置Logo
|
||
|
||
a.setProductName(QLabel::tr("Spark应用商店"));
|
||
a.setApplicationDescription(QLabel::tr("社区驱动的一款为第三方应用商店,为改变而生\n本程序按GPL第三版开源"));
|
||
a.setApplicationName(QLabel::tr("Spark应用商店"));
|
||
Widget w;
|
||
QDesktopWidget *s=DApplication::desktop();
|
||
int d_w=s->width();
|
||
int d_h=s->height();
|
||
if(d_w<=1366){
|
||
w.setMinimumWidth(925);
|
||
w.resize(925,650);
|
||
}else if(d_w<=1920){
|
||
w.setMinimumWidth(1180);
|
||
w.resize(1180,760);
|
||
}else {
|
||
w.setMinimumWidth(1180);
|
||
w.resize(1180,760);
|
||
}
|
||
if(d_h<=768){
|
||
w.setMinimumHeight(650);
|
||
w.resize(925,650);
|
||
}else if(d_h<=1080){
|
||
w.setMinimumHeight(760);
|
||
w.resize(1180,760);
|
||
}else {
|
||
w.setMinimumHeight(760);
|
||
w.resize(1180,760);
|
||
}
|
||
// w.resize(925,650);
|
||
|
||
w.show();
|
||
QString arg1=argv[1];
|
||
if(arg1.left(6)=="spk://"){
|
||
w.openUrl(QUrl(argv[1]));
|
||
}
|
||
//让打开时界面显示在正中
|
||
Dtk::Widget::moveToCenter(&w);
|
||
|
||
return a.exec();
|
||
}
|