Rename old tq methods that no longer need a unique name

remotes/gitea/gg-tdeadmin-kcron
Timothy Pearson 13 years ago
parent 377fa3a277
commit b836ed566c

@ -269,7 +269,7 @@ KTTask::KTTask(CTTask* _cttask, const TQString & _caption)
v4->addSpacing( 2 * KDialogBase::spacingHint() ); v4->addSpacing( 2 * KDialogBase::spacingHint() );
labAM = new TQLabel( i18n("AM"), bgHour, "labAM"); labAM = new TQLabel( i18n("AM"), bgHour, "labAM");
labAM->tqsetAlignment(AlignRight | AlignVCenter); labAM->setAlignment(AlignRight | AlignVCenter);
v4->addWidget( labAM ); v4->addWidget( labAM );
@ -292,7 +292,7 @@ KTTask::KTTask(CTTask* _cttask, const TQString & _caption)
} }
labPM = new TQLabel( i18n("PM"), bgHour, "labPM"); labPM = new TQLabel( i18n("PM"), bgHour, "labPM");
labPM->tqsetAlignment(AlignRight | AlignVCenter); labPM->setAlignment(AlignRight | AlignVCenter);
v4->addWidget( labPM ); v4->addWidget( labPM );
hhours = new TQHBoxLayout( v4, KDialogBase::spacingHint() ); hhours = new TQHBoxLayout( v4, KDialogBase::spacingHint() );
@ -403,7 +403,7 @@ KTTask::KTTask(CTTask* _cttask, const TQString & _caption)
key_accel->insert(KStdAccel::Quit, TQT_TQOBJECT(this), TQT_SLOT(slotCancel())); key_accel->insert(KStdAccel::Quit, TQT_TQOBJECT(this), TQT_SLOT(slotCancel()));
key_accel->readSettings(); key_accel->readSettings();
setFixedSize( tqminimumSize() ); setFixedSize( minimumSize() );
slotDailyChanged(); slotDailyChanged();
slotMonthChanged(); slotMonthChanged();
slotDayOfMonthChanged(); slotDayOfMonthChanged();

@ -266,7 +266,7 @@ void KTView :: pageHeading (KTListItem* user, KTPrint &printer) const
{ {
TQFont stnd; TQFont stnd;
TQString logonInfo; TQString logonInfo;
TQDateTime now (TQDateTime::tqcurrentDateTime()); TQDateTime now (TQDateTime::currentDateTime());
char hostName[20]; char hostName[20];
gethostname(hostName, 20); gethostname(hostName, 20);

@ -43,25 +43,25 @@ ArchiveInfoWidget::ArchiveInfoWidget( TQWidget* parent, const char* name )
TQLabel* lbl2 = new TQLabel( i18n( "Created on:" ), this ); TQLabel* lbl2 = new TQLabel( i18n( "Created on:" ), this );
TQLabel* lbl3 = new TQLabel( i18n( "Size:" ), this ); TQLabel* lbl3 = new TQLabel( i18n( "Size:" ), this );
int max = lbl1->tqsizeHint().width(); int max = lbl1->sizeHint().width();
if ( lbl2->tqsizeHint().width() > max ) max = lbl2->tqsizeHint().width(); if ( lbl2->sizeHint().width() > max ) max = lbl2->sizeHint().width();
if ( lbl3->tqsizeHint().width() > max ) max = lbl3->tqsizeHint().width(); if ( lbl3->sizeHint().width() > max ) max = lbl3->sizeHint().width();
lbl1->setFixedSize( max, lbl1->tqsizeHint().height() ); lbl1->setFixedSize( max, lbl1->sizeHint().height() );
lbl2->setFixedSize( max, lbl2->tqsizeHint().height() ); lbl2->setFixedSize( max, lbl2->sizeHint().height() );
lbl3->setFixedSize( max, lbl3->tqsizeHint().height() ); lbl3->setFixedSize( max, lbl3->sizeHint().height() );
_archiveName = new TQLineEdit( this ); _archiveName = new TQLineEdit( this );
_archiveName->setFixedHeight( _archiveName->tqsizeHint().height() ); _archiveName->setFixedHeight( _archiveName->sizeHint().height() );
_ctime = new TQLabel( "???", this ); _ctime = new TQLabel( "???", this );
_ctime->setFixedHeight( _ctime->tqsizeHint().height() ); _ctime->setFixedHeight( _ctime->sizeHint().height() );
_size = new TQLabel( "???", this ); _size = new TQLabel( "???", this );
_size->setFixedHeight( _size->tqsizeHint().height() ); _size->setFixedHeight( _size->sizeHint().height() );
_apply = new KPushButton( KStdGuiItem::apply(), this ); _apply = new KPushButton( KStdGuiItem::apply(), this );
_apply->setFixedSize( 80, _apply->tqsizeHint().height() ); _apply->setFixedSize( 80, _apply->sizeHint().height() );
_apply->setEnabled( FALSE ); _apply->setEnabled( FALSE );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 4, 4 ); TQVBoxLayout* l1 = new TQVBoxLayout( this, 4, 4 );

@ -93,55 +93,55 @@ BackupDlg::BackupDlg( const TQString & archiveName, const TQString & workingDir,
f2->setFrameStyle( TQFrame::Panel | TQFrame::Sunken ); f2->setFrameStyle( TQFrame::Panel | TQFrame::Sunken );
TQLabel* lbl1 = new TQLabel( i18n( "Elapsed time:" ), f1 ); TQLabel* lbl1 = new TQLabel( i18n( "Elapsed time:" ), f1 );
lbl1->setFixedSize( labelWidth, lbl1->tqsizeHint().height() ); lbl1->setFixedSize( labelWidth, lbl1->sizeHint().height() );
_elapsedTime = new TQLabel( i18n( "00:00:00" ), f1 ); _elapsedTime = new TQLabel( i18n( "00:00:00" ), f1 );
_elapsedTime->setFixedHeight( _elapsedTime->tqsizeHint().height() ); _elapsedTime->setFixedHeight( _elapsedTime->sizeHint().height() );
TQLabel* lbl2 = new TQLabel( i18n( "Time remaining:" ), f2 ); TQLabel* lbl2 = new TQLabel( i18n( "Time remaining:" ), f2 );
lbl2->setFixedSize( labelWidth, lbl2->tqsizeHint().height() ); lbl2->setFixedSize( labelWidth, lbl2->sizeHint().height() );
_timeRemaining = new TQLabel( i18n( "00:00:00" ), f2 ); _timeRemaining = new TQLabel( i18n( "00:00:00" ), f2 );
_timeRemaining->setFixedHeight( _timeRemaining->tqsizeHint().height() ); _timeRemaining->setFixedHeight( _timeRemaining->sizeHint().height() );
TQLabel* lbl3 = new TQLabel( i18n( "Total KB:" ), f1 ); TQLabel* lbl3 = new TQLabel( i18n( "Total KB:" ), f1 );
lbl3->setFixedSize( labelWidth, lbl3->tqsizeHint().height() ); lbl3->setFixedSize( labelWidth, lbl3->sizeHint().height() );
TQLabel* totalKbytes = new TQLabel( Util::kbytesToString( archiveSize ), f1 ); TQLabel* totalKbytes = new TQLabel( Util::kbytesToString( archiveSize ), f1 );
totalKbytes->setFixedHeight( totalKbytes->tqsizeHint().height() ); totalKbytes->setFixedHeight( totalKbytes->sizeHint().height() );
TQLabel* lbl4 = new TQLabel( i18n( "KB written:" ), f2 ); TQLabel* lbl4 = new TQLabel( i18n( "KB written:" ), f2 );
lbl4->setFixedSize( labelWidth, lbl4->tqsizeHint().height() ); lbl4->setFixedSize( labelWidth, lbl4->sizeHint().height() );
_kbytesWritten = new TQLabel( i18n( "0KB" ), f2 ); _kbytesWritten = new TQLabel( i18n( "0KB" ), f2 );
_kbytesWritten->setFixedHeight( _kbytesWritten->tqsizeHint().height() ); _kbytesWritten->setFixedHeight( _kbytesWritten->sizeHint().height() );
TQLabel* lbl5 = new TQLabel( i18n( "Transfer rate:" ), f1 ); TQLabel* lbl5 = new TQLabel( i18n( "Transfer rate:" ), f1 );
lbl5->setFixedSize( labelWidth, lbl5->tqsizeHint().height() ); lbl5->setFixedSize( labelWidth, lbl5->sizeHint().height() );
_transferRate = new TQLabel( i18n( "0KB/min" ), f1 ); _transferRate = new TQLabel( i18n( "0KB/min" ), f1 );
_transferRate->setFixedHeight( _transferRate->tqsizeHint().height() ); _transferRate->setFixedHeight( _transferRate->sizeHint().height() );
TQLabel* lbl6 = new TQLabel( i18n( "Files:" ), f2 ); TQLabel* lbl6 = new TQLabel( i18n( "Files:" ), f2 );
lbl6->setFixedSize( labelWidth, lbl6->tqsizeHint().height() ); lbl6->setFixedSize( labelWidth, lbl6->sizeHint().height() );
_fileCount = new TQLabel( i18n( "0" ), f2 ); _fileCount = new TQLabel( i18n( "0" ), f2 );
_fileCount->setFixedHeight( _fileCount->tqsizeHint().height() ); _fileCount->setFixedHeight( _fileCount->sizeHint().height() );
_log = new LoggerWidget( i18n( "Backup log:" ), this ); _log = new LoggerWidget( i18n( "Backup log:" ), this );
_ok = new KPushButton( KStdGuiItem::ok(), this ); _ok = new KPushButton( KStdGuiItem::ok(), this );
_ok->setFixedSize( 80, _ok->tqsizeHint().height() ); _ok->setFixedSize( 80, _ok->sizeHint().height() );
connect( _ok, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotOK() ) ); connect( _ok, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotOK() ) );
_ok->setEnabled( FALSE ); _ok->setEnabled( FALSE );
_save = new TQPushButton( i18n( "Save Log..." ), this ); _save = new TQPushButton( i18n( "Save Log..." ), this );
_save->setFixedSize( 80, _save->tqsizeHint().height() ); _save->setFixedSize( 80, _save->sizeHint().height() );
connect( _save, TQT_SIGNAL( clicked() ), _log, TQT_SLOT( save() ) ); connect( _save, TQT_SIGNAL( clicked() ), _log, TQT_SLOT( save() ) );
_save->setEnabled( FALSE ); _save->setEnabled( FALSE );
_abort = new KPushButton( KStdGuiItem::cancel(), this ); _abort = new KPushButton( KStdGuiItem::cancel(), this );
_abort->setFixedSize( 80, _abort->tqsizeHint().height() ); _abort->setFixedSize( 80, _abort->sizeHint().height() );
connect( _abort, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotAbort() ) ); connect( _abort, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotAbort() ) );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 ); TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 );

