2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:30:37 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-08-19 22:16:23 +00:00
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1999-08-19 22:16:23 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-08-19 22:16:23 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 14:30:37 +00:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-28 20:14:13 +00:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 14:30:37 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 14:30:37 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-08-19 22:16:23 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Eric Vaughan
|
|
|
|
// Netscape Communications
|
|
|
|
//
|
|
|
|
// See documentation in associated header file
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "nsRepeatService.h"
|
2002-09-07 05:38:16 +00:00
|
|
|
#include "nsIServiceManager.h"
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2007-10-01 23:20:37 +00:00
|
|
|
#ifdef XP_MACOSX
|
2000-06-07 02:06:53 +00:00
|
|
|
#define INITAL_REPEAT_DELAY 250
|
2002-08-04 05:09:36 +00:00
|
|
|
#define REPEAT_DELAY 25
|
2000-06-07 02:06:53 +00:00
|
|
|
#else
|
1999-08-19 22:16:23 +00:00
|
|
|
#define INITAL_REPEAT_DELAY 250
|
|
|
|
#define REPEAT_DELAY 50
|
2000-06-07 02:06:53 +00:00
|
|
|
#endif
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-11-08 03:20:22 +00:00
|
|
|
nsRepeatService* nsRepeatService::gInstance = nsnull;
|
1999-08-19 22:16:23 +00:00
|
|
|
|
|
|
|
nsRepeatService::nsRepeatService()
|
2008-02-15 02:04:34 +00:00
|
|
|
: mCallback(nsnull), mCallbackData(nsnull)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRepeatService::~nsRepeatService()
|
|
|
|
{
|
2008-02-15 02:04:34 +00:00
|
|
|
NS_ASSERTION(!mCallback && !mCallbackData, "Callback was not removed before shutdown");
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsRepeatService*
|
|
|
|
nsRepeatService::GetInstance()
|
|
|
|
{
|
2000-11-08 03:20:22 +00:00
|
|
|
if (!gInstance) {
|
|
|
|
gInstance = new nsRepeatService();
|
|
|
|
NS_IF_ADDREF(gInstance);
|
|
|
|
}
|
|
|
|
return gInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*static*/ void
|
|
|
|
nsRepeatService::Shutdown()
|
|
|
|
{
|
|
|
|
NS_IF_RELEASE(gInstance);
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
2008-02-15 02:04:34 +00:00
|
|
|
void nsRepeatService::Start(Callback aCallback, void* aCallbackData)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2000-01-19 07:40:18 +00:00
|
|
|
NS_PRECONDITION(aCallback != nsnull, "null ptr");
|
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
mCallback = aCallback;
|
2008-02-15 02:04:34 +00:00
|
|
|
mCallbackData = aCallbackData;
|
2000-05-17 02:49:35 +00:00
|
|
|
nsresult rv;
|
2000-09-13 23:57:52 +00:00
|
|
|
mRepeatTimer = do_CreateInstance("@mozilla.org/timer;1", &rv);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2008-02-15 02:04:34 +00:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
2002-09-07 05:38:16 +00:00
|
|
|
mRepeatTimer->InitWithCallback(this, INITAL_REPEAT_DELAY, nsITimer::TYPE_ONE_SHOT);
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-15 02:04:34 +00:00
|
|
|
void nsRepeatService::Stop(Callback aCallback, void* aCallbackData)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2008-02-15 02:04:34 +00:00
|
|
|
if (mCallback != aCallback || mCallbackData != aCallbackData)
|
|
|
|
return;
|
|
|
|
|
2002-08-03 19:51:51 +00:00
|
|
|
//printf("Stopping repeat timer\n");
|
1999-08-19 22:16:23 +00:00
|
|
|
if (mRepeatTimer) {
|
|
|
|
mRepeatTimer->Cancel();
|
|
|
|
mRepeatTimer = nsnull;
|
|
|
|
}
|
2008-02-15 02:04:34 +00:00
|
|
|
mCallback = nsnull;
|
|
|
|
mCallbackData = nsnull;
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
2002-09-07 05:38:16 +00:00
|
|
|
NS_IMETHODIMP nsRepeatService::Notify(nsITimer *timer)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
1) implememted box reflow coelescing.
2) implemented gfx scrollbars for list boxes
3) fixed progess meter to be an animated gif
4) fixed bugs 23521, 24721, 19114, 20546, 24385, 24457, 23156, 20226, 22543
-r hyatt, troy, rod
2000-02-09 22:02:40 +00:00
|
|
|
// do callback
|
2000-01-19 07:40:18 +00:00
|
|
|
if (mCallback)
|
2008-02-15 02:04:34 +00:00
|
|
|
mCallback(mCallbackData);
|
1) implememted box reflow coelescing.
2) implemented gfx scrollbars for list boxes
3) fixed progess meter to be an animated gif
4) fixed bugs 23521, 24721, 19114, 20546, 24385, 24457, 23156, 20226, 22543
-r hyatt, troy, rod
2000-02-09 22:02:40 +00:00
|
|
|
|
|
|
|
// start timer again.
|
2002-08-03 19:51:51 +00:00
|
|
|
if (mRepeatTimer) {
|
2008-02-15 02:04:34 +00:00
|
|
|
mRepeatTimer->InitWithCallback(this, REPEAT_DELAY, nsITimer::TYPE_ONE_SHOT);
|
1) implememted box reflow coelescing.
2) implemented gfx scrollbars for list boxes
3) fixed progess meter to be an animated gif
4) fixed bugs 23521, 24721, 19114, 20546, 24385, 24457, 23156, 20226, 22543
-r hyatt, troy, rod
2000-02-09 22:02:40 +00:00
|
|
|
}
|
2002-09-07 05:38:16 +00:00
|
|
|
return NS_OK;
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
2000-03-05 21:26:01 +00:00
|
|
|
NS_IMPL_ISUPPORTS1(nsRepeatService, nsITimerCallback)
|