diff options
Diffstat (limited to 'src/Q_importdialog.cpp')
-rw-r--r-- | src/Q_importdialog.cpp | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/src/Q_importdialog.cpp b/src/Q_importdialog.cpp deleted file mode 100644 index 4b5679b..0000000 --- a/src/Q_importdialog.cpp +++ /dev/null @@ -1,70 +0,0 @@ -#include <kdialog.h> -#include <tdelocale.h> -/**************************************************************************** -** Form implementation generated from reading ui file '/home/mkulke/Development/kasablanca/src/Q_importdialog.ui' -** -** Created: Mo Jan 31 15:02:10 2005 -** by: The User Interface Compiler ($Id: qt/main.cpp 3.3.3 edited Nov 24 2003 $) -** -** WARNING! All changes made in this file will be lost! -****************************************************************************/ - -#include "Q_importdialog.h" - -#include <ntqvariant.h> -#include <ntqpushbutton.h> -#include <ntqbuttongroup.h> -#include <ntqradiobutton.h> -#include <ntqlayout.h> -#include <ntqtooltip.h> -#include <ntqwhatsthis.h> - -/* - * Constructs a KasablancaImportDialog as a child of 'parent', with the - * name 'name' and widget flags set to 'f'. - */ -KasablancaImportDialog::KasablancaImportDialog( TQWidget* parent, const char* name, WFlags fl ) - : TQWidget( parent, name, fl ) -{ - if ( !name ) - setName( "KasablancaImportDialog" ); - KasablancaImportDialogLayout = new TQGridLayout( this, 1, 1, 11, 6, "KasablancaImportDialogLayout"); - - ImportGroupBox = new TQButtonGroup( this, "ImportGroupBox" ); - ImportGroupBox->setColumnLayout(0, TQt::Vertical ); - ImportGroupBox->layout()->setSpacing( 6 ); - ImportGroupBox->layout()->setMargin( 11 ); - ImportGroupBoxLayout = new TQGridLayout( ImportGroupBox->layout() ); - ImportGroupBoxLayout->setAlignment( TQt::AlignTop ); - - GftpRadioButton = new TQRadioButton( ImportGroupBox, "GftpRadioButton" ); - GftpRadioButton->setChecked( TRUE ); - - ImportGroupBoxLayout->addWidget( GftpRadioButton, 0, 0 ); - - KasablancaImportDialogLayout->addWidget( ImportGroupBox, 0, 0 ); - languageChange(); - resize( TQSize(231, 80).expandedTo(minimumSizeHint()) ); - clearWState( WState_Polished ); -} - -/* - * Destroys the object and frees any allocated resources - */ -KasablancaImportDialog::~KasablancaImportDialog() -{ - // no need to delete child widgets, TQt does it all for us -} - -/* - * Sets the strings of the subwidgets using the current - * language. - */ -void KasablancaImportDialog::languageChange() -{ - setCaption( tr2i18n( "Import Bookmarks" ) ); - ImportGroupBox->setTitle( tr2i18n( "Import filter" ) ); - GftpRadioButton->setText( tr2i18n( "gFtp" ) ); -} - -#include "Q_importdialog.moc" |