gecko/dom/mobileconnection/MobileConnection.h
Birunthan Mohanathas 5e0c32ca86 Bug 1058101 - Flatten dom/mobileconnection/src/ into parent directory. r=mccr8
--HG--
rename : dom/mobileconnection/src/DOMMMIError.cpp => dom/mobileconnection/DOMMMIError.cpp
rename : dom/mobileconnection/src/DOMMMIError.h => dom/mobileconnection/DOMMMIError.h
rename : dom/mobileconnection/src/MobileCellInfo.cpp => dom/mobileconnection/MobileCellInfo.cpp
rename : dom/mobileconnection/src/MobileCellInfo.h => dom/mobileconnection/MobileCellInfo.h
rename : dom/mobileconnection/src/MobileConnection.cpp => dom/mobileconnection/MobileConnection.cpp
rename : dom/mobileconnection/src/MobileConnection.h => dom/mobileconnection/MobileConnection.h
rename : dom/mobileconnection/src/MobileConnectionArray.cpp => dom/mobileconnection/MobileConnectionArray.cpp
rename : dom/mobileconnection/src/MobileConnectionArray.h => dom/mobileconnection/MobileConnectionArray.h
rename : dom/mobileconnection/src/MobileConnectionInfo.cpp => dom/mobileconnection/MobileConnectionInfo.cpp
rename : dom/mobileconnection/src/MobileConnectionInfo.h => dom/mobileconnection/MobileConnectionInfo.h
rename : dom/mobileconnection/src/MobileNetworkInfo.cpp => dom/mobileconnection/MobileNetworkInfo.cpp
rename : dom/mobileconnection/src/MobileNetworkInfo.h => dom/mobileconnection/MobileNetworkInfo.h
2014-08-27 10:13:29 -07:00

186 lines
4.9 KiB
C++

