-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
440 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | ||
/* vim: set ts=8 sts=2 et sw=2 tw=80: */ | ||
/* 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/. */ | ||
|
||
#include "DatePickerParent.h" | ||
#include "nsComponentManagerUtils.h" | ||
#include "nsIDocument.h" | ||
#include "nsIDOMWindow.h" | ||
#include "mozilla/unused.h" | ||
#include "mozilla/dom/Element.h" | ||
#include "mozilla/dom/TabParent.h" | ||
|
||
using mozilla::Unused; | ||
using namespace mozilla::dom; | ||
|
||
NS_IMPL_ISUPPORTS(DatePickerParent::DatePickerShownCallback, | ||
nsIDatePickerShownCallback); | ||
|
||
NS_IMETHODIMP | ||
DatePickerParent::DatePickerShownCallback::Update(const nsAString& aDate) | ||
{ | ||
if (mDatePickerParent) { | ||
Unused << mDatePickerParent->SendUpdate(nsString(aDate)); | ||
} | ||
return NS_OK; | ||
} | ||
|
||
NS_IMETHODIMP | ||
DatePickerParent::DatePickerShownCallback::Done(int16_t aResult) | ||
{ | ||
if (mDatePickerParent) { | ||
mDatePickerParent->Done(aResult); | ||
} | ||
return NS_OK; | ||
} | ||
|
||
void | ||
DatePickerParent::DatePickerShownCallback::Destroy() | ||
{ | ||
mDatePickerParent = nullptr; | ||
} | ||
|
||
bool | ||
DatePickerParent::CreateDatePicker() | ||
{ | ||
mPicker = do_CreateInstance("@mozilla.org/datepicker;1"); | ||
if (!mPicker) { | ||
return false; | ||
} | ||
|
||
Element* ownerElement = TabParent::GetFrom(Manager())->GetOwnerElement(); | ||
if (!ownerElement) { | ||
return false; | ||
} | ||
|
||
nsCOMPtr<nsIDOMWindow> window = do_QueryInterface(ownerElement->OwnerDoc()->GetWindow()); | ||
if (!window) { | ||
return false; | ||
} | ||
|
||
return NS_SUCCEEDED(mPicker->Init(window, mTitle)); | ||
} | ||
|
||
void | ||
DatePickerParent::Done(int16_t aResult) | ||
{ | ||
Unused << Send__delete__(this, nsString()); | ||
MOZ_CRASH("DatePickerParent::Done NYI"); | ||
} | ||
|
||
bool | ||
DatePickerParent::RecvOpen() | ||
{ | ||
if (!CreateDatePicker()) { | ||
Unused << Send__delete__(this, nsString()); | ||
return true; | ||
} | ||
|
||
mCallback = new DatePickerShownCallback(this); | ||
|
||
mPicker->Open(mCallback); | ||
return true; | ||
}; | ||
|
||
void | ||
DatePickerParent::ActorDestroy(ActorDestroyReason aWhy) | ||
{ | ||
if (mCallback) { | ||
mCallback->Destroy(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | ||
/* vim: set ts=8 sts=2 et sw=2 tw=80: */ | ||
/* 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_DatePickerParent_h | ||
#define mozilla_dom_DatePickerParent_h | ||
|
||
#include "mozilla/dom/PDatePickerParent.h" | ||
#include "nsIDatePicker.h" | ||
|
||
namespace mozilla { | ||
namespace dom { | ||
|
||
class DatePickerParent : public PDatePickerParent | ||
{ | ||
public: | ||
DatePickerParent(const nsString& aTitle) | ||
: mTitle(aTitle) | ||
{} | ||
|
||
virtual bool RecvOpen() override; | ||
virtual void ActorDestroy(ActorDestroyReason aWhy) override; | ||
|
||
void Done(int16_t aResult); | ||
|
||
class DatePickerShownCallback final | ||
: public nsIDatePickerShownCallback | ||
{ | ||
public: | ||
explicit DatePickerShownCallback(DatePickerParent* aDatePickerParent) | ||
: mDatePickerParent(aDatePickerParent) | ||
{} | ||
|
||
NS_DECL_ISUPPORTS | ||
NS_DECL_NSIDATEPICKERSHOWNCALLBACK | ||
|
||
NS_IMETHODIMP Update(const nsAString& aDate); | ||
|
||
void Destroy(); | ||
|
||
private: | ||
~DatePickerShownCallback() {} | ||
|
||
DatePickerParent* mDatePickerParent; | ||
}; | ||
|
||
private: | ||
virtual ~DatePickerParent() {} | ||
|
||
bool CreateDatePicker(); | ||
|
||
RefPtr<DatePickerShownCallback> mCallback; | ||
nsCOMPtr<nsIDatePicker> mPicker; | ||
|
||
nsString mTitle; | ||
}; | ||
|
||
} // namespace dom | ||
} // namespace mozilla | ||
|
||
#endif // mozilla_dom_DatePickerParent_h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 8 -*- */ | ||
/* vim: set sw=4 ts=8 et tw=80 ft=cpp : */ | ||
|
||
/* 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/. */ | ||
|
||
include protocol PBrowser; | ||
|
||
namespace mozilla { | ||
namespace dom { | ||
|
||
protocol PDatePicker | ||
{ | ||
manager PBrowser; | ||
|
||
parent: | ||
Open(); | ||
|
||
child: | ||
Update(nsString date); | ||
|
||
__delete__(nsString date); | ||
}; | ||
|
||
} // namespace dom | ||
} // namespace mozilla |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.