-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
100 changed files
with
49,604 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
libraries/discord-rpc.dll | ||
libraries/Lua.dll | ||
LuaFrontend.pro.user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#include "AboutFrontend.hpp" | ||
#include "ui_AboutFrontend.h" | ||
|
||
AboutFrontend::AboutFrontend(QWidget *parent) : | ||
QDialog(parent), | ||
ui(new Ui::AboutFrontend) | ||
{ | ||
ui->setupUi(this); | ||
} | ||
|
||
AboutFrontend::~AboutFrontend() | ||
{ | ||
delete ui; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef ABOUTFRONTEND_HPP | ||
#define ABOUTFRONTEND_HPP | ||
|
||
#include <QDialog> | ||
|
||
namespace Ui { | ||
class AboutFrontend; | ||
} | ||
|
||
class AboutFrontend : public QDialog | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit AboutFrontend(QWidget *parent = nullptr); | ||
~AboutFrontend(); | ||
|
||
private: | ||
Ui::AboutFrontend *ui; | ||
}; | ||
|
||
#endif // ABOUTFRONTEND_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>AboutFrontend</class> | ||
<widget class="QDialog" name="AboutFrontend"> | ||
<property name="windowModality"> | ||
<enum>Qt::WindowModal</enum> | ||
</property> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>633</width> | ||
<height>188</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>About LuaFrontend</string> | ||
</property> | ||
<property name="windowIcon"> | ||
<iconset> | ||
<normaloff>:/resources/iconMain.ico</normaloff>:/resources/iconMain.ico</iconset> | ||
</property> | ||
<widget class="QLabel" name="Image"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>14</x> | ||
<y>8</y> | ||
<width>171</width> | ||
<height>171</height> | ||
</rect> | ||
</property> | ||
<property name="text"> | ||
<string/> | ||
</property> | ||
<property name="pixmap"> | ||
<pixmap resource="Resources.qrc">:/resources/iconMain.png</pixmap> | ||
</property> | ||
<property name="scaledContents"> | ||
<bool>true</bool> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="TitleLabel"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>200</x> | ||
<y>3</y> | ||
<width>291</width> | ||
<height>41</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>14</pointsize> | ||
<bold>true</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>LuaFrontend v1.15</string> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="QtLabel"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>200</x> | ||
<y>60</y> | ||
<width>411</width> | ||
<height>21</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>10</pointsize> | ||
<bold>false</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>LuaFrontend powered by Qt 6.2.2 (MSVC 2019, x64)</string> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="CompLabel"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>200</x> | ||
<y>33</y> | ||
<width>311</width> | ||
<height>21</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>10</pointsize> | ||
<bold>false</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Compatible with LuaEngine v5.10.</string> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="TKCopyLabel"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>200</x> | ||
<y>105</y> | ||
<width>411</width> | ||
<height>21</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>9</pointsize> | ||
<bold>false</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Copyright 2020-2022 / TopazTK - Certain rights reserved.</string> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="QtCopyLabel"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>200</x> | ||
<y>125</y> | ||
<width>411</width> | ||
<height>21</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>9</pointsize> | ||
<bold>false</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Copyright 2008-2022 / Qt Company Ltd. All rights reserved.</string> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="NoticeLabel"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>200</x> | ||
<y>153</y> | ||
<width>421</width> | ||
<height>21</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>9</pointsize> | ||
<bold>false</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>3rd Party libraries included. See the Github Repository for info.</string> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="LuaLabel"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>200</x> | ||
<y>78</y> | ||
<width>411</width> | ||
<height>21</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>10</pointsize> | ||
<bold>false</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>LuaEngine powered by Lua 5.4.3 (MSVC 2019, x64)</string> | ||
</property> | ||
</widget> | ||
</widget> | ||
<resources> | ||
<include location="Resources.qrc"/> | ||
</resources> | ||
<connections/> | ||
</ui> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#include "AboutPatreon.hpp" | ||
#include "ui_AboutPatreon.h" | ||
|
||
AboutPatreon::AboutPatreon(QWidget *parent) : | ||
QDialog(parent), | ||
ui(new Ui::AboutPatreon) | ||
{ | ||
ui->setupUi(this); | ||
} | ||
|
||
AboutPatreon::~AboutPatreon() | ||
{ | ||
delete ui; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef ABOUTPATREON_HPP | ||
#define ABOUTPATREON_HPP | ||
|
||
#include <QDialog> | ||
|
||
namespace Ui { | ||
class AboutPatreon; | ||
} | ||
|
||
class AboutPatreon : public QDialog | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit AboutPatreon(QWidget *parent = nullptr); | ||
~AboutPatreon(); | ||
|
||
private: | ||
Ui::AboutPatreon *ui; | ||
}; | ||
|
||
#endif // ABOUTPATREON_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>AboutPatreon</class> | ||
<widget class="QDialog" name="AboutPatreon"> | ||
<property name="windowModality"> | ||
<enum>Qt::WindowModal</enum> | ||
</property> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>633</width> | ||
<height>188</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Consider...</string> | ||
</property> | ||
<property name="windowIcon"> | ||
<iconset> | ||
<normaloff>:/resources/iconMain.ico</normaloff>:/resources/iconMain.ico</iconset> | ||
</property> | ||
<widget class="QLabel" name="Image"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>14</x> | ||
<y>8</y> | ||
<width>171</width> | ||
<height>171</height> | ||
</rect> | ||
</property> | ||
<property name="text"> | ||
<string/> | ||
</property> | ||
<property name="pixmap"> | ||
<pixmap resource="Resources.qrc">:/resources/iconPatreon.png</pixmap> | ||
</property> | ||
<property name="scaledContents"> | ||
<bool>true</bool> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="TitleLabel"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>200</x> | ||
<y>3</y> | ||
<width>291</width> | ||
<height>41</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>14</pointsize> | ||
<bold>true</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Consider Supporting TopazTK!</string> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="MessageLabel"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>200</x> | ||
<y>45</y> | ||
<width>411</width> | ||
<height>101</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>9</pointsize> | ||
<bold>false</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string><html><head/><body><p>TopazTK is a lone developer, trying his best to make programs like LuaFrontend, and mods like Re:Fixed possible. Unfortunately, however, he is not financially stable enough to pour a lot of time to these projects. By supporting TopazTK on Patreon, you can make it possible for him to work on these things for longer, allowing him to do his passion job! There are also some benefits to this so please, do consider.</p></body></html></string> | ||
</property> | ||
<property name="wordWrap"> | ||
<bool>true</bool> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="LinkLabel"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>200</x> | ||
<y>153</y> | ||
<width>421</width> | ||
<height>21</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>9</pointsize> | ||
<bold>false</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string><html><head/><body><p>Any support is appreciated: <a href="https://patreon.com/topaztk"><span style=" text-decoration: underline; color:#007af4;">https://patreon.com/topaztk</span></a></p></body></html></string> | ||
</property> | ||
</widget> | ||
</widget> | ||
<resources> | ||
<include location="Resources.qrc"/> | ||
</resources> | ||
<connections/> | ||
</ui> |
Oops, something went wrong.