diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-07-16 02:08:39 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-07-16 02:08:39 -0500 |
commit | bae793079f00cde6d857b55ef9c2d98ec6e091e6 (patch) | |
tree | 0e1f161f9095487ee0cb930d3d208c1267515006 /tdeui/kdialog.cpp | |
parent | efda5c30fc737a49920900ace57a6bfffb9be27b (diff) | |
download | tdelibs-bae793079f00cde6d857b55ef9c2d98ec6e091e6.tar.gz tdelibs-bae793079f00cde6d857b55ef9c2d98ec6e091e6.zip |
Fix network-manager backend crash on certain systems when network-manager is not available
Add ability to show buttons in KSMModalDialog
Diffstat (limited to 'tdeui/kdialog.cpp')
-rw-r--r-- | tdeui/kdialog.cpp | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/tdeui/kdialog.cpp b/tdeui/kdialog.cpp index 86f7f7476..c20bac5a0 100644 --- a/tdeui/kdialog.cpp +++ b/tdeui/kdialog.cpp @@ -38,6 +38,7 @@ #include <tqlabel.h> #include <tqstyle.h> #include <tqimage.h> +#include <tqpushbutton.h> #include "config.h" #ifdef Q_WS_X11 @@ -419,13 +420,31 @@ KSMModalDialog::KSMModalDialog(TQWidget* parent) fnt.setBold( false ); fnt.setPointSize( fnt.pointSize() * 1 ); m_statusLabel->setFont( fnt ); - gbox->addMultiCellWidget( m_statusLabel, 2, 2, 0, 0, AlignLeft | AlignVCenter ); + gbox->addMultiCellWidget( m_statusLabel, 2, 2, 0, 2, AlignLeft | AlignVCenter ); KSMModalDialogHeader *theader = new KSMModalDialogHeader(this); centerbox->addWidget( theader, AlignCenter ); gbox->addLayout(centerbox, 0, 0); + TQFrame* frame2 = new TQFrame( this ); + frame2->setFrameStyle( TQFrame::NoFrame ); + frame2->setLineWidth( style().pixelMetric( TQStyle::PM_DefaultFrameWidth, frame ) ); + m_buttonbox = new TQHBoxLayout( frame2, 0, KDialog::spacingHint() ); + + m_button1 = new TQPushButton( frame2 ); + m_button2 = new TQPushButton( frame2 ); + m_button3 = new TQPushButton( frame2 ); + m_buttonbox->addWidget( m_button1 ); + m_buttonbox->addWidget( m_button2 ); + m_buttonbox->addWidget( m_button3 ); + m_button1->hide(); + m_button2->hide(); + m_button3->hide(); + + frame2->hide(); + gbox->addMultiCellWidget( frame2, 3, 3, 0, 2, 0 ); + setFixedSize( sizeHint() ); setCaption( i18n("Please wait...") ); |