Initial draft of "about" dialog box with assimp copyright
This commit is contained in:
parent
086819b939
commit
9157acd164
|
@ -0,0 +1,14 @@
|
|||
#include "CAboutDialog.h"
|
||||
#include "ui_CAboutDialog.h"
|
||||
|
||||
CAboutDialog::CAboutDialog(QWidget *parent) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::CAboutDialog)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
CAboutDialog::~CAboutDialog()
|
||||
{
|
||||
delete ui;
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef CABOUTDIALOG_H
|
||||
#define CABOUTDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui {
|
||||
class CAboutDialog;
|
||||
}
|
||||
|
||||
class CAboutDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit CAboutDialog(QWidget *parent = 0);
|
||||
~CAboutDialog();
|
||||
|
||||
private:
|
||||
Ui::CAboutDialog *ui;
|
||||
};
|
||||
|
||||
#endif // CABOUTDIALOG_H
|
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>CAboutDialog</class>
|
||||
<widget class="QDialog" name="CAboutDialog">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>429</width>
|
||||
<height>210</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Dialog</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string><html><head/><body><p>Prime World Editor is developed by <span style=" font-weight:600;">Parax0</span>.<br/>All the games it edits are developed by <span style=" font-weight:600;">Retro Studios</span> and published by <span style=" font-weight:600;">Nintendo</span>.</p><p>Special thanks to:</p><p><span style=" font-weight:600;">Dario FF</span>: Various programming help and design feedback<span style=" font-weight:600;"><br/>Bearborg</span>: UI icons<br/>Thanks to the community at <span style=" font-weight:600;">Metroid2002</span>, who worked collaboratively on reverse engineering the games and documenting their file formats.</p><p>Check the <a href="http://www.metroid2002.com/retromodding/wiki/Retro_Modding_Wiki"><span style=" text-decoration: underline; color:#0000ff;">Retro Modding Wiki</span></a> for file format documentation.</p><p>Prime World Editor uses Assimp (Open Asset Import Library).<br/>Copyright © 2006-2012 assimp team<br/>All rights reserved.</p></body></html></string>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="margin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="indent">
|
||||
<number>-1</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
Loading…
Reference in New Issue