resources changes
This commit is contained in:
parent
9bb40f47cb
commit
7384f39c7d
10 changed files with 16 additions and 3 deletions
|
@ -37,7 +37,6 @@ PictureDialog::PictureDialog(ProfileDatabase *profileDB, QWidget *parent) :
|
|||
ui(new Ui::PictureDialog)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
this->setWindowIcon(QIcon(":/img/5sync.png"));
|
||||
windowTitleStr = this->windowTitle();
|
||||
jsonDrawString = ui->labJSON->text();
|
||||
ui->cmdExport->setEnabled(0);
|
||||
|
|
|
@ -69,7 +69,7 @@ TRANSLATIONS += \
|
|||
gta5sync_de.ts
|
||||
|
||||
RESOURCES += \
|
||||
app.qrc
|
||||
res/app.qrc
|
||||
|
||||
OTHER_FILES += \
|
||||
app.rc
|
||||
|
@ -97,3 +97,9 @@ isEqual(QT_MAJOR_VERSION, 4): SOURCES += qjson4/QJsonArray.cpp \
|
|||
qjson4/QJsonValueRef.cpp \
|
||||
qjson4/QJsonParser.cpp
|
||||
|
||||
# UNIX SYSTEM STUFF
|
||||
|
||||
unix: !macx: appfiles.path = $$(INSTALL_PATH)/share/applications
|
||||
unix: !macx: appfiles.files = $$PWD/res/5sync.desktop
|
||||
unix: !macx: target.path = $$(INSTALL_PATH)/bin
|
||||
unix: !macx: INSTALLS += target appfiles
|
||||
|
|
8
main.cpp
8
main.cpp
|
@ -32,6 +32,7 @@
|
|||
#include <QString>
|
||||
#include <QDebug>
|
||||
#include <QFile>
|
||||
#include <QDir>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
|
@ -39,6 +40,10 @@ int main(int argc, char *argv[])
|
|||
a.setApplicationName("gta5sync");
|
||||
a.setApplicationVersion("1.0.0");
|
||||
|
||||
QDir pluginsDir = QFileInfo(a.applicationFilePath()).absoluteDir();
|
||||
pluginsDir.cd("plugins");
|
||||
a.addLibraryPath(pluginsDir.path());
|
||||
|
||||
// Loading translation settings
|
||||
QSettings settings("Syping", "gta5sync");
|
||||
settings.beginGroup("Interface");
|
||||
|
@ -238,6 +243,7 @@ int main(int argc, char *argv[])
|
|||
|
||||
bool readOk = picture.readingPictureFromFile(arg1);
|
||||
picDialog->setWindowFlags(picDialog->windowFlags()^Qt::WindowContextHelpButtonHint);
|
||||
picDialog->setWindowIcon(QIcon(":/img/5sync-48.png"));
|
||||
picDialog->setSnapmaticPicture(&picture, readOk);
|
||||
|
||||
int crewID = picture.getCrewNumber();
|
||||
|
@ -259,6 +265,7 @@ int main(int argc, char *argv[])
|
|||
|
||||
bool readOk = savegame.readingSavegameFromFile(arg1);
|
||||
savegameDialog->setWindowFlags(savegameDialog->windowFlags()^Qt::WindowContextHelpButtonHint);
|
||||
savegameDialog->setWindowIcon(QIcon(":/img/5sync-48.png"));
|
||||
savegameDialog->setSavegameData(&savegame, readOk);
|
||||
|
||||
if (!readOk) { return 1; }
|
||||
|
@ -276,6 +283,7 @@ int main(int argc, char *argv[])
|
|||
threadDB->start();
|
||||
|
||||
UserInterface *uiWindow = new UserInterface(profileDB, crewDB, threadDB);
|
||||
uiWindow->setWindowIcon(QIcon(":/img/5sync-48.png"));
|
||||
uiWindow->show();
|
||||
|
||||
return a.exec();
|
||||
|
|
Before Width: | Height: | Size: 963 B After Width: | Height: | Size: 963 B |
|
@ -7,6 +7,6 @@
|
|||
<qresource prefix="/img">
|
||||
<file>savegame.png</file>
|
||||
<file>5sync.ico</file>
|
||||
<file>5sync.png</file>
|
||||
<file>5sync-48.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Loading…
Reference in a new issue