[qet] [3587] Refresh .pro |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 3587
Author: scorpio810
Date: 2015-01-03 12:49:27 +0100 (Sat, 03 Jan 2015)
Log Message:
-----------
Refresh .pro
Modified Paths:
--------------
branches/newdxf/qelectrotech.pro
Added Paths:
-----------
branches/newdxf/sources/editor/ui/ui_mainwindow.h
Modified: branches/newdxf/qelectrotech.pro
===================================================================
--- branches/newdxf/qelectrotech.pro 2015-01-03 11:26:40 UTC (rev 3586)
+++ branches/newdxf/qelectrotech.pro 2015-01-03 11:49:27 UTC (rev 3587)
@@ -72,6 +72,7 @@
sources/dvevent \
sources/editor \
sources/editor/esevent \
+ sources/editor/dxftoelmt \
sources/undocommand
@@ -80,6 +81,7 @@
$$files(sources/properties/*.h) \
$$files(sources/editor/ui/*.h) \
$$files(sources/editor/esevent/*.h) \
+ $$files(sources/editor/dxftoelmt/*.h) \
$$files(sources/dvevent/*.h) \
$$files(sources/undocommand/*.h)
@@ -87,6 +89,7 @@
$$files(sources/properties/*.cpp) \
$$files(sources/editor/ui/*.cpp) \
$$files(sources/editor/esevent/*.cpp) \
+ $$files(sources/editor/dxftoelmt/*.cpp) \
$$files(sources/dvevent/*.cpp) \
$$files(sources/undocommand/*.cpp)
Added: branches/newdxf/sources/editor/ui/ui_mainwindow.h
===================================================================
--- branches/newdxf/sources/editor/ui/ui_mainwindow.h (rev 0)
+++ branches/newdxf/sources/editor/ui/ui_mainwindow.h 2015-01-03 11:49:27 UTC (rev 3587)
@@ -0,0 +1,178 @@
+/********************************************************************************
+** Form generated from reading UI file 'mainwindow.ui'
+**
+** Created by: Qt User Interface Compiler version 4.8.6
+**
+** WARNING! All changes made in this file will be lost when recompiling UI file!
+********************************************************************************/
+
+#ifndef UI_MAINWINDOW_H
+#define UI_MAINWINDOW_H
+
+#include <QtCore/QVariant>
+#include <QtGui/QAction>
+#include <QtGui/QApplication>
+#include <QtGui/QButtonGroup>
+#include <QtGui/QGridLayout>
+#include <QtGui/QHeaderView>
+#include <QtGui/QLabel>
+#include <QtGui/QLineEdit>
+#include <QtGui/QMainWindow>
+#include <QtGui/QMenuBar>
+#include <QtGui/QPushButton>
+#include <QtGui/QStatusBar>
+#include <QtGui/QTextEdit>
+#include <QtGui/QToolBar>
+#include <QtGui/QVBoxLayout>
+#include <QtGui/QWidget>
+
+QT_BEGIN_NAMESPACE
+
+class Ui_MainWindow
+{
+public:
+ QWidget *centralWidget;
+ QVBoxLayout *verticalLayout;
+ QGridLayout *gridLayout_2;
+ QLineEdit *SectionCount1;
+ QLabel *label;
+ QLabel *label_2;
+ QLineEdit *m_import_file_path_le;
+ QLabel *labelSectionCount;
+ QLineEdit *ExportFile;
+ QLabel *label_4;
+ QLineEdit *m_elmt_name_le;
+ QPushButton *m_save_elmt_pb;
+ QPushButton *m_load_dxf_pb;
+ QTextEdit *ImportDXF;
+ QTextEdit *ExportToELMT;
+ QMenuBar *menuBar;
+ QToolBar *mainToolBar;
+ QStatusBar *statusBar;
+
+ void setupUi(QMainWindow *MainWindow)
+ {
+ if (MainWindow->objectName().isEmpty())
+ MainWindow->setObjectName(QString::fromUtf8("MainWindow"));
+ MainWindow->resize(758, 488);
+ centralWidget = new QWidget(MainWindow);
+ centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
+ verticalLayout = new QVBoxLayout(centralWidget);
+ verticalLayout->setSpacing(6);
+ verticalLayout->setContentsMargins(11, 11, 11, 11);
+ verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
+ gridLayout_2 = new QGridLayout();
+ gridLayout_2->setSpacing(6);
+ gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
+ SectionCount1 = new QLineEdit(centralWidget);
+ SectionCount1->setObjectName(QString::fromUtf8("SectionCount1"));
+ QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
+ sizePolicy.setHorizontalStretch(0);
+ sizePolicy.setVerticalStretch(0);
+ sizePolicy.setHeightForWidth(SectionCount1->sizePolicy().hasHeightForWidth());
+ SectionCount1->setSizePolicy(sizePolicy);
+
+ gridLayout_2->addWidget(SectionCount1, 3, 1, 1, 1);
+
+ label = new QLabel(centralWidget);
+ label->setObjectName(QString::fromUtf8("label"));
+
+ gridLayout_2->addWidget(label, 2, 0, 1, 1);
+
+ label_2 = new QLabel(centralWidget);
+ label_2->setObjectName(QString::fromUtf8("label_2"));
+
+ gridLayout_2->addWidget(label_2, 2, 2, 1, 1);
+
+ m_import_file_path_le = new QLineEdit(centralWidget);
+ m_import_file_path_le->setObjectName(QString::fromUtf8("m_import_file_path_le"));
+ m_import_file_path_le->setMaximumSize(QSize(16777165, 16777215));
+
+ gridLayout_2->addWidget(m_import_file_path_le, 2, 1, 1, 1);
+
+ labelSectionCount = new QLabel(centralWidget);
+ labelSectionCount->setObjectName(QString::fromUtf8("labelSectionCount"));
+
+ gridLayout_2->addWidget(labelSectionCount, 3, 0, 1, 1);
+
+ ExportFile = new QLineEdit(centralWidget);
+ ExportFile->setObjectName(QString::fromUtf8("ExportFile"));
+
+ gridLayout_2->addWidget(ExportFile, 2, 3, 1, 1);
+
+ label_4 = new QLabel(centralWidget);
+ label_4->setObjectName(QString::fromUtf8("label_4"));
+
+ gridLayout_2->addWidget(label_4, 3, 2, 1, 1);
+
+ m_elmt_name_le = new QLineEdit(centralWidget);
+ m_elmt_name_le->setObjectName(QString::fromUtf8("m_elmt_name_le"));
+
+ gridLayout_2->addWidget(m_elmt_name_le, 3, 3, 1, 1);
+
+ m_save_elmt_pb = new QPushButton(centralWidget);
+ m_save_elmt_pb->setObjectName(QString::fromUtf8("m_save_elmt_pb"));
+
+ gridLayout_2->addWidget(m_save_elmt_pb, 1, 2, 1, 2);
+
+ m_load_dxf_pb = new QPushButton(centralWidget);
+ m_load_dxf_pb->setObjectName(QString::fromUtf8("m_load_dxf_pb"));
+
+ gridLayout_2->addWidget(m_load_dxf_pb, 1, 0, 1, 2);
+
+ ImportDXF = new QTextEdit(centralWidget);
+ ImportDXF->setObjectName(QString::fromUtf8("ImportDXF"));
+ QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Expanding);
+ sizePolicy1.setHorizontalStretch(0);
+ sizePolicy1.setVerticalStretch(0);
+ sizePolicy1.setHeightForWidth(ImportDXF->sizePolicy().hasHeightForWidth());
+ ImportDXF->setSizePolicy(sizePolicy1);
+
+ gridLayout_2->addWidget(ImportDXF, 4, 0, 1, 2);
+
+ ExportToELMT = new QTextEdit(centralWidget);
+ ExportToELMT->setObjectName(QString::fromUtf8("ExportToELMT"));
+ ExportToELMT->setLineWrapMode(QTextEdit::NoWrap);
+
+ gridLayout_2->addWidget(ExportToELMT, 4, 2, 1, 2);
+
+
+ verticalLayout->addLayout(gridLayout_2);
+
+ MainWindow->setCentralWidget(centralWidget);
+ menuBar = new QMenuBar(MainWindow);
+ menuBar->setObjectName(QString::fromUtf8("menuBar"));
+ menuBar->setGeometry(QRect(0, 0, 758, 25));
+ MainWindow->setMenuBar(menuBar);
+ mainToolBar = new QToolBar(MainWindow);
+ mainToolBar->setObjectName(QString::fromUtf8("mainToolBar"));
+ MainWindow->addToolBar(Qt::TopToolBarArea, mainToolBar);
+ statusBar = new QStatusBar(MainWindow);
+ statusBar->setObjectName(QString::fromUtf8("statusBar"));
+ MainWindow->setStatusBar(statusBar);
+
+ retranslateUi(MainWindow);
+
+ QMetaObject::connectSlotsByName(MainWindow);
+ } // setupUi
+
+ void retranslateUi(QMainWindow *MainWindow)
+ {
+ MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", 0, QApplication::UnicodeUTF8));
+ label->setText(QApplication::translate("MainWindow", "Import file path :", 0, QApplication::UnicodeUTF8));
+ label_2->setText(QApplication::translate("MainWindow", "Export directory path :", 0, QApplication::UnicodeUTF8));
+ labelSectionCount->setText(QApplication::translate("MainWindow", "Section count", 0, QApplication::UnicodeUTF8));
+ label_4->setText(QApplication::translate("MainWindow", "element name :", 0, QApplication::UnicodeUTF8));
+ m_save_elmt_pb->setText(QApplication::translate("MainWindow", "save to elmt file", 0, QApplication::UnicodeUTF8));
+ m_load_dxf_pb->setText(QApplication::translate("MainWindow", "Load DXF file", 0, QApplication::UnicodeUTF8));
+ } // retranslateUi
+
+};
+
+namespace Ui {
+ class MainWindow: public Ui_MainWindow {};
+} // namespace Ui
+
+QT_END_NAMESPACE
+
+#endif // UI_MAINWINDOW_H