summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew <forkk@forkk.net>2013-01-28 18:01:20 -0600
committerAndrew <forkk@forkk.net>2013-01-28 18:01:20 -0600
commit3a0367a79c53c59e670ee50927247885fe4807cb (patch)
tree78517d43d8719d476fe116caa14ef6abe85775a7
parenta25bedd7706b14cdae91556e4a577e410745f29a (diff)
downloadMultiMC-3a0367a79c53c59e670ee50927247885fe4807cb.tar
MultiMC-3a0367a79c53c59e670ee50927247885fe4807cb.tar.gz
MultiMC-3a0367a79c53c59e670ee50927247885fe4807cb.tar.lz
MultiMC-3a0367a79c53c59e670ee50927247885fe4807cb.tar.xz
MultiMC-3a0367a79c53c59e670ee50927247885fe4807cb.zip
Resized main window and added version info.
-rw-r--r--CMakeLists.txt14
-rw-r--r--data/version.cpp38
-rw-r--r--data/version.h38
-rw-r--r--gui/mainwindow.cpp6
-rw-r--r--gui/mainwindow.ui4
5 files changed, 91 insertions, 9 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 66e18484..1859c71b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 2.8.9)
-project(multimc5)
+project(MultiMC5)
set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
@@ -105,6 +105,7 @@ data/inifile.cpp
data/instancebase.cpp
data/instancemodel.cpp
data/stdinstance.cpp
+data/version.cpp
gui/mainwindow.cpp
gui/modeditwindow.cpp
@@ -126,6 +127,7 @@ data/inifile.h
data/instancebase.h
data/instancemodel.h
data/stdinstance.h
+data/version.h
util/apputils.h
util/pathutils.h
@@ -152,8 +154,8 @@ SET_SOURCE_FILES_PROPERTIES(resources/MultiMCLauncher.jar GENERATED)
QT5_WRAP_UI(MULTIMC_UI ${MULTIMC5_UIS})
QT5_ADD_RESOURCES(MULTIMC_QRC multimc.qrc)
-add_executable(multimc5 ${MULTIMC_SOURCES} ${MULTIMC_HEADERS} ${MULTIMC_UI} ${MULTIMC_QRC})
-qt5_use_modules(multimc5 Widgets)
-target_link_libraries(multimc5 quazip patchlib)
-add_dependencies(multimc5 MultiMCLauncher)
-install(TARGETS multimc5 RUNTIME DESTINATION bin)
+add_executable(MultiMC ${MULTIMC_SOURCES} ${MULTIMC_HEADERS} ${MULTIMC_UI} ${MULTIMC_QRC})
+qt5_use_modules(MultiMC Widgets)
+target_link_libraries(MultiMC quazip patchlib)
+add_dependencies(MultiMC MultiMCLauncher)
+install(TARGETS MultiMC RUNTIME DESTINATION bin)
diff --git a/data/version.cpp b/data/version.cpp
new file mode 100644
index 00000000..905402fd
--- /dev/null
+++ b/data/version.cpp
@@ -0,0 +1,38 @@
+/* Copyright 2013 MultiMC Contributors
+ *
+ * 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 "version.h"
+
+#include "config.h"
+
+Version Version::current = Version(VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD);
+
+Version::Version(int major, int minor, int revision, int build, QObject *parent) :
+ QObject(parent)
+{
+ this->major = major;
+ this->minor = minor;
+ this->revision = revision;
+ this->build = build;
+}
+
+QString Version::toString() const
+{
+ return QString("%1.%2.%3.%4").arg(
+ QString::number(major),
+ QString::number(minor),
+ QString::number(revision),
+ QString::number(build));
+}
diff --git a/data/version.h b/data/version.h
new file mode 100644
index 00000000..37c0fd68
--- /dev/null
+++ b/data/version.h
@@ -0,0 +1,38 @@
+/* Copyright 2013 MultiMC Contributors
+ *
+ * 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 VERSION_H
+#define VERSION_H
+
+#include <QObject>
+
+class Version : public QObject
+{
+ Q_OBJECT
+public:
+ explicit Version(int major = 0, int minor = 0, int revision = 0,
+ int build = 0, QObject *parent = 0);
+
+ QString toString() const;
+
+ int major;
+ int minor;
+ int revision;
+ int build;
+
+ static Version current;
+};
+
+#endif // VERSION_H
diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp
index 87a1dcc0..eedaddb8 100644
--- a/gui/mainwindow.cpp
+++ b/gui/mainwindow.cpp
@@ -19,13 +19,17 @@
#include <QDesktopServices>
#include <QUrl>
-#include "../gui/settingsdialog.h"
+#include "gui/settingsdialog.h"
+#include "data/version.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
+
+ setWindowTitle(QString("MultiMC %1").arg(Version::current.toString()));
+
instList.initialLoad("instances");
ui->instanceView->setModel(&instList);
}
diff --git a/gui/mainwindow.ui b/gui/mainwindow.ui
index ccc7e777..6640657a 100644
--- a/gui/mainwindow.ui
+++ b/gui/mainwindow.ui
@@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
- <width>739</width>
- <height>657</height>
+ <width>854</width>
+ <height>480</height>
</rect>
</property>
<property name="windowTitle">