Explorar o código

* missing files

mateuszb %!s(int64=12) %!d(string=hai) anos
pai
achega
7270d16f45
Modificáronse 2 ficheiros con 43 adicións e 0 borrados
  1. 20 0
      Editor/ConfigWindows.cpp
  2. 23 0
      Editor/ConfigWindows.h

+ 20 - 0
Editor/ConfigWindows.cpp

@@ -0,0 +1,20 @@
+#include "StdInc.h"
+#include "ConfigWindows.h"
+#include "Editor.h"
+#include "../lib/Mapping/CMap.h"
+
+#include <QTabWidget>
+
+MapSpecifications::MapSpecifications( QWidget *p /*= 0*/ ) : QDialog(p), editor(dynamic_cast<Editor*>(p))
+{
+	QTabWidget * tabs = new QTabWidget(this);
+
+	enum {GENERAL, PLAYER_SPEC, TEAMS, RUMORS, TIMED_EVENTS, LOSS_COND, VIC_COND, HEROES, ARTIFACTS, SPELLS, SEC_SKILLS};
+	QWidget * tabWidgets[11];
+	tabWidgets[GENERAL] = new QWidget(tabs);
+
+	int tabNames[] = {160, 167, 169, 168, 170, 166, 171, 165};
+
+	tabs->addTab(tabWidgets[GENERAL], tr("General"));
+
+}

+ 23 - 0
Editor/ConfigWindows.h

@@ -0,0 +1,23 @@
+#pragma once
+#include <QtGui>
+
+class Editor;
+
+
+class MapSpecifications: public QDialog
+{
+	Q_OBJECT
+public:
+	explicit MapSpecifications(QWidget *p = 0);
+
+private:
+	Editor * editor;
+	QLineEdit *lineEdit;
+};
+
+
+
+
+
+
+