1
0
Fork 0
mirror of https://github.com/EdgeTX/edgetx.git synced 2025-07-24 00:35:14 +03:00

Renaming continued

This commit is contained in:
Bertrand Songis 2019-05-13 12:28:34 +02:00
parent 3194d5006f
commit 0d13e10a55
32 changed files with 51 additions and 51 deletions

View file

@ -106,18 +106,18 @@
<file>images/simulator/9X/9xcursmin.png</file> <file>images/simulator/9X/9xcursmin.png</file>
<file>images/simulator/9X/9xcursdown.png</file> <file>images/simulator/9X/9xcursdown.png</file>
<file>images/simulator/9X/9xcursphoto.png</file> <file>images/simulator/9X/9xcursphoto.png</file>
<file>images/simulator/Taranis/x9b0.png</file> <file>images/simulator/X9D/x9b0.png</file>
<file>images/simulator/Taranis/x9l0.png</file> <file>images/simulator/X9D/x9l0.png</file>
<file>images/simulator/Taranis/x9l1.png</file> <file>images/simulator/X9D/x9l1.png</file>
<file>images/simulator/Taranis/x9l2.png</file> <file>images/simulator/X9D/x9l2.png</file>
<file>images/simulator/Taranis/x9l3.png</file> <file>images/simulator/X9D/x9l3.png</file>
<file>images/simulator/Taranis/x9l4.png</file> <file>images/simulator/X9D/x9l4.png</file>
<file>images/simulator/Taranis/x9r0.png</file> <file>images/simulator/X9D/x9r0.png</file>
<file>images/simulator/Taranis/x9r1.png</file> <file>images/simulator/X9D/x9r1.png</file>
<file>images/simulator/Taranis/x9r2.png</file> <file>images/simulator/X9D/x9r2.png</file>
<file>images/simulator/Taranis/x9r3.png</file> <file>images/simulator/X9D/x9r3.png</file>
<file>images/simulator/Taranis/x9s0.png</file> <file>images/simulator/X9D/x9s0.png</file>
<file>images/simulator/Taranis/x9t0.png</file> <file>images/simulator/X9D/x9t0.png</file>
<file>images/simulator/X7/bottom.png</file> <file>images/simulator/X7/bottom.png</file>
<file>images/simulator/X7/left.png</file> <file>images/simulator/X7/left.png</file>
<file>images/simulator/X7/left_exit.png</file> <file>images/simulator/X7/left_exit.png</file>

View file

@ -452,7 +452,7 @@ const QString Boards::getBoardName(Board::Type board)
case BOARD_TARANIS_X9E: case BOARD_TARANIS_X9E:
return "Taranis X9E"; return "Taranis X9E";
case BOARD_TARANIS_X9LITE: case BOARD_TARANIS_X9LITE:
return "Taranis X3"; return "Taranis X9Lite";
case BOARD_SKY9X: case BOARD_SKY9X:
return "Sky9x"; return "Sky9x";
case BOARD_9XRPRO: case BOARD_9XRPRO:

View file

@ -34,7 +34,7 @@
#define TARANIS_X7_VARIANT 0x4000 #define TARANIS_X7_VARIANT 0x4000
#define TARANIS_XLITE_VARIANT 0x2000 #define TARANIS_XLITE_VARIANT 0x2000
#define TARANIS_XLITES_VARIANT 0x1000 #define TARANIS_XLITES_VARIANT 0x1000
#define TARANIS_X3_VARIANT 0x0800 #define TARANIS_X9LITE_VARIANT 0x0800
#define SIMU_STOCK_VARIANTS (GVARS_VARIANT|FRSKY_VARIANT) #define SIMU_STOCK_VARIANTS (GVARS_VARIANT|FRSKY_VARIANT)
#define SIMU_M128_VARIANTS (M128_VARIANT|SIMU_STOCK_VARIANTS) #define SIMU_M128_VARIANTS (M128_VARIANT|SIMU_STOCK_VARIANTS)

View file

