forked from qt-creator/qt-creator
Set margin to zero everywhere on the project pane.
Makes the project pane look nicer.
This commit is contained in:
@@ -125,6 +125,7 @@ BuildSettingsSubWidgets::BuildSettingsSubWidgets(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
new QVBoxLayout(this);
|
||||
layout()->setMargin(0);
|
||||
}
|
||||
|
||||
///
|
||||
|
@@ -158,6 +158,7 @@ ActiveConfigurationWidget::ActiveConfigurationWidget(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
QGridLayout *grid = new QGridLayout(this);
|
||||
grid->setMargin(0);
|
||||
RunConfigurationComboBox *runConfigurationComboBox = new RunConfigurationComboBox(this);
|
||||
grid->addWidget(new QLabel(tr("Active run configuration")), 0, 0);
|
||||
grid->addWidget(runConfigurationComboBox, 0, 1);
|
||||
@@ -603,6 +604,7 @@ ProjectWindow::ProjectWindow(QWidget *parent)
|
||||
|
||||
m_spacerBetween = new QWidget(this);
|
||||
QVBoxLayout *vbox = new QVBoxLayout(m_spacerBetween);
|
||||
vbox->setMargin(0);
|
||||
m_spacerBetween->setLayout(vbox);
|
||||
vbox->addSpacerItem(new QSpacerItem(10, 15, QSizePolicy::Fixed, QSizePolicy::Fixed));
|
||||
vbox->addWidget(new OnePixelBlackLine(m_spacerBetween));
|
||||
|
@@ -6,11 +6,14 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>416</width>
|
||||
<height>35</height>
|
||||
<width>437</width>
|
||||
<height>25</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="margin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
|
@@ -6,11 +6,14 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>235</width>
|
||||
<height>64</height>
|
||||
<width>220</width>
|
||||
<height>46</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout">
|
||||
<property name="margin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="makeLabel">
|
||||
<property name="text">
|
||||
|
@@ -6,11 +6,14 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>448</width>
|
||||
<height>210</height>
|
||||
<width>390</width>
|
||||
<height>172</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout">
|
||||
<property name="margin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="text">
|
||||
|
@@ -52,6 +52,9 @@ placeholder</string>
|
||||
<item>
|
||||
<widget class="QWidget" name="detailsWidget" native="true">
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<property name="margin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="nameLabel">
|
||||
<property name="text">
|
||||
|
@@ -141,6 +141,7 @@ Qt4RunConfigurationWidget::Qt4RunConfigurationWidget(Qt4RunConfiguration *qt4Run
|
||||
resetButton->setIcon(QIcon(":/core/images/reset.png"));
|
||||
|
||||
QHBoxLayout *boxlayout = new QHBoxLayout();
|
||||
boxlayout->setMargin(0);
|
||||
boxlayout->addWidget(m_workingDirectoryEdit);
|
||||
boxlayout->addWidget(resetButton);
|
||||
toplayout->addRow(tr("Working Directory:"), boxlayout);
|
||||
@@ -165,7 +166,7 @@ Qt4RunConfigurationWidget::Qt4RunConfigurationWidget(Qt4RunConfiguration *qt4Run
|
||||
m_detailsWidget = new QWidget(this);
|
||||
m_detailsWidget->setVisible(false);
|
||||
QVBoxLayout *vboxTopLayout = new QVBoxLayout(this);
|
||||
vboxTopLayout->setContentsMargins(0, -1, 0, -1);
|
||||
vboxTopLayout->setMargin(0);
|
||||
m_summaryLabel = new QLabel(this);
|
||||
m_summaryLabel->setText("This is a summary");
|
||||
QAbstractButton *detailsButton = new Utils::DetailsButton(this);
|
||||
@@ -174,6 +175,7 @@ Qt4RunConfigurationWidget::Qt4RunConfigurationWidget(Qt4RunConfiguration *qt4Run
|
||||
this, SLOT(toggleDetails()));
|
||||
|
||||
QHBoxLayout *detailsLayout = new QHBoxLayout();
|
||||
detailsLayout->setMargin(0);
|
||||
detailsLayout->addWidget(m_summaryLabel);
|
||||
detailsLayout->addWidget(detailsButton);
|
||||
|
||||
|
Reference in New Issue
Block a user