Advertisement
Guest User

zavpisplugin.h

a guest
Jul 16th, 2014
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. #ifndef ZAVPIS_H
  2. #define ZAVPIS_H
  3.  
  4. #include<Qt/qinputcontextplugin.h>
  5.  
  6. class ZavpisPlugin: public QInputContextPlugin
  7. {
  8.    
  9. public:
  10.     ZavpisPlugin();
  11.     QInputContext *create(const QString &key);
  12.     QString description(const QString &key);
  13.     QString displayName(const QString &key);
  14.     QStringList keys() const;
  15.     QStringList languages(const QString &key);
  16.  
  17. };
  18.  
  19. #endif // ZAVPIS_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement