1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-23 00:28:08 +02:00

- Compile fix for editor - Renamed /Editor to /editor and Scripting/ERM to scripting/erm - Removed unused ipch folder and format file - Removed ancient lua folder

This commit is contained in:
beegee1
2013-04-13 11:07:32 +00:00
parent 2d89e643c6
commit b1428bcd24
31 changed files with 29 additions and 93 deletions

20
editor/ConfigWindows.cpp Normal file
View File

@ -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"));
}