javauis/eswt_qt/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Display.java
changeset 48 e0d6e9bd3ca7
parent 47 f40128debb5d
child 61 bf7ee68962da
equal deleted inserted replaced
47:f40128debb5d 48:e0d6e9bd3ca7
   647 	    super.destroy();
   647 	    super.destroy();
   648     }
   648     }
   649     if(notifyExit) {
   649     if(notifyExit) {
   650         // Notify MIDP runtime to watch that the MIDlet exits. 
   650         // Notify MIDP runtime to watch that the MIDlet exits. 
   651         // For other runtime environments this does nothing. 
   651         // For other runtime environments this does nothing. 
   652         ExitNotificationWrapper.notifyExit();
   652         ExitNotificationWrapper.uiDisposed();
   653     }
   653     }
   654 }
   654 }
   655 
   655 
   656 void destroyDisplay () {
   656 void destroyDisplay () {
   657     OS.QObject_removeEventFilter(handle, eventFilterHandle);
   657     OS.QObject_removeEventFilter(handle, eventFilterHandle);
  1253     case OS.QSWTEVENT_WIDGETMOVED:
  1253     case OS.QSWTEVENT_WIDGETMOVED:
  1254         widget.qt_swt_event_widgetMoved(widgetHandle);
  1254         widget.qt_swt_event_widgetMoved(widgetHandle);
  1255         return false;
  1255         return false;
  1256     case OS.QSWTEVENT_BUFFERFLUSH:
  1256     case OS.QSWTEVENT_BUFFERFLUSH:
  1257         widget.qt_swt_event_bufferFlush();
  1257         widget.qt_swt_event_bufferFlush();
       
  1258         return false;
       
  1259     case OS.QSWTEVENT_SYMBIAN_WINDOW_FULLY_VISIBLE:
       
  1260     case OS.QSWTEVENT_SYMBIAN_WINDOW_PARTIALLY_VISIBLE:
       
  1261         widget.qt_swt_event_symbianWindowShow();
       
  1262         return false;
       
  1263     case OS.QSWTEVENT_SYMBIAN_WINDOW_NOT_VISIBLE:
       
  1264         widget.qt_swt_event_symbianWindowHide();
  1258         return false;
  1265         return false;
  1259     default:
  1266     default:
  1260         return false;
  1267         return false;
  1261     }
  1268     }
  1262 }
  1269 }