myapplication.cpp
上传用户:karlzgj
上传日期:2020-03-01
资源大小:68k
文件大小:1k
源码类别:

TAPI编程

开发平台:

QT

  1. #include "myapplication.h"
  2. #include <qcopchannel_qws.h>
  3. #include <ZKeyDef.h>
  4. //extern MyApplication* app;
  5. MyApplication::MyApplication(int argc,char *argv[]):ZApplication(argc,argv)
  6. {
  7. }
  8. void MyApplication::slotQuickQuit()
  9. {
  10. }
  11. void MyApplication::slotShutdown()
  12. {
  13. }
  14. void MyApplication::slotRaise()
  15. {
  16. qDebug("++++++++++++return3++++++++++");
  17. QCopChannel::send( "myapplication/timer/", "return()" );
  18. }
  19. /*int MyApplication::slotClickAppIcon()
  20. {
  21. qDebug("++++++++++++return1++++++++++");
  22. QCopChannel::send( "PE/mymanager/", "return()" );
  23. }*/
  24. /*void MyApplication::keyPressEvent(QKeyEvent* e)
  25. {
  26. if (e->key() == KEY_MUSIC  ) {
  27. qDebug("test");
  28. QCopChannel::send( "PE/mymanager/", "return()" );
  29. }
  30. }*/
  31. /*bool MyApplication::eventFilter(QObject*e, QEvent*k)
  32. {
  33. if ( k->type() == QEvent::KeyPress) { 
  34. QKeyEvent *o = (QKeyEvent*)k;
  35.   if (o->key() == KEY_MUSIC  ) {
  36. qDebug("test");
  37. QCopChannel::send( "PE/mymanager/", "return()" );
  38.      return true;
  39. }
  40. return ZApplication::eventFilter( e, k); 
  41. }
  42. return ZApplication::eventFilter( e, k);
  43. }*/