eric6/MicroPython/MicroPythonReplWidget.ui

Sun, 07 Jul 2019 18:48:17 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 07 Jul 2019 18:48:17 +0200
branch
micropython
changeset 7054
fb84d8489bc1
child 7059
a8fad276cbd5
permissions
-rw-r--r--

Started implementing the MicroPython support.

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>MicroPythonReplWidget</class>
 <widget class="QWidget" name="MicroPythonReplWidget">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>456</width>
    <height>548</height>
   </rect>
  </property>
  <layout class="QVBoxLayout" name="verticalLayout">
   <item>
    <layout class="QHBoxLayout" name="horizontalLayout">
     <item>
      <widget class="QLabel" name="deviceIconLabel">
       <property name="sizePolicy">
        <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
         <horstretch>0</horstretch>
         <verstretch>0</verstretch>
        </sizepolicy>
       </property>
       <property name="minimumSize">
        <size>
         <width>48</width>
         <height>48</height>
        </size>
       </property>
      </widget>
     </item>
     <item>
      <layout class="QGridLayout" name="gridLayout">
       <item row="1" column="0" colspan="3">
        <widget class="QLabel" name="deviceInfoLabel">
         <property name="sizePolicy">
          <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
           <horstretch>0</horstretch>
           <verstretch>0</verstretch>
          </sizepolicy>
         </property>
         <property name="wordWrap">
          <bool>true</bool>
         </property>
        </widget>
       </item>
       <item row="0" column="0">
        <widget class="QComboBox" name="deviceTypeComboBox">
         <property name="sizePolicy">
          <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
           <horstretch>0</horstretch>
           <verstretch>0</verstretch>
          </sizepolicy>
         </property>
        </widget>
       </item>
       <item row="0" column="2">
        <widget class="E5Led" name="deviceConnectedLed" native="true"/>
       </item>
       <item row="0" column="1">
        <widget class="QToolButton" name="checkButton">
         <property name="toolTip">
          <string>Press to check for connected devices</string>
         </property>
        </widget>
       </item>
      </layout>
     </item>
    </layout>
   </item>
   <item>
    <layout class="QHBoxLayout" name="horizontalLayout_2">
     <item>
      <widget class="QToolButton" name="runButton">
       <property name="toolTip">
        <string>Press to run the current script on the selected device</string>
       </property>
      </widget>
     </item>
     <item>
      <widget class="QToolButton" name="replButton">
       <property name="toolTip">
        <string>Press to open a terminal (REPL) on the selected device</string>
       </property>
      </widget>
     </item>
     <item>
      <widget class="QToolButton" name="filesButton">
       <property name="toolTip">
        <string>Press to open a file manager on the selected device (REPL must be disconnected first)</string>
       </property>
      </widget>
     </item>
     <item>
      <widget class="QToolButton" name="chartButton">
       <property name="toolTip">
        <string>Press to open a chart window to display data receive from the selected device</string>
       </property>
      </widget>
     </item>
     <item>
      <spacer name="horizontalSpacer">
       <property name="orientation">
        <enum>Qt::Horizontal</enum>
       </property>
       <property name="sizeHint" stdset="0">
        <size>
         <width>40</width>
         <height>20</height>
        </size>
       </property>
      </spacer>
     </item>
     <item>
      <widget class="QToolButton" name="disconnectButton">
       <property name="toolTip">
        <string>Press to disconnect the selected device</string>
       </property>
      </widget>
     </item>
    </layout>
   </item>
   <item>
    <widget class="QTextEdit" name="replEdit"/>
   </item>
   <item>
    <widget class="QLabel" name="statusLabel"/>
   </item>
  </layout>
 </widget>
 <customwidgets>
  <customwidget>
   <class>E5Led</class>
   <extends>QWidget</extends>
   <header>E5Gui/E5Led.h</header>
   <container>1</container>
  </customwidget>
 </customwidgets>
 <tabstops>
  <tabstop>deviceTypeComboBox</tabstop>
  <tabstop>checkButton</tabstop>
  <tabstop>runButton</tabstop>
  <tabstop>replButton</tabstop>
  <tabstop>filesButton</tabstop>
  <tabstop>chartButton</tabstop>
  <tabstop>disconnectButton</tabstop>
  <tabstop>replEdit</tabstop>
 </tabstops>
 <resources/>
 <connections/>
</ui>

eric ide

mercurial