~ubuntu-branches/debian/stretch/psi-plus/stretch

« back to all changes in this revision

Viewing changes to src/plugins/generic/gmailserviceplugin/gmailserviceplugin.h

  • Committer: Package Import Robot
  • Author(s): Boris Pek
  • Date: 2013-10-23 02:42:20 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20131023024220-bk2hyoenqkwfhpgw
Tags: 0.16.242-1
* New upstream release:
  fixed the problem of initialization of private conversation when both
  sides use libotr 4.0.x. (Closes: #724880)
* Update debian/watch: sources were moved.
* Delete psi-plus-content-downloader package and update all related files.
  This plugin is in psi-plus-plugins package now.
* Update debian/control:
  - remove all currently unneeded Replaces and Breaks fields
  - add build dependency on libidn11-dev
* Update debian/rules: simplify get-orig-source section.
* Update debian/copyright:
  - update Source field due to changes in sources location
  - remove copyright holders whose code was deleted from source tree
    (bundled libidn library was removed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
 
59
59
#define POPUP_OPTION "Gmail Service Plugin"
60
60
 
61
 
#define PLUGIN_VERSION "0.7.4"
 
61
#define PLUGIN_VERSION "0.7.5"
62
62
 
63
63
 
64
64
class GmailNotifyPlugin : public QObject, public PsiPlugin, public AccountInfoAccessor,
67
67
        public ToolbarIconAccessor, public EventCreator, public SoundAccessor, public MenuAccessor
68
68
{
69
69
        Q_OBJECT
 
70
#ifdef HAVE_QT5
 
71
        Q_PLUGIN_METADATA(IID "com.psi-plus.GmailNotifyPlugin")
 
72
#endif
70
73
        Q_INTERFACES(PsiPlugin StanzaFilter StanzaSender /*EventFilter*/ OptionAccessor PluginInfoProvider
71
74
                     AccountInfoAccessor PopupAccessor PsiAccountController IconFactoryAccessor
72
75
                     ToolbarIconAccessor EventCreator SoundAccessor MenuAccessor)
100
103
        virtual QAction* getAccountAction(QObject* /*parent*/, int /*account*/) { return 0; }
101
104
 
102
105
        virtual QString pluginInfo();
 
106
        virtual QPixmap icon() const;
103
107
 
104
108
private slots:
105
109
        void updateSharedStatus(AccountSettings* as);