diff options
author | Mavridis Philippe <[email protected]> | 2021-06-25 19:05:29 +0300 |
---|---|---|
committer | Mavridis Philippe <[email protected]> | 2021-06-25 19:15:54 +0300 |
commit | a26e231b46ac6433f6500ddc9ed6b466cf38cc21 (patch) | |
tree | eca43ec26318abfef06040103c74ccd6f1ac02eb /src/config | |
parent | d5914d4d3223d1bca7b1b845a229af9f30466189 (diff) | |
download | twin-style-suse2-a26e231b46ac6433f6500ddc9ed6b466cf38cc21.tar.gz twin-style-suse2-a26e231b46ac6433f6500ddc9ed6b466cf38cc21.zip |
Conversion Qt3→TQt
Signed-off-by: Mavridis Philippe <[email protected]>
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/Makefile.in | 2 | ||||
-rw-r--r-- | src/config/config.cpp | 92 | ||||
-rw-r--r-- | src/config/config.h | 14 | ||||
-rw-r--r-- | src/config/configdialog.ui | 86 |
4 files changed, 97 insertions, 97 deletions
diff --git a/src/config/Makefile.in b/src/config/Makefile.in index 35d4251..bce9800 100644 --- a/src/config/Makefile.in +++ b/src/config/Makefile.in @@ -778,6 +778,6 @@ configdialog.cpp: $(srcdir)/configdialog.ui configdialog.h configdialog.moc configdialog.h: $(srcdir)/configdialog.ui rm -rf configdialog.h; - $(UIC) $(srcdir)/configdialog.ui | $(PERL) -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> configdialog.h ; + $(UIC) $(srcdir)/configdialog.ui | $(PERL) -pi -e "s,public QWizard,public KWizard,g; s,#include <tqwizard.h>,#include <kwizard.h>,g" >> configdialog.h ; configdialog.moc: configdialog.h $(MOC) configdialog.h -o configdialog.moc diff --git a/src/config/config.cpp b/src/config/config.cpp index bc70aa6..7ff53f7 100644 --- a/src/config/config.cpp +++ b/src/config/config.cpp @@ -25,15 +25,15 @@ //#include <kdebug.h> -#include <qbuttongroup.h> -#include <qcheckbox.h> -#include <qradiobutton.h> -#include <qslider.h> -#include <qspinbox.h> -#include <qwhatsthis.h> -#include <qimage.h> -#include <qlabel.h> -#include <qcombobox.h> +#include <tqbuttongroup.h> +#include <tqcheckbox.h> +#include <tqradiobutton.h> +#include <tqslider.h> +#include <tqspinbox.h> +#include <tqwhatsthis.h> +#include <tqimage.h> +#include <tqlabel.h> +#include <tqcombobox.h> #include <kdeversion.h> #include <kconfig.h> @@ -50,8 +50,8 @@ #include "config.h" #include "configdialog.h" -SUSE2Config::SUSE2Config(KConfig *config, QWidget *parent) - : QObject(parent), m_config(0), m_dialog(0) +SUSE2Config::SUSE2Config(KConfig *config, TQWidget *parent) + : TQObject(parent), m_config(0), m_dialog(0) { m_parent = parent; // create the configuration object @@ -83,10 +83,10 @@ SUSE2Config::SUSE2Config(KConfig *config, QWidget *parent) connect(m_dialog->redCloseButton, SIGNAL(toggled(bool)), SIGNAL(changed())); connect(m_dialog->iconSize, SIGNAL(valueChanged(int)), SIGNAL(changed())); connect(m_dialog->customIconColors, SIGNAL(toggled(bool)), SIGNAL(changed())); - connect(m_dialog->activeFgColor, SIGNAL(changed(const QColor &)), SIGNAL(changed())); - connect(m_dialog->activeBgColor, SIGNAL(changed(const QColor &)), SIGNAL(changed())); - connect(m_dialog->inactiveFgColor, SIGNAL(changed(const QColor &)), SIGNAL(changed())); - connect(m_dialog->inactiveBgColor, SIGNAL(changed(const QColor &)), SIGNAL(changed())); + connect(m_dialog->activeFgColor, SIGNAL(changed(const TQColor &)), SIGNAL(changed())); + connect(m_dialog->activeBgColor, SIGNAL(changed(const TQColor &)), SIGNAL(changed())); + connect(m_dialog->inactiveFgColor, SIGNAL(changed(const TQColor &)), SIGNAL(changed())); + connect(m_dialog->inactiveBgColor, SIGNAL(changed(const TQColor &)), SIGNAL(changed())); connect(m_dialog->iconShadow, SIGNAL(toggled(bool)), SIGNAL(changed())); connect(m_dialog->titleBarLogo, SIGNAL(toggled(bool)), SIGNAL(changed())); @@ -106,12 +106,12 @@ void SUSE2Config::load(KConfig *) { m_config->setGroup("General"); - QString alignValue = m_config->readEntry("TitleAlignment", "AlignLeft"); - QRadioButton *alignButton = (QRadioButton*)m_dialog->titleAlign->child(alignValue.latin1()); + TQString alignValue = m_config->readEntry("TitleAlignment", "AlignLeft"); + TQRadioButton *alignButton = (TQRadioButton*)m_dialog->titleAlign->child(alignValue.latin1()); if (alignButton) alignButton->setChecked(true); - QString roundValue = m_config->readEntry("RoundCorners", "NotMaximized"); - QRadioButton *roundButton = (QRadioButton*)m_dialog->roundCorners->child(roundValue.latin1()); + TQString roundValue = m_config->readEntry("RoundCorners", "NotMaximized"); + TQRadioButton *roundButton = (TQRadioButton*)m_dialog->roundCorners->child(roundValue.latin1()); if (roundButton) roundButton->setChecked(true); bool menuClose = m_config->readBoolEntry("CloseOnMenuDoubleClick", false); @@ -147,20 +147,20 @@ void SUSE2Config::load(KConfig *) bool customIconColors = m_config->readBoolEntry("CustomIconColors", false); m_dialog->customIconColors->setChecked(customIconColors); - QColor afgcolor = QColor(10, 20, 40); - QColor aFgColor = m_config->readColorEntry("AFgColor", &afgcolor); + TQColor afgcolor = TQColor(10, 20, 40); + TQColor aFgColor = m_config->readColorEntry("AFgColor", &afgcolor); m_dialog->activeFgColor->setColor(aFgColor); - QColor abgcolor = QColor(210, 220, 240); - QColor aBgColor = m_config->readColorEntry("ABgColor", &abgcolor); + TQColor abgcolor = TQColor(210, 220, 240); + TQColor aBgColor = m_config->readColorEntry("ABgColor", &abgcolor); m_dialog->activeBgColor->setColor(aBgColor); - QColor ifgcolor = QColor(40, 40, 40); - QColor iFgColor = m_config->readColorEntry("IFgColor", &ifgcolor); + TQColor ifgcolor = TQColor(40, 40, 40); + TQColor iFgColor = m_config->readColorEntry("IFgColor", &ifgcolor); m_dialog->inactiveFgColor->setColor(iFgColor); - QColor ibgcolor = QColor(240, 240, 240); - QColor iBgColor = m_config->readColorEntry("AFgColor", &ibgcolor); + TQColor ibgcolor = TQColor(240, 240, 240); + TQColor iBgColor = m_config->readColorEntry("AFgColor", &ibgcolor); m_dialog->inactiveBgColor->setColor(iBgColor); bool iconShadow = m_config->readBoolEntry("IconShadow", true); @@ -172,10 +172,10 @@ void SUSE2Config::load(KConfig *) int titleBarLogoOffset = m_config->readNumEntry("TitleBarLogoOffset", 3); m_dialog->titleBarLogoOffset->setValue(titleBarLogoOffset); - QString titleBarImage = locate("data", "kwin/pics/titlebar_decor.png"); + TQString titleBarImage = locate("data", "kwin/pics/titlebar_decor.png"); titlebarLogoURL = m_config->readEntry("TitleBarLogoURL", titleBarImage); - QImage tmpLogo = QImage::QImage(titlebarLogoURL); - m_dialog->logoImage->setPixmap(QPixmap(tmpLogo.smoothScale(120, 20, QImage::ScaleMin))); + TQImage tmpLogo = TQImage::TQImage(titlebarLogoURL); + m_dialog->logoImage->setPixmap(TQPixmap(tmpLogo.smoothScale(120, 20, TQImage::ScaleMin))); } @@ -183,10 +183,10 @@ void SUSE2Config::save(KConfig *) const { m_config->setGroup("General"); - QRadioButton *alignButton = (QRadioButton*)m_dialog->titleAlign->selected(); - if (alignButton) m_config->writeEntry("TitleAlignment", QString(alignButton->name())); - QRadioButton *roundButton = (QRadioButton*)m_dialog->roundCorners->selected(); - if (roundButton) m_config->writeEntry("RoundCorners", QString(roundButton->name())); + TQRadioButton *alignButton = (TQRadioButton*)m_dialog->titleAlign->selected(); + if (alignButton) m_config->writeEntry("TitleAlignment", TQString(alignButton->name())); + TQRadioButton *roundButton = (TQRadioButton*)m_dialog->roundCorners->selected(); + if (roundButton) m_config->writeEntry("RoundCorners", TQString(roundButton->name())); m_config->writeEntry("CloseOnMenuDoubleClick", m_dialog->menuClose->isChecked()); m_config->writeEntry("TitleShadow", m_dialog->titleShadow->isChecked()); m_config->writeEntry("AddSpace", m_dialog->addSpace->value()); @@ -207,15 +207,15 @@ void SUSE2Config::save(KConfig *) const m_config->writeEntry("TitleBarLogo", m_dialog->titleBarLogo->isChecked()); m_config->writeEntry("TitleBarLogoOffset", m_dialog->titleBarLogoOffset->value()); - m_config->writeEntry("TitleBarLogoURL", QString(titlebarLogoURL)); + m_config->writeEntry("TitleBarLogoURL", TQString(titlebarLogoURL)); m_config->sync(); } void SUSE2Config::defaults() { - QRadioButton *alignButton = (QRadioButton*)m_dialog->titleAlign->child("AlignLeft"); + TQRadioButton *alignButton = (TQRadioButton*)m_dialog->titleAlign->child("AlignLeft"); if (alignButton) alignButton->setChecked(true); - QRadioButton *roundButton = (QRadioButton*)m_dialog->roundCorners->child("NotMaximized"); + TQRadioButton *roundButton = (TQRadioButton*)m_dialog->roundCorners->child("NotMaximized"); if (roundButton) roundButton->setChecked(true); m_dialog->menuClose->setChecked(false); m_dialog->titleShadow->setChecked(true); @@ -229,17 +229,17 @@ void SUSE2Config::defaults() m_dialog->redCloseButton->setChecked(false); m_dialog->iconSize->setValue(45); m_dialog->customIconColors->setChecked(false); - m_dialog->activeFgColor->setColor(QColor(10, 20, 40)); - m_dialog->activeBgColor->setColor(QColor(210, 220, 240)); - m_dialog->inactiveFgColor->setColor(QColor(40, 40, 40)); - m_dialog->inactiveBgColor->setColor(QColor(240, 240, 240)); + m_dialog->activeFgColor->setColor(TQColor(10, 20, 40)); + m_dialog->activeBgColor->setColor(TQColor(210, 220, 240)); + m_dialog->inactiveFgColor->setColor(TQColor(40, 40, 40)); + m_dialog->inactiveBgColor->setColor(TQColor(240, 240, 240)); m_dialog->iconShadow->setChecked(true); m_dialog->titleBarLogo->setChecked(false); m_dialog->titleBarLogoOffset->setValue(3); titlebarLogoURL = locate("data", "kwin/pics/titlebar_decor.png"); - QImage tmpLogo = QImage::QImage(titlebarLogoURL); - m_dialog->logoImage->setPixmap(QPixmap(tmpLogo.smoothScale(120, 20, QImage::ScaleMin))); + TQImage tmpLogo = TQImage::TQImage(titlebarLogoURL); + m_dialog->logoImage->setPixmap(TQPixmap(tmpLogo.smoothScale(120, 20, TQImage::ScaleMin))); } void SUSE2Config::toggleIconSettings(bool checked) const @@ -262,8 +262,8 @@ void SUSE2Config::selectImage() KFileItem tmpFileItem = KFileItem(KFileItem::Unknown, KFileItem::Unknown, logoURL); if (!logoURL.isEmpty() && tmpFileItem.isFile() && tmpFileItem.isReadable()) { titlebarLogoURL = logoURL.path(); - QImage tmpLogo = QImage::QImage(titlebarLogoURL); - m_dialog->logoImage->setPixmap(QPixmap(tmpLogo.smoothScale(120, 20, QImage::ScaleMin))); + TQImage tmpLogo = TQImage::TQImage(titlebarLogoURL); + m_dialog->logoImage->setPixmap(TQPixmap(tmpLogo.smoothScale(120, 20, TQImage::ScaleMin))); emit changed(); } } @@ -274,7 +274,7 @@ void SUSE2Config::selectImage() extern "C" { - KDE_EXPORT QObject *allocate_config(KConfig *config, QWidget *parent) { + KDE_EXPORT TQObject *allocate_config(KConfig *config, TQWidget *parent) { return (new SUSE2Config(config, parent)); } } diff --git a/src/config/config.h b/src/config/config.h index 8d05f72..704f38e 100644 --- a/src/config/config.h +++ b/src/config/config.h @@ -24,19 +24,19 @@ #ifndef CONFIG_H #define CONFIG_H -#include <qobject.h> +#include <tqobject.h> -class QButtonGroup; -class QGroupBox; +class TQButtonGroup; +class TQGroupBox; class KConfig; class ConfigDialog; -class SUSE2Config : public QObject +class SUSE2Config : public TQObject { Q_OBJECT public: - SUSE2Config(KConfig *config, QWidget *parent); + SUSE2Config(KConfig *config, TQWidget *parent); ~SUSE2Config(); signals: @@ -48,10 +48,10 @@ public slots: void defaults(); private: - QWidget *m_parent; + TQWidget *m_parent; KConfig *m_config; ConfigDialog *m_dialog; - QString titlebarLogoURL; + TQString titlebarLogoURL; private slots: void toggleIconSettings(bool) const; diff --git a/src/config/configdialog.ui b/src/config/configdialog.ui index 7efee62..5ae84a5 100644 --- a/src/config/configdialog.ui +++ b/src/config/configdialog.ui @@ -1,6 +1,6 @@ <!DOCTYPE UI><UI version="3.3" stdsetdef="1"> <class>ConfigDialog</class> -<widget class="QWidget"> +<widget class="TQWidget"> <property name="name"> <cstring>ConfigDialog</cstring> </property> @@ -22,11 +22,11 @@ <property name="margin"> <number>0</number> </property> - <widget class="QTabWidget" row="0" column="0"> + <widget class="TQTabWidget" row="0" column="0"> <property name="name"> <cstring>tabWidget2</cstring> </property> - <widget class="QWidget"> + <widget class="TQWidget"> <property name="name"> <cstring>tab</cstring> </property> @@ -37,7 +37,7 @@ <property name="name"> <cstring>unnamed</cstring> </property> - <widget class="QButtonGroup" row="0" column="0"> + <widget class="TQButtonGroup" row="0" column="0"> <property name="name"> <cstring>titleAlign</cstring> </property> @@ -48,7 +48,7 @@ <property name="name"> <cstring>unnamed</cstring> </property> - <widget class="QRadioButton"> + <widget class="TQRadioButton"> <property name="name"> <cstring>AlignLeft</cstring> </property> @@ -59,7 +59,7 @@ <string>Align the title left.</string> </property> </widget> - <widget class="QRadioButton"> + <widget class="TQRadioButton"> <property name="name"> <cstring>AlignHCenter</cstring> </property> @@ -70,7 +70,7 @@ <string>Center the title.</string> </property> </widget> - <widget class="QRadioButton"> + <widget class="TQRadioButton"> <property name="name"> <cstring>AlignRight</cstring> </property> @@ -83,7 +83,7 @@ </widget> </hbox> </widget> - <widget class="QButtonGroup" row="1" column="0"> + <widget class="TQButtonGroup" row="1" column="0"> <property name="name"> <cstring>roundCorners</cstring> </property> @@ -94,7 +94,7 @@ <property name="name"> <cstring>unnamed</cstring> </property> - <widget class="QRadioButton"> + <widget class="TQRadioButton"> <property name="name"> <cstring>RoundAlways</cstring> </property> @@ -108,7 +108,7 @@ <string>Always draw rounded window top corners.</string> </property> </widget> - <widget class="QRadioButton"> + <widget class="TQRadioButton"> <property name="name"> <cstring>NotMaximized</cstring> </property> @@ -122,7 +122,7 @@ <string>Draw rounded top corners if the window is not maximized.</string> </property> </widget> - <widget class="QRadioButton"> + <widget class="TQRadioButton"> <property name="name"> <cstring>RoundNever</cstring> </property> @@ -138,7 +138,7 @@ </widget> </hbox> </widget> - <widget class="QCheckBox" row="2" column="0"> + <widget class="TQCheckBox" row="2" column="0"> <property name="name"> <cstring>menuClose</cstring> </property> @@ -149,7 +149,7 @@ <string>Check this option if you want windows to be closed when you double click the menu button, similar to Microsoft Windows.</string> </property> </widget> - <widget class="QCheckBox" row="3" column="0"> + <widget class="TQCheckBox" row="3" column="0"> <property name="name"> <cstring>titleShadow</cstring> </property> @@ -160,7 +160,7 @@ <string>Check this option if you want the titlebar text to have a 3D look with a shadow behind it.</string> </property> </widget> - <widget class="QLayoutWidget" row="4" column="0"> + <widget class="TQLayoutWidget" row="4" column="0"> <property name="name"> <cstring>layout6</cstring> </property> @@ -182,7 +182,7 @@ <string>Here you can set some additional space for the titlebar height.</string> </property> </widget> - <widget class="QLabel"> + <widget class="TQLabel"> <property name="name"> <cstring>textLabel1_4</cstring> </property> @@ -217,7 +217,7 @@ </spacer> </hbox> </widget> - <widget class="QLayoutWidget" row="5" column="0"> + <widget class="TQLayoutWidget" row="5" column="0"> <property name="name"> <cstring>layout7</cstring> </property> @@ -225,7 +225,7 @@ <property name="name"> <cstring>unnamed</cstring> </property> - <widget class="QLabel"> + <widget class="TQLabel"> <property name="name"> <cstring>textLabel1_5</cstring> </property> @@ -241,7 +241,7 @@ <string>Titlebarstyle:</string> </property> </widget> - <widget class="QComboBox"> + <widget class="TQComboBox"> <item> <property name="text"> <string>Toplight</string> @@ -280,7 +280,7 @@ </widget> </grid> </widget> - <widget class="QWidget"> + <widget class="TQWidget"> <property name="name"> <cstring>tab</cstring> </property> @@ -291,7 +291,7 @@ <property name="name"> <cstring>unnamed</cstring> </property> - <widget class="QLayoutWidget" row="0" column="0"> + <widget class="TQLayoutWidget" row="0" column="0"> <property name="name"> <cstring>layout5</cstring> </property> @@ -299,7 +299,7 @@ <property name="name"> <cstring>unnamed</cstring> </property> - <widget class="QLabel"> + <widget class="TQLabel"> <property name="name"> <cstring>textLabel1_2</cstring> </property> @@ -315,7 +315,7 @@ <string>Buttontype:</string> </property> </widget> - <widget class="QComboBox"> + <widget class="TQComboBox"> <item> <property name="text"> <string>Plastik flat</string> @@ -384,7 +384,7 @@ </size> </property> </spacer> - <widget class="QCheckBox" row="1" column="0"> + <widget class="TQCheckBox" row="1" column="0"> <property name="name"> <cstring>customColors</cstring> </property> @@ -395,7 +395,7 @@ <string>Allow custom colors for the button background. The colors for the buttonbackground from the colorscheme are used then.</string> </property> </widget> - <widget class="QCheckBox" row="2" column="0"> + <widget class="TQCheckBox" row="2" column="0"> <property name="name"> <cstring>useTitleProps</cstring> </property> @@ -406,7 +406,7 @@ <string>Use the titlefont settings (color, shadow) for the button icons. Overrides the custom color settings.</string> </property> </widget> - <widget class="QCheckBox" row="3" column="0"> + <widget class="TQCheckBox" row="3" column="0"> <property name="name"> <cstring>animateButtons</cstring> </property> @@ -417,7 +417,7 @@ <string>Check this option if you want the buttons to fade in when the mouse pointer hovers over them and fade out again when it moves away.</string> </property> </widget> - <widget class="QLayoutWidget" row="5" column="0"> + <widget class="TQLayoutWidget" row="5" column="0"> <property name="name"> <cstring>layout5</cstring> </property> @@ -425,7 +425,7 @@ <property name="name"> <cstring>unnamed</cstring> </property> - <widget class="QLabel"> + <widget class="TQLabel"> <property name="name"> <cstring>textLabel1_3</cstring> </property> @@ -477,7 +477,7 @@ </spacer> </hbox> </widget> - <widget class="QCheckBox" row="4" column="0"> + <widget class="TQCheckBox" row="4" column="0"> <property name="name"> <cstring>redCloseButton</cstring> </property> @@ -488,7 +488,7 @@ <string>Paint the icon of the closebutton in red (this overrides all other colorsettings).</string> </property> </widget> - <widget class="QCheckBox" row="0" column="1"> + <widget class="TQCheckBox" row="0" column="1"> <property name="name"> <cstring>customIconColors</cstring> </property> @@ -516,7 +516,7 @@ </size> </property> </spacer> - <widget class="QLayoutWidget" row="1" column="1" rowspan="4" colspan="1"> + <widget class="TQLayoutWidget" row="1" column="1" rowspan="4" colspan="1"> <property name="name"> <cstring>layout13</cstring> </property> @@ -524,7 +524,7 @@ <property name="name"> <cstring>unnamed</cstring> </property> - <widget class="QLayoutWidget"> + <widget class="TQLayoutWidget"> <property name="name"> <cstring>layout11</cstring> </property> @@ -532,7 +532,7 @@ <property name="name"> <cstring>unnamed</cstring> </property> - <widget class="QLabel"> + <widget class="TQLabel"> <property name="name"> <cstring>activeLbl</cstring> </property> @@ -540,7 +540,7 @@ <string>Active:</string> </property> </widget> - <widget class="QLabel"> + <widget class="TQLabel"> <property name="name"> <cstring>activeDownLbl</cstring> </property> @@ -548,7 +548,7 @@ <string>Active down:</string> </property> </widget> - <widget class="QLabel"> + <widget class="TQLabel"> <property name="name"> <cstring>inactiveLbl</cstring> </property> @@ -556,7 +556,7 @@ <string>Inactive:</string> </property> </widget> - <widget class="QLabel"> + <widget class="TQLabel"> <property name="name"> <cstring>inactiveDownLbl</cstring> </property> @@ -566,7 +566,7 @@ </widget> </vbox> </widget> - <widget class="QLayoutWidget"> + <widget class="TQLayoutWidget"> <property name="name"> <cstring>layout12</cstring> </property> @@ -622,7 +622,7 @@ </widget> </hbox> </widget> - <widget class="QCheckBox" row="5" column="1"> + <widget class="TQCheckBox" row="5" column="1"> <property name="name"> <cstring>iconShadow</cstring> </property> @@ -635,7 +635,7 @@ </widget> </grid> </widget> - <widget class="QWidget"> + <widget class="TQWidget"> <property name="name"> <cstring>TabPage</cstring> </property> @@ -663,7 +663,7 @@ </size> </property> </spacer> - <widget class="QLabel" row="2" column="0"> + <widget class="TQLabel" row="2" column="0"> <property name="name"> <cstring>textLabel1</cstring> </property> @@ -679,7 +679,7 @@ <string>Logo preview:</string> </property> </widget> - <widget class="QLabel" row="2" column="1" rowspan="1" colspan="2"> + <widget class="TQLabel" row="2" column="1" rowspan="1" colspan="2"> <property name="name"> <cstring>logoImage</cstring> </property> @@ -713,7 +713,7 @@ <string></string> </property> </widget> - <widget class="QLabel" row="1" column="0" rowspan="1" colspan="2"> + <widget class="TQLabel" row="1" column="0" rowspan="1" colspan="2"> <property name="name"> <cstring>textLabel2</cstring> </property> @@ -768,7 +768,7 @@ </size> </property> </spacer> - <widget class="QPushButton" row="2" column="3"> + <widget class="TQPushButton" row="2" column="3"> <property name="name"> <cstring>selectButton</cstring> </property> @@ -796,7 +796,7 @@ </size> </property> </spacer> - <widget class="QCheckBox" row="0" column="0" rowspan="1" colspan="5"> + <widget class="TQCheckBox" row="0" column="0" rowspan="1" colspan="5"> <property name="name"> <cstring>titleBarLogo</cstring> </property> |