From kopete-devel Wed Aug 29 09:16:52 2007 From: Bruno Virlet Date: Wed, 29 Aug 2007 09:16:52 +0000 To: kopete-devel Subject: [kopete-devel] [Bug 146541] "use mouse navigation instead of Message-Id: <20070829091652.3497.qmail () ktown ! kde ! org> X-MARC-Message: https://marc.info/?l=kopete-devel&m=118837902619181 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=146541 ------- Additional Comments From bruno.virlet gmail com 2007-08-29 11:16 ------- SVN commit 706035 by bvirlet: Remove the option because this was removed by the commits against smooth scrolling and this is not standard behavior. https://bugzilla.novell.com/show_bug.cgi?id=304786 CCBUG: 146541 M +2 -7 kopete/config/behavior/behaviorconfig.cpp M +0 -15 kopete/config/behavior/behaviorconfig_general.ui M +2 -10 libkopete/kopeteprefs.cpp M +0 -3 libkopete/kopeteprefs.h --- branches/KDE/3.5/kdenetwork/kopete/kopete/config/behavior/behaviorconfig.cpp #706034:706035 @ -89,10 +89,7 @ this, SLOT(slotSettingsChanged(bool))); connect(mPrfsGeneral->mAutoConnect, SIGNAL(toggled(bool)), this, SLOT(slotSettingsChanged(bool))); - connect(mPrfsGeneral->mMouseNavigation, SIGNAL(toggled(bool)), - this, SLOT(slotSettingsChanged(bool))); - // "Events" TAB ============================================================ connect(mPrfsEvents->mQueueOnlyHighlightedMessagesInGroupChatsChk, SIGNAL(toggled(bool)), this, SLOT(slotSettingsChanged(bool))); @ -171,7 +168,6 @ p->setUseStack(mPrfsGeneral->mUseStackChk->isChecked()); p->setQueueUnreadMessages(mPrfsGeneral->mQueueUnreadMessagesChk->isChecked()); p->setAutoConnect(mPrfsGeneral->mAutoConnect->isChecked()); - p->setContactListMouseNavigation(mPrfsGeneral->mMouseNavigation->isChecked()); // "Events" TAB ============================================================ p->setQueueOnlyHighlightedMessagesInGroupChats(mPrfsEvents->mQueueOnlyHighlightedMessagesInGroupChatsChk->isChecked()); @ -197,7 +193,7 @ config->writeEntry("UseAutoAway", mAwayConfigUI->mUseAutoAway->isChecked() ); config->writeEntry("UseAutoAwayMessage", mAwayConfigUI->mDisplayCustomAwayMessage->isChecked() ); config->sync(); - + // Save the auto away message, if defined if( mAwayConfigUI->mDisplayCustomAwayMessage->isChecked() ) { @ -210,7 +206,7 @ p->setSpellCheck(mPrfsChat->cb_SpellCheckChk->isChecked()); p->setInterfacePreference( viewPlugins[mPrfsChat->viewPlugin->currentItem()]->pluginName() ); p->setChatWindowPolicy(mPrfsChat->cmbChatGroupingPolicy->currentItem()); - + p->setChatViewBufferSize(mPrfsChat->mChatViewBufferSize->value()); p->setTruncateContactNames(mPrfsChat->truncateContactNameEnabled->isChecked()); p->setMaxContactNameLength(mPrfsChat->mMaxContactNameLength->value()); @ -234,7 +230,6 @ mPrfsGeneral->mUseStackChk->setChecked( p->useStack() ); mPrfsGeneral->mQueueUnreadMessagesChk->setChecked ( p->queueUnreadMessages() ); mPrfsGeneral->mAutoConnect->setChecked( p->autoConnect() ); - mPrfsGeneral->mMouseNavigation->setChecked( p->contactListMouseNavigation() ); // "Events" TAB ============================================================ mPrfsEvents->mQueueOnlyHighlightedMessagesInGroupChatsChk->setChecked ( p->queueOnlyHighlightedMessagesInGroupChats() ); --- branches/KDE/3.5/kdenetwork/kopete/kopete/config/behavior/behaviorconfig_general.ui #706034:706035 @ -160,20 +160,6 @ When starting Kopete all your accounts will be connected automatically. Note: You can exclude accounts individually in their properties. - - - mMouseNavigation - - - Use mouse &navigation instead of scroll-bars - - - Use mouse navigation instead of scroll-bars for contact list - - - This navigation scheme is designed to remove the vertical scrollbar. Instead of dragging the scrollbar you just move your mouse on the list vertically: as you move your mouse, the list will move in the opposite direction and you can reach your target contact. Each contact will be under the mouse cursor at a certain point. - - @ -220,7 +206,6 @ mStartDockedChk mUseQueueChk mAutoConnect - mMouseNavigation --- branches/KDE/3.5/kdenetwork/kopete/libkopete/kopeteprefs.cpp #706034:706035 @ -147,7 +147,6 @ mContactListAnimation = config->readBoolEntry("AnimateChanges", true); mContactListFading = config->readBoolEntry("FadeItems", true); mContactListFolding = config->readBoolEntry("FoldItems", true); - mContactListMouseNavigation = config->readBoolEntry("MouseNavigation", false ); mContactListAutoHide = config->readBoolEntry("AutoHide", false); mContactListAutoHideTimeout = config->readUnsignedNumEntry("AutoHideTimeout", 30); @ -239,7 +238,6 @ config->writeEntry("AnimateChanges", mContactListAnimation); config->writeEntry("FadeItems", mContactListFading); config->writeEntry("FoldItems", mContactListFolding); - config->writeEntry("MouseNavigation", mContactListMouseNavigation ); config->writeEntry("AutoHide", mContactListAutoHide); config->writeEntry("AutoHideTimeout", mContactListAutoHideTimeout); @ -401,7 +399,7 @ mBalloonNotifyIgnoreClosesChatView = value; } -void KopetePrefs::setBalloonClose( bool value ) +void KopetePrefs::setBalloonClose( bool value ) { mBalloonClose = value; } @ -425,7 +423,7 @ void KopetePrefs::_setStylePath(const QString &stylePath) { mStylePath = stylePath; - + // Fallback to default style if the directory doesn't exist // or the value is empty. if( !QFile::exists(stylePath) || stylePath.isEmpty() ) @ -634,12 +632,6 @ mContactListFolding = n; } -void KopetePrefs::setContactListMouseNavigation( bool n ) -{ - if( n != mContactListMouseNavigation ) mContactListAppearanceChanged = true; - mContactListMouseNavigation = n; -} - void KopetePrefs::setContactListAutoHide( bool n ) { if( n != mContactListAutoHide ) mContactListAppearanceChanged = true; --- branches/KDE/3.5/kdenetwork/kopete/libkopete/kopeteprefs.h #706034:706035 @ -122,7 +122,6 @ bool contactListAnimation() const { return mContactListAnimation; } bool contactListFading() const { return mContactListFading; } bool contactListFolding() const { return mContactListFolding; } - bool contactListMouseNavigation() const { return mContactListMouseNavigation; } bool contactListAutoHide() const { return mContactListAutoHide; } unsigned int contactListAutoHideTimeout() const { return mContactListAutoHideTimeout; } @ -186,7 +185,6 @ void setContactListAnimation( bool ); void setContactListFading( bool ); void setContactListFolding( bool ); - void setContactListMouseNavigation( bool ); void setContactListAutoHide( bool ); void setContactListAutoHideTimeout( unsigned int ); void setReconnectOnDisconnect( bool newSetting ); @ -306,7 +304,6 @ bool mContactListAnimation; bool mContactListFading; bool mContactListFolding; - bool mContactListMouseNavigation; bool mContactListAutoHide; unsigned int mContactListAutoHideTimeout; _______________________________________________ kopete-devel mailing list kopete-devel@kde.org https://mail.kde.org/mailman/listinfo/kopete-devel