2012-07-18 20:27:19 -07:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=40: */
|
|
|
|
/* 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/. */
|
|
|
|
|
2013-02-05 01:02:15 -08:00
|
|
|
#ifndef mozilla_dom_voicemail_voicemail_h__
|
|
|
|
#define mozilla_dom_voicemail_voicemail_h__
|
2012-07-18 20:27:19 -07:00
|
|
|
|
2013-09-03 07:38:53 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
2012-07-18 20:27:19 -07:00
|
|
|
#include "nsDOMEventTargetHelper.h"
|
2013-03-06 01:53:19 -08:00
|
|
|
#include "nsIVoicemailProvider.h"
|
2012-07-18 20:27:19 -07:00
|
|
|
|
2013-09-03 07:38:53 -07:00
|
|
|
class JSObject;
|
|
|
|
struct JSContext;
|
|
|
|
|
2013-02-05 01:02:15 -08:00
|
|
|
class nsPIDOMWindow;
|
2012-07-18 20:27:19 -07:00
|
|
|
class nsIDOMMozVoicemailStatus;
|
|
|
|
|
2013-02-05 01:02:15 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2012-07-18 20:27:19 -07:00
|
|
|
|
2013-09-03 07:38:53 -07:00
|
|
|
class Voicemail MOZ_FINAL : public nsDOMEventTargetHelper
|
2012-07-18 20:27:19 -07:00
|
|
|
{
|
2013-03-06 01:53:19 -08:00
|
|
|
/**
|
|
|
|
* Class Voicemail doesn't actually inherit nsIVoicemailListener. Instead, it
|
|
|
|
* owns an nsIVoicemailListener derived instance mListener and passes it to
|
|
|
|
* nsIVoicemailProvider. The onreceived events are first delivered to
|
|
|
|
* mListener and then forwarded to its owner, Voicemail. See also bug 775997
|
|
|
|
* comment #51.
|
|
|
|
*/
|
|
|
|
class Listener;
|
|
|
|
|
2012-07-18 20:27:19 -07:00
|
|
|
public:
|
2013-03-06 01:53:19 -08:00
|
|
|
NS_DECL_NSIVOICEMAILLISTENER
|
2012-07-18 20:27:19 -07:00
|
|
|
|
2013-04-16 14:16:08 -07:00
|
|
|
NS_REALLY_FORWARD_NSIDOMEVENTTARGET(nsDOMEventTargetHelper)
|
2012-07-18 20:27:19 -07:00
|
|
|
|
2013-03-06 01:53:19 -08:00
|
|
|
Voicemail(nsPIDOMWindow* aWindow, nsIVoicemailProvider* aProvider);
|
2013-09-03 07:38:53 -07:00
|
|
|
|
2012-07-18 20:27:19 -07:00
|
|
|
virtual ~Voicemail();
|
|
|
|
|
2013-09-03 07:38:53 -07:00
|
|
|
nsPIDOMWindow*
|
|
|
|
GetParentObject() const
|
|
|
|
{
|
|
|
|
return GetOwner();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual JSObject*
|
|
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
already_AddRefed<nsIDOMMozVoicemailStatus>
|
2013-10-28 18:58:12 -07:00
|
|
|
GetStatus(const Optional<uint32_t>& aServiceId, ErrorResult& aRv) const;
|
2013-09-03 07:38:53 -07:00
|
|
|
|
|
|
|
void
|
2013-10-28 18:58:12 -07:00
|
|
|
GetNumber(const Optional<uint32_t>& aServiceId, nsString& aNumber,
|
|
|
|
ErrorResult& aRv) const;
|
2013-09-03 07:38:53 -07:00
|
|
|
|
|
|
|
void
|
2013-10-28 18:58:12 -07:00
|
|
|
GetDisplayName(const Optional<uint32_t>& aServiceId, nsString& aDisplayName,
|
|
|
|
ErrorResult& aRv) const;
|
2013-09-03 07:38:53 -07:00
|
|
|
|
|
|
|
IMPL_EVENT_HANDLER(statuschanged)
|
|
|
|
|
2012-07-18 20:27:19 -07:00
|
|
|
private:
|
2013-03-06 01:53:19 -08:00
|
|
|
nsCOMPtr<nsIVoicemailProvider> mProvider;
|
|
|
|
nsRefPtr<Listener> mListener;
|
2013-10-28 18:58:12 -07:00
|
|
|
|
|
|
|
bool
|
|
|
|
IsValidServiceId(uint32_t aServiceId) const;
|
|
|
|
|
|
|
|
bool
|
|
|
|
PassedOrDefaultServiceId(const Optional<uint32_t>& aServiceId,
|
|
|
|
uint32_t& aResult) const;
|
2012-07-18 20:27:19 -07:00
|
|
|
};
|
|
|
|
|
2013-02-05 01:02:15 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
nsresult
|
2013-09-03 07:38:53 -07:00
|
|
|
NS_NewVoicemail(nsPIDOMWindow* aWindow,
|
|
|
|
mozilla::dom::Voicemail** aVoicemail);
|
2012-07-18 20:27:19 -07:00
|
|
|
|
2013-02-05 01:02:15 -08:00
|
|
|
#endif // mozilla_dom_voicemail_voicemail_h__
|