/* 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/. */
#ifndef mozilla_dom_MobileConnection_h
#define mozilla_dom_MobileConnection_h
#include "MobileConnectionInfo.h"
#include "MobileNetworkInfo.h"
#include "mozilla/DOMEventTargetHelper.h"
#include "mozilla/dom/DOMRequest.h"
#include "mozilla/dom/MozMobileConnectionBinding.h"
#include "nsCycleCollectionParticipant.h"
#include "nsIMobileConnectionProvider.h"
#include "nsWeakPtr.h"
namespace mozilla {
namespace dom {
class MobileConnection MOZ_FINAL : public DOMEventTargetHelper,
private nsIMobileConnectionListener
{
/**
* Class MobileConnection doesn't actually expose
* nsIMobileConnectionListener. Instead, it owns an
* nsIMobileConnectionListener derived instance mListener and passes it to
* nsIMobileConnectionProvider. The onreceived events are first delivered to
* mListener and then forwarded to its owner, MobileConnection. See also bug
* 775997 comment #51.
*/
class Listener;
public:
NS_DECL_ISUPPORTS_INHERITED
NS_DECL_NSIMOBILECONNECTIONLISTENER
NS_REALLY_FORWARD_NSIDOMEVENTTARGET(DOMEventTargetHelper)
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(MobileConnection,
DOMEventTargetHelper)
MobileConnection(nsPIDOMWindow *aWindow, uint32_t aClientId);
void
Shutdown();
virtual void
DisconnectFromOwner() MOZ_OVERRIDE;
nsPIDOMWindow*
GetParentObject() const
{
return GetOwner();
}
// WrapperCache
virtual JSObject*
WrapObject(JSContext* aCx) MOZ_OVERRIDE;
// WebIDL interface
void
GetLastKnownNetwork(nsString& aRetVal) const;
void
GetLastKnownHomeNetwork(nsString& aRetVal) const;
MobileConnectionInfo*
Voice() const;
MobileConnectionInfo*
Data() const;
void
GetIccId(nsString& aRetVal) const;
Nullable<MobileNetworkSelectionMode>
GetNetworkSelectionMode() const;
Nullable<MobileRadioState>
GetRadioState() const;
void
GetSupportedNetworkTypes(nsTArray<MobileNetworkType>& aTypes) const;
already_AddRefed<DOMRequest>
GetNetworks(ErrorResult& aRv);
already_AddRefed<DOMRequest>
SelectNetwork(MobileNetworkInfo& aNetwork, ErrorResult& aRv);
already_AddRefed<DOMRequest>
SelectNetworkAutomatically(ErrorResult& aRv);
already_AddRefed<DOMRequest>
SetPreferredNetworkType(MobilePreferredNetworkType& aType, ErrorResult& aRv);
already_AddRefed<DOMRequest>
GetPreferredNetworkType(ErrorResult& aRv);
already_AddRefed<DOMRequest>
SetRoamingPreference(MobileRoamingMode& aMode, ErrorResult& aRv);
already_AddRefed<DOMRequest>
GetRoamingPreference(ErrorResult& aRv);
already_AddRefed<DOMRequest>
SetVoicePrivacyMode(bool aEnabled, ErrorResult& aRv);
already_AddRefed<DOMRequest>
GetVoicePrivacyMode(ErrorResult& aRv);
already_AddRefed<DOMRequest>
SendMMI(const nsAString& aMmi, ErrorResult& aRv);
already_AddRefed<DOMRequest>
CancelMMI(ErrorResult& aRv);
already_AddRefed<DOMRequest>
SetCallForwardingOption(const MozCallForwardingOptions& aOptions,
ErrorResult& aRv);
already_AddRefed<DOMRequest>
GetCallForwardingOption(uint16_t aReason, ErrorResult& aRv);
already_AddRefed<DOMRequest>
SetCallBarringOption(const MozCallBarringOptions& aOptions, ErrorResult& aRv);
already_AddRefed<DOMRequest>
GetCallBarringOption(const MozCallBarringOptions& aOptions, ErrorResult& aRv);
already_AddRefed<DOMRequest>
ChangeCallBarringPassword(const MozCallBarringOptions& aOptions,
ErrorResult& aRv);
already_AddRefed<DOMRequest>
SetCallWaitingOption(bool aEnabled, ErrorResult& aRv);
already_AddRefed<DOMRequest>
GetCallWaitingOption(ErrorResult& aRv);
already_AddRefed<DOMRequest>
SetCallingLineIdRestriction(uint16_t aMode, ErrorResult& aRv);
already_AddRefed<DOMRequest>
GetCallingLineIdRestriction(ErrorResult& aRv);
already_AddRefed<DOMRequest>
ExitEmergencyCbMode(ErrorResult& aRv);
already_AddRefed<DOMRequest>
SetRadioEnabled(bool aEnabled, ErrorResult& aRv);
IMPL_EVENT_HANDLER(voicechange)
IMPL_EVENT_HANDLER(datachange)
IMPL_EVENT_HANDLER(ussdreceived)
IMPL_EVENT_HANDLER(dataerror)
IMPL_EVENT_HANDLER(cfstatechange)
IMPL_EVENT_HANDLER(emergencycbmodechange)
IMPL_EVENT_HANDLER(otastatuschange)
IMPL_EVENT_HANDLER(iccchange)
IMPL_EVENT_HANDLER(radiostatechange)
IMPL_EVENT_HANDLER(clirmodechange)
private:
~MobileConnection();
private:
uint32_t mClientId;
nsCOMPtr<nsIMobileConnectionProvider> mProvider;
nsRefPtr<Listener> mListener;
nsRefPtr<MobileConnectionInfo> mVoice;
nsRefPtr<MobileConnectionInfo> mData;
bool
CheckPermission(const char* aType) const;
void
UpdateVoice();
void
UpdateData();
};
} // namespace dom
} // namespace mozilla
#endif // mozilla_dom_MobileConnection_h