Some UI cleanup. We're getting closer.

pull/1/head
Simon Quigley 2 years ago
parent cd3376befe
commit 4ed0cf3a4a

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

@ -14,11 +14,9 @@ MainWindow::MainWindow(QWidget *parent)
palette.setBrush(QPalette::Window, bg); palette.setBrush(QPalette::Window, bg);
this->setPalette(palette); this->setPalette(palette);
// Set the top label as the Lubuntu Logo // Set the button colors
QPixmap logo("../img/logo.png"); ui->tryLubuntu->setStyleSheet("background-color: rgba(0, 104, 200, 100);");
int w = ui->logolabel->width(); ui->installLubuntu->setStyleSheet("background-color: rgba(0, 104, 200, 100);");
int h = ui->logolabel->height();
ui->logolabel->setPixmap(logo.scaled (w,h,Qt::KeepAspectRatio));
} }
MainWindow::~MainWindow() MainWindow::~MainWindow()

@ -24,76 +24,15 @@
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>
<y>30</y> <y>20</y>
<width>1921</width> <width>1921</width>
<height>1021</height> <height>1031</height>
</rect> </rect>
</property> </property>
<layout class="QVBoxLayout" name="mainLayout"> <layout class="QVBoxLayout" name="mainLayout">
<property name="sizeConstraint"> <property name="sizeConstraint">
<enum>QLayout::SetMaximumSize</enum> <enum>QLayout::SetMaximumSize</enum>
</property> </property>
<item>
<layout class="QHBoxLayout" name="logoLayout" stretch="0,0,0">
<property name="sizeConstraint">
<enum>QLayout::SetMaximumSize</enum>
</property>
<item>
<spacer name="leftLogoSpacer">
<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="QLabel" name="logolabel">
<property name="minimumSize">
<size>
<width>128</width>
<height>128</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>128</width>
<height>128</height>
</size>
</property>
<property name="baseSize">
<size>
<width>128</width>
<height>128</height>
</size>
</property>
<property name="text">
<string/>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<spacer name="rightLogoSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item> <item>
<layout class="QHBoxLayout" name="titleLayout" stretch="1,0,1"> <layout class="QHBoxLayout" name="titleLayout" stretch="1,0,1">
<property name="sizeConstraint"> <property name="sizeConstraint">
@ -132,6 +71,12 @@
<height>128</height> <height>128</height>
</size> </size>
</property> </property>
<property name="font">
<font>
<family>Ubuntu</family>
<pointsize>12</pointsize>
</font>
</property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">QLabel { color : white; font-family: Ubuntu;}</string> <string notr="true">QLabel { color : white; font-family: Ubuntu;}</string>
</property> </property>
@ -190,11 +135,11 @@
</spacer> </spacer>
</item> </item>
<item> <item>
<widget class="QPushButton" name="pushButton_3"> <widget class="QPushButton" name="tryLubuntu">
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>400</width> <width>250</width>
<height>200</height> <height>75</height>
</size> </size>
</property> </property>
<property name="font"> <property name="font">
@ -203,6 +148,12 @@
<pointsize>24</pointsize> <pointsize>24</pointsize>
</font> </font>
</property> </property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="text"> <property name="text">
<string>Try Lubuntu</string> <string>Try Lubuntu</string>
</property> </property>
@ -222,11 +173,11 @@
</spacer> </spacer>
</item> </item>
<item> <item>
<widget class="QPushButton" name="pushButton_2"> <widget class="QPushButton" name="installLubuntu">
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>400</width> <width>250</width>
<height>200</height> <height>75</height>
</size> </size>
</property> </property>
<property name="font"> <property name="font">
@ -255,6 +206,45 @@
</item> </item>
</layout> </layout>
</item> </item>
<item>
<spacer name="verticalSpacer_4">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item>
<spacer name="verticalSpacer_3">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item>
<spacer name="verticalSpacer_5">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item> <item>
<spacer name="verticalSpacer_2"> <spacer name="verticalSpacer_2">
<property name="orientation"> <property name="orientation">

Loading…
Cancel
Save