Masayuki Nakano
|
f52efe918a
|
Bug 558976 part.6 Rename nsIWidget::OnIMETextChange() to nsIWidget::NotifyIMEOfTextChange() r=roc, sr=roc
|
2013-03-06 15:14:34 +09:00 |
|
Masayuki Nakano
|
a91b949b95
|
Bug 558976 part.1 Merge nsIWidget::ResetInputState(), nsIWidget::CancelComposition(), nsIWidget::OnIMEFocusChange() and nsIWidget::OnIMESelectionChange() r=roc, sr=roc
|
2013-03-06 15:14:31 +09:00 |
|
Chris Jones
|
cc83e7d74a
|
Bug 835591: Disable cross-process IME when it's not used. r=roc
|
2013-01-28 15:56:28 -08:00 |
|
Robert O'Callahan
|
2347e5328a
|
Bug 826817. Part 3: Remove will-send-did-paint flag from nsIWidgetListener::WillPaintWindow. r=tnikkel
|
2013-01-28 13:34:08 -06:00 |
|
Robert O'Callahan
|
dfbd3349d6
|
Bug 826817. Part 2: Remove will-send-did-paint and did-send-will-paint flags from nsIWidgetListener::PaintWindow. r=tnikkel
|
2013-01-28 13:34:06 -06:00 |
|
Robert O'Callahan
|
079d14cb9a
|
Bug 826817. Part 1: Send WillPaintWindow/DidPaintWindow from all widget implementations. r=tnikkel
|
2013-01-28 13:34:03 -06:00 |
|
Chris Jones
|
d8dcc514cc
|
Bug 834760: Null-check mAttachedWidgetListener. r=mwu
|
2013-01-25 11:51:16 -08:00 |
|
Timothy Nikkel
|
71b8cd6fcc
|
Bug 805745. Paint notification can flush (via WillPaint), so re-check if the listener still exists after on puppet widget backend. r=cjones
|
2012-12-12 15:57:08 -06:00 |
|
Jonathan Kew
|
3fac204237
|
bug 819725 pt 1 - make widget move & resize methods take floating-point parameters, to allow passing fractional coordinates without rounding. r=roc
|
2012-12-12 09:57:38 +00:00 |
|
Masayuki Nakano
|
79dfaa9ad6
|
Bug 812427 part.2 Make event struct type named enumeration r=roc+smaug
|
2012-11-20 15:05:56 +09:00 |
|
Masayuki Nakano
|
50abb0f56a
|
Bug 805767 part.1 nsTextStateManager should use nsIWidget::GetIMEUpdatePreference() instead of the result of nsIWidget::OnIMEFocusChange() r=smaug
|
2012-11-13 22:04:44 +09:00 |
|
Chris Jones
|
a868506921
|
Bug 806029: Have remote content drop their buffers when they're hidden. r=mattwoodrow sr=roc
|
2012-11-07 19:51:55 -08:00 |
|
Masayuki Nakano
|
fbe6c5fc8e
|
Bug 805357 part.2 Get rid of NS_SUCCESS_IME_NO_UPDATES since OnIMEFocusChange(false) is always called r=roc
|
2012-10-31 08:22:23 +09:00 |
|
Masayuki Nakano
|
89790d622a
|
Bug 806300 Use intptr_t instead of int64_t for the 3rd argument of GetInputContext() of PBrowser r=cjones, feedback=Ms2ger
|
2012-10-30 10:58:29 +09:00 |
|
Masayuki Nakano
|
efb906f34d
|
Bug 801989 part.1 Add mNativeIMEContext to InputContext and TextComposition should use it instead of nsIWidget r=smaug, sr=roc
|
2012-10-27 08:35:20 +09:00 |
|
Matt Woodrow
|
3d9412116f
|
Bug 797431 - Add a flags parameter to PaintWindow. r=roc
|
2012-10-15 17:53:37 +13:00 |
|
Isaac Aggrey
|
990e90e88a
|
Bug 791906: Replace NSPR integer limit constants with stdint ones; r=ehsan
|
2012-09-28 01:57:33 -05:00 |
|
Chris Jones
|
ec0e928b3a
|
Bug 790183: Don't send SetCursor if the cursor hasn't changed. r=roc
|
2012-09-11 21:48:13 -07:00 |
|
Randell Jesup
|
3b4961b603
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Chris Jones
|
89317b458d
|
Bug 781725: Refactor TabChild to allow pre-created instances, and then use a pre-created instance to pre-load and compile BrowserElementChild.js. r=smaug
|
2012-08-29 12:26:18 -03:00 |
|
Zoe Bellot
|
1de92dd943
|
Bug 746142 - Part 2 - Use inputmode attribute to vary the virtual keyboard on Android. f=mounir r=cpeterson
|
2012-08-26 23:16:22 -03:00 |
|
Ehsan Akhgari
|
243c878d26
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
|
Ed Morley
|
3be08a2757
|
Backout 506268f7735e & ea163112807d (bug 746142) for Android build failures
|
2012-08-17 12:30:02 +01:00 |
|
Zoe Bellot
|
c19b4bcb2c
|
Bug 746142 - Part 2 - Use inputmode attribute to vary the virtual keyboard on Android. f=mounir r=cpeterson
|
2012-08-17 12:02:18 +02:00 |
|
Neil Deakin
|
ae68fe90a2
|
Bug 743975 - remove the view wrapper,r=tn
|
2012-08-15 14:53:14 -04:00 |
|
Neil Deakin
|
d91faf11ff
|
Bug 743975 - remove the event handler argument to widget creation methods, r=tn
|
2012-08-15 14:53:09 -04:00 |
|
Neil Deakin
|
13597b29c2
|
Bug 743975 - use a widget listener interface instead of the remaining events that don't need an event, r=tn,jmathies,netzen,smichaud,karlt,blassey,chrisjones
|
2012-08-15 14:52:42 -04:00 |
|
David Zbarsky
|
9f192bc533
|
Bug 778519 - Don't include Layers.h everywhere Part 2 r=cjones
|
2012-07-30 17:42:26 -07:00 |
|
Aryeh Gregor
|
8b4a23fc4c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Aryeh Gregor
|
e3e1225e61
|
Bug 626472 part 1 - Define nsnull as nullptr where available; r=ehsan
|
2012-07-20 14:16:17 +03:00 |
|
David Zbarsky
|
7f0b27a36b
|
[Bug 774505] Don't include Layers.h everywhere r=cjones
|
2012-07-18 12:31:40 -04:00 |
|
Chris Jones
|
96c1791798
|
Bug 745148, part 9: Hook up the pieces and enable direct compositor. r=roc
|
2012-07-17 16:59:45 -07:00 |
|
Gervase Markham
|
cb6a072c2a
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Chris Jones
|
6c72665fd5
|
Bug 745145, part 3: Implement PuppetScreen* analogues to PuppetWidget. r=mwu sr=roc
|
2012-05-08 14:36:07 -07:00 |
|
Oleg Romashin
|
654672a5a9
|
Bug 725925 - ShadowableThebesLayer does useless extra composite into 1x1 fake surface. r=cjones
|
2012-02-10 11:22:21 -08:00 |
|
Ed Morley
|
23443102e7
|
Backout b43f4d9f38da (bug 725925) for reftest failures
|
2012-02-10 23:23:16 +00:00 |
|
Oleg Romashin
|
1593a9824b
|
Bug 725925 - ShadowableThebesLayer does useless extra composite into 1x1 fake surface. r=cjones
|
2012-02-10 11:22:21 -08:00 |
|
Markus Stange
|
6f8783bb44
|
Bug 598482 part 3 - Remove synchronous painting APIs from nsIWidget. r=roc
|
2011-12-23 22:52:21 -05:00 |
|
Brian R. Bondy
|
d0a93b0ace
|
Bug 679226 - Fold widget/src into widget. r=roc
|
2012-01-03 22:09:29 -05:00 |
|