OSDN Git Service

[VM][Qt] Add SANYOPHC-20, PHC-25 and SEIKO MAP-1010 .
[csp-qt/common_source_project-fm7.git] / source / src / qt / phc25 / MainWindow.cpp
1 /*
2  * Common Source code Project:
3  * Ui->Qt->MainWindow for PHC-25 / MAP1010 .
4  * (C) 2015 K.Ohta <whatisthis.sowhat _at_ gmail.com>
5  *   License : GPLv2
6  *   History :
7  * Jan 14, 2015 : Initial, many of constructors were moved to qt/gui/menu_main.cpp.
8  */
9
10 #include <QVariant>
11 #include <QtGui>
12 #include "emu.h"
13 #include "commonclasses.h"
14 #include "menuclasses.h"
15 #include "qt_main.h"
16
17
18 void META_MainWindow::setupUI_Emu(void)
19 {
20    
21 }
22
23 void META_MainWindow::retranslateUi(void)
24 {
25         int i;
26         retranslateControlMenu("",  false);
27  
28         retranslateCMTMenu();
29         retranslateSoundMenu();
30         retranslateScreenMenu();
31    
32         this->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", 0));
33   
34         actionAbout->setText(QApplication::translate("MainWindow", "About...", 0));
35
36         menuEmulator->setTitle(QApplication::translate("MainWindow", "Emulator", 0));
37         menuMachine->setTitle(QApplication::translate("MainWindow", "Machine", 0));
38   
39         menuHELP->setTitle(QApplication::translate("MainWindow", "HELP", 0));
40         actionHelp_AboutQt->setText(QApplication::translate("MainWindow", "About Qt", 0));
41         // Set Labels
42 } // retranslateUi
43
44
45
46 META_MainWindow::META_MainWindow(QWidget *parent) : Ui_MainWindow(parent)
47 {
48         setupUI_Emu();
49         retranslateUi();
50 }
51
52
53 META_MainWindow::~META_MainWindow()
54 {
55 }
56
57 //QT_END_NAMESPACE
58
59
60