/******************************************************************************* * gui/common/Emoticons.h * * * * Copyright (C) 2010, Retroshare Team * * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU Affero General Public License as * * published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. * * * * You should have received a copy of the GNU Affero General Public License * * along with this program. If not, see . * * * *******************************************************************************/ #ifndef _EMOTICONS_H #define _EMOTICONS_H #include class QWidget; class QString; class Emoticons { public: static void load(); static void showSmileyWidget(QWidget *parent, QWidget *button, const char *slotAddMethod, bool above); static void showStickerWidget(QWidget *parent, QWidget *button, const char *slotAddMethod, bool above); static QString importedStickerPath(); private: static void loadToolTips(QWidget *container); static void loadSmiley(); static void refreshStickerTabs(QVector& stickerTabs, QString foldername); static void refreshStickerTabs(QVector& stickerTabs); }; #endif