nsIDOMWheelEvent.idl 567 B

123456789101112131415
  1. /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  4. * You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #include "nsIDOMMouseEvent.idl"
  6. [builtinclass, uuid(d320d075-b29d-4edd-b3a3-3ffd460640de)]
  7. interface nsIDOMWheelEvent : nsIDOMMouseEvent
  8. {
  9. const unsigned long DOM_DELTA_PIXEL = 0x00;
  10. const unsigned long DOM_DELTA_LINE = 0x01;
  11. const unsigned long DOM_DELTA_PAGE = 0x02;
  12. };