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

« back to all changes in this revision

Viewing changes to src/plugins/include/psiplugin.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:
69
69
 
70
70
        /**
71
71
         * \brief Short name for the plugin
72
 
         * This is the short name of the plugin, used for options structures. 
 
72
         * This is the short name of the plugin, used for options structures.
73
73
         * It must consist of only alphanumerics (no spaces or punctuation).
74
74
         * \return Short plugin name
75
75
        */
76
76
        virtual QString shortName() const = 0;
77
 
        
 
77
 
78
78
        /**
79
79
         * \brief Plugin version
80
80
         * Free-form string of the plugin version. Human readable
110
110
 
111
111
        virtual void applyOptions() = 0;
112
112
        virtual void restoreOptions() = 0;
 
113
 
 
114
        virtual QPixmap icon() const = 0;
113
115
};
114
116
 
115
 
Q_DECLARE_INTERFACE(PsiPlugin, "org.psi-im.PsiPlugin/0.3");
 
117
Q_DECLARE_INTERFACE(PsiPlugin, "org.psi-im.PsiPlugin/0.4");
116
118
 
117
119
#endif