@ -33,7 +33,7 @@ class Tape;
class TarParser; class TarParser;
/** /**
* @short tqStatus dialog for backing up files. * @short Status dialog for backing up files.
*/ */
class BackupDlg : public TQDialog { class BackupDlg : public TQDialog {
Q_OBJECT Q_OBJECT

@ -42,10 +42,10 @@ BackupOptDlg::BackupOptDlg( BackupProfile* backupProfile, TQWidget* parent, cons
_profile->setBackupProfile( backupProfile ); _profile->setBackupProfile( backupProfile );
KPushButton* ok = new KPushButton( KStdGuiItem::ok(), this ); KPushButton* ok = new KPushButton( KStdGuiItem::ok(), this );
ok->setFixedSize( 80, ok->tqsizeHint().height() ); ok->setFixedSize( 80, ok->sizeHint().height() );
connect( ok, TQT_SIGNAL( clicked() ), this, TQT_SLOT( accept() ) ); connect( ok, TQT_SIGNAL( clicked() ), this, TQT_SLOT( accept() ) );
KPushButton* cancel = new KPushButton( KStdGuiItem::cancel(), this ); KPushButton* cancel = new KPushButton( KStdGuiItem::cancel(), this );
cancel->setFixedSize( 80, ok->tqsizeHint().height() ); cancel->setFixedSize( 80, ok->sizeHint().height() );
connect( cancel, TQT_SIGNAL( clicked() ), this, TQT_SLOT( reject() ) ); connect( cancel, TQT_SIGNAL( clicked() ), this, TQT_SLOT( reject() ) );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 ); TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 );

@ -42,23 +42,23 @@ BackupProfileInfoWidget::BackupProfileInfoWidget( TQWidget* parent, const char*
{ {
TQLabel* lbl1 = new TQLabel( i18n( "Backup profile name:" ), this ); TQLabel* lbl1 = new TQLabel( i18n( "Backup profile name:" ), this );
int max = lbl1->tqsizeHint().width(); int max = lbl1->sizeHint().width();
lbl1->setFixedSize( max, lbl1->tqsizeHint().height() ); lbl1->setFixedSize( max, lbl1->sizeHint().height() );
_name = new TQLineEdit( this ); _name = new TQLineEdit( this );
_name->setFixedHeight( _name->tqsizeHint().height() ); _name->setFixedHeight( _name->sizeHint().height() );
_profile = new BackupProfileWidget( this ); _profile = new BackupProfileWidget( this );
TQPushButton* getSelection = new TQPushButton( i18n( "Files >>" ), this ); TQPushButton* getSelection = new TQPushButton( i18n( "Files >>" ), this );
getSelection->setFixedSize( 80, getSelection->tqsizeHint().height() ); getSelection->setFixedSize( 80, getSelection->sizeHint().height() );
TQPushButton* setSelection = new TQPushButton( i18n( "<< Files" ), this ); TQPushButton* setSelection = new TQPushButton( i18n( "<< Files" ), this );
setSelection->setFixedSize( 80, setSelection->tqsizeHint().height() ); setSelection->setFixedSize( 80, setSelection->sizeHint().height() );
_apply = new KPushButton( KStdGuiItem::apply(), this ); _apply = new KPushButton( KStdGuiItem::apply(), this );
_apply->setFixedSize( 80, _apply->tqsizeHint().height() ); _apply->setFixedSize( 80, _apply->sizeHint().height() );
_apply->setEnabled( FALSE ); _apply->setEnabled( FALSE );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 4, 4 ); TQVBoxLayout* l1 = new TQVBoxLayout( this, 4, 4 );

@ -40,19 +40,19 @@ BackupProfileWidget::BackupProfileWidget( TQWidget* parent, const char* name )
addTab( one, i18n( "Backup" ) ); addTab( one, i18n( "Backup" ) );
TQLabel* lbl1 = new TQLabel( i18n( "Archive name:" ), one ); TQLabel* lbl1 = new TQLabel( i18n( "Archive name:" ), one );
lbl1->setFixedSize( lbl1->tqsizeHint() ); lbl1->setFixedSize( lbl1->sizeHint() );
_archiveName = new TQLineEdit( one ); _archiveName = new TQLineEdit( one );
_archiveName->setFixedHeight( _archiveName->tqsizeHint().height() ); _archiveName->setFixedHeight( _archiveName->sizeHint().height() );
TQLabel* lbl2 = new TQLabel( i18n( "Working folder:" ), one ); TQLabel* lbl2 = new TQLabel( i18n( "Working folder:" ), one );
lbl2->setFixedSize( lbl2->tqsizeHint() ); lbl2->setFixedSize( lbl2->sizeHint() );
_workingDir = new TQComboBox( FALSE, one ); _workingDir = new TQComboBox( FALSE, one );
_workingDir->setFixedHeight( _workingDir->tqsizeHint().height() ); _workingDir->setFixedHeight( _workingDir->sizeHint().height() );
TQLabel* lbl3 = new TQLabel( i18n( "Backup files:" ), one ); TQLabel* lbl3 = new TQLabel( i18n( "Backup files:" ), one );
lbl3->setFixedHeight( lbl3->tqsizeHint().height() ); lbl3->setFixedHeight( lbl3->sizeHint().height() );
_files = new TQListBox( one ); _files = new TQListBox( one );
@ -60,20 +60,20 @@ BackupProfileWidget::BackupProfileWidget( TQWidget* parent, const char* name )
addTab( two, i18n( "Tar Options" ) ); addTab( two, i18n( "Tar Options" ) );
_oneFilesystem = new TQCheckBox( i18n( "Stay on one filesystem" ), two ); _oneFilesystem = new TQCheckBox( i18n( "Stay on one filesystem" ), two );
_oneFilesystem->setFixedHeight( _oneFilesystem->tqsizeHint().height() ); _oneFilesystem->setFixedHeight( _oneFilesystem->sizeHint().height() );
_incremental = new TQCheckBox( i18n( "GNU listed incremental" ), two ); _incremental = new TQCheckBox( i18n( "GNU listed incremental" ), two );
_incremental->setFixedHeight( _incremental->tqsizeHint().height() ); _incremental->setFixedHeight( _incremental->sizeHint().height() );
connect( _incremental, TQT_SIGNAL( toggled( bool ) ), this, TQT_SLOT( slotIncrementalToggled( bool ) ) ); connect( _incremental, TQT_SIGNAL( toggled( bool ) ), this, TQT_SLOT( slotIncrementalToggled( bool ) ) );
_snapshotLabel = new TQLabel( i18n( "Snapshot file:" ), two ); _snapshotLabel = new TQLabel( i18n( "Snapshot file:" ), two );
_snapshotLabel->setFixedSize( _snapshotLabel->tqsizeHint() ); _snapshotLabel->setFixedSize( _snapshotLabel->sizeHint() );
_snapshotFile = new TQLineEdit( two ); _snapshotFile = new TQLineEdit( two );
_snapshotFile->setFixedHeight( _snapshotFile->tqsizeHint().height() ); _snapshotFile->setFixedHeight( _snapshotFile->sizeHint().height() );
_removeSnapshot = new TQCheckBox( i18n( "Remove snapshot file before backup" ), two ); _removeSnapshot = new TQCheckBox( i18n( "Remove snapshot file before backup" ), two );
_removeSnapshot->setFixedHeight( _removeSnapshot->tqsizeHint().height() ); _removeSnapshot->setFixedHeight( _removeSnapshot->sizeHint().height() );
slotIncrementalToggled( FALSE ); slotIncrementalToggled( FALSE );

@ -47,42 +47,42 @@ FileInfoWidget::FileInfoWidget( TQWidget* parent, const char* name )
TQLabel* lbl6 = new TQLabel( i18n( "Owner:" ), this ); TQLabel* lbl6 = new TQLabel( i18n( "Owner:" ), this );
TQLabel* lbl7 = new TQLabel( i18n( "Group:" ), this ); TQLabel* lbl7 = new TQLabel( i18n( "Group:" ), this );
int max = lbl1->tqsizeHint().width(); int max = lbl1->sizeHint().width();
if ( lbl2->tqsizeHint().width() > max ) max = lbl2->tqsizeHint().width(); if ( lbl2->sizeHint().width() > max ) max = lbl2->sizeHint().width();
if ( lbl3->tqsizeHint().width() > max ) max = lbl3->tqsizeHint().width(); if ( lbl3->sizeHint().width() > max ) max = lbl3->sizeHint().width();
if ( lbl4->tqsizeHint().width() > max ) max = lbl4->tqsizeHint().width(); if ( lbl4->sizeHint().width() > max ) max = lbl4->sizeHint().width();
if ( lbl5->tqsizeHint().width() > max ) max = lbl5->tqsizeHint().width(); if ( lbl5->sizeHint().width() > max ) max = lbl5->sizeHint().width();
if ( lbl6->tqsizeHint().width() > max ) max = lbl6->tqsizeHint().width(); if ( lbl6->sizeHint().width() > max ) max = lbl6->sizeHint().width();
if ( lbl7->tqsizeHint().width() > max ) max = lbl7->tqsizeHint().width(); if ( lbl7->sizeHint().width() > max ) max = lbl7->sizeHint().width();
lbl1->setFixedSize( max, lbl1->tqsizeHint().height() ); lbl1->setFixedSize( max, lbl1->sizeHint().height() );
lbl2->setFixedSize( max, lbl2->tqsizeHint().height() ); lbl2->setFixedSize( max, lbl2->sizeHint().height() );
lbl3->setFixedSize( max, lbl3->tqsizeHint().height() ); lbl3->setFixedSize( max, lbl3->sizeHint().height() );
lbl4->setFixedSize( max, lbl4->tqsizeHint().height() ); lbl4->setFixedSize( max, lbl4->sizeHint().height() );
lbl5->setFixedSize( max, lbl5->tqsizeHint().height() ); lbl5->setFixedSize( max, lbl5->sizeHint().height() );
lbl6->setFixedSize( max, lbl6->tqsizeHint().height() ); lbl6->setFixedSize( max, lbl6->sizeHint().height() );
lbl7->setFixedSize( max, lbl7->tqsizeHint().height() ); lbl7->setFixedSize( max, lbl7->sizeHint().height() );
_fileName = new TQLabel( "???", this ); _fileName = new TQLabel( "???", this );
_fileName->setFixedHeight( _fileName->tqsizeHint().height() ); _fileName->setFixedHeight( _fileName->sizeHint().height() );
_ctime = new TQLabel( "???", this ); _ctime = new TQLabel( "???", this );
_ctime->setFixedHeight( _ctime->tqsizeHint().height() ); _ctime->setFixedHeight( _ctime->sizeHint().height() );
_mtime = new TQLabel( "???", this ); _mtime = new TQLabel( "???", this );
_mtime->setFixedHeight( _mtime->tqsizeHint().height() ); _mtime->setFixedHeight( _mtime->sizeHint().height() );
_atime = new TQLabel( "???", this ); _atime = new TQLabel( "???", this );
_atime->setFixedHeight( _atime->tqsizeHint().height() ); _atime->setFixedHeight( _atime->sizeHint().height() );
_size = new TQLabel( "???", this ); _size = new TQLabel( "???", this );
_size->setFixedHeight( _size->tqsizeHint().height() ); _size->setFixedHeight( _size->sizeHint().height() );
_owner = new TQLabel( "???", this ); _owner = new TQLabel( "???", this );
_owner->setFixedHeight( _owner->tqsizeHint().height() ); _owner->setFixedHeight( _owner->sizeHint().height() );
_group = new TQLabel( "???", this ); _group = new TQLabel( "???", this );
_group->setFixedHeight( _group->tqsizeHint().height() ); _group->setFixedHeight( _group->sizeHint().height() );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 4, 4 ); TQVBoxLayout* l1 = new TQVBoxLayout( this, 4, 4 );

@ -43,28 +43,28 @@ FormatOptDlg::FormatOptDlg( const TQString & def, TQWidget* parent, const char*
TQLabel* lbl1 = new TQLabel( i18n( "Tape name:" ), this ); TQLabel* lbl1 = new TQLabel( i18n( "Tape name:" ), this );
TQLabel* lbl2 = new TQLabel( i18n( "Tape size:" ), this ); TQLabel* lbl2 = new TQLabel( i18n( "Tape size:" ), this );
int max = lbl1->tqsizeHint().width(); int max = lbl1->sizeHint().width();
if ( lbl2->tqsizeHint().width() > max ) max = lbl2->tqsizeHint().width(); if ( lbl2->sizeHint().width() > max ) max = lbl2->sizeHint().width();
lbl1->setFixedSize( max, lbl1->tqsizeHint().height() ); lbl1->setFixedSize( max, lbl1->sizeHint().height() );
lbl2->setFixedSize( max, lbl2->tqsizeHint().height() ); lbl2->setFixedSize( max, lbl2->sizeHint().height() );
_entry = new TQLineEdit( this ); _entry = new TQLineEdit( this );
_entry->setText( def ); _entry->setText( def );
_entry->setFixedHeight( _entry->tqsizeHint().height() ); _entry->setFixedHeight( _entry->sizeHint().height() );
_tapeSize = new TQLineEdit( this ); _tapeSize = new TQLineEdit( this );
_tapeSize->setFixedSize( 48, _tapeSize->tqsizeHint().height() ); _tapeSize->setFixedSize( 48, _tapeSize->sizeHint().height() );
_tapeSizeUnits = new TQComboBox( this ); _tapeSizeUnits = new TQComboBox( this );
_tapeSizeUnits->setFixedSize( 48, _tapeSizeUnits->tqsizeHint().height() ); _tapeSizeUnits->setFixedSize( 48, _tapeSizeUnits->sizeHint().height() );
_tapeSizeUnits->insertItem( "MB" ); _tapeSizeUnits->insertItem( "MB" );
_tapeSizeUnits->insertItem( "GB" ); _tapeSizeUnits->insertItem( "GB" );
KPushButton* ok = new KPushButton( KStdGuiItem::ok(), this ); KPushButton* ok = new KPushButton( KStdGuiItem::ok(), this );
ok->setFixedSize( 80, ok->tqsizeHint().height() ); ok->setFixedSize( 80, ok->sizeHint().height() );
KPushButton* cancel = new KPushButton( KStdGuiItem::cancel(), this ); KPushButton* cancel = new KPushButton( KStdGuiItem::cancel(), this );
cancel->setFixedSize( 80, cancel->tqsizeHint().height() ); cancel->setFixedSize( 80, cancel->sizeHint().height() );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 ); TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 );
TQHBoxLayout* l2 = new TQHBoxLayout(); TQHBoxLayout* l2 = new TQHBoxLayout();

@ -70,55 +70,55 @@ IndexDlg::IndexDlg( Tape* tape, TQWidget* parent, const char* name )
f2->setFrameStyle( TQFrame::Panel | TQFrame::Sunken ); f2->setFrameStyle( TQFrame::Panel | TQFrame::Sunken );
TQLabel* lbl1 = new TQLabel( i18n( "Elapsed time:" ), f1 ); TQLabel* lbl1 = new TQLabel( i18n( "Elapsed time:" ), f1 );
lbl1->setFixedSize( labelWidth, lbl1->tqsizeHint().height() ); lbl1->setFixedSize( labelWidth, lbl1->sizeHint().height() );
_elapsedTime = new TQLabel( i18n( "00:00:00" ), f1 ); _elapsedTime = new TQLabel( i18n( "00:00:00" ), f1 );
_elapsedTime->setFixedHeight( _elapsedTime->tqsizeHint().height() ); _elapsedTime->setFixedHeight( _elapsedTime->sizeHint().height() );
TQLabel* lbl2 = new TQLabel( i18n( "Archives:" ), f2 ); TQLabel* lbl2 = new TQLabel( i18n( "Archives:" ), f2 );
lbl2->setFixedSize( labelWidth, lbl2->tqsizeHint().height() ); lbl2->setFixedSize( labelWidth, lbl2->sizeHint().height() );
_archives = new TQLabel( i18n( "0" ), f2 ); _archives = new TQLabel( i18n( "0" ), f2 );
_archives->setFixedHeight( _archives->tqsizeHint().height() ); _archives->setFixedHeight( _archives->sizeHint().height() );
TQLabel* lbl3 = new TQLabel( i18n( "KB read:" ), f1 ); TQLabel* lbl3 = new TQLabel( i18n( "KB read:" ), f1 );
lbl3->setFixedSize( labelWidth, lbl3->tqsizeHint().height() ); lbl3->setFixedSize( labelWidth, lbl3->sizeHint().height() );
_kbytesRead = new TQLabel( i18n( "0KB" ), f1 ); _kbytesRead = new TQLabel( i18n( "0KB" ), f1 );
_kbytesRead->setFixedHeight( _kbytesRead->tqsizeHint().height() ); _kbytesRead->setFixedHeight( _kbytesRead->sizeHint().height() );
TQLabel* lbl4 = new TQLabel( i18n( "Files:" ), f2 ); TQLabel* lbl4 = new TQLabel( i18n( "Files:" ), f2 );
lbl4->setFixedSize( labelWidth, lbl4->tqsizeHint().height() ); lbl4->setFixedSize( labelWidth, lbl4->sizeHint().height() );
_files = new TQLabel( i18n( "0" ), f2 ); _files = new TQLabel( i18n( "0" ), f2 );
_files->setFixedHeight( _kbytesRead->tqsizeHint().height() ); _files->setFixedHeight( _kbytesRead->sizeHint().height() );
TQLabel* lbl5 = new TQLabel( i18n( "Transfer rate:" ), f1 ); TQLabel* lbl5 = new TQLabel( i18n( "Transfer rate:" ), f1 );
lbl5->setFixedSize( labelWidth, lbl5->tqsizeHint().height() ); lbl5->setFixedSize( labelWidth, lbl5->sizeHint().height() );
_transferRate = new TQLabel( i18n( "0KB/min" ), f1 ); _transferRate = new TQLabel( i18n( "0KB/min" ), f1 );
_transferRate->setFixedHeight( _transferRate->tqsizeHint().height() ); _transferRate->setFixedHeight( _transferRate->sizeHint().height() );
TQLabel* lbl6 = new TQLabel( i18n( "Total files:" ), f2 ); TQLabel* lbl6 = new TQLabel( i18n( "Total files:" ), f2 );
lbl6->setFixedSize( labelWidth, lbl6->tqsizeHint().height() ); lbl6->setFixedSize( labelWidth, lbl6->sizeHint().height() );
_totalFiles = new TQLabel( i18n( "0" ), f2 ); _totalFiles = new TQLabel( i18n( "0" ), f2 );
_totalFiles->setFixedHeight( _totalFiles->tqsizeHint().height() ); _totalFiles->setFixedHeight( _totalFiles->sizeHint().height() );
_log = new LoggerWidget( i18n( "Index log:" ), this ); _log = new LoggerWidget( i18n( "Index log:" ), this );
_ok = new KPushButton( KStdGuiItem::ok(), this ); _ok = new KPushButton( KStdGuiItem::ok(), this );
_ok->setFixedSize( 80, _ok->tqsizeHint().height() ); _ok->setFixedSize( 80, _ok->sizeHint().height() );
connect( _ok, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotOK() ) ); connect( _ok, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotOK() ) );
_ok->setEnabled( FALSE ); _ok->setEnabled( FALSE );
_save = new TQPushButton( i18n( "Save Log..." ), this ); _save = new TQPushButton( i18n( "Save Log..." ), this );
_save->setFixedSize( 80, _save->tqsizeHint().height() ); _save->setFixedSize( 80, _save->sizeHint().height() );
connect( _save, TQT_SIGNAL( clicked() ), _log, TQT_SLOT( save() ) ); connect( _save, TQT_SIGNAL( clicked() ), _log, TQT_SLOT( save() ) );
_save->setEnabled( FALSE ); _save->setEnabled( FALSE );
_abort = new TQPushButton( i18n( "Abort" ), this ); _abort = new TQPushButton( i18n( "Abort" ), this );
_abort->setFixedSize( 80, _abort->tqsizeHint().height() ); _abort->setFixedSize( 80, _abort->sizeHint().height() );
connect( _abort, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotAbort() ) ); connect( _abort, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotAbort() ) );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 ); TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 );

