equal
deleted
inserted
replaced
425 static QIcon *app_icon; |
425 static QIcon *app_icon; |
426 static bool obey_desktop_settings; |
426 static bool obey_desktop_settings; |
427 static int cursor_flash_time; |
427 static int cursor_flash_time; |
428 static int mouse_double_click_time; |
428 static int mouse_double_click_time; |
429 static int keyboard_input_time; |
429 static int keyboard_input_time; |
|
430 #ifndef QT_NO_WHEELEVENT |
430 static int wheel_scroll_lines; |
431 static int wheel_scroll_lines; |
|
432 #endif |
431 |
433 |
432 static bool animate_ui; |
434 static bool animate_ui; |
433 static bool animate_menu; |
435 static bool animate_menu; |
434 static bool animate_tooltip; |
436 static bool animate_tooltip; |
435 static bool animate_combo; |
437 static bool animate_combo; |
526 static void translateRawTouchEvent(QWidget *widget, |
528 static void translateRawTouchEvent(QWidget *widget, |
527 QTouchEvent::DeviceType deviceType, |
529 QTouchEvent::DeviceType deviceType, |
528 const QList<QTouchEvent::TouchPoint> &touchPoints); |
530 const QList<QTouchEvent::TouchPoint> &touchPoints); |
529 |
531 |
530 #if defined(Q_WS_WIN) |
532 #if defined(Q_WS_WIN) |
|
533 static bool HasTouchSupport; |
531 static PtrRegisterTouchWindow RegisterTouchWindow; |
534 static PtrRegisterTouchWindow RegisterTouchWindow; |
532 static PtrGetTouchInputInfo GetTouchInputInfo; |
535 static PtrGetTouchInputInfo GetTouchInputInfo; |
533 static PtrCloseTouchInputHandle CloseTouchInputHandle; |
536 static PtrCloseTouchInputHandle CloseTouchInputHandle; |
534 |
537 |
535 QHash<DWORD, int> touchInputIDToTouchPointID; |
538 QHash<DWORD, int> touchInputIDToTouchPointID; |