@ -75,7 +75,7 @@ const char * OpenTxEepromInterface::getName()
case BOARD_TARANIS_X7: case BOARD_TARANIS_X7:
return "OpenTX for FrSky Taranis X7"; return "OpenTX for FrSky Taranis X7";
case BOARD_TARANIS_X9LITE: case BOARD_TARANIS_X9LITE:
return "OpenTX for FrSky Taranis X3"; return "OpenTX for FrSky Taranis X9Lite";
case BOARD_TARANIS_XLITE: case BOARD_TARANIS_XLITE:
return "OpenTX for FrSky Taranis X-Lite"; return "OpenTX for FrSky Taranis X-Lite";
case BOARD_SKY9X: case BOARD_SKY9X:
@ -319,7 +319,7 @@ int OpenTxEepromInterface::save(uint8_t * eeprom, const RadioData & radioData, u
variant |= TARANIS_X9E_VARIANT; variant |= TARANIS_X9E_VARIANT;
} }
else if (IS_TARANIS_X9LITE(board)) { else if (IS_TARANIS_X9LITE(board)) {
variant |= TARANIS_X3_VARIANT; variant |= TARANIS_X9LITE_VARIANT;
} }
else if (IS_TARANIS_X7(board)) { else if (IS_TARANIS_X7(board)) {
variant |= TARANIS_X7_VARIANT; variant |= TARANIS_X7_VARIANT;
@ -700,7 +700,7 @@ int OpenTxFirmware::getCapability(::Capability capability)
else if (IS_TARANIS_X9E(board)) else if (IS_TARANIS_X9E(board))
return TARANIS_X9E_VARIANT; return TARANIS_X9E_VARIANT;
else if (IS_TARANIS_X9LITE(board)) else if (IS_TARANIS_X9LITE(board))
return TARANIS_X3_VARIANT; return TARANIS_X9LITE_VARIANT;
else if (IS_TARANIS_X7(board)) else if (IS_TARANIS_X7(board))
return TARANIS_X7_VARIANT; return TARANIS_X7_VARIANT;
else if (IS_TARANIS_XLITES(board)) else if (IS_TARANIS_XLITES(board))
@ -1188,8 +1188,8 @@ void registerOpenTxFirmwares()
addOpenTxTaranisOptions(firmware); addOpenTxTaranisOptions(firmware);
registerOpenTxFirmware(firmware); registerOpenTxFirmware(firmware);
/* FrSky X3 board */ /* FrSky X9Lite board */
firmware = new OpenTxFirmware("opentx-x3", Firmware::tr("FrSky Taranis X3"), BOARD_TARANIS_X9LITE); firmware = new OpenTxFirmware("opentx-x9lite", Firmware::tr("FrSky Taranis X9Lite"), BOARD_TARANIS_X9LITE);
addOpenTxTaranisOptions(firmware, false); addOpenTxTaranisOptions(firmware, false);
registerOpenTxFirmware(firmware); registerOpenTxFirmware(firmware);

View file

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 595 B

After

Width:  |  Height:  |  Size: 595 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

View file

@ -104,7 +104,7 @@ class SimulatedUIWidget : public QWidget
// Each subclass is responsible for its own Ui // Each subclass is responsible for its own Ui
namespace Ui { namespace Ui {
class SimulatedUIWidget9X; class SimulatedUIWidget9X;
class SimulatedUIWidgetX3; class SimulatedUIWidgetX9LITE;
class SimulatedUIWidgetX7; class SimulatedUIWidgetX7;
class SimulatedUIWidgetX9; class SimulatedUIWidgetX9;
class SimulatedUIWidgetXLITE; class SimulatedUIWidgetXLITE;
@ -129,16 +129,16 @@ class SimulatedUIWidget9X: public SimulatedUIWidget
}; };
class SimulatedUIWidgetX3: public SimulatedUIWidget class SimulatedUIWidgetX9LITE: public SimulatedUIWidget
{ {
Q_OBJECT Q_OBJECT
public: public:
explicit SimulatedUIWidgetX3(SimulatorInterface * simulator, QWidget * parent = nullptr); explicit SimulatedUIWidgetX9LITE(SimulatorInterface * simulator, QWidget * parent = nullptr);
virtual ~SimulatedUIWidgetX3(); virtual ~SimulatedUIWidgetX9LITE();
private: private:
Ui::SimulatedUIWidgetX3 * ui; Ui::SimulatedUIWidgetX9LITE * ui;
}; };
class SimulatedUIWidgetX7: public SimulatedUIWidget class SimulatedUIWidgetX7: public SimulatedUIWidget

View file

@ -40,15 +40,15 @@ SimulatedUIWidgetX9::SimulatedUIWidgetX9(SimulatorInterface *simulator, QWidget
// left side // left side
act = new RadioUiAction(0, QList<int>() << Qt::Key_Up << Qt::Key_PageUp, SIMU_STR_HLP_KEYS_GO_UP, SIMU_STR_HLP_ACT_MENU); act = new RadioUiAction(0, QList<int>() << Qt::Key_Up << Qt::Key_PageUp, SIMU_STR_HLP_KEYS_GO_UP, SIMU_STR_HLP_ACT_MENU);
addRadioWidget(ui->leftbuttons->addArea(btn, "Taranis/x9l1.png", act)); addRadioWidget(ui->leftbuttons->addArea(btn, "X9D/x9l1.png", act));
btn.moveTop(btn.top() + btn.height() + vsp); btn.moveTop(btn.top() + btn.height() + vsp);
act = new RadioUiAction(3, QList<int>() << Qt::Key_Down << Qt::Key_PageDown, SIMU_STR_HLP_KEYS_GO_DN, SIMU_STR_HLP_ACT_PAGE); act = new RadioUiAction(3, QList<int>() << Qt::Key_Down << Qt::Key_PageDown, SIMU_STR_HLP_KEYS_GO_DN, SIMU_STR_HLP_ACT_PAGE);
addRadioWidget(ui->leftbuttons->addArea(btn, "Taranis/x9l2.png", act)); addRadioWidget(ui->leftbuttons->addArea(btn, "X9D/x9l2.png", act));
btn.moveTop(btn.top() + btn.height() + vsp); btn.moveTop(btn.top() + btn.height() + vsp);
act = new RadioUiAction(1, QList<int>() << Qt::Key_Delete << Qt::Key_Escape << Qt::Key_Backspace, SIMU_STR_HLP_KEYS_EXIT, SIMU_STR_HLP_ACT_EXIT); act = new RadioUiAction(1, QList<int>() << Qt::Key_Delete << Qt::Key_Escape << Qt::Key_Backspace, SIMU_STR_HLP_KEYS_EXIT, SIMU_STR_HLP_ACT_EXIT);
addRadioWidget(ui->leftbuttons->addArea(btn, "Taranis/x9l3.png", act)); addRadioWidget(ui->leftbuttons->addArea(btn, "X9D/x9l3.png", act));
m_scrollUpAction = new RadioUiAction(4, QList<int>() << Qt::Key_Plus << Qt::Key_Equal << Qt::Key_Left, m_scrollUpAction = new RadioUiAction(4, QList<int>() << Qt::Key_Plus << Qt::Key_Equal << Qt::Key_Left,
SIMU_STR_HLP_KEY_LFT % "|" % SIMU_STR_HLP_KEY_PLS % "|" % SIMU_STR_HLP_MOUSE_UP, SIMU_STR_HLP_ACT_PLS); SIMU_STR_HLP_KEY_LFT % "|" % SIMU_STR_HLP_KEY_PLS % "|" % SIMU_STR_HLP_MOUSE_UP, SIMU_STR_HLP_ACT_PLS);
@ -58,16 +58,16 @@ SimulatedUIWidgetX9::SimulatedUIWidgetX9(SimulatorInterface *simulator, QWidget
// right side // right side
btn.moveTopLeft(QPoint(58, btop)); btn.moveTopLeft(QPoint(58, btop));
addRadioWidget(ui->rightbuttons->addArea(btn, "Taranis/x9r1.png", m_scrollUpAction)); addRadioWidget(ui->rightbuttons->addArea(btn, "X9D/x9r1.png", m_scrollUpAction));
btn.moveTop(btn.top() + btn.height() + vsp); btn.moveTop(btn.top() + btn.height() + vsp);
addRadioWidget(ui->rightbuttons->addArea(btn, "Taranis/x9r2.png", m_scrollDnAction)); addRadioWidget(ui->rightbuttons->addArea(btn, "X9D/x9r2.png", m_scrollDnAction));
btn.moveTop(btn.top() + btn.height() + vsp); btn.moveTop(btn.top() + btn.height() + vsp);
m_mouseMidClickAction = new RadioUiAction(2, QList<int>() << Qt::Key_Enter << Qt::Key_Return, SIMU_STR_HLP_KEYS_ACTIVATE, SIMU_STR_HLP_ACT_ENT); m_mouseMidClickAction = new RadioUiAction(2, QList<int>() << Qt::Key_Enter << Qt::Key_Return, SIMU_STR_HLP_KEYS_ACTIVATE, SIMU_STR_HLP_ACT_ENT);
addRadioWidget(ui->rightbuttons->addArea(btn, "Taranis/x9r3.png", m_mouseMidClickAction)); addRadioWidget(ui->rightbuttons->addArea(btn, "X9D/x9r3.png", m_mouseMidClickAction));
addRadioWidget(ui->leftbuttons->addArea(QRect(89, 177, 30, 20), "Taranis/x9l4.png", m_screenshotAction)); addRadioWidget(ui->leftbuttons->addArea(QRect(89, 177, 30, 20), "X9D/x9l4.png", m_screenshotAction));
m_backlightColors << QColor(47, 123, 227); // Taranis Blue m_backlightColors << QColor(47, 123, 227); // Taranis Blue
m_backlightColors << QColor(166,247,159); m_backlightColors << QColor(166,247,159);

View file

@ -62,7 +62,7 @@
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">background:url(:/images/simulator/Taranis/x9l0.png);</string> <string notr="true">background:url(:/images/simulator/X9D/x9l0.png);</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -81,7 +81,7 @@
</size> </size>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">background:url(:/images/simulator/Taranis/x9t0.png)</string> <string notr="true">background:url(:/images/simulator/X9D/x9t0.png)</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -100,7 +100,7 @@
</size> </size>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">background:url(:/images/simulator/Taranis/x9r0.png)</string> <string notr="true">background:url(:/images/simulator/X9D/x9r0.png)</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -141,7 +141,7 @@
</size> </size>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">background:url(:/images/simulator/Taranis/x9b0.png)</string> <string notr="true">background:url(:/images/simulator/X9D/x9b0.png)</string>
</property> </property>
</widget> </widget>
</item> </item>

View file

@ -3,9 +3,9 @@
// NOTE: RadioUiAction(NUMBER,...): NUMBER relates to enum EnumKeys in the specific board.h // NOTE: RadioUiAction(NUMBER,...): NUMBER relates to enum EnumKeys in the specific board.h
SimulatedUIWidgetX3::SimulatedUIWidgetX3(SimulatorInterface *simulator, QWidget * parent): SimulatedUIWidgetX9LITE::SimulatedUIWidgetX9LITE(SimulatorInterface *simulator, QWidget * parent):
SimulatedUIWidget(simulator, parent), SimulatedUIWidget(simulator, parent),
ui(new Ui::SimulatedUIWidgetX3) ui(new Ui::SimulatedUIWidgetX9LITE)
{ {
RadioUiAction * act; RadioUiAction * act;
QPolygon polygon; QPolygon polygon;
@ -17,24 +17,24 @@ SimulatedUIWidgetX3::SimulatedUIWidgetX3(SimulatorInterface *simulator, QWidget
QPoint ctr(70, 91); QPoint ctr(70, 91);
polygon << polyArc(ctr.x(), ctr.y(), 50, -90, 90) << polyArc(ctr.x(), ctr.y(), 22, -90, 90); polygon << polyArc(ctr.x(), ctr.y(), 50, -90, 90) << polyArc(ctr.x(), ctr.y(), 22, -90, 90);
act = new RadioUiAction(3, QList<int>() << Qt::Key_PageUp << Qt::Key_Up, SIMU_STR_HLP_KEYS_GO_UP, SIMU_STR_HLP_ACT_PAGE); act = new RadioUiAction(3, QList<int>() << Qt::Key_PageUp << Qt::Key_Up, SIMU_STR_HLP_KEYS_GO_UP, SIMU_STR_HLP_ACT_PAGE);
addRadioWidget(ui->leftbuttons->addArea(polygon, "X3/left_page.png", act)); addRadioWidget(ui->leftbuttons->addArea(polygon, "X9LITE/left_page.png", act));
act = new RadioUiAction(0, QList<int>() << Qt::Key_PageDown << Qt::Key_Down, SIMU_STR_HLP_KEYS_GO_DN, SIMU_STR_HLP_ACT_MENU_ICN); act = new RadioUiAction(0, QList<int>() << Qt::Key_PageDown << Qt::Key_Down, SIMU_STR_HLP_KEYS_GO_DN, SIMU_STR_HLP_ACT_MENU_ICN);
addRadioWidget(ui->leftbuttons->addArea(polyArc(ctr.x(), ctr.y(), 20), "X3/left_menu.png", act)); addRadioWidget(ui->leftbuttons->addArea(polyArc(ctr.x(), ctr.y(), 20), "X9LITE/left_menu.png", act));
polygon.clear(); polygon.clear();
polygon << polyArc(ctr.x(), ctr.y(), 50, 90, 270) << polyArc(ctr.x(), ctr.y(), 22, 90, 270); polygon << polyArc(ctr.x(), ctr.y(), 50, 90, 270) << polyArc(ctr.x(), ctr.y(), 22, 90, 270);
act = new RadioUiAction(1, QList<int>() << Qt::Key_Delete << Qt::Key_Escape << Qt::Key_Backspace, SIMU_STR_HLP_KEYS_EXIT, SIMU_STR_HLP_ACT_EXIT); act = new RadioUiAction(1, QList<int>() << Qt::Key_Delete << Qt::Key_Escape << Qt::Key_Backspace, SIMU_STR_HLP_KEYS_EXIT, SIMU_STR_HLP_ACT_EXIT);
addRadioWidget(ui->leftbuttons->addArea(polygon, "X3/left_exit.png", act)); addRadioWidget(ui->leftbuttons->addArea(polygon, "X9LITE/left_exit.png", act));
m_scrollUpAction = new RadioUiAction(-1, QList<int>() << Qt::Key_Minus << Qt::Key_Equal << Qt::Key_Left, SIMU_STR_HLP_KEYS_GO_LFT, SIMU_STR_HLP_ACT_ROT_LFT); m_scrollUpAction = new RadioUiAction(-1, QList<int>() << Qt::Key_Minus << Qt::Key_Equal << Qt::Key_Left, SIMU_STR_HLP_KEYS_GO_LFT, SIMU_STR_HLP_ACT_ROT_LFT);
m_scrollDnAction = new RadioUiAction(-1, QList<int>() << Qt::Key_Plus << Qt::Key_Right, SIMU_STR_HLP_KEYS_GO_RGT, SIMU_STR_HLP_ACT_ROT_RGT); m_scrollDnAction = new RadioUiAction(-1, QList<int>() << Qt::Key_Plus << Qt::Key_Right, SIMU_STR_HLP_KEYS_GO_RGT, SIMU_STR_HLP_ACT_ROT_RGT);
connectScrollActions(); connectScrollActions();
m_mouseMidClickAction = new RadioUiAction(2, QList<int>() << Qt::Key_Enter << Qt::Key_Return, SIMU_STR_HLP_KEYS_ACTIVATE, SIMU_STR_HLP_ACT_ROT_DN); m_mouseMidClickAction = new RadioUiAction(2, QList<int>() << Qt::Key_Enter << Qt::Key_Return, SIMU_STR_HLP_KEYS_ACTIVATE, SIMU_STR_HLP_ACT_ROT_DN);
addRadioWidget(ui->rightbuttons->addArea(polyArc(88, 92, 33), "X3/right_ent.png", m_mouseMidClickAction)); addRadioWidget(ui->rightbuttons->addArea(polyArc(88, 92, 33), "X9LITE/right_ent.png", m_mouseMidClickAction));
addRadioWidget(ui->leftbuttons->addArea(QRect(9, 154, 30, 30), "X3/left_scrnshot.png", m_screenshotAction)); addRadioWidget(ui->leftbuttons->addArea(QRect(9, 154, 30, 30), "X9LITE/left_scrnshot.png", m_screenshotAction));
m_backlightColors << QColor(215, 243, 255); // X3 Blue m_backlightColors << QColor(215, 243, 255); // X3 Blue
m_backlightColors << QColor(166,247,159); m_backlightColors << QColor(166,247,159);
@ -59,7 +59,7 @@ SimulatedUIWidgetX3::SimulatedUIWidgetX3(SimulatorInterface *simulator, QWidget
tim->start(100); tim->start(100);
} }
SimulatedUIWidgetX3::~SimulatedUIWidgetX3() SimulatedUIWidgetX9LITE::~SimulatedUIWidgetX9LITE()
{ {
delete ui; delete ui;
} }

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>SimulatedUIWidgetX3</class> <class>SimulatedUIWidgetX9LITE</class>
<widget class="QWidget" name="SimulatedUIWidgetX3"> <widget class="QWidget" name="SimulatedUIWidgetX9LITE">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>
@ -71,7 +71,7 @@
</size> </size>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">background:url(:/images/simulator/X7/left.png);</string> <string notr="true">background:url(:/images/simulator/X9LITE/left.png);</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -121,7 +121,7 @@
</size> </size>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">background:url(:/images/simulator/X7/right.png)</string> <string notr="true">background:url(:/images/simulator/X9LITE/right.png)</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -146,7 +146,7 @@
</size> </size>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">background:url(:/images/simulator/X7/top.png)</string> <string notr="true">background:url(:/images/simulator/X9LITE/top.png)</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -171,7 +171,7 @@
</size> </size>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">background:url(:/images/simulator/X7/bottom.png)</string> <string notr="true">background:url(:/images/simulator/X9LITE/bottom.png)</string>
</property> </property>
</widget> </widget>
</item> </item>

View file

@ -69,7 +69,7 @@ SimulatorWidget::SimulatorWidget(QWidget * parent, SimulatorInterface * simulato
switch(m_board) { switch(m_board) {
case Board::BOARD_TARANIS_X9LITE: case Board::BOARD_TARANIS_X9LITE:
radioUiWidget = new SimulatedUIWidgetX3(simulator, this); radioUiWidget = new SimulatedUIWidgetX9LITE(simulator, this);
break; break;
case Board::BOARD_TARANIS_X7: case Board::BOARD_TARANIS_X7:
radioUiWidget = new SimulatedUIWidgetX7(simulator, this); radioUiWidget = new SimulatedUIWidgetX7(simulator, this);

View file

@ -14,7 +14,7 @@ options = {
"LUA": "NO_MODEL_SCRIPTS", "LUA": "NO_MODEL_SCRIPTS",
"GVARS": "YES" "GVARS": "YES"
}, },
"X3": { "X9LITE": {
"PXX1": "NO", "PXX1": "NO",
"LUA": "NO_MODEL_SCRIPTS", "LUA": "NO_MODEL_SCRIPTS",
"GVARS": "YES", "GVARS": "YES",