Not necessary to use a QGridLayout when we have just one widget

svn path=/trunk/KDE/kdebase/workspace/; revision=861453
This commit is contained in:
Laurent Montel 2008-09-16 07:41:39 +00:00
parent bfc96a8630
commit 9de9871c3b
12 changed files with 33 additions and 33 deletions

View file

@ -22,7 +22,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <kconfiggroup.h>
#include <QGridLayout>
#include <QVBoxLayout>
#ifndef KDE_USE_FINAL
KWIN_EFFECT_CONFIG_FACTORY
#endif
@ -40,9 +40,9 @@ CoverSwitchEffectConfig::CoverSwitchEffectConfig(QWidget* parent, const QVariant
{
m_ui = new CoverSwitchEffectConfigForm(this);
QGridLayout* layout = new QGridLayout(this);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(m_ui, 0, 0);
layout->addWidget(m_ui);
connect(m_ui->checkAnimateSwitch, SIGNAL(stateChanged(int)), this, SLOT(changed()));
connect(m_ui->checkAnimateStart, SIGNAL(stateChanged(int)), this, SLOT(changed()));

View file

@ -27,7 +27,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <KFileDialog>
#include <KImageFilePreview>
#include <QGridLayout>
#include <QVBoxLayout>
#include <QColor>
#ifndef KDE_USE_FINAL
KWIN_EFFECT_CONFIG_FACTORY
@ -46,9 +46,9 @@ CubeEffectConfig::CubeEffectConfig(QWidget* parent, const QVariantList& args) :
{
m_ui = new CubeEffectConfigForm(this);
QGridLayout* layout = new QGridLayout(this);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(m_ui, 0, 0);
layout->addWidget(m_ui);
m_ui->tabWidget->setTabText( 0, i18n("Basic") );
m_ui->tabWidget->setTabText( 1, i18n("Advanced") );

View file

@ -27,7 +27,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <KFileDialog>
#include <KImageFilePreview>
#include <QGridLayout>
#include <QVBoxLayout>
#include <QColor>
#ifndef KDE_USE_FINAL
KWIN_EFFECT_CONFIG_FACTORY
@ -46,7 +46,7 @@ CylinderEffectConfig::CylinderEffectConfig(QWidget* parent, const QVariantList&
{
m_ui = new CylinderEffectConfigForm(this);
QGridLayout* layout = new QGridLayout(this);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(m_ui, 0, 0);

View file

@ -29,7 +29,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <KShortcutsEditor>
#include <QWidget>
#include <QGridLayout>
#include <QVBoxLayout>
KWIN_EFFECT_CONFIG_FACTORY
@ -48,9 +48,9 @@ DimInactiveEffectConfig::DimInactiveEffectConfig(QWidget* parent, const QVariant
m_ui = new DimInactiveEffectConfigForm(this);
QGridLayout* layout = new QGridLayout(this);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(m_ui, 0, 0);
layout->addWidget(m_ui);
connect(m_ui->spinStrength, SIGNAL(valueChanged(int)), this, SLOT(changed()));
connect(m_ui->checkPanel, SIGNAL(toggled(bool)), this, SLOT(changed()));

View file

@ -22,7 +22,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <kconfiggroup.h>
#include <QGridLayout>
#include <QVBoxLayout>
#ifndef KDE_USE_FINAL
KWIN_EFFECT_CONFIG_FACTORY
#endif
@ -40,9 +40,9 @@ FlipSwitchEffectConfig::FlipSwitchEffectConfig(QWidget* parent, const QVariantLi
{
m_ui = new FlipSwitchEffectConfigForm(this);
QGridLayout* layout = new QGridLayout(this);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(m_ui, 0, 0);
layout->addWidget(m_ui);
connect(m_ui->checkAnimateFlip, SIGNAL(stateChanged(int)), this, SLOT(changed()));
connect(m_ui->spinFlipDuration, SIGNAL(valueChanged(int)), this, SLOT(changed()));

View file

@ -30,7 +30,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <KShortcutsEditor>
#include <QWidget>
#include <QGridLayout>
#include <QVBoxLayout>
KWIN_EFFECT_CONFIG_FACTORY
@ -49,9 +49,9 @@ LookingGlassEffectConfig::LookingGlassEffectConfig(QWidget* parent, const QVaria
m_ui = new LookingGlassEffectConfigForm(this);
QGridLayout* layout = new QGridLayout(this);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(m_ui, 0, 0);
layout->addWidget(m_ui);
connect(m_ui->editor, SIGNAL(keyChange()), this, SLOT(changed()));
connect(m_ui->radiusSpin, SIGNAL(valueChanged(int)), this, SLOT(changed()));

View file

@ -30,7 +30,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <KShortcutsEditor>
#include <QWidget>
#include <QGridLayout>
#include <QVBoxLayout>
KWIN_EFFECT_CONFIG_FACTORY
@ -49,9 +49,9 @@ MagnifierEffectConfig::MagnifierEffectConfig(QWidget* parent, const QVariantList
m_ui = new MagnifierEffectConfigForm(this);
QGridLayout* layout = new QGridLayout(this);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(m_ui, 0, 0);
layout->addWidget(m_ui);
connect(m_ui->editor, SIGNAL(keyChange()), this, SLOT(changed()));
connect(m_ui->spinWidth, SIGNAL(valueChanged(int)), this, SLOT(changed()));

View file

@ -26,7 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <kdebug.h>
#include <kconfiggroup.h>
#include <QGridLayout>
#include <QVBoxLayout>
#include <QCheckBox>
#ifndef KDE_USE_FINAL
@ -45,8 +45,8 @@ MakeTransparentEffectConfig::MakeTransparentEffectConfig(QWidget* parent, const
{
kDebug() ;
m_ui = new MakeTransparentEffectConfigForm(this);
QGridLayout* layout = new QGridLayout(this);
layout->addWidget(m_ui, 0, 0);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(m_ui);
connect(m_ui->decorations, SIGNAL(valueChanged(int)), this, SLOT(changed()));
connect(m_ui->inactive, SIGNAL(valueChanged(int)), this, SLOT(changed()));

View file

@ -49,9 +49,9 @@ MouseMarkEffectConfig::MouseMarkEffectConfig(QWidget* parent, const QVariantList
m_ui = new MouseMarkEffectConfigForm(this);
QGridLayout* layout = new QGridLayout(this);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(m_ui, 0, 0);
layout->addWidget(m_ui);
connect(m_ui->editor, SIGNAL(keyChange()), this, SLOT(changed()));
connect(m_ui->spinWidth, SIGNAL(valueChanged(int)), this, SLOT(changed()));

View file

@ -27,7 +27,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <kaction.h>
#include <kconfiggroup.h>
#include <QGridLayout>
#include <QVBoxLayout>
#ifndef KDE_USE_FINAL
KWIN_EFFECT_CONFIG_FACTORY
#endif
@ -46,9 +46,9 @@ SnowEffectConfig::SnowEffectConfig(QWidget* parent, const QVariantList& args) :
m_ui = new SnowEffectConfigForm(this);
QGridLayout* layout = new QGridLayout(this);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(m_ui, 0, 0);
layout->addWidget(m_ui);
connect(m_ui->editor, SIGNAL(keyChange()), this, SLOT(changed()));
connect(m_ui->numberFlakes, SIGNAL(valueChanged(int)), this, SLOT(changed()));

View file

@ -46,9 +46,9 @@ SphereEffectConfig::SphereEffectConfig(QWidget* parent, const QVariantList& args
{
m_ui = new SphereEffectConfigForm(this);
QGridLayout* layout = new QGridLayout(this);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(m_ui, 0, 0);
layout->addWidget(m_ui);
m_ui->tabWidget->setTabText( 0, i18n("Basic") );
m_ui->tabWidget->setTabText( 1, i18n("Advanced") );

View file

@ -30,7 +30,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <KShortcutsEditor>
#include <QWidget>
#include <QGridLayout>
#include <QVBoxLayout>
KWIN_EFFECT_CONFIG_FACTORY
@ -49,9 +49,9 @@ ThumbnailAsideEffectConfig::ThumbnailAsideEffectConfig(QWidget* parent, const QV
m_ui = new ThumbnailAsideEffectConfigForm(this);
QGridLayout* layout = new QGridLayout(this);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(m_ui, 0, 0);
layout->addWidget(m_ui);
connect(m_ui->editor, SIGNAL(keyChange()), this, SLOT(changed()));
connect(m_ui->spinWidth, SIGNAL(valueChanged(int)), this, SLOT(changed()));