2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-01-14 10:21:58 -08:00
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used for <scale> to listen to slider changes to avoid mutation listeners
|
|
|
|
*/
|
2009-05-20 22:27:01 -07:00
|
|
|
[scriptable, uuid(e5b3074e-ee18-4538-83b9-2487d90a2a34)]
|
2009-01-14 10:21:58 -08:00
|
|
|
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);
|
2009-05-20 22:27:01 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the user begins or ends dragging the thumb.
|
|
|
|
*/
|
|
|
|
void dragStateChanged(in boolean isDragging);
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|