Skip to content

Commit

Permalink
First push.
Browse files Browse the repository at this point in the history
  • Loading branch information
TopazTK committed Feb 16, 2022
1 parent ad3f6a0 commit e4f7787
Show file tree
Hide file tree
Showing 100 changed files with 49,604 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

libraries/discord-rpc.dll
libraries/Lua.dll
LuaFrontend.pro.user
14 changes: 14 additions & 0 deletions AboutFrontend.cpp
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;
}
22 changes: 22 additions & 0 deletions AboutFrontend.hpp
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
180 changes: 180 additions & 0 deletions AboutFrontend.ui
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>
14 changes: 14 additions & 0 deletions AboutPatreon.cpp
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;
}
22 changes: 22 additions & 0 deletions AboutPatreon.hpp
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
107 changes: 107 additions & 0 deletions AboutPatreon.ui
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>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;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.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</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>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Any support is appreciated: &lt;a href=&quot;https://patreon.com/topaztk&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#007af4;&quot;&gt;https://patreon.com/topaztk&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</widget>
<resources>
<include location="Resources.qrc"/>
</resources>
<connections/>
</ui>
Loading

0 comments on commit e4f7787

Please sign in to comment.