Files
        @ 7aac14a97552
    
        
              Branch filter: 
        
    Location: tempo-plotter/snapshotview.ui - annotation
        
            
            7aac14a97552
            2.4 KiB
            text/plain
        
        
    
    moved data parsing and reading related code to a new class
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103  | b0405ffbfd80 b0405ffbfd80 6c4c2a001b76 6c4c2a001b76 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 f520f2a1546b b0405ffbfd80 f520f2a1546b b0405ffbfd80 f520f2a1546b aa3c57d8443c 45f7246b22b1 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 f520f2a1546b b0405ffbfd80 b0405ffbfd80 aa3c57d8443c b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 aa3c57d8443c aa3c57d8443c aa3c57d8443c b0405ffbfd80 f520f2a1546b f520f2a1546b f520f2a1546b f520f2a1546b f520f2a1546b f520f2a1546b f520f2a1546b f520f2a1546b 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 b0405ffbfd80 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 6c4c2a001b76 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 45f7246b22b1 b0405ffbfd80  | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>SnapshotView</class>
 <widget class="QMainWindow" name="SnapshotView">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>544</width>
    <height>449</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>MainWindow</string>
  </property>
  <widget class="QWidget" name="centralwidget">
   <layout class="QVBoxLayout" name="verticalLayout">
    <item>
     <widget class="Plot" name="plot" native="true"/>
    </item>
   </layout>
  </widget>
  <widget class="QMenuBar" name="menubar">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
     <width>544</width>
     <height>27</height>
    </rect>
   </property>
   <widget class="QMenu" name="menuSnapshot">
    <property name="title">
     <string>Snapshot</string>
    </property>
    <addaction name="actionRename"/>
    <addaction name="actionExport"/>
    <addaction name="actionClose"/>
   </widget>
   <widget class="QMenu" name="menuView">
    <property name="title">
     <string>View</string>
    </property>
   </widget>
   <addaction name="menuSnapshot"/>
   <addaction name="menuView"/>
  </widget>
  <action name="actionExport">
   <property name="text">
    <string>Export CSV</string>
   </property>
   <property name="toolTip">
    <string>Save snapshot as CSV file</string>
   </property>
  </action>
  <action name="actionRename">
   <property name="text">
    <string>Rename</string>
   </property>
   <property name="toolTip">
    <string>Rename this snapshot</string>
   </property>
  </action>
  <action name="actionClose">
   <property name="text">
    <string>Close</string>
   </property>
   <property name="toolTip">
    <string>Close Window</string>
   </property>
   <property name="shortcut">
    <string>Ctrl+W</string>
   </property>
  </action>
 </widget>
 <customwidgets>
  <customwidget>
   <class>Plot</class>
   <extends>QWidget</extends>
   <header>plot.h</header>
   <container>1</container>
  </customwidget>
 </customwidgets>
 <resources/>
 <connections>
  <connection>
   <sender>actionClose</sender>
   <signal>triggered()</signal>
   <receiver>SnapshotView</receiver>
   <slot>close()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>-1</x>
     <y>-1</y>
    </hint>
    <hint type="destinationlabel">
     <x>271</x>
     <y>224</y>
    </hint>
   </hints>
  </connection>
 </connections>
</ui>
 |