@ -34,7 +34,7 @@ class Tape;
class TarParser; class TarParser;
/** /**
* @short tqStatus dialog for recreating a tape index. * @short Status dialog for recreating a tape index.
*/ */
class IndexDlg : public TQDialog { class IndexDlg : public TQDialog {
Q_OBJECT Q_OBJECT

@ -387,7 +387,7 @@ TapeDrive::seek=TapeDrive.html#seek
TapeDrive::unlock=TapeDrive.html#unlock TapeDrive::unlock=TapeDrive.html#unlock
TapeDrive::write=TapeDrive.html#write TapeDrive::write=TapeDrive.html#write
TapeDrive::slotTapeBlockSize=TapeDrive.html#slotTapeBlockSize TapeDrive::slotTapeBlockSize=TapeDrive.html#slotTapeBlockSize
TapeDrive::slottqStatus=TapeDrive.html#slottqStatus TapeDrive::slotStatus=TapeDrive.html#slotStatus
TapeDrive::status=TapeDrive.html#status TapeDrive::status=TapeDrive.html#status
TapeInfoDlg=TapeInfoDlg.html TapeInfoDlg=TapeInfoDlg.html
TapeInfoDlg=TapeInfoDlg.html TapeInfoDlg=TapeInfoDlg.html
@ -475,7 +475,7 @@ KTreeViewItem::KTreeViewItem=KTreeViewItem.html#KTreeViewItem
KTreeViewItem::KTreeViewItem=KTreeViewItem.html#KTreeViewItem KTreeViewItem::KTreeViewItem=KTreeViewItem.html#KTreeViewItem
KTreeViewItem::~KTreeViewItem=KTreeViewItem.html#~KTreeViewItem KTreeViewItem::~KTreeViewItem=KTreeViewItem.html#~KTreeViewItem
KTreeViewItem::appendChild=KTreeViewItem.html#appendChild KTreeViewItem::appendChild=KTreeViewItem.html#appendChild
KTreeViewItem::tqchildAt=KTreeViewItem.html#tqchildAt KTreeViewItem::childAt=KTreeViewItem.html#childAt
KTreeViewItem::childCount=KTreeViewItem.html#childCount KTreeViewItem::childCount=KTreeViewItem.html#childCount
KTreeViewItem::childIndex=KTreeViewItem.html#childIndex KTreeViewItem::childIndex=KTreeViewItem.html#childIndex
KTreeViewItem::expandButtonClicked=KTreeViewItem.html#expandButtonClicked KTreeViewItem::expandButtonClicked=KTreeViewItem.html#expandButtonClicked

@ -211,7 +211,7 @@ KDatMainWindow::KDatMainWindow()
_tree->insertItem( _backupProfileRootNode = new BackupProfileRootNode() ); _tree->insertItem( _backupProfileRootNode = new BackupProfileRootNode() );
_tree->insertItem( new TapeIndexRootNode() ); _tree->insertItem( new TapeIndexRootNode() );
connect( TapeDrive::instance(), TQT_SIGNAL( sigtqStatus( const TQString & ) ), this, TQT_SLOT( status( const TQString & ) ) ); connect( TapeDrive::instance(), TQT_SIGNAL( sigStatus( const TQString & ) ), this, TQT_SLOT( status( const TQString & ) ) );
setTapePresent( FALSE ); setTapePresent( FALSE );
@ -446,7 +446,7 @@ void KDatMainWindow::fileBackup()
backupProfile.setRemoveSnapshot( bp->getRemoveSnapshot() ); backupProfile.setRemoveSnapshot( bp->getRemoveSnapshot() );
} else { } else {
TQString name; TQString name;
name = i18n( "Archive created on %1" ).tqarg( KGlobal::locale()->formatDate(TQDate::tqcurrentDate(), true) ); name = i18n( "Archive created on %1" ).tqarg( KGlobal::locale()->formatDate(TQDate::currentDate(), true) );
name = name.stripWhiteSpace(); name = name.stripWhiteSpace();
TQStringList files; TQStringList files;
@ -556,15 +556,15 @@ void KDatMainWindow::doVerify( bool restore )
Archive* archive = 0; Archive* archive = 0;
// Check for marked files first. // Check for marked files first.
for ( int i = _tapeDriveNode->childCount() - 1; i >= 0; i-- ) { for ( int i = _tapeDriveNode->childCount() - 1; i >= 0; i-- ) {
if ( ( ((SelectableNode*)_tapeDriveNode->tqchildAt( i ))->isSelected() ) || if ( ( ((SelectableNode*)_tapeDriveNode->childAt( i ))->isSelected() ) ||
( ((SelectableNode*)_tapeDriveNode->tqchildAt( i ))->hasSelectedChildren() )) { ( ((SelectableNode*)_tapeDriveNode->childAt( i ))->hasSelectedChildren() )) {
archiveNode = (MountedArchiveNode*)_tapeDriveNode->tqchildAt( i ); archiveNode = (MountedArchiveNode*)_tapeDriveNode->childAt( i );
archive = archiveNode->getArchive(); archive = archiveNode->getArchive();
/* 2002-01-30 LEW */ /* 2002-01-30 LEW */
#ifdef DEBUG #ifdef DEBUG
printf("KDatMainWindow::doVerify: %d node of %s: ", i, printf("KDatMainWindow::doVerify: %d node of %s: ", i,
(SelectableNode*)_tapeDriveNode->getText().latin1() ); (SelectableNode*)_tapeDriveNode->getText().latin1() );
if( ((SelectableNode*)_tapeDriveNode->tqchildAt( i ))->isSelected() ){ if( ((SelectableNode*)_tapeDriveNode->childAt( i ))->isSelected() ){
printf("is completely selected\n"); printf("is completely selected\n");
} else { } else {
printf("is partially selected\n"); printf("is partially selected\n");
@ -608,10 +608,10 @@ void KDatMainWindow::doVerify( bool restore )
} }
for ( int i = rangeableNode->childCount() - 1; i >= 0; i-- ) { for ( int i = rangeableNode->childCount() - 1; i >= 0; i-- ) {
if ( ((Node*)rangeableNode->tqchildAt( i ))->isType( Node::MountedTapeDirectoryNodeType ) ) { if ( ((Node*)rangeableNode->childAt( i ))->isType( Node::MountedTapeDirectoryNodeType ) ) {
files.append( ((MountedTapeDirectoryNode*)rangeableNode->tqchildAt( i ))->getFullPath() ); files.append( ((MountedTapeDirectoryNode*)rangeableNode->childAt( i ))->getFullPath() );
} else if ( ((Node*)rangeableNode->tqchildAt( i ))->isType( Node::MountedTapeFileNodeType ) ) { } else if ( ((Node*)rangeableNode->childAt( i ))->isType( Node::MountedTapeFileNodeType ) ) {
files.append( ((MountedTapeFileNode*)rangeableNode->tqchildAt( i ))->getFullPath() ); files.append( ((MountedTapeFileNode*)rangeableNode->childAt( i ))->getFullPath() );
} else { } else {
assert( FALSE ); assert( FALSE );
} }
@ -634,7 +634,7 @@ void KDatMainWindow::doVerify( bool restore )
} }
for ( int i = archiveNode->childCount() - 1; i >= 0; i-- ) { for ( int i = archiveNode->childCount() - 1; i >= 0; i-- ) {
stack.push( (RangeableNode*)archiveNode->tqchildAt( i ) ); stack.push( (RangeableNode*)archiveNode->childAt( i ) );
} }
RangeableNode* sel = 0; RangeableNode* sel = 0;
while ( stack.count() > 0 ) { while ( stack.count() > 0 ) {
@ -654,7 +654,7 @@ void KDatMainWindow::doVerify( bool restore )
} }
} else if ( sel->hasSelectedChildren() ) { } else if ( sel->hasSelectedChildren() ) {
for ( int i = sel->childCount() - 1; i >= 0; i-- ) { for ( int i = sel->childCount() - 1; i >= 0; i-- ) {
stack.push( (RangeableNode*)sel->tqchildAt( i ) ); stack.push( (RangeableNode*)sel->childAt( i ) );
} }
} }
} }
@ -865,7 +865,7 @@ void KDatMainWindow::fileFormatTape()
i18n("Format Tape"), i18n("Format")); i18n("Format Tape"), i18n("Format"));
if (result == KMessageBox::Continue ) { if (result == KMessageBox::Continue ) {
TQString name; TQString name;
name = i18n( "Tape created on %1" ).tqarg( KGlobal::locale()->formatDate(TQDate::tqcurrentDate(), true) ); name = i18n( "Tape created on %1" ).tqarg( KGlobal::locale()->formatDate(TQDate::currentDate(), true) );
FormatOptDlg dlg( name.stripWhiteSpace(), this ); FormatOptDlg dlg( name.stripWhiteSpace(), this );
if ( dlg.exec() != TQDialog::Accepted ) { if ( dlg.exec() != TQDialog::Accepted ) {
return; return;
@ -1165,7 +1165,7 @@ void KDatMainWindow::getBackupFiles( TQStringList& files )
files.append( sel->getFullPath() ); files.append( sel->getFullPath() );
} else if ( sel->hasSelectedChildren() ) { } else if ( sel->hasSelectedChildren() ) {
for ( int i = sel->childCount() - 1; i >= 0; i-- ) { for ( int i = sel->childCount() - 1; i >= 0; i-- ) {
stack.push( (ArchiveableNode*)sel->tqchildAt( i ) ); stack.push( (ArchiveableNode*)sel->childAt( i ) );
} }
} }
} }
@ -1192,9 +1192,9 @@ void KDatMainWindow::setBackupFiles( const TQStringList& files )
} }
int i; int i;
for ( i = n->childCount() - 1; i >=0; i-- ) { for ( i = n->childCount() - 1; i >=0; i-- ) {
tmp = ((ArchiveableNode*)n->tqchildAt( i ))->getFullPath(); tmp = ((ArchiveableNode*)n->childAt( i ))->getFullPath();
if ( tmp == (*it).left( tmp.length() ) ) { if ( tmp == (*it).left( tmp.length() ) ) {
n = (ArchiveableNode*)n->tqchildAt( i ); n = (ArchiveableNode*)n->childAt( i );
break; break;
} }
} }
@ -1251,8 +1251,8 @@ void KDatMainWindow::configureUI( Tape* tape )
bool canRestore = ( tape ) && ( sel ) && sel->isType( Node::RangeableNodeType ); bool canRestore = ( tape ) && ( sel ) && sel->isType( Node::RangeableNodeType );
if ( !canRestore ) { if ( !canRestore ) {
for ( int i = _tapeDriveNode->childCount() - 1; i >= 0; i-- ) { for ( int i = _tapeDriveNode->childCount() - 1; i >= 0; i-- ) {
if ( ( ((SelectableNode*)_tapeDriveNode->tqchildAt( i ))->isSelected() ) || if ( ( ((SelectableNode*)_tapeDriveNode->childAt( i ))->isSelected() ) ||
( ((SelectableNode*)_tapeDriveNode->tqchildAt( i ))->hasSelectedChildren() )) { ( ((SelectableNode*)_tapeDriveNode->childAt( i ))->hasSelectedChildren() )) {
canRestore = TRUE; canRestore = TRUE;
break; break;
} }
@ -1348,7 +1348,7 @@ void KDatMainWindow::create_backup_dialog()
_lbl->setGeometry( TQRect( 30, 20, 350, 200 ) ); _lbl->setGeometry( TQRect( 30, 20, 350, 200 ) );
_cancel = new KPushButton( KStdGuiItem::cancel(), _backupdialog ); _cancel = new KPushButton( KStdGuiItem::cancel(), _backupdialog );
_cancel->setFixedSize( 80, _cancel->tqsizeHint().height() ); _cancel->setFixedSize( 80, _cancel->sizeHint().height() );
_cancel->setEnabled( TRUE ); _cancel->setEnabled( TRUE );
/* 2002-01-24 LEW: looks like we can't increase the button width /* 2002-01-24 LEW: looks like we can't increase the button width
to accomodate a wider message :( */ to accomodate a wider message :( */
@ -1357,7 +1357,7 @@ void KDatMainWindow::create_backup_dialog()
connect( _cancel, TQT_SIGNAL( clicked() ), this, TQT_SLOT( backupCancel() ) ); connect( _cancel, TQT_SIGNAL( clicked() ), this, TQT_SLOT( backupCancel() ) );
_continue = new KPushButton( KStdGuiItem::cont(), _backupdialog ); _continue = new KPushButton( KStdGuiItem::cont(), _backupdialog );
_continue->setFixedSize( 80, _continue->tqsizeHint().height() ); _continue->setFixedSize( 80, _continue->sizeHint().height() );
_continue->setEnabled( TRUE ); _continue->setEnabled( TRUE );
_continue->setDefault( TRUE ); _continue->setDefault( TRUE );
// _continue->setGeometry( TQRect( 200, 170, 0, 0 ) ); /* 2002-01-28 LEW */ // _continue->setGeometry( TQRect( 200, 170, 0, 0 ) ); /* 2002-01-28 LEW */

@ -33,7 +33,7 @@ LoggerWidget::LoggerWidget( const TQString & title, TQWidget* parent, const char
: TQWidget( parent, name ) : TQWidget( parent, name )
{ {
TQLabel* lbl1 = new TQLabel( title, this ); TQLabel* lbl1 = new TQLabel( title, this );
lbl1->setFixedHeight( lbl1->tqsizeHint().height() ); lbl1->setFixedHeight( lbl1->sizeHint().height() );
_mle = new TQMultiLineEdit( this ); _mle = new TQMultiLineEdit( this );
_mle->setReadOnly( TRUE ); _mle->setReadOnly( TRUE );

@ -58,7 +58,7 @@ void Node::insertNode( Node* child )
if ( lastParent != this ) { if ( lastParent != this ) {
// Recompute lastDirIndex. // Recompute lastDirIndex.
for ( lastDirIndex = 0; for ( lastDirIndex = 0;
( lastDirIndex < childCount() ) && ( ((Node*)tqchildAt( lastDirIndex ))->getType() == TapeDirectoryNodeType ); ( lastDirIndex < childCount() ) && ( ((Node*)childAt( lastDirIndex ))->getType() == TapeDirectoryNodeType );
lastDirIndex++ ); lastDirIndex++ );
lastParent = this; lastParent = this;
} }
@ -83,7 +83,7 @@ void Node::insertNode( Node* child )
while ( min < max ) { while ( min < max ) {
mid = ( max - min ) / 2 + min; mid = ( max - min ) / 2 + min;
//mid = ( min + max ) / 2; //mid = ( min + max ) / 2;
if ( child->getText().compare( tqchildAt( mid )->getText() ) < 0 ) { if ( child->getText().compare( childAt( mid )->getText() ) < 0 ) {
max = mid - 1; max = mid - 1;
} else { } else {
min = mid + 1; min = mid + 1;
@ -94,8 +94,8 @@ void Node::insertNode( Node* child )
// KLUDGE! // KLUDGE!
mid -= 5; mid -= 5;
if ( mid < smin ) mid = smin; if ( mid < smin ) mid = smin;
if ( ((Node*)tqchildAt( mid ))->getType() != child->getType() ) mid++; if ( ((Node*)childAt( mid ))->getType() != child->getType() ) mid++;
for ( ; ( mid <= smax ) && ( child->getText().compare( tqchildAt( mid )->getText() ) > 0 ); mid++ ); for ( ; ( mid <= smax ) && ( child->getText().compare( childAt( mid )->getText() ) > 0 ); mid++ );
//printf( "index = %d, text = '%s'\n", mid, child->getText().data() ); //printf( "index = %d, text = '%s'\n", mid, child->getText().data() );
insertChild( mid, child ); insertChild( mid, child );
} else { } else {
@ -181,14 +181,14 @@ bool TapeNode::validate()
// Remove deleted archives. // Remove deleted archives.
Archive* a; Archive* a;
for ( uint j = 0; j < childCount(); ) { for ( uint j = 0; j < childCount(); ) {
a = ((ArchiveNode*)tqchildAt( j ))->getArchive(); a = ((ArchiveNode*)childAt( j ))->getArchive();
for ( i.toFirst(); i.current(); ++i ) { for ( i.toFirst(); i.current(); ++i ) {
if ( i.current() == a ) { if ( i.current() == a ) {
break; break;
} }
} }
if ( !i.current() ) { if ( !i.current() ) {
removeChild( tqchildAt( j ) ); removeChild( childAt( j ) );
} else { } else {
j++; j++;
} }
@ -235,8 +235,8 @@ ArchiveNode* TapeNode::findArchiveNode( Archive* archive )
{ {
ArchiveNode* n = 0; ArchiveNode* n = 0;
for ( uint i = 0; i < childCount(); i++ ) { for ( uint i = 0; i < childCount(); i++ ) {
if ( ((ArchiveNode*)tqchildAt( i ))->getArchive() == archive ) { if ( ((ArchiveNode*)childAt( i ))->getArchive() == archive ) {
n = (ArchiveNode*)tqchildAt( i ); n = (ArchiveNode*)childAt( i );
break; break;
} }
} }
@ -411,7 +411,7 @@ void SelectableNode::doUpdateState()
bool hasSelected = FALSE; bool hasSelected = FALSE;
bool allSelected = TRUE; bool allSelected = TRUE;
for ( uint i = 0; i < childCount(); i++ ) { for ( uint i = 0; i < childCount(); i++ ) {
switch ( ((SelectableNode*)tqchildAt( i ))->_state ) { switch ( ((SelectableNode*)childAt( i ))->_state ) {
case SelAll: case SelAll:
oneSelected = TRUE; oneSelected = TRUE;
hasSelected = TRUE; hasSelected = TRUE;
@ -446,12 +446,12 @@ void SelectableNode::doSetSelected( bool select )
// All my tqchildren get the same selection state. // All my tqchildren get the same selection state.
for ( uint i = 0; i < childCount(); i++ ) { for ( uint i = 0; i < childCount(); i++ ) {
if ( select ) { if ( select ) {
if ( !((SelectableNode*)tqchildAt( i ))->isSelected() ) { if ( !((SelectableNode*)childAt( i ))->isSelected() ) {
((SelectableNode*)tqchildAt( i ))->doSetSelected( TRUE ); ((SelectableNode*)childAt( i ))->doSetSelected( TRUE );
} }
} else { } else {
if ( ((SelectableNode*)tqchildAt( i ))->isSelected() || ((SelectableNode*)tqchildAt( i ))->hasSelectedChildren() ) { if ( ((SelectableNode*)childAt( i ))->isSelected() || ((SelectableNode*)childAt( i ))->hasSelectedChildren() ) {
((SelectableNode*)tqchildAt( i ))->doSetSelected( FALSE ); ((SelectableNode*)childAt( i ))->doSetSelected( FALSE );
} }
} }
} }
@ -549,7 +549,7 @@ void SelectableNode::paintText( TQPainter* p, int indent, int cellHeight,
p->fontMetrics().leading()) / 2); p->fontMetrics().leading()) / 2);
if (highlighted) { if (highlighted) {
paintHighlight(p, indent, cg, owner->hasFocus(), paintHighlight(p, indent, cg, owner->hasFocus(),
(TQt::GUIStyle)owner->tqstyle().tqstyleHint(TQStyle::SH_GUIStyle)); // TQt3 doesn't make this easy ;) (TQt::GUIStyle)owner->tqstyle().styleHint(TQStyle::SH_GUIStyle)); // TQt3 doesn't make this easy ;)
p->setPen(cg.base()); p->setPen(cg.base());
p->setBackgroundColor(cg.text()); p->setBackgroundColor(cg.text());
} }
@ -657,8 +657,8 @@ void MountedArchiveNode::setSelected( bool select )
// Deselect all other archives. // Deselect all other archives.
Node* parent = (Node*)getParent(); Node* parent = (Node*)getParent();
for ( int i = parent->childCount() - 1; i >= 0; i-- ) { for ( int i = parent->childCount() - 1; i >= 0; i-- ) {
if ( parent->tqchildAt( i ) != this ) { if ( parent->childAt( i ) != this ) {
((SelectableNode*)parent->tqchildAt( i ))->setSelected( FALSE ); ((SelectableNode*)parent->childAt( i ))->setSelected( FALSE );
} }
} }
} }
@ -757,8 +757,8 @@ void MountedTapeDirectoryNode::setSelected( bool select )
parent = (Node*)parent->getParent(); parent = (Node*)parent->getParent();
} }
for ( int i = parent->childCount() - 1; i >= 0; i-- ) { for ( int i = parent->childCount() - 1; i >= 0; i-- ) {
if ( parent->tqchildAt( i ) != arcNode ) { if ( parent->childAt( i ) != arcNode ) {
((SelectableNode*)parent->tqchildAt( i ))->setSelected( FALSE ); ((SelectableNode*)parent->childAt( i ))->setSelected( FALSE );
} }
} }
} }
@ -863,8 +863,8 @@ void MountedTapeFileNode::setSelected( bool select )
parent = (Node*)parent->getParent(); parent = (Node*)parent->getParent();
} }
for ( int i = parent->childCount() - 1; i >= 0; i-- ) { for ( int i = parent->childCount() - 1; i >= 0; i-- ) {
if ( parent->tqchildAt( i ) != arcNode ) { if ( parent->childAt( i ) != arcNode ) {
((SelectableNode*)parent->tqchildAt( i ))->setSelected( FALSE ); ((SelectableNode*)parent->childAt( i ))->setSelected( FALSE );
} }
} }
} }
@ -1304,14 +1304,14 @@ void TapeDriveNode::slotTapeModified( Tape* tape )
// Remove deleted archives. // Remove deleted archives.
Archive* a; Archive* a;
for ( uint j = 0; j < childCount(); ) { for ( uint j = 0; j < childCount(); ) {
a = ((MountedArchiveNode*)tqchildAt( j ))->getArchive(); a = ((MountedArchiveNode*)childAt( j ))->getArchive();
for ( i.toFirst(); i.current(); ++i ) { for ( i.toFirst(); i.current(); ++i ) {
if ( i.current() == a ) { if ( i.current() == a ) {
break; break;
} }
} }
if ( !i.current() ) { if ( !i.current() ) {
Node::removeChild( tqchildAt( j ) ); Node::removeChild( childAt( j ) );
} else { } else {
j++; j++;
} }
@ -1322,8 +1322,8 @@ MountedArchiveNode* TapeDriveNode::findArchiveNode( Archive* archive )
{ {
MountedArchiveNode* n = 0; MountedArchiveNode* n = 0;
for ( uint i = 0; i < childCount(); i++ ) { for ( uint i = 0; i < childCount(); i++ ) {
if ( ((MountedArchiveNode*)tqchildAt( i ))->getArchive() == archive ) { if ( ((MountedArchiveNode*)childAt( i ))->getArchive() == archive ) {
n = (MountedArchiveNode*)tqchildAt( i ); n = (MountedArchiveNode*)childAt( i );
break; break;
} }
} }
@ -1417,7 +1417,7 @@ TapeNode* TapeIndexRootNode::findTapeNode( Tape* tape )
{ {
TapeNode* n = 0; TapeNode* n = 0;
for ( uint i = 0; i < childCount(); i++ ) { for ( uint i = 0; i < childCount(); i++ ) {
n = (TapeNode*)tqchildAt( i ); n = (TapeNode*)childAt( i );
if ( n->getTape() == tape ) { if ( n->getTape() == tape ) {
return n; return n;
} }
@ -1575,7 +1575,7 @@ BackupProfileNode* BackupProfileRootNode::findBackupProfileNode( BackupProfile*
{ {
BackupProfileNode* n = 0; BackupProfileNode* n = 0;
for ( uint i = 0; i < childCount(); i++ ) { for ( uint i = 0; i < childCount(); i++ ) {
n = (BackupProfileNode*)tqchildAt( i ); n = (BackupProfileNode*)childAt( i );
if ( n->getBackupProfile() == backupProfile ) { if ( n->getBackupProfile() == backupProfile ) {
return n; return n;
} }

@ -43,7 +43,7 @@
<property name="name"> <property name="name">
<cstring>_defaultTapeSize</cstring> <cstring>_defaultTapeSize</cstring>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>96</width> <width>96</width>
<height>0</height> <height>0</height>
@ -60,7 +60,7 @@
<property name="name"> <property name="name">
<cstring>_tapeBlockSize</cstring> <cstring>_tapeBlockSize</cstring>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>96</width> <width>96</width>
<height>0</height> <height>0</height>
@ -283,7 +283,7 @@ You must still specify the block size.</string>
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>0</height> <height>0</height>

@ -170,15 +170,15 @@ bool TapeDrive::isTapePresent()
} }
// Get tape status. // Get tape status.
struct mtget tapetqStatus; struct mtget tapeStatus;
int ret = ioctl( _fd, MTIOCGET, &tapetqStatus ); int ret = ioctl( _fd, MTIOCGET, &tapeStatus );
if ( ret < 0 ) { if ( ret < 0 ) {
return FALSE; return FALSE;
} }
// Check for the presence of a tape. // Check for the presence of a tape.
// if ( !GMT_DR_OPEN( tapetqStatus.mt_gstat ) ) { // if ( !GMT_DR_OPEN( tapeStatus.mt_gstat ) ) {
if ( GMT_ONLINE( tapetqStatus.mt_gstat ) ) { if ( GMT_ONLINE( tapeStatus.mt_gstat ) ) {
// Lock the tape drive door. // Lock the tape drive door.
//struct mtop tapeOp; //struct mtop tapeOp;
//tapeOp.mt_op = MTLOCK; //tapeOp.mt_op = MTLOCK;
@ -189,9 +189,9 @@ bool TapeDrive::isTapePresent()
//} //}
if ( _readOnly ) { if ( _readOnly ) {
emit sigtqStatus( i18n( "Tape mounted readonly." ) ); emit sigStatus( i18n( "Tape mounted readonly." ) );
} else { } else {
emit sigtqStatus( i18n( "Tape mounted read/write." ) ); emit sigStatus( i18n( "Tape mounted read/write." ) );
} }
return TRUE; return TRUE;
} else { } else {
@ -221,14 +221,14 @@ Tape* TapeDrive::readHeader()
_tape = NULL; _tape = NULL;
// Rewind tape. // Rewind tape.
emit sigtqStatus( "Rewinding tape..." ); emit sigStatus( "Rewinding tape..." );
if ( !rewind() ) { if ( !rewind() ) {
KMessageBox::error( KDatMainWindow::getInstance(), i18n( "Rewinding tape failed." )); KMessageBox::error( KDatMainWindow::getInstance(), i18n( "Rewinding tape failed." ));
return NULL; return NULL;
} }
// KDat magic string. // KDat magic string.
emit sigtqStatus( i18n( "Reading magic string..." ) ); emit sigStatus( i18n( "Reading magic string..." ) );
char magic[9]; char magic[9];
if ( read( magic, 9 ) < 9 ) { if ( read( magic, 9 ) < 9 ) {
KMessageBox::error( KDatMainWindow::getInstance(), i18n( "Reading magic string failed." )); KMessageBox::error( KDatMainWindow::getInstance(), i18n( "Reading magic string failed." ));
@ -240,7 +240,7 @@ Tape* TapeDrive::readHeader()
} }
// Read version number. // Read version number.
emit sigtqStatus( i18n( "Reading version number..." ) ); emit sigStatus( i18n( "Reading version number..." ) );
int version; int version;
if ( read( (char*)&version, 4 ) < 4 ) { if ( read( (char*)&version, 4 ) < 4 ) {
KMessageBox::error( KDatMainWindow::getInstance(), i18n( "Reading version number failed." )); KMessageBox::error( KDatMainWindow::getInstance(), i18n( "Reading version number failed." ));
@ -252,7 +252,7 @@ Tape* TapeDrive::readHeader()
} }
// Read tape ID. // Read tape ID.
emit sigtqStatus( i18n( "Reading tape ID..." ) ); emit sigStatus( i18n( "Reading tape ID..." ) );
int len; int len;
if ( read( (char*)&len, 4 ) < 4 ) { if ( read( (char*)&len, 4 ) < 4 ) {
KMessageBox::error( KDatMainWindow::getInstance(), i18n( "Reading tape ID length failed." )); KMessageBox::error( KDatMainWindow::getInstance(), i18n( "Reading tape ID length failed." ));
@ -517,12 +517,12 @@ bool TapeDrive::seek( int file, int tarBlock )
flush(); flush();
// Go to the desired archive. // Go to the desired archive.
emit sigtqStatus( i18n( "Skipping to archive..." ) ); emit sigStatus( i18n( "Skipping to archive..." ) );
int curFile = getFile(); int curFile = getFile();
// printf( "TapeDrive::seek() -- curFile = %d\n", curFile ); // printf( "TapeDrive::seek() -- curFile = %d\n", curFile );
if ( curFile < 0 ) { if ( curFile < 0 ) {
emit sigtqStatus( i18n( "Rewinding tape..." ) ); emit sigStatus( i18n( "Rewinding tape..." ) );
rewind(); rewind();
curFile = 0; curFile = 0;
} }
@ -539,11 +539,11 @@ bool TapeDrive::seek( int file, int tarBlock )
// printf( "TapeDrive::seek() -- desired tapeBlock = %d\n", tapeBlock ); // printf( "TapeDrive::seek() -- desired tapeBlock = %d\n", tapeBlock );
// Go to the desired record within the archive. // Go to the desired record within the archive.
emit sigtqStatus( i18n( "Skipping to block..." ) ); emit sigStatus( i18n( "Skipping to block..." ) );
int curBlock = getBlock(); int curBlock = getBlock();
// printf( "TapeDrive::seek() -- curBlock = %d\n", curBlock ); // printf( "TapeDrive::seek() -- curBlock = %d\n", curBlock );
if ( curBlock < 0 ) { if ( curBlock < 0 ) {
emit sigtqStatus( i18n( "Rewinding tape..." ) ); emit sigStatus( i18n( "Rewinding tape..." ) );
rewind(); rewind();
nextFile( file ); nextFile( file );
if ( ( curBlock = getBlock() ) < 0 ) { if ( ( curBlock = getBlock() ) < 0 ) {
@ -597,13 +597,13 @@ bool TapeDrive::pastEOF()
return FALSE; return FALSE;
} }
struct mtget tapetqStatus; struct mtget tapeStatus;
if ( ioctl( _fd, MTIOCGET, &tapetqStatus ) < 0 ) { if ( ioctl( _fd, MTIOCGET, &tapeStatus ) < 0 ) {
printf( "TapeDrive::pastEOF() -- ioctl( MTIOCGET ) failed!\n" ); printf( "TapeDrive::pastEOF() -- ioctl( MTIOCGET ) failed!\n" );
return FALSE; return FALSE;
} }
return GMT_EOF( tapetqStatus.mt_gstat ); return GMT_EOF( tapeStatus.mt_gstat );
} }
bool TapeDrive::setBlockSize( int blockSize ) bool TapeDrive::setBlockSize( int blockSize )

@ -242,7 +242,7 @@ signals:
* *
* @param msg The informational message. * @param msg The informational message.
*/ */
void sigtqStatus( const TQString & msg ); void sigStatus( const TQString & msg );
}; };
#endif #endif

@ -39,32 +39,32 @@ TapeFileInfoWidget::TapeFileInfoWidget( TQWidget* parent, const char* name )
TQLabel* lbl4 = new TQLabel( i18n( "Start record:" ), this ); TQLabel* lbl4 = new TQLabel( i18n( "Start record:" ), this );
TQLabel* lbl5 = new TQLabel( i18n( "End record:" ), this ); TQLabel* lbl5 = new TQLabel( i18n( "End record:" ), this );
int max = lbl1->tqsizeHint().width(); int max = lbl1->sizeHint().width();
if ( lbl2->tqsizeHint().width() > max ) max = lbl2->tqsizeHint().width(); if ( lbl2->sizeHint().width() > max ) max = lbl2->sizeHint().width();
if ( lbl3->tqsizeHint().width() > max ) max = lbl3->tqsizeHint().width(); if ( lbl3->sizeHint().width() > max ) max = lbl3->sizeHint().width();
if ( lbl4->tqsizeHint().width() > max ) max = lbl4->tqsizeHint().width(); if ( lbl4->sizeHint().width() > max ) max = lbl4->sizeHint().width();
if ( lbl5->tqsizeHint().width() > max ) max = lbl5->tqsizeHint().width(); if ( lbl5->sizeHint().width() > max ) max = lbl5->sizeHint().width();
lbl1->setFixedSize( max, lbl1->tqsizeHint().height() ); lbl1->setFixedSize( max, lbl1->sizeHint().height() );
lbl2->setFixedSize( max, lbl2->tqsizeHint().height() ); lbl2->setFixedSize( max, lbl2->sizeHint().height() );
lbl3->setFixedSize( max, lbl3->tqsizeHint().height() ); lbl3->setFixedSize( max, lbl3->sizeHint().height() );
lbl4->setFixedSize( max, lbl4->tqsizeHint().height() ); lbl4->setFixedSize( max, lbl4->sizeHint().height() );
lbl5->setFixedSize( max, lbl5->tqsizeHint().height() ); lbl5->setFixedSize( max, lbl5->sizeHint().height() );
_fileName = new TQLabel( "???", this ); _fileName = new TQLabel( "???", this );
_fileName->setFixedHeight( _fileName->tqsizeHint().height() ); _fileName->setFixedHeight( _fileName->sizeHint().height() );
_mtime = new TQLabel( "???", this ); _mtime = new TQLabel( "???", this );
_mtime->setFixedHeight( _mtime->tqsizeHint().height() ); _mtime->setFixedHeight( _mtime->sizeHint().height() );
_size = new TQLabel( "???", this ); _size = new TQLabel( "???", this );
_size->setFixedHeight( _size->tqsizeHint().height() ); _size->setFixedHeight( _size->sizeHint().height() );
_startRecord = new TQLabel( "???", this ); _startRecord = new TQLabel( "???", this );
_startRecord->setFixedHeight( _startRecord->tqsizeHint().height() ); _startRecord->setFixedHeight( _startRecord->sizeHint().height() );
_endRecord = new TQLabel( "???", this ); _endRecord = new TQLabel( "???", this );
_endRecord->setFixedHeight( _endRecord->tqsizeHint().height() ); _endRecord->setFixedHeight( _endRecord->sizeHint().height() );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 4, 4 ); TQVBoxLayout* l1 = new TQVBoxLayout( this, 4, 4 );

@ -49,50 +49,50 @@ TapeInfoWidget::TapeInfoWidget( TQWidget* parent, const char* name )
TQLabel* lbl6 = new TQLabel( i18n( "Archive count:" ), this ); TQLabel* lbl6 = new TQLabel( i18n( "Archive count:" ), this );
TQLabel* lbl7 = new TQLabel( i18n( "Space used:" ), this ); TQLabel* lbl7 = new TQLabel( i18n( "Space used:" ), this );
int max = lbl1->tqsizeHint().width(); int max = lbl1->sizeHint().width();
if ( lbl2->tqsizeHint().width() > max ) max = lbl2->tqsizeHint().width(); if ( lbl2->sizeHint().width() > max ) max = lbl2->sizeHint().width();
if ( lbl3->tqsizeHint().width() > max ) max = lbl3->tqsizeHint().width(); if ( lbl3->sizeHint().width() > max ) max = lbl3->sizeHint().width();
if ( lbl4->tqsizeHint().width() > max ) max = lbl4->tqsizeHint().width(); if ( lbl4->sizeHint().width() > max ) max = lbl4->sizeHint().width();
if ( lbl5->tqsizeHint().width() > max ) max = lbl5->tqsizeHint().width(); if ( lbl5->sizeHint().width() > max ) max = lbl5->sizeHint().width();
if ( lbl6->tqsizeHint().width() > max ) max = lbl6->tqsizeHint().width(); if ( lbl6->sizeHint().width() > max ) max = lbl6->sizeHint().width();
if ( lbl7->tqsizeHint().width() > max ) max = lbl7->tqsizeHint().width(); if ( lbl7->sizeHint().width() > max ) max = lbl7->sizeHint().width();
lbl1->setFixedSize( max, lbl1->tqsizeHint().height() ); lbl1->setFixedSize( max, lbl1->sizeHint().height() );
lbl2->setFixedSize( max, lbl2->tqsizeHint().height() ); lbl2->setFixedSize( max, lbl2->sizeHint().height() );
lbl3->setFixedSize( max, lbl3->tqsizeHint().height() ); lbl3->setFixedSize( max, lbl3->sizeHint().height() );
lbl4->setFixedSize( max, lbl4->tqsizeHint().height() ); lbl4->setFixedSize( max, lbl4->sizeHint().height() );
lbl5->setFixedSize( max, lbl5->tqsizeHint().height() ); lbl5->setFixedSize( max, lbl5->sizeHint().height() );
lbl6->setFixedSize( max, lbl6->tqsizeHint().height() ); lbl6->setFixedSize( max, lbl6->sizeHint().height() );
lbl7->setFixedSize( max, lbl7->tqsizeHint().height() ); lbl7->setFixedSize( max, lbl7->sizeHint().height() );
_tapeName = new TQLineEdit( this ); _tapeName = new TQLineEdit( this );
_tapeName->setFixedHeight( _tapeName->tqsizeHint().height() ); _tapeName->setFixedHeight( _tapeName->sizeHint().height() );
_tapeSize = new TQLineEdit( this ); _tapeSize = new TQLineEdit( this );
_tapeSize->setFixedSize( 48, _tapeSize->tqsizeHint().height() ); _tapeSize->setFixedSize( 48, _tapeSize->sizeHint().height() );
_tapeSizeUnits = new TQComboBox( this ); _tapeSizeUnits = new TQComboBox( this );
_tapeSizeUnits->setFixedSize( 48, _tapeSizeUnits->tqsizeHint().height() ); _tapeSizeUnits->setFixedSize( 48, _tapeSizeUnits->sizeHint().height() );
_tapeSizeUnits->insertItem( "MB" ); _tapeSizeUnits->insertItem( "MB" );
_tapeSizeUnits->insertItem( "GB" ); _tapeSizeUnits->insertItem( "GB" );
_tapeID = new TQLabel( "???", this ); _tapeID = new TQLabel( "???", this );
_tapeID->setFixedHeight( _tapeID->tqsizeHint().height() ); _tapeID->setFixedHeight( _tapeID->sizeHint().height() );
_ctime = new TQLabel( "???", this ); _ctime = new TQLabel( "???", this );
_ctime->setFixedHeight( _ctime->tqsizeHint().height() ); _ctime->setFixedHeight( _ctime->sizeHint().height() );
_mtime = new TQLabel( "???", this ); _mtime = new TQLabel( "???", this );
_mtime->setFixedHeight( _mtime->tqsizeHint().height() ); _mtime->setFixedHeight( _mtime->sizeHint().height() );
_archiveCount = new TQLabel( "???", this ); _archiveCount = new TQLabel( "???", this );
_archiveCount->setFixedHeight( _archiveCount->tqsizeHint().height() ); _archiveCount->setFixedHeight( _archiveCount->sizeHint().height() );
_spaceUsed = new TQLabel( "???", this ); _spaceUsed = new TQLabel( "???", this );
_spaceUsed->setFixedHeight( _spaceUsed->tqsizeHint().height() ); _spaceUsed->setFixedHeight( _spaceUsed->sizeHint().height() );
_apply = new KPushButton( KStdGuiItem::apply(), this ); _apply = new KPushButton( KStdGuiItem::apply(), this );
_apply->setFixedSize( 80, _apply->tqsizeHint().height() ); _apply->setFixedSize( 80, _apply->sizeHint().height() );
_apply->setEnabled( FALSE ); _apply->setEnabled( FALSE );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 4, 4 ); TQVBoxLayout* l1 = new TQVBoxLayout( this, 4, 4 );
@ -202,7 +202,7 @@ void TapeInfoWidget::setTape( Tape* tape )
used *= blockSize / 1024; used *= blockSize / 1024;
} }
if ( _tape->getSize() > 0 ) { if ( _tape->getSize() > 0 ) {
tmp = TQString::tqfromLatin1( "%1 / %2 (%3%)") tmp = TQString::fromLatin1( "%1 / %2 (%3%)")
.tqarg(Util::kbytesToString( used )) .tqarg(Util::kbytesToString( used ))
.tqarg(Util::kbytesToString( _tape->getSize() )) .tqarg(Util::kbytesToString( _tape->getSize() ))
.tqarg(used * 100 / _tape->getSize() ); .tqarg(used * 100 / _tape->getSize() );

@ -89,46 +89,46 @@ VerifyDlg::VerifyDlg( const TQString & workingDir, int fileno, const RangeList&
f2->setFrameStyle( TQFrame::Panel | TQFrame::Sunken ); f2->setFrameStyle( TQFrame::Panel | TQFrame::Sunken );
TQLabel* lbl1 = new TQLabel( i18n( "Elapsed time:" ), f1 ); TQLabel* lbl1 = new TQLabel( i18n( "Elapsed time:" ), f1 );
lbl1->setFixedSize( labelWidth, lbl1->tqsizeHint().height() ); lbl1->setFixedSize( labelWidth, lbl1->sizeHint().height() );
_elapsedTime = new TQLabel( i18n( "00:00:00" ), f1 ); _elapsedTime = new TQLabel( i18n( "00:00:00" ), f1 );
_elapsedTime->setFixedHeight( _elapsedTime->tqsizeHint().height() ); _elapsedTime->setFixedHeight( _elapsedTime->sizeHint().height() );
TQLabel* lbl2 = new TQLabel( i18n( "Time remaining:" ), f2 ); TQLabel* lbl2 = new TQLabel( i18n( "Time remaining:" ), f2 );
lbl2->setFixedSize( labelWidth, lbl2->tqsizeHint().height() ); lbl2->setFixedSize( labelWidth, lbl2->sizeHint().height() );
_timeRemaining = new TQLabel( i18n( "00:00:00" ), f2 ); _timeRemaining = new TQLabel( i18n( "00:00:00" ), f2 );
_timeRemaining->setFixedHeight( _timeRemaining->tqsizeHint().height() ); _timeRemaining->setFixedHeight( _timeRemaining->sizeHint().height() );
TQLabel* lbl3 = new TQLabel( i18n( "Total KB:" ), f1 ); TQLabel* lbl3 = new TQLabel( i18n( "Total KB:" ), f1 );
lbl3->setFixedSize( labelWidth, lbl3->tqsizeHint().height() ); lbl3->setFixedSize( labelWidth, lbl3->sizeHint().height() );
TQLabel* totalKbytes = new TQLabel( Util::kbytesToString( _archiveSize ), f1 ); TQLabel* totalKbytes = new TQLabel( Util::kbytesToString( _archiveSize ), f1 );
totalKbytes->setFixedHeight( totalKbytes->tqsizeHint().height() ); totalKbytes->setFixedHeight( totalKbytes->sizeHint().height() );
TQLabel* lbl4 = new TQLabel( i18n( "KB read:" ), f2 ); TQLabel* lbl4 = new TQLabel( i18n( "KB read:" ), f2 );
lbl4->setFixedSize( labelWidth, lbl4->tqsizeHint().height() ); lbl4->setFixedSize( labelWidth, lbl4->sizeHint().height() );
_kbytesRead = new TQLabel( i18n( "0KB" ), f2 ); _kbytesRead = new TQLabel( i18n( "0KB" ), f2 );
_kbytesRead->setFixedHeight( _kbytesRead->tqsizeHint().height() ); _kbytesRead->setFixedHeight( _kbytesRead->sizeHint().height() );
TQLabel* lbl5 = new TQLabel( i18n( "Transfer rate:" ), f1 ); TQLabel* lbl5 = new TQLabel( i18n( "Transfer rate:" ), f1 );
lbl5->setFixedSize( labelWidth, lbl5->tqsizeHint().height() ); lbl5->setFixedSize( labelWidth, lbl5->sizeHint().height() );
_transferRate = new TQLabel( i18n( "0KB/min" ), f1 ); _transferRate = new TQLabel( i18n( "0KB/min" ), f1 );
_transferRate->setFixedHeight( _transferRate->tqsizeHint().height() ); _transferRate->setFixedHeight( _transferRate->sizeHint().height() );
TQLabel* lbl6; TQLabel* lbl6;
if ( _restore ) { if ( _restore ) {
lbl6 = new TQLabel( i18n( "Files:" ), f2 ); lbl6 = new TQLabel( i18n( "Files:" ), f2 );
lbl6->setFixedSize( labelWidth, lbl6->tqsizeHint().height() ); lbl6->setFixedSize( labelWidth, lbl6->sizeHint().height() );
} else { } else {
lbl6 = new TQLabel( i18n( "Differences:" ), f2 ); lbl6 = new TQLabel( i18n( "Differences:" ), f2 );
lbl6->setFixedSize( labelWidth, lbl6->tqsizeHint().height() ); lbl6->setFixedSize( labelWidth, lbl6->sizeHint().height() );
} }
_files = new TQLabel( "0", f2 ); _files = new TQLabel( "0", f2 );
_files->setFixedHeight( _files->tqsizeHint().height() ); _files->setFixedHeight( _files->sizeHint().height() );
if ( _restore ) { if ( _restore ) {
_log = new LoggerWidget( i18n( "Restore log:" ), this ); _log = new LoggerWidget( i18n( "Restore log:" ), this );
@ -137,17 +137,17 @@ VerifyDlg::VerifyDlg( const TQString & workingDir, int fileno, const RangeList&
} }
_ok = new KPushButton( KStdGuiItem::ok(), this ); _ok = new KPushButton( KStdGuiItem::ok(), this );
_ok->setFixedSize( 80, _ok->tqsizeHint().height() ); _ok->setFixedSize( 80, _ok->sizeHint().height() );
connect( _ok, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotOK() ) ); connect( _ok, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotOK() ) );
_ok->setEnabled( FALSE ); _ok->setEnabled( FALSE );
_save = new TQPushButton( i18n( "&Save Log..." ), this ); _save = new TQPushButton( i18n( "&Save Log..." ), this );
_save->setFixedSize( 80, _save->tqsizeHint().height() ); _save->setFixedSize( 80, _save->sizeHint().height() );
connect( _save, TQT_SIGNAL( clicked() ), _log, TQT_SLOT( save() ) ); connect( _save, TQT_SIGNAL( clicked() ), _log, TQT_SLOT( save() ) );
_save->setEnabled( FALSE ); _save->setEnabled( FALSE );
_abort = new TQPushButton( i18n( "&Abort" ), this ); _abort = new TQPushButton( i18n( "&Abort" ), this );
_abort->setFixedSize( 80, _abort->tqsizeHint().height() ); _abort->setFixedSize( 80, _abort->sizeHint().height() );
connect( _abort, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotAbort() ) ); connect( _abort, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotAbort() ) );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 ); TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 );

@ -33,7 +33,7 @@ class LoggerWidget;
class TapeDrive; class TapeDrive;
/** /**
* @short tqStatus dialog for verifying/restoring parts of an archive. * @short Status dialog for verifying/restoring parts of an archive.
*/ */
class VerifyDlg : public TQDialog { class VerifyDlg : public TQDialog {
Q_OBJECT Q_OBJECT

@ -51,14 +51,14 @@ VerifyOptDlg::VerifyOptDlg( const TQString & def, const TQStringList& files, boo
} else { } else {
lbl1 = new TQLabel( i18n( "Verify in folder:" ), this ); lbl1 = new TQLabel( i18n( "Verify in folder:" ), this );
} }
lbl1->setFixedSize( lbl1->tqsizeHint() ); lbl1->setFixedSize( lbl1->sizeHint() );
_entry = new TQLineEdit( this ); _entry = new TQLineEdit( this );
_entry->setText( def ); _entry->setText( def );
_entry->setFixedHeight( _entry->tqsizeHint().height() ); _entry->setFixedHeight( _entry->sizeHint().height() );
TQPushButton* browse = new TQPushButton( i18n( "..." ), this ); TQPushButton* browse = new TQPushButton( i18n( "..." ), this );
browse->setFixedSize( browse->tqsizeHint() ); browse->setFixedSize( browse->sizeHint() );
TQLabel* lbl2; TQLabel* lbl2;
if ( _restore ) { if ( _restore ) {
@ -66,15 +66,15 @@ VerifyOptDlg::VerifyOptDlg( const TQString & def, const TQStringList& files, boo
} else { } else {
lbl2 = new TQLabel( i18n( "Verify files:" ), this ); lbl2 = new TQLabel( i18n( "Verify files:" ), this );
} }
lbl2->setFixedHeight( lbl2->tqsizeHint().height() ); lbl2->setFixedHeight( lbl2->sizeHint().height() );
TQListBox* fileList = new TQListBox( this ); TQListBox* fileList = new TQListBox( this );
fileList->insertStringList(files); fileList->insertStringList(files);
KPushButton* ok = new KPushButton( KStdGuiItem::ok(), this ); KPushButton* ok = new KPushButton( KStdGuiItem::ok(), this );
ok->setFixedSize( 80, ok->tqsizeHint().height() ); ok->setFixedSize( 80, ok->sizeHint().height() );
KPushButton* cancel = new KPushButton( KStdGuiItem::cancel(), this ); KPushButton* cancel = new KPushButton( KStdGuiItem::cancel(), this );
cancel->setFixedSize( 80, cancel->tqsizeHint().height() ); cancel->setFixedSize( 80, cancel->sizeHint().height() );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 ); TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 );

@ -121,7 +121,7 @@ TQRect KTreeViewItem::boundingRect(int indent) const
} }
// returns the child item at the specified index // returns the child item at the specified index
KTreeViewItem* KTreeViewItem::tqchildAt(int index) const KTreeViewItem* KTreeViewItem::childAt(int index) const
{ {
if (!hasChild()) if (!hasChild())
return 0; return 0;
@ -333,14 +333,14 @@ void KTreeViewItem::paintExpandButton(TQPainter* p, int indent, int cellHeight)
} }
// paint the highlight // paint the highlight
void KTreeViewItem::paintHighlight(TQPainter* p, int indent, const TQColorGroup& tqcolorGroup, void KTreeViewItem::paintHighlight(TQPainter* p, int indent, const TQColorGroup& colorGroup,
bool hasFocus, TQt::GUIStyle style) const bool hasFocus, TQt::GUIStyle style) const
{ {
TQColor fc; TQColor fc;
if (style == TQt::WindowsStyle) if (style == TQt::WindowsStyle)
fc = TQt::darkBlue; /* hardcoded in TQt */ fc = TQt::darkBlue; /* hardcoded in TQt */
else else
fc = tqcolorGroup.text(); fc = colorGroup.text();
TQRect textRect = textBoundingRect(indent); TQRect textRect = textBoundingRect(indent);
int t,l,b,r; int t,l,b,r;
textRect.coords(&l, &t, &r, &b); textRect.coords(&l, &t, &r, &b);
@ -372,7 +372,7 @@ void KTreeViewItem::paintText(TQPainter* p, int indent, int cellHeight,
p->fontMetrics().leading()) / 2); p->fontMetrics().leading()) / 2);
if (highlighted) { if (highlighted) {
paintHighlight(p, indent, cg, owner->hasFocus(), paintHighlight(p, indent, cg, owner->hasFocus(),
(TQt::GUIStyle)owner->tqstyle().tqstyleHint(TQStyle::SH_GUIStyle)); // TQt3 doesn't make this easy ;) (TQt::GUIStyle)owner->tqstyle().styleHint(TQStyle::SH_GUIStyle)); // TQt3 doesn't make this easy ;)
p->setPen(cg.base()); p->setPen(cg.base());
p->setBackgroundColor(cg.text()); p->setBackgroundColor(cg.text());
} }
@ -599,7 +599,7 @@ KTreeView::KTreeView(TQWidget *parent,
//case WindowsStyle: //case WindowsStyle:
//case MotifStyle: //case MotifStyle:
setFrameStyle(TQFrame::WinPanel | TQFrame::Sunken); setFrameStyle(TQFrame::WinPanel | TQFrame::Sunken);
setBackgroundColor(tqcolorGroup().base()); setBackgroundColor(colorGroup().base());
//break; //break;
/*default: /*default:
setFrameStyle(TQFrame::Panel | TQFrame::Plain); setFrameStyle(TQFrame::Panel | TQFrame::Plain);
@ -1649,7 +1649,7 @@ void KTreeView::lowerItem(KTreeViewItem *item)
bool autoU = autoUpdate(); bool autoU = autoUpdate();
setAutoUpdate(FALSE); setAutoUpdate(FALSE);
takeItem(item); takeItem(item);
insertItem(itemParent->tqchildAt(itemChildIndex), item, FALSE); insertItem(itemParent->childAt(itemChildIndex), item, FALSE);
if(autoU && isVisible()) if(autoU && isVisible())
tqrepaint(); tqrepaint();
setAutoUpdate(autoU); setAutoUpdate(autoU);
@ -1859,7 +1859,7 @@ void KTreeView::paintCell(TQPainter* p, int row, int)
return; return;
p->setClipRect(cellRect(), TQPainter::CoordPainter ); p->setClipRect(cellRect(), TQPainter::CoordPainter );
TQColorGroup cg = tqcolorGroup(); TQColorGroup cg = colorGroup();
int indent = indentation(item); int indent = indentation(item);
item->paint(p, indent, cg, item->paint(p, indent, cg,
current == row); /* highlighted */ current == row); /* highlighted */
@ -1875,7 +1875,7 @@ void KTreeView::raiseItem(KTreeViewItem *item)
bool autoU = autoUpdate(); bool autoU = autoUpdate();
setAutoUpdate(FALSE); setAutoUpdate(FALSE);
takeItem(item); takeItem(item);
insertItem(itemParent->tqchildAt(--itemChildIndex), item, TRUE); insertItem(itemParent->childAt(--itemChildIndex), item, TRUE);
if(autoU && isVisible()) if(autoU && isVisible())
tqrepaint(); tqrepaint();
setAutoUpdate(autoU); setAutoUpdate(autoU);
@ -1961,7 +1961,7 @@ void KTreeView::split(KTreeViewItem *item)
bool autoU = autoUpdate(); bool autoU = autoUpdate();
setAutoUpdate(FALSE); setAutoUpdate(FALSE);
takeItem(item); takeItem(item);
appendChildItem(itemParent->tqchildAt(--itemChildIndex), item); appendChildItem(itemParent->childAt(--itemChildIndex), item);
if(autoU && isVisible()) if(autoU && isVisible())
tqrepaint(); tqrepaint();
setAutoUpdate(autoU); setAutoUpdate(autoU);

@ -70,7 +70,7 @@ public:
* Returns a pointer to the child item at the given index in this * Returns a pointer to the child item at the given index in this
* item's sub tree, or 0 if not found. * item's sub tree, or 0 if not found.
*/ */
KTreeViewItem* tqchildAt(int index) const; KTreeViewItem* childAt(int index) const;
/** /**
* Returns the number of child items in this item's sub tree. * Returns the number of child items in this item's sub tree.

@ -22,13 +22,13 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>0</width> <width>0</width>
<height>0</height> <height>0</height>
</size> </size>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>32767</width> <width>32767</width>
<height>32767</height> <height>32767</height>
@ -80,7 +80,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>130</width> <width>130</width>
<height>20</height> <height>20</height>
@ -118,7 +118,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>50</width> <width>50</width>
<height>20</height> <height>20</height>
@ -166,7 +166,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>16</width> <width>16</width>
<height>20</height> <height>20</height>
@ -252,7 +252,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>16</width> <width>16</width>
<height>20</height> <height>20</height>
@ -269,7 +269,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>16</width> <width>16</width>
<height>20</height> <height>20</height>
@ -321,7 +321,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>16</width> <width>16</width>
<height>20</height> <height>20</height>
@ -352,7 +352,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>16</width> <width>16</width>
<height>20</height> <height>20</height>

@ -12,13 +12,13 @@
<height>81</height> <height>81</height>
</rect> </rect>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>0</width> <width>0</width>
<height>0</height> <height>0</height>
</size> </size>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>32767</width> <width>32767</width>
<height>32767</height> <height>32767</height>
@ -44,7 +44,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>80</width> <width>80</width>
<height>16</height> <height>16</height>
@ -69,7 +69,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>16</height> <height>16</height>
@ -116,7 +116,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>16</height> <height>16</height>

@ -48,7 +48,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Preferred</enum> <enum>Preferred</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>16</width> <width>16</width>
<height>20</height> <height>20</height>
@ -70,7 +70,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>80</width> <width>80</width>
<height>20</height> <height>20</height>
@ -89,7 +89,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>180</width> <width>180</width>
<height>20</height> <height>20</height>
@ -114,7 +114,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>16</height> <height>16</height>
@ -139,7 +139,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>16</height> <height>16</height>
@ -174,7 +174,7 @@
<property name="name"> <property name="name">
<cstring>kpbAddHost</cstring> <cstring>kpbAddHost</cstring>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>32767</width> <width>32767</width>
<height>32767</height> <height>32767</height>
@ -191,7 +191,7 @@
<property name="name"> <property name="name">
<cstring>kpbEditHost</cstring> <cstring>kpbEditHost</cstring>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>32767</width> <width>32767</width>
<height>32767</height> <height>32767</height>
@ -208,7 +208,7 @@
<property name="name"> <property name="name">
<cstring>kpbRemoveHost</cstring> <cstring>kpbRemoveHost</cstring>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>32767</width> <width>32767</width>
<height>32767</height> <height>32767</height>

@ -43,7 +43,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>21</width> <width>21</width>
<height>20</height> <height>20</height>
@ -54,7 +54,7 @@
<property name="name"> <property name="name">
<cstring>label</cstring> <cstring>label</cstring>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>150</width> <width>150</width>
<height>0</height> <height>0</height>
@ -74,7 +74,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>20</height> <height>20</height>

@ -20,13 +20,13 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>510</width> <width>510</width>
<height>410</height> <height>410</height>
</size> </size>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>32767</width> <width>32767</width>
<height>32767</height> <height>32767</height>
@ -95,7 +95,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>301</width> <width>301</width>
<height>20</height> <height>20</height>
@ -231,7 +231,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>230</height> <height>230</height>
@ -306,7 +306,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>181</width> <width>181</width>
<height>0</height> <height>0</height>
@ -358,7 +358,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>31</width> <width>31</width>
<height>0</height> <height>0</height>
@ -385,13 +385,13 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>70</width> <width>70</width>
<height>0</height> <height>0</height>
</size> </size>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>65</width> <width>65</width>
<height>32767</height> <height>32767</height>
@ -415,7 +415,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>0</width> <width>0</width>
<height>90</height> <height>90</height>
@ -478,7 +478,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>16</width> <width>16</width>
<height>20</height> <height>20</height>
@ -523,7 +523,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>16</width> <width>16</width>
<height>16</height> <height>16</height>
@ -550,7 +550,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>21</height> <height>21</height>
@ -561,7 +561,7 @@
<property name="name"> <property name="name">
<cstring>kpbAddDomainServer</cstring> <cstring>kpbAddDomainServer</cstring>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>32767</width> <width>32767</width>
<height>32767</height> <height>32767</height>
@ -578,7 +578,7 @@
<property name="name"> <property name="name">
<cstring>kpbEditDomainServer</cstring> <cstring>kpbEditDomainServer</cstring>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>32767</width> <width>32767</width>
<height>32767</height> <height>32767</height>
@ -595,7 +595,7 @@
<property name="name"> <property name="name">
<cstring>kpbRemoveDomainServer</cstring> <cstring>kpbRemoveDomainServer</cstring>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>32767</width> <width>32767</width>
<height>32767</height> <height>32767</height>
@ -618,7 +618,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>21</height> <height>21</height>
@ -679,7 +679,7 @@
<property name="name"> <property name="name">
<cstring>kpbAddKnownHost</cstring> <cstring>kpbAddKnownHost</cstring>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>32767</width> <width>32767</width>
<height>32767</height> <height>32767</height>
@ -696,7 +696,7 @@
<property name="name"> <property name="name">
<cstring>kpbEditKnownHost</cstring> <cstring>kpbEditKnownHost</cstring>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>32767</width> <width>32767</width>
<height>32767</height> <height>32767</height>
@ -713,7 +713,7 @@
<property name="name"> <property name="name">
<cstring>kpbRemoveKnownHost</cstring> <cstring>kpbRemoveKnownHost</cstring>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>32767</width> <width>32767</width>
<height>32767</height> <height>32767</height>
@ -857,7 +857,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>21</width> <width>21</width>
<height>51</height> <height>51</height>
@ -876,7 +876,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>150</height> <height>150</height>

@ -60,9 +60,9 @@ inline void KProfilesListViewToolTip::maybeTip( const TQPoint& p )
if ( !item ) if ( !item )
return; return;
const TQRect tqitemRect = listView->tqitemRect( item ); const TQRect itemRect = listView->itemRect( item );
if ( !tqitemRect.isValid() ) if ( !itemRect.isValid() )
return; return;
const int col = listView->header()->sectionAt( p.x() ); const int col = listView->header()->sectionAt( p.x() );
@ -75,7 +75,7 @@ inline void KProfilesListViewToolTip::maybeTip( const TQPoint& p )
if ( !headerRect.isValid() ) if ( !headerRect.isValid() )
return; return;
const TQRect cellRect( headerRect.left(), tqitemRect.top(),headerRect.width() + 60, tqitemRect.height() ); const TQRect cellRect( headerRect.left(), itemRect.top(),headerRect.width() + 60, itemRect.height() );
TQString tipStr; TQString tipStr;

@ -12,13 +12,13 @@
<height>130</height> <height>130</height>
</rect> </rect>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>342</width> <width>342</width>
<height>130</height> <height>130</height>
</size> </size>
</property> </property>
<property name="tqmaximumSize"> <property name="maximumSize">
<size> <size>
<width>342</width> <width>342</width>
<height>130</height> <height>130</height>
@ -32,7 +32,7 @@
</property> </property>
<widget class="TQLabel"> <widget class="TQLabel">
<property name="name"> <property name="name">
<cstring>tlNetworktqStatus</cstring> <cstring>tlNetworkStatus</cstring>
</property> </property>
<property name="geometry"> <property name="geometry">
<rect> <rect>

@ -79,7 +79,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>130</width> <width>130</width>
<height>20</height> <height>20</height>

@ -185,13 +185,13 @@ void DEBAPT::listRPack(TQPtrList<packageInfo> *pki)
packageInfo *p; packageInfo *p;
TQStringList plist; TQStringList plist;
kpackage->settqStatus(i18n("Querying DEB APT remote package list: %1").tqarg(hostName)); kpackage->setStatus(i18n("Querying DEB APT remote package list: %1").tqarg(hostName));
kpackage->setPercent(0); kpackage->setPercent(0);
TQString cmd = "cat " STATUS; TQString cmd = "cat " STATUS;
TQStringList list = kpty->run(cmd); TQStringList list = kpty->run(cmd);
kpackage->settqStatus(i18n("Processing DEB APT remote package list: %1").tqarg(hostName)); kpackage->setStatus(i18n("Processing DEB APT remote package list: %1").tqarg(hostName));
// kdDebug() << "P=" << list.count() <<"\n"; // kdDebug() << "P=" << list.count() <<"\n";
kpackage->setPercent(50); kpackage->setPercent(50);
@ -228,7 +228,7 @@ void DEBAPT::listRPack(TQPtrList<packageInfo> *pki)
} }
list.clear(); list.clear();
kpackage->settqStatus(i18n("DEB APT")); kpackage->setStatus(i18n("DEB APT"));
kpackage->setPercent(100); kpackage->setPercent(100);
} }
@ -241,16 +241,16 @@ void DEBAPT::listAvail(TQPtrList<packageInfo> *pki)
// kdDebug() << "H=" << hostName << "\n"; // kdDebug() << "H=" << hostName << "\n";
if (hostName.isEmpty()) if (hostName.isEmpty())
kpackage->settqStatus(i18n("Querying DEB APT available list")); kpackage->setStatus(i18n("Querying DEB APT available list"));
else else
kpackage->settqStatus(i18n("Querying DEB APT available list: %1").tqarg(hostName)); kpackage->setStatus(i18n("Querying DEB APT available list: %1").tqarg(hostName));
kpackage->setPercent(0); kpackage->setPercent(0);
TQStringList list = kpty->run("apt-cache dumpavail"); TQStringList list = kpty->run("apt-cache dumpavail");
if (hostName.isEmpty()) if (hostName.isEmpty())
kpackage->settqStatus(i18n("Processing DEB APT available list")); kpackage->setStatus(i18n("Processing DEB APT available list"));
else else
kpackage->settqStatus(i18n("Processing DEB APT available list: %1").tqarg(hostName)); kpackage->setStatus(i18n("Processing DEB APT available list: %1").tqarg(hostName));
// kdDebug() << "A=" << list.count() <<"\n"; // kdDebug() << "A=" << list.count() <<"\n";
kpackage->setPercent(50); kpackage->setPercent(50);
@ -284,7 +284,7 @@ void DEBAPT::listAvail(TQPtrList<packageInfo> *pki)
} }
list.clear(); list.clear();
kpackage->settqStatus(i18n("DEB APT")); kpackage->setStatus(i18n("DEB APT"));
kpackage->setPercent(100); kpackage->setPercent(100);
} }

@ -155,7 +155,7 @@ void DEB::listPackList(TQPtrList<packageInfo> *pki, const TQString &fname, cache
local = u.isLocalFile(); local = u.isLocalFile();
} }
kpackage->settqStatus(sline); kpackage->setStatus(sline);
kpackage->setPercent(0); kpackage->setPercent(0);
TQFile file(STATUS); TQFile file(STATUS);

@ -128,7 +128,7 @@ static void insertGroups(TQMap<TQString, TQString> *a, TQString cats)
packageInfo *fbsdInterface::getPackageInfo(char mode, const TQString &pname, const TQString &version) { packageInfo *fbsdInterface::getPackageInfo(char mode, const TQString &pname, const TQString &version) {
TQString name( pname); TQString name( pname);
bool installed = false; bool installed = false;
kpackage->settqStatus(i18n("Getting package info")); kpackage->setStatus(i18n("Getting package info"));
kdDebug() << "Looking at package " << pname << endl; kdDebug() << "Looking at package " << pname << endl;
@ -205,7 +205,7 @@ packageInfo *fbsdInterface::getPackageInfo(char mode, const TQString &pname, con
} }
a["description"] = desc; a["description"] = desc;
} else { } else {
kpackage->settqStatus(TQString()); kpackage->setStatus(TQString());
return 0; return 0;
} }
@ -213,7 +213,7 @@ packageInfo *fbsdInterface::getPackageInfo(char mode, const TQString &pname, con
ret->packageState = installed? packageInfo::INSTALLED : packageInfo::AVAILABLE; ret->packageState = installed? packageInfo::INSTALLED : packageInfo::AVAILABLE;
ret->fixup(); ret->fixup();
if (!installed) ret->smerge(typeID); if (!installed) ret->smerge(typeID);
kpackage->settqStatus(TQString()); kpackage->setStatus(TQString());
return ret; return ret;
} }
@ -234,7 +234,7 @@ TQStringList fbsdInterface::getFileList(packageInfo *p) {
// Run pkg_info on the package name to get the file list. // Run pkg_info on the package name to get the file list.
// The file list is returned on stdout, one per line. // The file list is returned on stdout, one per line.
kpackage->settqStatus(i18n("Getting file list")); kpackage->setStatus(i18n("Getting file list"));
TQStringList ret; TQStringList ret;
@ -249,7 +249,7 @@ TQStringList fbsdInterface::getFileList(packageInfo *p) {
} else { } else {
if (!p->hasProperty("name")) { if (!p->hasProperty("name")) {
ret.append(i18n("Can't find package name!")); ret.append(i18n("Can't find package name!"));
kpackage->settqStatus(TQString()); kpackage->setStatus(TQString());
return ret; return ret;
} }
@ -270,7 +270,7 @@ TQStringList fbsdInterface::getFileList(packageInfo *p) {
ret = list; ret = list;
kpackage->settqStatus(TQString()); kpackage->setStatus(TQString());
return ret; return ret;
} }
@ -498,7 +498,7 @@ int fbsdInterface::pathInfo(TQMap<TQString, TQString> &a)
// Open a pipe to a pkg_info process in order to read the comment, name // Open a pipe to a pkg_info process in order to read the comment, name
// and description for the packages. // and description for the packages.
kpackage->settqStatus(i18n("Querying BSD packages database for installed packages")); kpackage->setStatus(i18n("Querying BSD packages database for installed packages"));
TQString cmd = PKG_INFO_BIN; TQString cmd = PKG_INFO_BIN;
cmd += " -acdl "; cmd += " -acdl ";
@ -528,7 +528,7 @@ int fbsdInterface::pathInfo(TQMap<TQString, TQString> &a)
TQString pkg = name.section(' ',-1); TQString pkg = name.section(' ',-1);
if (pkg.isEmpty()) { if (pkg.isEmpty()) {
KpMsgE(i18n("Unexpected output from pkg_info (looking for package name): %1").tqarg(value), TRUE); KpMsgE(i18n("Unexpected output from pkg_info (looking for package name): %1").tqarg(value), TRUE);
kpackage->settqStatus(TQString()); kpackage->setStatus(TQString());
return; return;
} else { } else {
if (pkg[pkg.length()-1] == ':') { if (pkg[pkg.length()-1] == ':') {

@ -68,7 +68,7 @@ FindF::FindF(TQWidget *parent)
value->setFocus(); value->setFocus();
TQLabel *valueLabel = new TQLabel(value, i18n("Find:"), frame1); TQLabel *valueLabel = new TQLabel(value, i18n("Find:"), frame1);
valueLabel->tqsetAlignment( AlignRight ); valueLabel->setAlignment( AlignRight );
tab = new KListView(frame1, "tab"); tab = new KListView(frame1, "tab");
connect(tab, TQT_SIGNAL(selectionChanged ( TQListViewItem * )), connect(tab, TQT_SIGNAL(selectionChanged ( TQListViewItem * )),

@ -124,7 +124,7 @@ void Gentoo::listInstalledPackages(TQPtrList<packageInfo> *pki)
TQString sline = i18n("Looking for Gentoo packages: "); TQString sline = i18n("Looking for Gentoo packages: ");
kpackage->settqStatus(sline); kpackage->setStatus(sline);
kpackage->setPercent(0); kpackage->setPercent(0);
TQFile f(portageDir+"profiles/categories"); TQFile f(portageDir+"profiles/categories");

@ -143,7 +143,7 @@ void KISS::listInstalledPackages(TQPtrList<packageInfo> *pki)
if (!reader.start(0,FALSE)) if (!reader.start(0,FALSE))
return; return;
kpackage->settqStatus(sline); kpackage->setStatus(sline);
kpackage->setPercent(0); kpackage->setPercent(0);
vb = "" ; vb = "" ;

@ -44,7 +44,7 @@ kpTerm::kpTerm(kpPty *pt, TQWidget * parent, const char * name ) :
pty = pt; pty = pt;
setFont(KGlobalSettings::fixedFont()); setFont(KGlobalSettings::fixedFont());
// setMinimumWidth(fontMetrics().maxWidth()*80 + // setMinimumWidth(fontMetrics().maxWidth()*80 +
// tqminimumSizeHint().width()); // minimumSizeHint().width());
setWordWrap(NoWrap); setWordWrap(NoWrap);
setReadOnly(TRUE); setReadOnly(TRUE);
} }

@ -643,12 +643,12 @@ TQString KPACKAGE::fetchNetFile( const KURL & url )
} else { } else {
save_url = url; save_url = url;
settqStatus(i18n("Starting KIO")); setStatus(i18n("Starting KIO"));
Kio kio; Kio kio;
if (kio.download(url, cf)) { if (kio.download(url, cf)) {
settqStatus(i18n("KIO finished")); setStatus(i18n("KIO finished"));
TQFileInfo fi(cf); TQFileInfo fi(cf);
if (!(fi.exists() && fi.size() > 0)) { if (!(fi.exists() && fi.size() > 0)) {
unlink(TQFile::encodeName(cf)); unlink(TQFile::encodeName(cf));
@ -660,7 +660,7 @@ TQString KPACKAGE::fetchNetFile( const KURL & url )
return cf; return cf;
} }
} else { } else {
settqStatus(i18n("KIO failed")); setStatus(i18n("KIO failed"));
return ""; return "";
} }
} }
@ -732,13 +732,13 @@ void KPACKAGE::dropEvent(TQDropEvent *de) // something has been dropped
openNetFiles(list.toStringList()); openNetFiles(list.toStringList());
} }
void KPACKAGE::settqStatus(const TQString &s) // set the text in the status bar void KPACKAGE::setStatus(const TQString &s) // set the text in the status bar
{ {
status->setText(s); status->setText(s);
kapp->processEvents(); // refresh the screen kapp->processEvents(); // refresh the screen
} }
TQString KPACKAGE::gettqStatus() // get the text in the status bar TQString KPACKAGE::getStatus() // get the text in the status bar
{ {
if(status) if(status)
return status->text(); return status->text();

@ -77,13 +77,13 @@ public:
OPEN_READONLY = 2, OPEN_READONLY = 2,
OPEN_INSERT = 4 }; OPEN_INSERT = 4 };
void settqStatus(const TQString &s); void setStatus(const TQString &s);
// this sets the status bar's string to s // this sets the status bar's string to s
void setPercent(int x); void setPercent(int x);
// this set the status bar's progress to x // this set the status bar's progress to x
TQString gettqStatus(); TQString getStatus();
// this gets the current status string on the status bar // this gets the current status string on the status bar
// void setMode(int newmode, pkgInterface *type, int refresh); // void setMode(int newmode, pkgInterface *type, int refresh);

@ -352,7 +352,7 @@ void managementWidget::rebuildListTree()
packageInfo *i; packageInfo *i;
int n = 0; int n = 0;
kpackage->settqStatus(i18n("Building package tree")); kpackage->setStatus(i18n("Building package tree"));
kpackage->setPercent(0); kpackage->setPercent(0);
treeList->setSorting(-1); treeList->setSorting(-1);
@ -378,7 +378,7 @@ void managementWidget::rebuildListTree()
treeList->setSorting(0); treeList->setSorting(0);
kpackage->setPercent(100); // set the progress kpackage->setPercent(100); // set the progress
kpackage->settqStatus(""); kpackage->setStatus("");
checkMarked(); checkMarked();
} }

@ -146,7 +146,7 @@ Options::Options(TQWidget *parent)
vp->addWidget(pcache[2]); vp->addWidget(pcache[2]);
TQGroupBox* cd = new TQGroupBox (1, Qt::Horizontal, i18n("Cache Folder"), page) ; TQGroupBox* cd = new TQGroupBox (1, Qt::Horizontal, i18n("Cache Folder"), page) ;
cd->tqsetSizePolicy (TQSizePolicy::Expanding, TQSizePolicy::Fixed) ; cd->setSizePolicy (TQSizePolicy::Expanding, TQSizePolicy::Fixed) ;
cachedir = new KURLRequester("", cd, "cachedir"); cachedir = new KURLRequester("", cd, "cachedir");
} }

@ -280,7 +280,7 @@ void packageDisplayWidget::updateFileList()
TQStringList errorfiles; TQStringList errorfiles;
// set the status // set the status
kpackage->settqStatus(i18n("Updating File List")); kpackage->setStatus(i18n("Updating File List"));
// clear the file list // clear the file list
fileList->clear(); fileList->clear();
@ -306,7 +306,7 @@ void packageDisplayWidget::updateFileList()
errorfiles = package->interface->verify(package, files); errorfiles = package->interface->verify(package, files);
} }
kpackage->settqStatus(i18n("Updating File List")); kpackage->setStatus(i18n("Updating File List"));
uint c=0, p=0; uint c=0, p=0;
uint step = (files.count() / 100) + 1; uint step = (files.count() / 100) + 1;

@ -46,7 +46,7 @@ packagePropertiesWidget::packagePropertiesWidget
// hide(); // hide();
package=NULL; package=NULL;
TQColorGroup cg = tqcolorGroup(); TQColorGroup cg = colorGroup();
setBackgroundColor(cg.base()); setBackgroundColor(cg.base());
initTranslate(); initTranslate();
} }

@ -142,7 +142,7 @@ void pkgInterface::listDir(TQPtrList<packageInfo> *pki, const TQString &fname, c
packageInfo *p; packageInfo *p;
TQString sline( queryMsg + fname ); TQString sline( queryMsg + fname );
kpackage->settqStatus(sline); kpackage->setStatus(sline);
kdDebug() << "listDir fn=" << fname << " dir=" << dir << endl; kdDebug() << "listDir fn=" << fname << " dir=" << dir << endl;
@ -163,8 +163,8 @@ void pkgInterface::listDir(TQPtrList<packageInfo> *pki, const TQString &fname, c
while ( (fi=it.current()) ) { // for each entry... while ( (fi=it.current()) ) { // for each entry...
if ( fi->isDir() ) { if ( fi->isDir() ) {
// entry is a subdir // entry is a subdir
if ( fi->fileName() != TQString::tqfromLatin1(".") && if ( fi->fileName() != TQString::fromLatin1(".") &&
fi->fileName() != TQString::tqfromLatin1("..") ) fi->fileName() != TQString::fromLatin1("..") )
{ {
// not current dir and not parent dir // not current dir and not parent dir
// -> recursive call: // -> recursive call:
@ -257,12 +257,12 @@ TQString pkgInterface::getPackList(cacheObj *cp)
unlink(TQFile::encodeName(tmpf)); unlink(TQFile::encodeName(tmpf));
if (kpkg) if (kpkg)
kpackage->settqStatus(i18n("Starting Kio")); kpackage->setStatus(i18n("Starting Kio"));
Kio kio; Kio kio;
if (kio.download(url, tmpf)) { if (kio.download(url, tmpf)) {
if (kpkg) if (kpkg)
kpackage->settqStatus(i18n("Kio finished")); kpackage->setStatus(i18n("Kio finished"));
TQFileInfo f(tmpf); TQFileInfo f(tmpf);
if (!(f.exists() && f.size() > 0)) { if (!(f.exists() && f.size() > 0)) {
unlink(TQFile::encodeName(tmpf)); unlink(TQFile::encodeName(tmpf));
@ -272,7 +272,7 @@ TQString pkgInterface::getPackList(cacheObj *cp)
} }
} else { } else {
if (kpkg) if (kpkg)
kpackage->settqStatus(i18n("Kio failed")); kpackage->setStatus(i18n("Kio failed"));
return ""; return "";
} }
} else { } else {
@ -327,7 +327,7 @@ TQStringList pkgInterface::verify(packageInfo *, const TQStringList &files)
uint step = (files.count() / 100) + 1; uint step = (files.count() / 100) + 1;
kpackage->settqStatus(i18n("Verifying")); kpackage->setStatus(i18n("Verifying"));
kpackage->setPercent(0); kpackage->setPercent(0);
for( TQStringList::ConstIterator it = files.begin(); for( TQStringList::ConstIterator it = files.begin();

@ -36,7 +36,7 @@ Modal::Modal(TQString msg, TQWidget *parent, const char * name )
: KDialog( parent, name, TRUE ) : KDialog( parent, name, TRUE )
{ {
TQLabel *line1 = new TQLabel(msg,this); TQLabel *line1 = new TQLabel(msg,this);
line1->tqsetAlignment(AlignCenter); line1->setAlignment(AlignCenter);
line1->setAutoResize(true); line1->setAutoResize(true);
} }

@ -160,11 +160,11 @@ void RPM::listInstalledPackages(TQPtrList<packageInfo> *pki)
TQString cmd = "rpm -q -a"; TQString cmd = "rpm -q -a";
cmd += packageQuery(); cmd += packageQuery();
kpackage->settqStatus(i18n("Querying RPM package list")); kpackage->setStatus(i18n("Querying RPM package list"));
kpackage->setPercent(0); kpackage->setPercent(0);
TQStringList list = kpty->run(cmd); TQStringList list = kpty->run(cmd);
kpackage->settqStatus(i18n("Processing RPM package list")); kpackage->setStatus(i18n("Processing RPM package list"));
// kdDebug() << "P=" << list.count() <<"\n"; // kdDebug() << "P=" << list.count() <<"\n";
kpackage->setPercent(50); kpackage->setPercent(50);
@ -197,7 +197,7 @@ void RPM::listInstalledPackages(TQPtrList<packageInfo> *pki)
} }
list.clear(); list.clear();
kpackage->settqStatus(i18n("DEB APT")); kpackage->setStatus(i18n("DEB APT"));
kpackage->setPercent(100); kpackage->setPercent(100);
} }

@ -54,7 +54,7 @@ Search::Search(TQWidget *parent, const char * name)
value = new TQLineEdit( frame1, "v"); value = new TQLineEdit( frame1, "v");
vf->addWidget(value,0); vf->addWidget(value,0);
value->setFocus(); value->setFocus();
value->setFixedHeight(value->tqsizeHint().height()); value->setFixedHeight(value->sizeHint().height());
value->setMinimumWidth(250); value->setMinimumWidth(250);
connect(value, TQT_SIGNAL(textChanged(const TQString &)),this, TQT_SLOT(textChanged(const TQString &))); connect(value, TQT_SIGNAL(textChanged(const TQString &)),this, TQT_SLOT(textChanged(const TQString &)));
@ -64,13 +64,13 @@ Search::Search(TQWidget *parent, const char * name)
substr = new TQCheckBox(i18n("Sub string"), frame1, "substr"); substr = new TQCheckBox(i18n("Sub string"), frame1, "substr");
substr->setChecked(TRUE); substr->setChecked(TRUE);
hc->addWidget(substr,1,AlignLeft); hc->addWidget(substr,1,AlignLeft);
substr->setFixedSize(substr->tqsizeHint()); substr->setFixedSize(substr->sizeHint());
hc->addStretch(1); hc->addStretch(1);
wrap = new TQCheckBox(i18n("Wrap search"), frame1, "wrap"); wrap = new TQCheckBox(i18n("Wrap search"), frame1, "wrap");
wrap->setChecked(TRUE); wrap->setChecked(TRUE);
hc->addWidget(wrap,1,AlignRight); hc->addWidget(wrap,1,AlignRight);
wrap->setFixedSize(wrap->tqsizeHint()); wrap->setFixedSize(wrap->sizeHint());
enableButton( User1, false ); enableButton( User1, false );

@ -206,7 +206,7 @@ void SLACK::listInstalledPackages(TQPtrList<packageInfo> *pki)
TQDir d(DIR); TQDir d(DIR);
if (d.exists()) { if (d.exists()) {
TQString sline = i18n("Querying SLACK package list: "); TQString sline = i18n("Querying SLACK package list: ");
kpackage->settqStatus(sline); kpackage->setStatus(sline);
const TQFileInfoList *list = d.entryInfoList(); const TQFileInfoList *list = d.entryInfoList();
int count = list->count(); int count = list->count();
@ -260,7 +260,7 @@ void SLACK::listPackList(TQPtrList<packageInfo> *pki, const TQString &s, cacheO
TQString sline = i18n("Querying SLACK package list: "); TQString sline = i18n("Querying SLACK package list: ");
sline += cp->location; sline += cp->location;
kpackage->settqStatus(sline); kpackage->setStatus(sline);
kpackage->setPercent(0); kpackage->setPercent(0);
np = 0; np = 0;
@ -619,7 +619,7 @@ TQStringList SLACK::FindFile(const TQString &name, bool)
TQDir d(DIR); TQDir d(DIR);
if (d.exists()) { if (d.exists()) {
TQString sline = i18n("Querying SLACK package list: "); TQString sline = i18n("Querying SLACK package list: ");
kpackage->settqStatus(sline); kpackage->setStatus(sline);
const TQFileInfoList *list = d.entryInfoList(); const TQFileInfoList *list = d.entryInfoList();
int count = list->count(); int count = list->count();

@ -140,7 +140,7 @@ dpanel::dpanel(dpanel *basep, const TQString &Pfilter, bool bsubdirs,
if (bsubdirs) { if (bsubdirs) {
psubdirs = new TQCheckBox(i18n("Subfolders"),this); psubdirs = new TQCheckBox(i18n("Subfolders"),this);
psubdirs->setFixedSize(psubdirs->tqsizeHint()); psubdirs->setFixedSize(psubdirs->sizeHint());
pack->addWidget(psubdirs,0); pack->addWidget(psubdirs,0);
} }

@ -201,7 +201,7 @@ bool ksv::IO::loadSavedConfiguration (TQDataStream& s,
s >> rlMagic; s >> rlMagic;
s >> section; s >> section;
if (rlMagic != TQString::tqfromLatin1("RUNLEVEL %1").tqarg(i)) if (rlMagic != TQString::fromLatin1("RUNLEVEL %1").tqarg(i))
return false; return false;
if (section != "START") if (section != "START")
@ -240,14 +240,14 @@ bool ksv::IO::saveConfiguration (TQDataStream& s,
s << TQCString("KSysV") s << TQCString("KSysV")
<< version << version
<< TQDateTime::tqcurrentDateTime(); // save date << TQDateTime::currentDateTime(); // save date
for (int i = 0; i < ksv::runlevelNumber; ++i) for (int i = 0; i < ksv::runlevelNumber; ++i)
{ {
TQ_INT32 numberOfItems = start[i]->childCount(); TQ_INT32 numberOfItems = start[i]->childCount();
s << TQString::tqfromLatin1 ("RUNLEVEL %1").arg (i) s << TQString::fromLatin1 ("RUNLEVEL %1").arg (i)
<< TQString::tqfromLatin1 ("START") << TQString::fromLatin1 ("START")
<< numberOfItems; << numberOfItems;
for (TQListViewItemIterator it (start[i]); for (TQListViewItemIterator it (start[i]);
@ -259,7 +259,7 @@ bool ksv::IO::saveConfiguration (TQDataStream& s,
numberOfItems = stop[i]->childCount(); numberOfItems = stop[i]->childCount();
s << TQString::tqfromLatin1 ("STOP") s << TQString::fromLatin1 ("STOP")
<< numberOfItems; << numberOfItems;
for (TQListViewItemIterator it (stop[i]); for (TQListViewItemIterator it (stop[i]);

@ -1062,16 +1062,16 @@ void KSVContent::calcMinSize ()
TQCOORD& w = mMinSize.rwidth(); TQCOORD& w = mMinSize.rwidth();
TQCOORD& h = mMinSize.rheight(); TQCOORD& h = mMinSize.rheight();
w = 2 * KDialog::marginHint() + mScriptBox->tqsizeHint().width(); w = 2 * KDialog::marginHint() + mScriptBox->sizeHint().width();
h = 2 * KDialog::marginHint() + mScriptBox->tqsizeHint().height(); h = 2 * KDialog::marginHint() + mScriptBox->sizeHint().height();
for (int i = 0; i < ksv::runlevelNumber; ++i) for (int i = 0; i < ksv::runlevelNumber; ++i)
{ {
if (mRunlevels[i]->isHidden()) if (mRunlevels[i]->isHidden())
continue; continue;
w += KDialog::spacingHint() + mRunlevels[i]->tqsizeHint().width(); w += KDialog::spacingHint() + mRunlevels[i]->sizeHint().width();
h = kMax (h, mRunlevels[i]->tqsizeHint().height()); h = kMax (h, mRunlevels[i]->sizeHint().height());
} }
mContent->tqlayout()->setEnabled(false); mContent->tqlayout()->setEnabled(false);

@ -33,7 +33,7 @@ KSVPreferences::KSVPreferences (TQWidget* parent)
parent, "KSysV Preferences", true, true), parent, "KSysV Preferences", true, true),
mConfig (KSVConfig::self()) mConfig (KSVConfig::self())
{ {
setMinimumSize (tqsizeHint ()); setMinimumSize (sizeHint ());
/** /**
* Look & Feel Page * Look & Feel Page

@ -48,7 +48,7 @@ KSVServicesPage::KSVServicesPage (KSVData& data, KPropertiesDialog* props)
desc->setSpacing (1); desc->setSpacing (1);
TQLabel* label = new TQLabel(i18n("Description:"), desc); TQLabel* label = new TQLabel(i18n("Description:"), desc);
label->setFixedHeight (label->tqsizeHint().height()); label->setFixedHeight (label->sizeHint().height());
TQString text; TQString text;
ksv::getServiceDescription (data.filename(), text); ksv::getServiceDescription (data.filename(), text);

@ -37,7 +37,7 @@ RunlevelAuthIcon::RunlevelAuthIcon (const TQString& servicesPath, const TQString
lockBox->setMargin (1); lockBox->setMargin (1);
lockBox->setFrameStyle (TQFrame::NoFrame); lockBox->setFrameStyle (TQFrame::NoFrame);
lockBox->setFixedSize (lockBox->tqsizeHint()); lockBox->setFixedSize (lockBox->sizeHint());
connect (mTimer, TQT_SIGNAL (timeout()), this, TQT_SLOT (timerEvent())); connect (mTimer, TQT_SIGNAL (timeout()), this, TQT_SLOT (timerEvent()));
mTimer->start (mInterval); mTimer->start (mInterval);

@ -25,7 +25,7 @@
#include "ksvdraglist.h" #include "ksvdraglist.h"
#include "ServiceDlg.h" #include "ServiceDlg.h"
#define MIN_SIZE(A) A->setMinimumSize(A->tqsizeHint()) #define MIN_SIZE(A) A->setMinimumSize(A->sizeHint())
ServiceDlg::ServiceDlg (const TQString& action, const TQString& label, ServiceDlg::ServiceDlg (const TQString& action, const TQString& label,
TQWidget* parent, const char* name) TQWidget* parent, const char* name)
@ -40,14 +40,14 @@ ServiceDlg::ServiceDlg (const TQString& action, const TQString& label,
MIN_SIZE(desc); MIN_SIZE(desc);
desc->setBuddy(mServices); desc->setBuddy(mServices);
MIN_SIZE(mServices); MIN_SIZE(mServices);
mServices->setMinimumWidth(mServices->tqminimumSize().width() * 2); mServices->setMinimumWidth(mServices->minimumSize().width() * 2);
TQBoxLayout* serv_layout = new TQHBoxLayout(); TQBoxLayout* serv_layout = new TQHBoxLayout();
top->addLayout (serv_layout); top->addLayout (serv_layout);
serv_layout->addWidget(desc); serv_layout->addWidget(desc);
serv_layout->addWidget(mServices); serv_layout->addWidget(mServices);
setFixedSize (tqsizeHint()); setFixedSize (sizeHint());
} }
ServiceDlg::~ServiceDlg() ServiceDlg::~ServiceDlg()

@ -87,12 +87,12 @@
#include <tqlabel.h> #include <tqlabel.h>
#include <kstatusbar.h> #include <kstatusbar.h>
namespace tqStatus namespace Status
{ {
enum { enum {
Changed, Checklist, Writable Changed, Checklist, Writable
}; };
} // namespace tqStatus } // namespace Status
KSVTopLevel::KSVTopLevel() KSVTopLevel::KSVTopLevel()
: KMainWindow(0, 0L, WStyle_ContextHelp|WDestructiveClose), : KMainWindow(0, 0L, WStyle_ContextHelp|WDestructiveClose),
@ -428,14 +428,14 @@ void KSVTopLevel::initStatusBar()
"recommended though, due to security issues.</p>") "recommended though, due to security issues.</p>")
.tqarg (kapp->aboutData()->programName()).tqarg(kapp->aboutData()->programName())); .tqarg (kapp->aboutData()->programName()).tqarg(kapp->aboutData()->programName()));
authIconBox->setMinimumSize (authIconBox->tqminimumSizeHint()); authIconBox->setMinimumSize (authIconBox->minimumSizeHint());
visBox->setMinimumSize (visBox->tqminimumSizeHint()); visBox->setMinimumSize (visBox->minimumSizeHint());
status->addWidget (authIconBox, 0, false); status->addWidget (authIconBox, 0, false);
status->insertItem ("", tqStatus::Changed, 100); status->insertItem ("", Status::Changed, 100);
status->addWidget (visBox, 0, true); status->addWidget (visBox, 0, true);
status->setItemAlignment (tqStatus::Changed, AlignLeft|AlignVCenter); status->setItemAlignment (Status::Changed, AlignLeft|AlignVCenter);
} }
void KSVTopLevel::slotShowConfig() void KSVTopLevel::slotShowConfig()
@ -499,7 +499,7 @@ void KSVTopLevel::saveOptions()
void KSVTopLevel::slotUpdateRunning (const TQString& text) void KSVTopLevel::slotUpdateRunning (const TQString& text)
{ {
statusBar()->changeItem(text, tqStatus::Changed); statusBar()->changeItem(text, Status::Changed);
} }
void KSVTopLevel::editCut() { void KSVTopLevel::editCut() {
@ -563,7 +563,7 @@ void KSVTopLevel::setChanged (bool val)
mFileSave->setEnabled (val); mFileSave->setEnabled (val);
// update statusbar // update statusbar
statusBar()->changeItem(val ? i18n(" Changed") : TQString(), tqStatus::Changed); statusBar()->changeItem(val ? i18n(" Changed") : TQString(), Status::Changed);
// clear messages // clear messages
statusBar()->clear(); statusBar()->clear();
@ -651,7 +651,7 @@ void KSVTopLevel::print()
// .arg (ksv::hostname())); // .arg (ksv::hostname()));
// y += fm.lineSpacing(); // y += fm.lineSpacing();
// p.drawText (10, y, TQDateTime::tqcurrentDateTime().toString()); // p.drawText (10, y, TQDateTime::currentDateTime().toString());
// y += fm.lineSpacing() * 2; // an extra empty line // y += fm.lineSpacing() * 2; // an extra empty line
// for (int i = 0; i < ksv::runlevelNumber; ++i) // for (int i = 0; i < ksv::runlevelNumber; ++i)
@ -771,17 +771,17 @@ void KSVTopLevel::printLog()
rheading.setWidth (&p, width); rheading.setWidth (&p, width);
int tmp_h = rheading.height(); int tmp_h = rheading.height();
TQRegion region (0, y, width, tmp_h); TQRegion region (0, y, width, tmp_h);
rheading.draw (&p, 0, y, region, tqcolorGroup(), 0L); rheading.draw (&p, 0, y, region, colorGroup(), 0L);
y += tmp_h; y += tmp_h;
TQSimpleRichText rdate (i18n("<h3>Printed on %1</h3><br/><br/>").tqarg(KGlobal::locale()->formatDateTime(TQDateTime::tqcurrentDateTime())), TQSimpleRichText rdate (i18n("<h3>Printed on %1</h3><br/><br/>").tqarg(KGlobal::locale()->formatDateTime(TQDateTime::currentDateTime())),
TQFont("times"), TQString(), ksv::styleSheet(), TQFont("times"), TQString(), ksv::styleSheet(),
TQMimeSourceFactory::defaultFactory()); TQMimeSourceFactory::defaultFactory());
rdate.setWidth (&p, width); rdate.setWidth (&p, width);
tmp_h = rdate.height(); tmp_h = rdate.height();
TQRegion r2 (0, y, width, tmp_h); TQRegion r2 (0, y, width, tmp_h);
rdate.draw (&p, 0, y, r2, tqcolorGroup(), 0L); rdate.draw (&p, 0, y, r2, colorGroup(), 0L);
y += tmp_h; y += tmp_h;
} }
@ -799,7 +799,7 @@ void KSVTopLevel::printLog()
break; break;
TQRegion region (0, y, width, tmp_h); TQRegion region (0, y, width, tmp_h);
rich.draw (&p, 0, y, region, tqcolorGroup(), 0L); rich.draw (&p, 0, y, region, colorGroup(), 0L);
y += tmp_h; y += tmp_h;
++line; ++line;
@ -938,7 +938,7 @@ void KSVTopLevel::slotSaveLog()
s << "KDE System V Init Editor" s << "KDE System V Init Editor"
<< endl << endl
<< TQDateTime::tqcurrentDateTime().toString() << TQDateTime::currentDateTime().toString()
<< endl << endl << endl << endl
<< mView->log() << mView->log()
<< endl; << endl;

@ -137,7 +137,7 @@
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property> <property>
<name>tqsizeHint</name> <name>sizeHint</name>
<size> <size>
<width>20</width> <width>20</width>
<height>20</height> <height>20</height>
@ -281,7 +281,7 @@
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property> <property>
<name>tqsizeHint</name> <name>sizeHint</name>
<size> <size>
<width>20</width> <width>20</width>
<height>20</height> <height>20</height>
@ -367,7 +367,7 @@
<cstring>mServicesPath</cstring> <cstring>mServicesPath</cstring>
</property> </property>
<property stdset="1"> <property stdset="1">
<name>tqminimumSize</name> <name>minimumSize</name>
<size> <size>
<width>100</width> <width>100</width>
<height>0</height> <height>0</height>
@ -430,7 +430,7 @@
</sizepolicy> </sizepolicy>
</property> </property>
<property stdset="1"> <property stdset="1">
<name>tqminimumSize</name> <name>minimumSize</name>
<size> <size>
<width>0</width> <width>0</width>
<height>10</height> <height>10</height>
@ -489,7 +489,7 @@
<cstring>mRunlevelPath</cstring> <cstring>mRunlevelPath</cstring>
</property> </property>
<property stdset="1"> <property stdset="1">
<name>tqminimumSize</name> <name>minimumSize</name>
<size> <size>
<width>100</width> <width>100</width>
<height>0</height> <height>0</height>
@ -544,7 +544,7 @@
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property> <property>
<name>tqsizeHint</name> <name>sizeHint</name>
<size> <size>
<width>20</width> <width>20</width>
<height>20</height> <height>20</height>

@ -73,7 +73,7 @@ void KDLToolTip::maybeTip (const TQPoint& p)
} }
else if (item) else if (item)
{ {
rect = mParent->tqitemRect (i); rect = mParent->itemRect (i);
rect.moveTopLeft (mParent->viewport()->mapToParent (rect.topLeft())); rect.moveTopLeft (mParent->viewport()->mapToParent (rect.topLeft()));
text = item->tooltip(); text = item->tooltip();
@ -84,7 +84,7 @@ void KDLToolTip::maybeTip (const TQPoint& p)
TQListViewItem* last = mParent->lastItem(); TQListViewItem* last = mParent->lastItem();
if (last) if (last)
rect.setTop (mParent->viewport()->mapToParent (mParent->tqitemRect(last).bottomRight()).y()); rect.setTop (mParent->viewport()->mapToParent (mParent->itemRect(last).bottomRight()).y());
text = mParent->tooltip(); text = mParent->tooltip();
} }

@ -77,18 +77,18 @@ void KScroller::resizeEvent (TQResizeEvent* e)
updateScrollBars(); updateScrollBars();
} }
TQSize KScroller::tqminimumSizeHint() const TQSize KScroller::minimumSizeHint() const
{ {
TQSize size = tqsizeHint(); TQSize size = sizeHint();
if (size.width() > 300) if (size.width() > 300)
size.setWidth(300); size.setWidth(300);
return size; return size;
} }
TQSize KScroller::tqsizeHint() const TQSize KScroller::sizeHint() const
{ {
TQSize size = mContent->tqminimumSize(); TQSize size = mContent->minimumSize();
int extra = kapp->tqstyle().tqpixelMetric( TQStyle::PM_ScrollBarExtent, 0 ); int extra = kapp->tqstyle().pixelMetric( TQStyle::PM_ScrollBarExtent, 0 );
size += TQSize( extra, extra ); size += TQSize( extra, extra );
return size; return size;
} }
@ -97,7 +97,7 @@ void KScroller::updateScrollBars ()
{ {
int w = width(); int w = width();
int h = height(); int h = height();
TQSize cs = mContent->tqminimumSize(); TQSize cs = mContent->minimumSize();
setupVertical ( cs.width(), cs.height(), w, h); setupVertical ( cs.width(), cs.height(), w, h);
setupHorizontal ( cs.width(), cs.height(), w, h); setupHorizontal ( cs.width(), cs.height(), w, h);
@ -113,7 +113,7 @@ void KScroller::setupHorizontal (int cw, int, int w, int h)
if (cw > w) if (cw > w)
{ {
int extra = kapp->tqstyle().tqpixelMetric( TQStyle::PM_ScrollBarExtent, 0 ); int extra = kapp->tqstyle().pixelMetric( TQStyle::PM_ScrollBarExtent, 0 );
if (!mVertical->isHidden()) if (!mVertical->isHidden())
w -= extra; w -= extra;
@ -139,7 +139,7 @@ void KScroller::setupVertical (int, int ch, int w, int h)
if (ch > h) if (ch > h)
{ {
int extra = kapp->tqstyle().tqpixelMetric( TQStyle::PM_ScrollBarExtent, 0 ); int extra = kapp->tqstyle().pixelMetric( TQStyle::PM_ScrollBarExtent, 0 );
mVertical->setRange (0, ch - h); mVertical->setRange (0, ch - h);
mVertical->setPageStep (h); mVertical->setPageStep (h);
mVertical->setLineStep (25); mVertical->setLineStep (25);
@ -175,7 +175,7 @@ void KScroller::setupCornerWidget (int w, int h)
{ {
if (!mVertical->isHidden() && !mHorizontal->isHidden()) if (!mVertical->isHidden() && !mHorizontal->isHidden())
{ {
int extra = kapp->tqstyle().tqpixelMetric( TQStyle::PM_ScrollBarExtent, 0 ); int extra = kapp->tqstyle().pixelMetric( TQStyle::PM_ScrollBarExtent, 0 );
mCornerWidget->raise(); mCornerWidget->raise();
mCornerWidget->setGeometry (w - extra, h - extra, extra, extra); mCornerWidget->setGeometry (w - extra, h - extra, extra, extra);

@ -70,7 +70,7 @@ public slots:
void setCornerWidget (TQWidget* corner); void setCornerWidget (TQWidget* corner);
/** /**
* Update the scrollbars. Call whenever you change the contents tqminimumSize. * Update the scrollbars. Call whenever you change the contents minimumSize.
*/ */
void updateScrollBars (); void updateScrollBars ();
@ -83,12 +83,12 @@ protected:
/** /**
* Reimplemented for internal reasons, the API is not affected. * Reimplemented for internal reasons, the API is not affected.
*/ */
virtual TQSize tqsizeHint() const; virtual TQSize sizeHint() const;
/** /**
* Reimplemented for internal reasons, the API is not affected. * Reimplemented for internal reasons, the API is not affected.
*/ */
virtual TQSize tqminimumSizeHint() const; virtual TQSize minimumSizeHint() const;
private slots: private slots:

@ -65,7 +65,7 @@ const char* KSVDrag::format (int i) const
} }
} }
TQByteArray KSVDrag::tqencodedData (const char* format) const TQByteArray KSVDrag::encodedData (const char* format) const
{ {
TQByteArray res; TQByteArray res;
@ -90,7 +90,7 @@ bool KSVDrag::decodeNative (const TQMimeSource* mime, KSVData& data)
{ {
if (mime && mime->provides ("application/x-ksysv")) if (mime && mime->provides ("application/x-ksysv"))
{ {
TQDataStream ds (mime->tqencodedData ("application/x-ksysv"), IO_ReadOnly); TQDataStream ds (mime->encodedData ("application/x-ksysv"), IO_ReadOnly);
ds >> data; ds >> data;
return true; return true;

@ -20,7 +20,7 @@ public:
virtual ~KSVDrag(); virtual ~KSVDrag();
virtual const char* format (int i) const; virtual const char* format (int i) const;
TQByteArray tqencodedData (const char*) const; TQByteArray encodedData (const char*) const;
static bool decodeNative (const TQMimeSource*, KSVData&); static bool decodeNative (const TQMimeSource*, KSVData&);

@ -532,7 +532,7 @@ void KSVDragList::startDrag ()
if (d) if (d)
{ {
d->setPixmap (mItemToDrag->paintDragIcon (font(), tqcolorGroup())); d->setPixmap (mItemToDrag->paintDragIcon (font(), colorGroup()));
d->drag(); d->drag();
} }
@ -762,7 +762,7 @@ void KSVDragList::setEnabled (bool enable)
{ {
if (!testWState(WState_Disabled)) if (!testWState(WState_Disabled))
{ {
if (tqfocusWidget() == this) if (focusWidget() == this)
focusNextPrevChild (TRUE); focusNextPrevChild (TRUE);
setWState (WState_Disabled); setWState (WState_Disabled);
// setBackgroundFromMode(); // this is private in TQWidget... // setBackgroundFromMode(); // this is private in TQWidget...
@ -793,7 +793,7 @@ void KServiceDragList::startDrag ()
if (d) if (d)
{ {
d->setPixmap (mItemToDrag->paintDragIcon (font(), tqcolorGroup())); d->setPixmap (mItemToDrag->paintDragIcon (font(), colorGroup()));
d->dragCopy(); d->dragCopy();
} }

@ -82,7 +82,7 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>200</width> <width>200</width>
<height>0</height> <height>0</height>
@ -110,7 +110,7 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>200</width> <width>200</width>
<height>0</height> <height>0</height>
@ -182,7 +182,7 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>0</width> <width>0</width>
<height>10</height> <height>10</height>
@ -238,7 +238,7 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>80</width> <width>80</width>
<height>0</height> <height>0</height>
@ -286,7 +286,7 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>80</width> <width>80</width>
<height>0</height> <height>0</height>
@ -334,7 +334,7 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>80</width> <width>80</width>
<height>0</height> <height>0</height>
@ -366,7 +366,7 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>80</width> <width>80</width>
<height>0</height> <height>0</height>
@ -432,7 +432,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>20</height> <height>20</height>

@ -83,7 +83,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>20</height> <height>20</height>
@ -130,7 +130,7 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>0</width> <width>0</width>
<height>10</height> <height>10</height>
@ -153,7 +153,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>20</height> <height>20</height>

@ -94,7 +94,7 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>100</width> <width>100</width>
<height>0</height> <height>0</height>
@ -134,7 +134,7 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>0</width> <width>0</width>
<height>10</height> <height>10</height>
@ -198,7 +198,7 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="tqminimumSize"> <property name="minimumSize">
<size> <size>
<width>100</width> <width>100</width>
<height>0</height> <height>0</height>
@ -236,7 +236,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>20</height> <height>20</height>

@ -47,7 +47,7 @@ KSVTrash::KSVTrash (TQWidget* parent, const char* name)
TQToolTip::add(mLabel, i18n("Drag here to remove services")); TQToolTip::add(mLabel, i18n("Drag here to remove services"));
TQToolTip::add(this, i18n("Drag here to remove services")); TQToolTip::add(this, i18n("Drag here to remove services"));
setMinimumSize(tqsizeHint()); setMinimumSize(sizeHint());
setAcceptDrops(true); setAcceptDrops(true);
mLabel->installEventFilter(this); mLabel->installEventFilter(this);
@ -131,7 +131,7 @@ bool KSVTrash::eventFilter( TQObject *, TQEvent *e )
} }
} }
TQSize KSVTrash::tqsizeHint() const TQSize KSVTrash::sizeHint() const
{ {
static TQSize size = TQSize (mPixmapWidth + 2 * 5, mPixmapWidth + 2 * 7); static TQSize size = TQSize (mPixmapWidth + 2 * 5, mPixmapWidth + 2 * 7);

@ -34,7 +34,7 @@ public:
KSVTrash (TQWidget* parent = 0, const char* name = 0); KSVTrash (TQWidget* parent = 0, const char* name = 0);
virtual ~KSVTrash(); virtual ~KSVTrash();
virtual TQSize tqsizeHint() const; virtual TQSize sizeHint() const;
protected: protected:
/** /**

@ -212,7 +212,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>40</height> <height>40</height>

@ -200,7 +200,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>16</height> <height>16</height>

@ -28,7 +28,7 @@
KU::KGroup::KGroup() KU::KGroup::KGroup()
{ {
pwd = TQString::tqfromLatin1("*"); pwd = TQString::fromLatin1("*");
gid = 0; gid = 0;
type = 2; type = 2;
caps = 0; caps = 0;

@ -95,7 +95,7 @@ bool KGroupFiles::reload()
rc = stat(TQFile::encodeName(filename), &st); rc = stat(TQFile::encodeName(filename), &st);
if(rc != 0) { if(rc != 0) {
KMessageBox::error( 0, i18n("stat call on file %1 failed: %2\nCheck KUser settings."). KMessageBox::error( 0, i18n("stat call on file %1 failed: %2\nCheck KUser settings.").
tqarg(filename).tqarg(TQString::tqfromLatin1(strerror(errno))) ); tqarg(filename).tqarg(TQString::fromLatin1(strerror(errno))) );
if( (processing_file & GROUP) != 0 ) { if( (processing_file & GROUP) != 0 ) {
group_errno = errno; group_errno = errno;
if(!nisgroup_filename.isEmpty()) { if(!nisgroup_filename.isEmpty()) {
@ -194,16 +194,16 @@ bool KGroupFiles::save()
// read KUser configuration info // read KUser configuration info
group_filename = mCfg->groupsrc(); group_filename = mCfg->groupsrc();
new_group_filename = group_filename + TQString::tqfromLatin1(KU_CREATE_EXT); new_group_filename = group_filename + TQString::fromLatin1(KU_CREATE_EXT);
#ifdef HAVE_SHADOW #ifdef HAVE_SHADOW
gshadow_filename = mCfg->gshadowsrc(); gshadow_filename = mCfg->gshadowsrc();
if ( !KStandardDirs::exists( gshadow_filename ) ) if ( !KStandardDirs::exists( gshadow_filename ) )
gshadow_filename = TQString(); gshadow_filename = TQString();
else else
new_gshadow_filename = gshadow_filename + TQString::tqfromLatin1(KU_CREATE_EXT); new_gshadow_filename = gshadow_filename + TQString::fromLatin1(KU_CREATE_EXT);
#endif #endif
nisgroup_filename = mCfg->nisgroupsrc(); nisgroup_filename = mCfg->nisgroupsrc();
new_nisgroup_filename = nisgroup_filename + TQString::tqfromLatin1(KU_CREATE_EXT); new_nisgroup_filename = nisgroup_filename + TQString::fromLatin1(KU_CREATE_EXT);
if( nisgroup_filename != group_filename ) { if( nisgroup_filename != group_filename ) {
mingid = mCfg->nismingid(); mingid = mCfg->nismingid();
} }

@ -651,8 +651,8 @@ void KU::KUser::copyDir(const TQString &srcPath, const TQString &dstPath)
TQDir s(srcPath); TQDir s(srcPath);
TQDir d(dstPath); TQDir d(dstPath);
TQString dot = TQString::tqfromLatin1("."); TQString dot = TQString::fromLatin1(".");
TQString dotdot = TQString::tqfromLatin1(".."); TQString dotdot = TQString::fromLatin1("..");
s.setFilter( TQDir::All | TQDir::Hidden | TQDir::System ); s.setFilter( TQDir::All | TQDir::Hidden | TQDir::System );
@ -772,7 +772,7 @@ int KU::KUser::removeCrontabs()
file = TQFile::decodeName(CRONTAB_DIR) + "/" + p_name; file = TQFile::decodeName(CRONTAB_DIR) + "/" + p_name;
if ( access(TQFile::encodeName(file), F_OK) == 0 ) { if ( access(TQFile::encodeName(file), F_OK) == 0 ) {
command = TQString::tqfromLatin1("crontab -u %1 -r").tqarg(KProcess::quote(p_name)); command = TQString::fromLatin1("crontab -u %1 -r").tqarg(KProcess::quote(p_name));
if ( system(TQFile::encodeName(command)) != 0 ) { if ( system(TQFile::encodeName(command)) != 0 ) {
KMessageBox::error( 0, i18n("Cannot remove crontab %1.\nError: %2") KMessageBox::error( 0, i18n("Cannot remove crontab %1.\nError: %2")
.tqarg(command).tqarg(TQString::fromLocal8Bit(strerror(errno))) ); .tqarg(command).tqarg(TQString::fromLocal8Bit(strerror(errno))) );

@ -179,7 +179,7 @@ bool KUserFiles::loadpwd()
tmpKU->setHomeDir(TQString::fromLocal8Bit(p->pw_dir)); tmpKU->setHomeDir(TQString::fromLocal8Bit(p->pw_dir));
tmpKU->setShell(TQString::fromLocal8Bit(p->pw_shell)); tmpKU->setShell(TQString::fromLocal8Bit(p->pw_shell));
#if defined(__FreeBSD__) || defined(__bsdi__) #if defined(__FreeBSD__) || defined(__bsdi__)
tmpKU->setClass(TQString::tqfromLatin1(p->pw_class)); tmpKU->setClass(TQString::fromLatin1(p->pw_class));
tmpKU->setLastChange(p->pw_change); tmpKU->setLastChange(p->pw_change);
tmpKU->setExpire(p->pw_expire); tmpKU->setExpire(p->pw_expire);
#endif #endif
@ -314,9 +314,9 @@ bool KUserFiles::savepwd()
passwd_filename = mCfg->passwdsrc(); passwd_filename = mCfg->passwdsrc();
nispasswd_filename = mCfg->nispasswdsrc(); nispasswd_filename = mCfg->nispasswdsrc();
TQString new_passwd_filename = TQString new_passwd_filename =
passwd_filename + TQString::tqfromLatin1(KU_CREATE_EXT); passwd_filename + TQString::fromLatin1(KU_CREATE_EXT);
TQString new_nispasswd_filename = TQString new_nispasswd_filename =
nispasswd_filename+TQString::tqfromLatin1(KU_CREATE_EXT); nispasswd_filename+TQString::fromLatin1(KU_CREATE_EXT);
if( nispasswd_filename != passwd_filename ) { if( nispasswd_filename != passwd_filename ) {
minuid = mCfg->nisminuid(); minuid = mCfg->nisminuid();
@ -512,7 +512,7 @@ bool KUserFiles::savesdw()
struct spwd s; struct spwd s;
KU::KUser *up; KU::KUser *up;
TQString shadow_file = mCfg->shadowsrc(); TQString shadow_file = mCfg->shadowsrc();
TQString new_shadow_file = shadow_file+TQString::tqfromLatin1(KU_CREATE_EXT); TQString new_shadow_file = shadow_file+TQString::fromLatin1(KU_CREATE_EXT);
if ( shadow_file.isEmpty() ) if ( shadow_file.isEmpty() )
return TRUE; return TRUE;
@ -588,7 +588,7 @@ void KUserFiles::createPassword( KU::KUser *user, const TQString &password )
{ {
if ( caps & Cap_Shadow ) { if ( caps & Cap_Shadow ) {
user->setSPwd( encryptPass( password, mCfg->md5shadow() ) ); user->setSPwd( encryptPass( password, mCfg->md5shadow() ) );
user->setPwd( TQString::tqfromLatin1("x") ); user->setPwd( TQString::fromLatin1("x") );
} else } else
user->setPwd( encryptPass( password, false ) ); user->setPwd( encryptPass( password, false ) );
} }

@ -341,7 +341,7 @@ void KUserLDAP::createPassword( KU::KUser *user, const TQString &password )
hash[6], hash[7], hash[8], hash[9], hash[10], hash[11], hash[6], hash[7], hash[8], hash[9], hash[10], hash[11],
hash[12], hash[13], hash[14], hash[15]); hash[12], hash[13], hash[14], hash[15]);
user->setNTPwd( TQString::tqfromLatin1( (const char*) &hex, 32 ) ); user->setNTPwd( TQString::fromLatin1( (const char*) &hex, 32 ) );
if ( mCfg->lanmanhash() ) { if ( mCfg->lanmanhash() ) {
@ -354,7 +354,7 @@ void KUserLDAP::createPassword( KU::KUser *user, const TQString &password )
hash[6], hash[7], hash[8], hash[9], hash[10], hash[11], hash[6], hash[7], hash[8], hash[9], hash[10], hash[11],
hash[12], hash[13], hash[14], hash[15]); hash[12], hash[13], hash[14], hash[15]);
user->setLMPwd( TQString::tqfromLatin1( (const char*) &hex, 32 ) ); user->setLMPwd( TQString::fromLatin1( (const char*) &hex, 32 ) );
} else { } else {
user->setLMPwd( "" ); user->setLMPwd( "" );
} }
@ -372,7 +372,7 @@ void KUserLDAP::getLDIF( KU::KUser *user, bool mod )
cn = mCfg->ldapcnfullname() ? user->getFullName() : user->getName(); cn = mCfg->ldapcnfullname() ? user->getFullName() : user->getName();
if ( cn.isEmpty() ) cn = user->getName(); if ( cn.isEmpty() ) cn = user->getName();
gecos = TQString::tqfromLatin1("%1,%2,%3,%4") gecos = TQString::fromLatin1("%1,%2,%3,%4")
.tqarg(user->getFullName()) .tqarg(user->getFullName())
.tqarg(user->getOffice1()) .tqarg(user->getOffice1())
.tqarg(user->getOffice2()) .tqarg(user->getOffice2())

@ -88,7 +88,7 @@ bool KUserSystem::loadpwd()
tmpKU->setHomeDir(TQString::fromLocal8Bit(p->pw_dir)); tmpKU->setHomeDir(TQString::fromLocal8Bit(p->pw_dir));
tmpKU->setShell(TQString::fromLocal8Bit(p->pw_shell)); tmpKU->setShell(TQString::fromLocal8Bit(p->pw_shell));
#if defined(__FreeBSD__) || defined(__bsdi__) #if defined(__FreeBSD__) || defined(__bsdi__)
tmpKU->setClass(TQString::tqfromLatin1(p->pw_class)); tmpKU->setClass(TQString::fromLatin1(p->pw_class));
tmpKU->setLastChange(p->pw_change); tmpKU->setLastChange(p->pw_change);
tmpKU->setExpire(p->pw_expire); tmpKU->setExpire(p->pw_expire);
#endif #endif

@ -264,7 +264,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>40</width> <width>40</width>
<height>20</height> <height>20</height>
@ -283,7 +283,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>16</height> <height>16</height>

@ -253,7 +253,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>40</height> <height>40</height>

@ -73,7 +73,7 @@ void mainWidget::setupActions()
KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(properties()), actionCollection()); KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(properties()), actionCollection());
#define BarIconC(x) BarIcon(TQString::tqfromLatin1(x)) #define BarIconC(x) BarIcon(TQString::fromLatin1(x))
(void) new KAction(i18n("&Add..."), TQIconSet(BarIconC("add_user")), 0, TQT_TQOBJECT(md), (void) new KAction(i18n("&Add..."), TQIconSet(BarIconC("add_user")), 0, TQT_TQOBJECT(md),
TQT_SLOT(useradd()), actionCollection(), "add_user"); TQT_SLOT(useradd()), actionCollection(), "add_user");

@ -37,7 +37,7 @@
bool backup(const TQString & name) bool backup(const TQString & name)
{ {
TQString tmp = name + TQString::tqfromLatin1(KU_BACKUP_EXT); TQString tmp = name + TQString::fromLatin1(KU_BACKUP_EXT);
TQFile::remove( tmp ); TQFile::remove( tmp );
if (copyFile(TQFile::encodeName(name), TQFile::encodeName(tmp)) == -1) if (copyFile(TQFile::encodeName(name), TQFile::encodeName(tmp)) == -1)

@ -206,7 +206,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>40</height> <height>40</height>

@ -43,8 +43,8 @@ void propdlg::addRow(TQWidget *parent, TQGridLayout *tqlayout, int row,
bool two_column, bool nochange) bool two_column, bool nochange)
{ {
TQLabel *lab = new TQLabel(widget, label, parent); TQLabel *lab = new TQLabel(widget, label, parent);
lab->setMinimumSize(lab->tqsizeHint()); lab->setMinimumSize(lab->sizeHint());
widget->setMinimumSize(widget->tqsizeHint()); widget->setMinimumSize(widget->sizeHint());
tqlayout->addWidget(lab, row, 0); tqlayout->addWidget(lab, row, 0);
if (!what.isEmpty()) if (!what.isEmpty())
{ {

@ -32,14 +32,14 @@ pwddlg::pwddlg( TQWidget* parent, const char* name )
TQLabel* lb1 = new TQLabel(page, "lb1"); TQLabel* lb1 = new TQLabel(page, "lb1");
lb1->setText(i18n("Password:")); lb1->setText(i18n("Password:"));
lb1->setMinimumSize(lb1->tqsizeHint()); lb1->setMinimumSize(lb1->sizeHint());
lb1->tqsetAlignment(AlignRight|AlignVCenter); lb1->setAlignment(AlignRight|AlignVCenter);
lepw1 = new KLineEdit(page, "LineEdit_1"); lepw1 = new KLineEdit(page, "LineEdit_1");
// ensure it fits at least 12 characters // ensure it fits at least 12 characters
lepw1->setText( "XXXXXXXXXXXX" ); lepw1->setText( "XXXXXXXXXXXX" );
lepw1->setMinimumSize(lepw1->tqsizeHint()); lepw1->setMinimumSize(lepw1->sizeHint());
// clear text // clear text
lepw1->clear(); lepw1->clear();
@ -48,14 +48,14 @@ pwddlg::pwddlg( TQWidget* parent, const char* name )
TQLabel* lb2 = new TQLabel(page, "lb2"); TQLabel* lb2 = new TQLabel(page, "lb2");
lb2->setText(i18n("Verify:")); lb2->setText(i18n("Verify:"));
lb2->setMinimumSize(lb2->tqsizeHint()); lb2->setMinimumSize(lb2->sizeHint());
lb2->tqsetAlignment(AlignRight|AlignVCenter); lb2->setAlignment(AlignRight|AlignVCenter);
lepw2 = new KLineEdit(page, "LineEdit_2"); lepw2 = new KLineEdit(page, "LineEdit_2");
// ensure it fits at least 12 characters // ensure it fits at least 12 characters
lepw2->setText( "XXXXXXXXXXXX" ); lepw2->setText( "XXXXXXXXXXXX" );
lepw2->setMinimumSize(lepw2->tqsizeHint()); lepw2->setMinimumSize(lepw2->sizeHint());
// clear text // clear text
lepw2->clear(); lepw2->clear();

@ -74,7 +74,7 @@ bool SID::isEmpty() const
void SID::updateSID() void SID::updateSID()
{ {
mSid = mDom + TQString::tqfromLatin1("-") + TQString::number( mRid ); mSid = mDom + TQString::fromLatin1("-") + TQString::number( mRid );
} }
void SID::setSID( const TQString &sid ) void SID::setSID( const TQString &sid )

@ -42,7 +42,7 @@ EditWidget::EditWidget(TQString const label, TQString const text, bool isFile, T
if(isFile) { if(isFile) {
select=new TQPushButton(_("Select..."), this); select=new TQPushButton(_("Select..."), this);
connect(select, TQT_SIGNAL(clicked()), TQT_SLOT(selectFileClicked())); connect(select, TQT_SIGNAL(clicked()), TQT_SLOT(selectFileClicked()));
select->resize(select->tqminimumSizeHint()); select->resize(select->minimumSizeHint());
setStretchFactor(select, 0); setStretchFactor(select, 0);
} else } else
select=0; select=0;
@ -53,29 +53,29 @@ void EditWidget::selectFileClicked()
if(!filename.isEmpty()) if(!filename.isEmpty())
line->setText(filename); line->setText(filename);
} }
TQSize EditWidget::tqsizeHint() const TQSize EditWidget::sizeHint() const
{ {
int w=2*SPACE_MARGIN+lbl->tqsizeHint().width()+SPACE_INSIDE+line->tqsizeHint().width(); int w=2*SPACE_MARGIN+lbl->sizeHint().width()+SPACE_INSIDE+line->sizeHint().width();
int h=lbl->tqsizeHint().height(); int h=lbl->sizeHint().height();
if(h<line->tqsizeHint().height()) if(h<line->sizeHint().height())
h=line->tqsizeHint().height(); h=line->sizeHint().height();
if(select!=0) { if(select!=0) {
w+=SPACE_INSIDE+select->tqsizeHint().width(); w+=SPACE_INSIDE+select->sizeHint().width();
if(h<select->tqsizeHint().height()) if(h<select->sizeHint().height())
h=select->tqsizeHint().height(); h=select->sizeHint().height();
} }
return TQSize(w, h); return TQSize(w, h);
} }
TQSize EditWidget::tqminimumSizeHint() const TQSize EditWidget::minimumSizeHint() const
{ {
int w=2*SPACE_MARGIN+lbl->tqminimumSizeHint().width()+SPACE_INSIDE+line->tqminimumSizeHint().width(); int w=2*SPACE_MARGIN+lbl->minimumSizeHint().width()+SPACE_INSIDE+line->minimumSizeHint().width();
int h=lbl->tqminimumSizeHint().height(); int h=lbl->minimumSizeHint().height();
if(h<line->tqminimumSizeHint().height()) if(h<line->minimumSizeHint().height())
h=line->tqminimumSizeHint().height(); h=line->minimumSizeHint().height();
if(select!=0) { if(select!=0) {
w+=SPACE_INSIDE+select->tqminimumSizeHint().width(); w+=SPACE_INSIDE+select->minimumSizeHint().width();
if(h<select->tqminimumSizeHint().height()) if(h<select->minimumSizeHint().height())
h=select->tqminimumSizeHint().height(); h=select->minimumSizeHint().height();
} }
return TQSize(w, h); return TQSize(w, h);
} }

@ -58,7 +58,7 @@ public:
void cut() { line->cut(); }; void cut() { line->cut(); };
void copy() const { line->copy(); }; void copy() const { line->copy(); };
void paste() { line->paste(); }; void paste() { line->paste(); };
void tqsetAlignment(int flag) { line->tqsetAlignment(flag); }; void setAlignment(int flag) { line->setAlignment(flag); };
int tqalignment() const { return line->tqalignment(); }; int tqalignment() const { return line->tqalignment(); };
void cursorLeft(bool mark, int steps=1) { line->cursorLeft(mark, steps); }; void cursorLeft(bool mark, int steps=1) { line->cursorLeft(mark, steps); };
void cursorRight(bool mark, int steps=1) { line->cursorRight(mark, steps); }; void cursorRight(bool mark, int steps=1) { line->cursorRight(mark, steps); };
@ -72,8 +72,8 @@ public:
bool edited() const { return line->edited(); }; bool edited() const { return line->edited(); };
bool hasMarkedText() const { return line->hasMarkedText(); }; bool hasMarkedText() const { return line->hasMarkedText(); };
TQString markedText() const { return line->markedText(); }; TQString markedText() const { return line->markedText(); };
virtual TQSize tqsizeHint() const; virtual TQSize sizeHint() const;
virtual TQSize tqminimumSizeHint() const; virtual TQSize minimumSizeHint() const;
public slots: public slots:
virtual void setText(const TQString &text) { line->setText(text); }; virtual void setText(const TQString &text) { line->setText(text); };
void selectAll() { line->selectAll(); }; void selectAll() { line->selectAll(); };

@ -62,14 +62,14 @@ Standalone::Standalone(TQWidget *parent, const char *name):TQWidget(parent,name)
TQWhatsThis::add(_cancel, _("This button exits the program without saving your changes.")); TQWhatsThis::add(_cancel, _("This button exits the program without saving your changes."));
connect(_cancel, TQT_SIGNAL(clicked()), this, TQT_SLOT(cancel())); connect(_cancel, TQT_SIGNAL(clicked()), this, TQT_SLOT(cancel()));
_apply->setEnabled(false); _apply->setEnabled(false);
setMinimumWidth(actions->tqsizeHint().width()+10); setMinimumWidth(actions->sizeHint().width()+10);
arrangeWidgets(); arrangeWidgets();
} }
void Standalone::arrangeWidgets() void Standalone::arrangeWidgets()
{ {
m->setGeometry(SPACE_MARGIN, SPACE_MARGIN, width()-2*SPACE_MARGIN, height()-actions->tqsizeHint().height()-SPACE_MARGIN-SPACE_INSIDE); m->setGeometry(SPACE_MARGIN, SPACE_MARGIN, width()-2*SPACE_MARGIN, height()-actions->sizeHint().height()-SPACE_MARGIN-SPACE_INSIDE);
actions->setGeometry(SPACE_MARGIN, height()-actions->tqsizeHint().height()-SPACE_MARGIN, width()-2*SPACE_MARGIN, actions->tqsizeHint().height()); actions->setGeometry(SPACE_MARGIN, height()-actions->sizeHint().height()-SPACE_MARGIN, width()-2*SPACE_MARGIN, actions->sizeHint().height());
} }
void Standalone::resizeEvent(TQResizeEvent *e) void Standalone::resizeEvent(TQResizeEvent *e)

@ -49,7 +49,7 @@ SecPolicyWin::SecPolicyWin(const char *name)
adjustSize(); adjustSize();
// work around KTMainWindow sizing bug. // work around KTMainWindow sizing bug.
resize(tqsizeHint().width(), tqsizeHint().height() + mBar->height() + resize(sizeHint().width(), sizeHint().height() + mBar->height() +
KDialog::marginHint()); KDialog::marginHint());
show(); show();
} }

Loading…
Cancel
Save