diff options
| author | elijah <elijah@riseup.net> | 2013-12-11 23:01:43 -0800 | 
|---|---|---|
| committer | elijah <elijah@riseup.net> | 2013-12-12 20:50:12 -0800 | 
| commit | 551e02141d5ffa72b76d2d1541bda2f877c8d379 (patch) | |
| tree | 79afc6eef699489bf5d55c04d4bd136bb37fc78a | |
| parent | 722cf92e10cf73e79e54f463aa19b2d01bd3cf75 (diff) | |
modified eip widget: change font to look better when under login widget, tightened spacing, moved upload and download icons to the buttons themselves, get rid of extra left whitespace padding on bandwidth status.
| -rw-r--r-- | src/leap/bitmask/gui/eip_status.py | 4 | ||||
| -rw-r--r-- | src/leap/bitmask/gui/ui/eip_status.ui | 66 | 
2 files changed, 13 insertions, 57 deletions
| diff --git a/src/leap/bitmask/gui/eip_status.py b/src/leap/bitmask/gui/eip_status.py index 4b4d360f..92bb623e 100644 --- a/src/leap/bitmask/gui/eip_status.py +++ b/src/leap/bitmask/gui/eip_status.py @@ -41,8 +41,8 @@ class EIPStatusWidget(QtGui.QWidget):      EIP Status widget that displays the current state of the EIP service      """      DISPLAY_TRAFFIC_RATES = True -    RATE_STR = "%14.2f KB/s" -    TOTAL_STR = "%14.2f Kb" +    RATE_STR = "%1.2f KB/s" +    TOTAL_STR = "%1.2f Kb"      eip_connection_connected = QtCore.Signal() diff --git a/src/leap/bitmask/gui/ui/eip_status.ui b/src/leap/bitmask/gui/ui/eip_status.ui index d078ca0c..64821ad6 100644 --- a/src/leap/bitmask/gui/ui/eip_status.ui +++ b/src/leap/bitmask/gui/ui/eip_status.ui @@ -25,6 +25,9 @@     </property>     <item>      <layout class="QGridLayout" name="gridLayout"> +     <property name="verticalSpacing"> +      <number>0</number> +     </property>       <item row="0" column="2">        <widget class="QPushButton" name="btnEipStartStop">         <property name="text"> @@ -75,13 +78,6 @@           <verstretch>0</verstretch>          </sizepolicy>         </property> -       <property name="font"> -        <font> -         <pointsize>14</pointsize> -         <weight>75</weight> -         <bold>true</bold> -        </font> -       </property>         <property name="text">          <string>Traffic is being routed in the clear</string>         </property> @@ -124,12 +120,6 @@       </item>       <item row="2" column="1" colspan="3">        <widget class="QWidget" name="eip_bandwidth" native="true"> -       <property name="maximumSize"> -        <size> -         <width>16777215</width> -         <height>32</height> -        </size> -       </property>         <layout class="QHBoxLayout" name="horizontalLayout">          <property name="spacing">           <number>0</number> @@ -146,16 +136,6 @@             <enum>QLayout::SetDefaultConstraint</enum>            </property>            <item> -           <widget class="QLabel" name="label_5"> -            <property name="text"> -             <string/> -            </property> -            <property name="pixmap"> -             <pixmap resource="../../../../../data/resources/icons.qrc">:/images/light/16/down-arrow.png</pixmap> -            </property> -           </widget> -          </item> -          <item>             <widget class="QPushButton" name="btnDownload">              <property name="sizePolicy">               <sizepolicy hsizetype="Maximum" vsizetype="Fixed"> @@ -175,25 +155,18 @@                <height>16777215</height>               </size>              </property> -            <property name="font"> -             <font> -              <pointsize>11</pointsize> -              <weight>75</weight> -              <bold>true</bold> -             </font> -            </property>              <property name="cursor">               <cursorShape>PointingHandCursor</cursorShape>              </property> -            <property name="styleSheet"> -             <string notr="true">text-align: left;</string> -            </property>              <property name="text">               <string>0.0 KB/s</string>              </property>              <property name="flat">               <bool>true</bool>              </property> +            <property name="icon"> +             <pixmap resource="../../../../../data/resources/icons.qrc">:/images/light/16/down-arrow.png</pixmap> +            </property>             </widget>            </item>            <item> @@ -206,22 +179,12 @@              </property>              <property name="sizeHint" stdset="0">               <size> -              <width>10</width> +              <width>20</width>                <height>20</height>               </size>              </property>             </spacer>            </item> -          <item> -           <widget class="QLabel" name="label_7"> -            <property name="text"> -             <string/> -            </property> -            <property name="pixmap"> -             <pixmap resource="../../../../../data/resources/icons.qrc">:/images/light/16/up-arrow.png</pixmap> -            </property> -           </widget> -          </item>            <item alignment="Qt::AlignLeft">             <widget class="QPushButton" name="btnUpload">              <property name="sizePolicy"> @@ -242,25 +205,18 @@                <height>16777215</height>               </size>              </property> -            <property name="font"> -             <font> -              <pointsize>11</pointsize> -              <weight>75</weight> -              <bold>true</bold> -             </font> -            </property>              <property name="cursor">               <cursorShape>PointingHandCursor</cursorShape>              </property> -            <property name="styleSheet"> -             <string notr="true">text-align: left;</string> -            </property>              <property name="text">               <string>0.0 KB/s</string>              </property>              <property name="flat">               <bool>true</bool>              </property> +            <property name="icon"> +             <pixmap resource="../../../../../data/resources/icons.qrc">:/images/light/16/up-arrow.png</pixmap> +            </property>             </widget>            </item>            <item> @@ -271,7 +227,7 @@              <property name="sizeHint" stdset="0">               <size>                <width>0</width> -              <height>20</height> +              <height>0</height>               </size>              </property>             </spacer> | 
