From e17a686fcfab42a71f25e9f0a4c3a395ec41a7b1 Mon Sep 17 00:00:00 2001 From: zautrix Date: Wed, 15 Jun 2005 19:45:57 +0000 Subject: fixxx --- diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp index a653c18..105028a 100644 --- a/korganizer/kofilterview.cpp +++ b/korganizer/kofilterview.cpp @@ -151,6 +151,7 @@ KOCalEditView::KOCalEditView(QWidget* parent, setFrameStyle ( QFrame::Panel | QFrame::Plain ); setLineWidth ( 1 ); setMidLineWidth ( 1 ); + setFocusPolicy(NoFocus); } KOCalEditView::~KOCalEditView() @@ -228,7 +229,7 @@ void KOCalEditView::deleteCal( int id ) KopiCalendarFile * kkf = KOPrefs::instance()->getCalendar( id ); QString name = kkf->mName; QString file = kkf->mFileName; - if ( KMessageBox::warningContinueCancel( this, i18n("The calendar %1 is displaying file %2 Do you want to remove this calendar from KO/Pi? (The file is not removed, of course!)").arg(name).arg(file) ) != KMessageBox::Continue ) return; + if ( KMessageBox::warningContinueCancel( this, i18n("The calendar%1is displaying file%2Do you want to removethis calendar from KO/Pi?(The file is not removed!)").arg(name).arg(file) ) != KMessageBox::Continue ) return; if ( kkf->isStandard ) selectStdCal( 1, true ); emit removeCalendar ( id ); @@ -241,14 +242,14 @@ void KOCalEditView::infoCal( int id ) QString name = KOPrefs::instance()->getCalendar( id )->mName; QString file = KOPrefs::instance()->getCalendar( id )->mFileName; if ( KOPrefs::instance()->getCalendar( id )->mErrorOnLoad ) { - if ( KMessageBox::Yes == KMessageBox::questionYesNo( this, i18n("The calendar %1 is not loaded! Loading of file %2 failed! Try again to load the calendar?").arg(name).arg(file) ) ) { + if ( KMessageBox::Yes == KMessageBox::questionYesNo( this, i18n("The calendar %1 is not loaded! Loading of file %2 failed! Try again to load the calendar?").arg(name).arg(file) ) ) { emit calendarAdded( id ); emit needsUpdate(); QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); } } else - KMessageBox::information( this, i18n("The calendar %1 is displaying file %2").arg(name).arg(file) ); + KMessageBox::information( this, i18n("The calendar %1is displaying file%2").arg(name).arg(file) ); } void KOCalEditView::readConfig() { @@ -266,12 +267,14 @@ void KOCalEditView::readConfig() mainLayout->setMargin( 3); mainLayout->setSpacing( 2); QPushButton * addBut = new QPushButton ( mw ); + addBut->setFocusPolicy(NoFocus); mainLayout->addWidget( addBut,0,0 ); addBut->setPixmap ( SmallIcon("plus")); connect(addBut,SIGNAL(clicked()),SLOT(addCal())); addBut->setMaximumWidth( addBut->sizeHint().height() ); addBut = new QPushButton ( mw ); + addBut->setFocusPolicy(NoFocus); mainLayout->addWidget( addBut,0,1 ); addBut->setPixmap ( SmallIcon("eye")); connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); @@ -283,12 +286,14 @@ void KOCalEditView::readConfig() mainLayout->addWidget( lab,0,3 ); lab->setFixedWidth( 6 ); addBut = new QPushButton ( mw ); + addBut->setFocusPolicy(NoFocus); mainLayout->addWidget( addBut,0,4 ); addBut->setPixmap ( SmallIcon("bell")); connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); addBut->setMaximumWidth( addBut->sizeHint().height() ); addBut = new QPushButton ( mw ); + addBut->setFocusPolicy(NoFocus); mainLayout->addWidget( addBut,0,5 ); addBut->setPixmap ( SmallIcon("pencil")); connect(addBut,SIGNAL(clicked()),SLOT(disableRO())); diff --git a/korganizer/kofilterview.h b/korganizer/kofilterview.h index e2ebdd4..3ab316f 100644 --- a/korganizer/kofilterview.h +++ b/korganizer/kofilterview.h @@ -45,6 +45,7 @@ class KOCalButton : public QPushButton connect( this, SIGNAL( clicked() ), SLOT( bottonClicked() )); mNumber = -1; + setFocusPolicy(NoFocus); } void setNum ( int num ) {mNumber = num; } signals: @@ -69,6 +70,7 @@ class KOCalCheckButton : public QCheckBox connect( this, SIGNAL( toggled ( bool ) ), SLOT( bottonClicked( bool ) )); mNumber = -1; + setFocusPolicy(NoFocus); //setMaximumWidth( 10 ); } -- cgit v0.9.0.2