/* Copyright (c) 2013, 2014 Montel Laurent This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "knotesakonaditray.h" #include #include #include #include #include #include #include #include KNotesAkonadiTray::KNotesAkonadiTray(Akonadi::ChangeRecorder *recorder, QWidget *parent) : KStatusNotifierItem(parent) { setToolTipTitle( i18n( "KNotes: Sticky notes for KDE" ) ); setToolTipIconByName( QLatin1String("knotes") ); setStatus( KStatusNotifierItem::Active ); setCategory( KStatusNotifierItem::ApplicationStatus ); setStandardActionsEnabled(false); mIcon = KIcon( QLatin1String("knotes") ); //TODO remove it #if 0 connect( kmkernel->folderCollectionMonitor(), SIGNAL(collectionStatisticsChanged(Akonadi::Collection::Id,Akonadi::CollectionStatistics)), SLOT(slotCollectionStatisticsChanged(Akonadi::Collection::Id,Akonadi::CollectionStatistics)) ); #endif connect(recorder, SIGNAL(collectionStatisticsChanged(Akonadi::Collection::Id,Akonadi::CollectionStatistics)), SLOT(slotUpdateSystemTray())); updateNumberOfNotes(); } KNotesAkonadiTray::~KNotesAkonadiTray() { } void KNotesAkonadiTray::slotUpdateSystemTray() { qDebug()<<" void KNotesAkonadiTray::slotUpdateSystemTray()"; updateNumberOfNotes(); } void KNotesAkonadiTray::updateNumberOfNotes() { const int overlaySize = KIconLoader::SizeSmallMedium; const QString countString = QString::number( 1 ); QFont countFont = KGlobalSettings::generalFont(); countFont.setBold(true); // decrease the size of the font for the number of unread messages if the // number doesn't fit into the available space float countFontSize = countFont.pointSizeF(); QFontMetrics qfm( countFont ); const int width = qfm.width( countString ); if ( width > (overlaySize - 2) ) { countFontSize *= float( overlaySize - 2 ) / float( width ); countFont.setPointSizeF( countFontSize ); } // Paint the number in a pixmap QPixmap overlayPixmap( overlaySize, overlaySize ); overlayPixmap.fill( Qt::transparent ); QPainter p( &overlayPixmap ); p.setFont( countFont ); KColorScheme scheme( QPalette::Active, KColorScheme::View ); p.setBrush( Qt::NoBrush ); p.setPen( scheme.foreground( KColorScheme::LinkText ).color() ); p.setOpacity( 1.0 ); p.drawText( overlayPixmap.rect(),Qt::AlignCenter, countString ); p.end(); QPixmap iconPixmap = mIcon.pixmap(overlaySize, overlaySize); QPainter pp(&iconPixmap); pp.drawPixmap(0, 0, overlayPixmap); pp.end(); setIconByPixmap( iconPixmap ); }