]> git.sesse.net Git - vlc/commitdiff
Small corrections for stats.
authorJean-Baptiste Kempf <jb@videolan.org>
Sat, 23 Sep 2006 20:56:52 +0000 (20:56 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Sat, 23 Sep 2006 20:56:52 +0000 (20:56 +0000)
modules/gui/qt4/components/infopanels.cpp
modules/gui/qt4/dialogs/streaminfo.cpp
modules/gui/qt4/ui/input_stats.ui

index 7b717f3740b89c89c494d2d726d3a4eed370eb44..15eeec8ab47dd33190fad21164bc63617ea0de05 100644 (file)
@@ -51,12 +51,12 @@ void InputStatsPanel::update( input_item_t *p_item )
 #define UPDATE( widget,format, calc... ) \
     { QString str; ui.widget->setText( str.sprintf( format, ## calc ) );  }
 
-    UPDATE( read_text, "%8.0f kB", (float)(p_item->p_stats->i_read_bytes)/1000);
-    UPDATE( input_bitrate_text, "%6.0f kb/s",
+    UPDATE( read_text, "%8.0f", (float)(p_item->p_stats->i_read_bytes)/1000);
+    UPDATE( input_bitrate_text, "%6.0f",
                     (float)(p_item->p_stats->f_input_bitrate * 8000 ));
-    UPDATE( demuxed_text, "%8.0f kB",
+    UPDATE( demuxed_text, "%8.0f",
                     (float)(p_item->p_stats->i_demux_read_bytes)/1000 );
-    UPDATE( stream_bitrate_text, "%6.0f kb/s",
+    UPDATE( stream_bitrate_text, "%6.0f",
                     (float)(p_item->p_stats->f_demux_bitrate * 8000 ));
 
     /* Video */
@@ -66,9 +66,9 @@ void InputStatsPanel::update( input_item_t *p_item )
 
     /* Sout */
     UPDATE( sent_text, "%5i", p_item->p_stats->i_sent_packets );
-    UPDATE( sent_bytes_text, "%8.0f kB",
+    UPDATE( sent_bytes_text, "%8.0f",
             (float)(p_item->p_stats->i_sent_bytes)/1000 );
-    UPDATE( send_bitrate_text, "%6.0f kb/s",
+    UPDATE( send_bitrate_text, "%6.0f",
             (float)(p_item->p_stats->f_send_bitrate*8)*1000 );
 
     /* Audio*/
@@ -170,15 +170,14 @@ InfoTab::InfoTab( QWidget *parent,  intf_thread_t *_p_intf, bool _stats ) :
 //    setGeometry(0, 0, 400, 500);
 
     MP = new MetaPanel(NULL, p_intf);
-    addTab(MP, qtr("&Meta"));
+    addTab(MP, qtr("&General"));
+    IP = new InfoPanel(NULL, p_intf);
+    addTab(IP, qtr("&Details"));
     if( stats )
     {
         ISP = new InputStatsPanel( NULL, p_intf );
         addTab(ISP, qtr("&Stats"));
     }
-
-    IP = new InfoPanel(NULL, p_intf);
-    addTab(IP, qtr("&Info"));
 }
 
 InfoTab::~InfoTab()
index ae80e263785a3cb52844c2c7f064420b4fc16c64..1d8eed472aaf401387239b8dcdeca5aadf6526b5 100644 (file)
@@ -51,7 +51,7 @@ StreamInfoDialog::StreamInfoDialog( intf_thread_t *_p_intf ) :QVLCFrame( _p_intf
 
     var_AddCallback( THEPL, "item-change", ItemChanged, this );
 
-    readSettings( "StreamInfo" , QSize( 470, 450 ) );
+    readSettings( "StreamInfo" , QSize( 500, 450 ) );
 }
 
 StreamInfoDialog::~StreamInfoDialog()
index 01a440985c30d1ae47956a6b098c451de14dd2be..07e46b9b9df542810c1bef0eb508b69ec58ddf9f 100644 (file)
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>434</width>
-    <height>294</height>
+    <width>470</width>
+    <height>300</height>
    </rect>
   </property>
   <property name="windowTitle" >
    <string>_("Form")</string>
   </property>
-  <layout class="QGridLayout" >
-   <property name="margin" >
-    <number>9</number>
+  <widget class="QGroupBox" name="groupBox_4" >
+   <property name="geometry" >
+    <rect>
+     <x>240</x>
+     <y>150</y>
+     <width>215</width>
+     <height>135</height>
+    </rect>
    </property>
-   <property name="spacing" >
-    <number>6</number>
+   <property name="title" >
+    <string>_("Audio")</string>
    </property>
-   <item row="0" column="0" >
-    <widget class="QGroupBox" name="groupBox" >
-     <property name="title" >
-      <string>_("Input")</string>
-     </property>
-     <layout class="QGridLayout" >
-      <property name="margin" >
-       <number>9</number>
-      </property>
-      <property name="spacing" >
-       <number>6</number>
-      </property>
-      <item row="0" column="1" >
-       <widget class="QLabel" name="read_text" >
-        <property name="text" >
-         <string>0</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-      <item row="3" column="1" >
-       <widget class="QLabel" name="stream_bitrate_text" >
-        <property name="text" >
-         <string>0 kb/s</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-      <item row="1" column="1" >
-       <widget class="QLabel" name="input_bitrate_text" >
-        <property name="text" >
-         <string>0 kb/s</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-      <item row="1" column="0" >
-       <widget class="QLabel" name="label_5" >
-        <property name="text" >
-         <string>_("Input bitrate")</string>
-        </property>
-       </widget>
-      </item>
-      <item row="0" column="0" >
-       <widget class="QLabel" name="label" >
-        <property name="text" >
-         <string>_("Read at media")</string>
-        </property>
-       </widget>
-      </item>
-      <item row="3" column="0" >
-       <widget class="QLabel" name="label_3" >
-        <property name="text" >
-         <string>_("Stream bitrate")</string>
-        </property>
-       </widget>
-      </item>
-      <item row="2" column="0" >
-       <widget class="QLabel" name="label_7" >
-        <property name="text" >
-         <string>_("Demuxed")</string>
-        </property>
-       </widget>
-      </item>
-      <item row="2" column="1" >
-       <widget class="QLabel" name="demuxed_text" >
-        <property name="text" >
-         <string>0 kB</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-     </layout>
-    </widget>
-   </item>
-   <item row="0" column="1" >
-    <widget class="QGroupBox" name="groupBox_2" >
-     <property name="title" >
-      <string>_("Video")</string>
-     </property>
-     <layout class="QGridLayout" >
-      <property name="margin" >
-       <number>9</number>
-      </property>
-      <property name="spacing" >
-       <number>6</number>
-      </property>
-      <item row="2" column="0" >
-       <widget class="QLabel" name="label_6" >
-        <property name="text" >
-         <string>_("Lost frames")</string>
-        </property>
-       </widget>
-      </item>
-      <item row="2" column="1" >
-       <widget class="QLabel" name="vlost_frames" >
-        <property name="text" >
-         <string>0</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-      <item row="1" column="0" >
-       <widget class="QLabel" name="label_4" >
-        <property name="text" >
-         <string>_("Displayed frames")</string>
-        </property>
-       </widget>
-      </item>
-      <item row="0" column="0" >
-       <widget class="QLabel" name="label_2" >
-        <property name="text" >
-         <string>_("Decoded blocks")</string>
-        </property>
-       </widget>
-      </item>
-      <item row="0" column="1" >
-       <widget class="QLabel" name="vdecoded_text" >
-        <property name="text" >
-         <string>0</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-      <item row="1" column="1" >
-       <widget class="QLabel" name="vdisplayed_text" >
-        <property name="text" >
-         <string>0</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-     </layout>
-    </widget>
-   </item>
-   <item row="1" column="1" >
-    <widget class="QGroupBox" name="groupBox_4" >
-     <property name="title" >
-      <string>_("Audio")</string>
-     </property>
-     <layout class="QGridLayout" >
-      <property name="margin" >
-       <number>9</number>
-      </property>
-      <property name="spacing" >
-       <number>6</number>
-      </property>
-      <item row="2" column="1" >
-       <widget class="QLabel" name="alost_text" >
-        <property name="text" >
-         <string>0</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-      <item row="1" column="1" >
-       <widget class="QLabel" name="aplayed_text" >
-        <property name="text" >
-         <string>0</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-      <item row="0" column="1" >
-       <widget class="QLabel" name="adecoded_text" >
-        <property name="text" >
-         <string>0</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-      <item row="2" column="0" >
-       <widget class="QLabel" name="label_10" >
-        <property name="text" >
-         <string>_("Lost buffers")</string>
-        </property>
-       </widget>
-      </item>
-      <item row="1" column="0" >
-       <widget class="QLabel" name="label_9" >
-        <property name="text" >
-         <string>_("Played buffers")</string>
-        </property>
-       </widget>
-      </item>
-      <item row="0" column="0" >
-       <widget class="QLabel" name="label_8" >
-        <property name="text" >
-         <string>_("Decoded blocks")</string>
-        </property>
-       </widget>
-      </item>
-     </layout>
-    </widget>
-   </item>
-   <item row="1" column="0" >
-    <widget class="QGroupBox" name="groupBox_3" >
-     <property name="title" >
-      <string>_("Streaming")</string>
-     </property>
-     <layout class="QGridLayout" >
-      <property name="margin" >
-       <number>9</number>
-      </property>
-      <property name="spacing" >
-       <number>6</number>
-      </property>
-      <item row="0" column="1" >
-       <widget class="QLabel" name="sent_text" >
-        <property name="text" >
-         <string>0</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-      <item row="2" column="1" >
-       <widget class="QLabel" name="send_bitrate_text" >
-        <property name="text" >
-         <string>0 kb/s</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-      <item row="1" column="1" >
-       <widget class="QLabel" name="sent_bytes_text" >
-        <property name="text" >
-         <string>0 kB</string>
-        </property>
-        <property name="alignment" >
-         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-        </property>
-       </widget>
-      </item>
-      <item row="2" column="0" >
-       <widget class="QLabel" name="label_13" >
-        <property name="text" >
-         <string>_("Send bitrate")</string>
-        </property>
-       </widget>
-      </item>
-      <item row="1" column="0" >
-       <widget class="QLabel" name="label_12" >
-        <property name="text" >
-         <string>_("Sent bytes")</string>
-        </property>
-       </widget>
-      </item>
-      <item row="0" column="0" >
-       <widget class="QLabel" name="label_11" >
-        <property name="text" >
-         <string>_("Sent packets")</string>
-        </property>
-       </widget>
-      </item>
-     </layout>
-    </widget>
-   </item>
-  </layout>
+   <layout class="QGridLayout" >
+    <property name="margin" >
+     <number>9</number>
+    </property>
+    <property name="spacing" >
+     <number>6</number>
+    </property>
+    <item row="1" column="1" >
+     <widget class="QLabel" name="aplayed_text" >
+      <property name="text" >
+       <string>0</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+    <item row="1" column="0" >
+     <widget class="QLabel" name="label_9" >
+      <property name="text" >
+       <string>_("Played buffers")</string>
+      </property>
+     </widget>
+    </item>
+    <item row="2" column="1" >
+     <widget class="QLabel" name="alost_text" >
+      <property name="text" >
+       <string>0</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+    <item row="2" column="0" >
+     <widget class="QLabel" name="label_10" >
+      <property name="text" >
+       <string>_("Lost buffers")</string>
+      </property>
+     </widget>
+    </item>
+    <item row="0" column="1" >
+     <widget class="QLabel" name="adecoded_text" >
+      <property name="text" >
+       <string>0</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+    <item row="0" column="0" >
+     <widget class="QLabel" name="label_8" >
+      <property name="text" >
+       <string>_("Decoded blocks")</string>
+      </property>
+     </widget>
+    </item>
+   </layout>
+  </widget>
+  <widget class="QGroupBox" name="groupBox" >
+   <property name="geometry" >
+    <rect>
+     <x>10</x>
+     <y>10</y>
+     <width>215</width>
+     <height>135</height>
+    </rect>
+   </property>
+   <property name="title" >
+    <string>_("Input")</string>
+   </property>
+   <layout class="QGridLayout" >
+    <property name="margin" >
+     <number>9</number>
+    </property>
+    <property name="spacing" >
+     <number>6</number>
+    </property>
+    <item row="0" column="1" >
+     <widget class="QLabel" name="read_text" >
+      <property name="text" >
+       <string>0</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+    <item row="1" column="1" >
+     <widget class="QLabel" name="input_bitrate_text" >
+      <property name="text" >
+       <string>0</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+    <item row="3" column="2" >
+     <widget class="QLabel" name="sent_bytes_text_6" >
+      <property name="text" >
+       <string>kb/s</string>
+      </property>
+     </widget>
+    </item>
+    <item row="1" column="2" >
+     <widget class="QLabel" name="sent_bytes_text_5" >
+      <property name="text" >
+       <string>kb/s</string>
+      </property>
+     </widget>
+    </item>
+    <item row="2" column="2" >
+     <widget class="QLabel" name="sent_bytes_text_4" >
+      <property name="sizePolicy" >
+       <sizepolicy>
+        <hsizetype>0</hsizetype>
+        <vsizetype>0</vsizetype>
+        <horstretch>0</horstretch>
+        <verstretch>0</verstretch>
+       </sizepolicy>
+      </property>
+      <property name="text" >
+       <string>kB</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+    <item row="3" column="1" >
+     <widget class="QLabel" name="stream_bitrate_text" >
+      <property name="text" >
+       <string>0</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+    <item row="2" column="1" >
+     <widget class="QLabel" name="demuxed_text" >
+      <property name="text" >
+       <string>0</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+    <item row="2" column="0" >
+     <widget class="QLabel" name="label_7" >
+      <property name="text" >
+       <string>_("Demuxed")</string>
+      </property>
+     </widget>
+    </item>
+    <item row="3" column="0" >
+     <widget class="QLabel" name="label_3" >
+      <property name="text" >
+       <string>_("Stream bitrate")</string>
+      </property>
+     </widget>
+    </item>
+    <item row="0" column="0" >
+     <widget class="QLabel" name="label" >
+      <property name="text" >
+       <string>_("Read at media")</string>
+      </property>
+     </widget>
+    </item>
+    <item row="1" column="0" >
+     <widget class="QLabel" name="label_5" >
+      <property name="text" >
+       <string>_("Input bitrate")</string>
+      </property>
+     </widget>
+    </item>
+    <item row="0" column="2" >
+     <widget class="QLabel" name="sent_bytes_text_7" >
+      <property name="text" >
+       <string>kB</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+   </layout>
+  </widget>
+  <widget class="QGroupBox" name="groupBox_3" >
+   <property name="geometry" >
+    <rect>
+     <x>240</x>
+     <y>10</y>
+     <width>215</width>
+     <height>135</height>
+    </rect>
+   </property>
+   <property name="title" >
+    <string>_("Streaming")</string>
+   </property>
+   <layout class="QGridLayout" >
+    <property name="margin" >
+     <number>9</number>
+    </property>
+    <property name="spacing" >
+     <number>6</number>
+    </property>
+    <item row="2" column="2" >
+     <widget class="QLabel" name="sent_bytes_text_3" >
+      <property name="sizePolicy" >
+       <sizepolicy>
+        <hsizetype>0</hsizetype>
+        <vsizetype>0</vsizetype>
+        <horstretch>0</horstretch>
+        <verstretch>0</verstretch>
+       </sizepolicy>
+      </property>
+      <property name="text" >
+       <string>kb/s</string>
+      </property>
+     </widget>
+    </item>
+    <item row="2" column="1" >
+     <widget class="QLabel" name="send_bitrate_text" >
+      <property name="text" >
+       <string>0</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+    <item row="1" column="1" >
+     <widget class="QLabel" name="sent_bytes_text" >
+      <property name="text" >
+       <string>0</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+    <item row="0" column="1" >
+     <widget class="QLabel" name="sent_text" >
+      <property name="text" >
+       <string>0</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+    <item row="1" column="2" >
+     <widget class="QLabel" name="sent_bytes_text_2" >
+      <property name="text" >
+       <string>kB</string>
+      </property>
+      <property name="alignment" >
+       <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
+      </property>
+     </widget>
+    </item>
+    <item row="2" column="0" >
+     <widget class="QLabel" name="label_13" >
+      <property name="text" >
+       <string>_("Send bitrate")</string>
+      </property>
+     </widget>
+    </item>
+    <item row="1" column="0" >
+     <widget class="QLabel" name="label_12" >
+      <property name="text" >
+       <string>_("Sent bytes")</string>
+      </property>
+     </widget>
+    </item>
+    <item row="0" column="0" >
+     <widget class="QLabel" name="label_11" >
+      <property name="text" >
+       <string>_("Sent packets")</string>
+      </property>
+     </widget>
+    </item>
+    <item row="3" column="0" >
+     <widget class="QLabel" name="label_14" >
+      <property name="text" >
+       <string/>
+      </property>
+     </widget>
+    </item>
+   </layout>
+  </widget>
+  <widget class="QGroupBox" name="groupBox_2" >
+   <property name="geometry" >
+    <rect>
+     <x>10</x>
+     <y>150</y>
+     <width>215</width>
+     <height>135</height>
+    </rect>
+   </property>
+   <property name="title" >
+    <string>_("Video")</string>
+   </property>
+   <widget class="QLabel" name="label_4" >
+    <property name="geometry" >
+     <rect>
+      <x>11</x>
+      <y>62</y>
+      <width>133</width>
+      <height>28</height>
+     </rect>
+    </property>
+    <property name="text" >
+     <string>_("Displayed frames")</string>
+    </property>
+   </widget>
+   <widget class="QLabel" name="label_6" >
+    <property name="geometry" >
+     <rect>
+      <x>11</x>
+      <y>96</y>
+      <width>133</width>
+      <height>28</height>
+     </rect>
+    </property>
+    <property name="text" >
+     <string>_("Lost frames")</string>
+    </property>
+   </widget>
+   <widget class="QLabel" name="label_2" >
+    <property name="geometry" >
+     <rect>
+      <x>11</x>
+      <y>28</y>
+      <width>133</width>
+      <height>28</height>
+     </rect>
+    </property>
+    <property name="text" >
+     <string>_("Decoded blocks")</string>
+    </property>
+   </widget>
+   <widget class="QLabel" name="vlost_frames" >
+    <property name="geometry" >
+     <rect>
+      <x>150</x>
+      <y>96</y>
+      <width>50</width>
+      <height>28</height>
+     </rect>
+    </property>
+    <property name="text" >
+     <string>0</string>
+    </property>
+    <property name="alignment" >
+     <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+    </property>
+   </widget>
+   <widget class="QLabel" name="vdisplayed_text" >
+    <property name="geometry" >
+     <rect>
+      <x>150</x>
+      <y>62</y>
+      <width>50</width>
+      <height>28</height>
+     </rect>
+    </property>
+    <property name="text" >
+     <string>0</string>
+    </property>
+    <property name="alignment" >
+     <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+    </property>
+   </widget>
+   <widget class="QLabel" name="vdecoded_text" >
+    <property name="geometry" >
+     <rect>
+      <x>150</x>
+      <y>28</y>
+      <width>50</width>
+      <height>28</height>
+     </rect>
+    </property>
+    <property name="text" >
+     <string>0</string>
+    </property>
+    <property name="alignment" >
+     <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+    </property>
+   </widget>
+  </widget>
  </widget>
  <pixmapfunction></pixmapfunction>
  <resources/>