Intial commit
This commit is contained in:
parent
b49b3a9551
commit
051b0e7286
5 changed files with 153 additions and 0 deletions
31
frmGTA5Sync.cpp
Executable file
31
frmGTA5Sync.cpp
Executable file
|
@ -0,0 +1,31 @@
|
|||
/*****************************************************************************
|
||||
* gta5sync GRAND THEFT AUTO V SYNC
|
||||
* Copyright (C) 2016 Syping Gaming Team
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*****************************************************************************/
|
||||
|
||||
#include "frmGTA5Sync.h"
|
||||
#include "ui_frmGTA5Sync.h"
|
||||
|
||||
frmGTA5Sync::frmGTA5Sync(QWidget *parent) :
|
||||
QMainWindow(parent),
|
||||
ui(new Ui::frmGTA5Sync)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
frmGTA5Sync::~frmGTA5Sync()
|
||||
{
|
||||
delete ui;
|
||||
}
|
39
frmGTA5Sync.h
Executable file
39
frmGTA5Sync.h
Executable file
|
@ -0,0 +1,39 @@
|
|||
/*****************************************************************************
|
||||
* gta5sync GRAND THEFT AUTO V SYNC
|
||||
* Copyright (C) 2016 Syping Gaming Team
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*****************************************************************************/
|
||||
|
||||
#ifndef FRMGTA5SYNC_H
|
||||
#define FRMGTA5SYNC_H
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
namespace Ui {
|
||||
class frmGTA5Sync;
|
||||
}
|
||||
|
||||
class frmGTA5Sync : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit frmGTA5Sync(QWidget *parent = 0);
|
||||
~frmGTA5Sync();
|
||||
|
||||
private:
|
||||
Ui::frmGTA5Sync *ui;
|
||||
};
|
||||
|
||||
#endif // FRMGTA5SYNC_H
|
24
frmGTA5Sync.ui
Executable file
24
frmGTA5Sync.ui
Executable file
|
@ -0,0 +1,24 @@
|
|||
<ui version="4.0">
|
||||
<class>frmGTA5Sync</class>
|
||||
<widget class="QMainWindow" name="frmGTA5Sync" >
|
||||
<property name="geometry" >
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>400</width>
|
||||
<height>300</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle" >
|
||||
<string>frmGTA5Sync</string>
|
||||
</property>
|
||||
<widget class="QMenuBar" name="menuBar" />
|
||||
<widget class="QToolBar" name="mainToolBar" />
|
||||
<widget class="QWidget" name="centralWidget" />
|
||||
<widget class="QStatusBar" name="statusBar" />
|
||||
</widget>
|
||||
<layoutDefault spacing="6" margin="11" />
|
||||
<pixmapfunction></pixmapfunction>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
31
gta5sync.pro
Executable file
31
gta5sync.pro
Executable file
|
@ -0,0 +1,31 @@
|
|||
#/*****************************************************************************
|
||||
#* gta5sync GRAND THEFT AUTO V SYNC
|
||||
#* Copyright (C) 2015-2016 Syping Gaming Team
|
||||
#*
|
||||
#* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
#* you may not use this file except in compliance with the License.
|
||||
#* You may obtain a copy of the License at
|
||||
#*
|
||||
#* http://www.apache.org/licenses/LICENSE-2.0
|
||||
#*
|
||||
#* Unless required by applicable law or agreed to in writing, software
|
||||
#* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
#* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
#* See the License for the specific language governing permissions and
|
||||
#* limitations under the License.
|
||||
#*****************************************************************************/
|
||||
|
||||
QT += core gui
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||
|
||||
TARGET = gta5sync
|
||||
TEMPLATE = app
|
||||
|
||||
|
||||
SOURCES += main.cpp\
|
||||
frmGTA5Sync.cpp
|
||||
|
||||
HEADERS += frmGTA5Sync.h
|
||||
|
||||
FORMS += frmGTA5Sync.ui
|
28
main.cpp
Executable file
28
main.cpp
Executable file
|
@ -0,0 +1,28 @@
|
|||
/*****************************************************************************
|
||||
* gta5sync GRAND THEFT AUTO V SYNC
|
||||
* Copyright (C) 2016 Syping Gaming Team
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*****************************************************************************/
|
||||
|
||||
#include "frmGTA5Sync.h"
|
||||
#include <QApplication>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication a(argc, argv);
|
||||
frmGTA5Sync w;
|
||||
w.show();
|
||||
|
||||
return a.exec();
|
||||
}
|
Loading…
Reference in a new issue