summaryrefslogtreecommitdiffstats
path: root/layout/xul/nsISliderListener.idl
blob: 9605782f0dd1cb3260e96ffad9873198bfa36a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "nsISupports.idl"

/**
 * Used for <scale> to listen to slider changes to avoid mutation listeners
 */
[scriptable, uuid(e5b3074e-ee18-4538-83b9-2487d90a2a34)]
interface nsISliderListener : nsISupports
{
  /**
   * Called when the current, minimum or maximum value has been changed to
   * newValue. The which parameter will either be 'curpos', 'minpos' or 'maxpos'.
   * If userChanged is true, then the user changed ths slider, otherwise it
   * was changed via some other means.
   */
  void valueChanged(in AString which, in long newValue, in boolean userChanged);

  /**
   * Called when the user begins or ends dragging the thumb.
   */
  void dragStateChanged(in boolean isDragging);
};