1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/base/DOMCursor.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,51 @@ 1.4 +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* vim: set ts=2 et sw=2 tw=80: */ 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this file, 1.8 + * You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +#ifndef mozilla_dom_domcursor_h__ 1.11 +#define mozilla_dom_domcursor_h__ 1.12 + 1.13 +#include "nsIDOMDOMCursor.h" 1.14 +#include "DOMRequest.h" 1.15 +#include "nsCycleCollectionParticipant.h" 1.16 +#include "nsCOMPtr.h" 1.17 +#include "mozilla/Attributes.h" 1.18 + 1.19 +namespace mozilla { 1.20 +namespace dom { 1.21 + 1.22 +class DOMCursor : public DOMRequest 1.23 + , public nsIDOMDOMCursor 1.24 +{ 1.25 +public: 1.26 + NS_DECL_ISUPPORTS_INHERITED 1.27 + NS_DECL_NSIDOMDOMCURSOR 1.28 + NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(DOMCursor, 1.29 + DOMRequest) 1.30 + 1.31 + DOMCursor(nsPIDOMWindow* aWindow, nsICursorContinueCallback *aCallback); 1.32 + 1.33 + virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE; 1.34 + 1.35 + bool Done() const 1.36 + { 1.37 + return mFinished; 1.38 + } 1.39 + virtual void Continue(ErrorResult& aRv); 1.40 + 1.41 + void Reset(); 1.42 + void FireDone(); 1.43 + 1.44 +private: 1.45 + DOMCursor() MOZ_DELETE; 1.46 + 1.47 + nsCOMPtr<nsICursorContinueCallback> mCallback; 1.48 + bool mFinished; 1.49 +}; 1.50 + 1.51 +} // namespace dom 1.52 +} // namespace mozilla 1.53 + 1.54 +#endif /* mozilla_dom_domcursor_h__ */