author | zautrix <zautrix> | 2005-01-27 16:07:54 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-27 16:07:54 (UTC) |
commit | 5daf7a5bcdd729862de5bbe95ab2c88ed6de2b78 (patch) (side-by-side diff) | |
tree | cceda0b0293ef91a0594e7fe161aa478471ad2b3 /kaddressbook | |
parent | e6d65aa64d4f9f4042256014c8efee0e9f8cc347 (diff) | |
download | kdepimpi-5daf7a5bcdd729862de5bbe95ab2c88ed6de2b78.zip kdepimpi-5daf7a5bcdd729862de5bbe95ab2c88ed6de2b78.tar.gz kdepimpi-5daf7a5bcdd729862de5bbe95ab2c88ed6de2b78.tar.bz2 |
fix
-rw-r--r-- | kaddressbook/jumpbuttonbar.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/kaddressbook/jumpbuttonbar.cpp b/kaddressbook/jumpbuttonbar.cpp index b12d9e7..e89ec52 100644 --- a/kaddressbook/jumpbuttonbar.cpp +++ b/kaddressbook/jumpbuttonbar.cpp @@ -101,105 +101,106 @@ void JumpButtonBar::letterClicked() QString character = button->character(); if ( character.length() == 2 ) character = character.left(1) +"-"+character.right(1); if ( !character.isNull() ) emit jumpToLetter( character ); //qDebug("emit *%s* ",character.latin1()); } void JumpButtonBar::recreateButtons() { // the easiest way to remove all buttons ;) //mButtons.setAutoDelete( true ); //mButtons.clear(); //mButtons.setAutoDelete( false ); mCharacters.clear(); QString character; KABC::AddressBook *ab = mCore->addressBook(); KABC::AddressBook::Iterator it; KABC::Field *field = mCore->currentSearchField(); if ( field ) { setEnabled( true ); } else { setEnabled( false ); return; } mCharacters.append( "*"); for ( it = ab->begin(); it != ab->end(); ++it ) { if ( !field->value( *it ).isEmpty() ) character = field->value( *it )[ 0 ].lower(); if ( character != "!" ) if ( !character.isEmpty() && !mCharacters.contains( character ) ) mCharacters.append( character ); } if ( mCharacters.count() == 0 ) { setEnabled( false ); return; } int maxRows = mCharacters.count() / 2; // we use 2 columns if ( mCharacters.count() % 2 ) maxRows++; int fixwid = 20; sortListLocaleAware( mCharacters ); bool skip2 = false; int skipcount = 0; int maxHei = 25; - if ( QApplication::desktop()->width() < 480 && mCharacters.count() > 13) { - skipcount = mCharacters.count()-13; - maxHei = (QApplication::desktop()->height()-65)/13; + int roW = 15;//13 is ok + if ( QApplication::desktop()->width() < 480 && mCharacters.count() > roW ) { + skipcount = mCharacters.count()-roW ; + maxHei = (QApplication::desktop()->height()-65)/roW ; } else { fixwid = 30; - if ( mCharacters.count() > 20 ) - skipcount = mCharacters.count()- 20; - maxHei = (QApplication::desktop()->height()-120)/(mCharacters.count()-skipcount); + if ( mCharacters.count() > 16 ) + skipcount = mCharacters.count()- 16; + maxHei = (QApplication::desktop()->height()-120)/(16); } maxRows = 28; bool skipcurrent = false; bool state = isUpdatesEnabled(); setUpdatesEnabled( false ); //qDebug("cc %d ",mCharacters.count() ); JumpButton *button = 0; int row = 0, col = 0; JumpButton* cur = mButtons.first(); for ( uint i = 0; i < mCharacters.count(); ++i ) { if ( skipcount > 0 && skipcurrent ) { --skipcount; if ( button ) { button->setCharacter( button->character() + mCharacters[ i ]); } } else { if ( cur ) { button = cur ; cur = mButtons.next(); button->setCharacter(mCharacters[ i ]); } else { button = new JumpButton( mCharacters[ i ].upper(), this, mCharacters[ i ] ); button->setFixedWidth( fixwid ); mButtons.append( button ); connect( button, SIGNAL( clicked() ), this, SLOT( letterClicked() ) ); mButtonLayout->addWidget( button, row, col ); } button->setMaximumHeight( maxHei ); button->show(); if ( col == maxRows ) { row = 0; col++; } else row++; } if ( i > 0 ) skipcurrent = !skipcurrent; } while ( cur ) { cur->hide(); cur = mButtons.next(); } mButtonLayout->activate(); setUpdatesEnabled( state ); update(); |