mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
104 lines
2.8 KiB
C++
104 lines
2.8 KiB
C++
/*
|
|
* Copyright (C) 2008-2010 Christian Weilbach <dunsens@web.de>
|
|
* Copyright (C) 2010 Ruslan Nigmatullin <euroelessar@ya.ru>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* 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 Library 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.
|
|
*/
|
|
|
|
// Here we avoid loading the header multiple times
|
|
#ifndef incomingmsg_HEADER
|
|
#define incomingmsg_HEADER
|
|
|
|
#include <QtDBus/QDBusConnection>
|
|
|
|
// We need the Plasma Applet headers
|
|
#include <Plasma/Applet>
|
|
#include <Plasma/Svg>
|
|
|
|
#include "ui_widget.h"
|
|
|
|
#include <QGraphicsLinearLayout>
|
|
#include <QDBusObjectPath>
|
|
|
|
namespace Plasma
|
|
{
|
|
class Label;
|
|
}
|
|
|
|
// Define our plasma Applet
|
|
class IncomingMsg : public Plasma::Applet
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
// Basic Create/Destroy
|
|
IncomingMsg(QObject *parent, const QVariantList &args);
|
|
~IncomingMsg();
|
|
void init();
|
|
|
|
protected:
|
|
void createConfigurationInterface(KConfigDialog *parent);
|
|
|
|
void initEvolutionLayout();
|
|
void initKMailLayout();
|
|
void initXChatLayout();
|
|
void initKopeteLayout();
|
|
void initPidginLayout();
|
|
void initQutIMLayout();
|
|
|
|
public slots:
|
|
void configChanged();
|
|
|
|
protected slots:
|
|
void configAccepted();
|
|
|
|
private:
|
|
void clearLayout();
|
|
void initLayout();
|
|
void updateQutIMStatus(bool saveIcon);
|
|
|
|
// text labels
|
|
Plasma::Label *mEvolutionLabel, *mEvolutionIconLabel,
|
|
*mKMailLabel, *mKMailIconLabel, *mXChatLabel,
|
|
*mXChatIconLabel, *mKopeteLabel, *mKopeteIconLabel,
|
|
*mPidginLabel, *mPidginIconLabel, *mQutIMLabel,
|
|
*mQutIMIconLabel, *mErrorLabel;
|
|
|
|
QGraphicsLinearLayout *mLayout, *mEvolutionLayout,
|
|
*mKMailLayout, *mXChatLayout, *mKopeteLayout,
|
|
*mPidginLayout, *mQutIMLayout;
|
|
|
|
bool mShowKMail, mShowXChat, mShowKopete, mShowPidgin, mShowQutIM;
|
|
|
|
QHash<QString, int> mQutIMUnread;
|
|
int mQutIUnreadCount;
|
|
|
|
Ui::incomingmsgConfig ui;
|
|
|
|
private slots:
|
|
void slotNewEvolutionMail();
|
|
void slotNewKMailMail();
|
|
void slotNewPidginIM();
|
|
void slotNewKopeteIM(const QString&);
|
|
void slotNewXChatIM();
|
|
void slotNewQutIM(const QDBusMessage &msg, QString path = QString());
|
|
};
|
|
|
|
// This is the command that links your applet to the .desktop file
|
|
K_EXPORT_PLASMA_APPLET(incomingmsg, IncomingMsg)
|
|
#endif
|
|
|
|
|
|
void verboseLog(QString);
|