From bae793079f00cde6d857b55ef9c2d98ec6e091e6 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 16 Jul 2013 02:08:39 -0500 Subject: Fix network-manager backend crash on certain systems when network-manager is not available Add ability to show buttons in KSMModalDialog --- tdeui/kdialog.cpp | 21 ++++++++++++++++++++- tdeui/kdialog.h | 8 ++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) (limited to 'tdeui') 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 #include #include +#include #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...") ); diff --git a/tdeui/kdialog.h b/tdeui/kdialog.h index fff80a10c..dd1cc3908 100644 --- a/tdeui/kdialog.h +++ b/tdeui/kdialog.h @@ -234,6 +234,8 @@ public: * @author Timothy Pearson */ class TQLabel; +class TQPushButton; +class TQHBoxLayout; class TDEUI_EXPORT KSMModalDialog : public TQWidget { Q_OBJECT @@ -250,6 +252,12 @@ protected slots: void keepMeOnTop(); void closeEvent(TQCloseEvent *e); +protected: + TQPushButton* m_button1; + TQPushButton* m_button2; + TQPushButton* m_button3; + TQHBoxLayout* m_buttonbox; + private: TQTimer* m_keepOnTopTimer; TQLabel* m_statusLabel; -- cgit v1.2.1