Jonathan Kew
|
336fd34232
|
bug 674373 pt 4 - pass device-to-CSS pixel ratio to LookAndFeel code when requesting a font style. r=roc
|
2012-09-29 12:35:08 +01:00 |
|
Isaac Aggrey
|
0cc4b12d36
|
Bug 791906: Replace NSPR integer limit constants with stdint ones; r=ehsan
|
2012-09-28 01:57:33 -05:00 |
|
Matt Woodrow
|
c900597192
|
Bug 539356 - Part 9a - Add new display list invalidation API to nsDisplayItem and implement it. r=roc
|
2012-08-29 17:39:01 +12:00 |
|
Ed Morley
|
5a3b322459
|
Revert mozilla-inbound to e4dd1fa6d222 for crashes and test failures on a CLOSED TREE
|
2012-09-27 16:34:46 +01:00 |
|
Matt Woodrow
|
49d4c24594
|
Bug 539356 - Part 9 - Implement DLBI. r=roc,bz,jwatt
|
2012-08-29 17:38:58 +12:00 |
|
Karl Tomlinson
|
fbc6176a6f
|
b=794285 restore support for building against GTK+ 2.10 r=glandium
--HG--
extra : transplant_source : %D0%2B6%19%96%99%8D%21%F5%5D8%92%FC%1E%1D%BB%B77h%81
|
2012-09-27 12:23:00 +12:00 |
|
Isaac Aggrey
|
84680bfb39
|
Bug 789847 - Remove PR_CALLBACK usage from tree
|
2012-09-25 11:18:38 -05:00 |
|
Mike Hommey
|
213365fb63
|
Bug 793634 - Force builds to be compatible with gtk 2.18/glib 2.22. r=karlt
|
2012-09-25 14:47:18 +02:00 |
|
Karl Tomlinson
|
78f597ff26
|
b=792305 don't update mask bits outside the mask r=roc
--HG--
extra : rebase_source : 682a8780f0e54d082ad2f35c1b074c3fe2d82817
|
2012-09-24 11:17:31 +12:00 |
|
Karl Tomlinson
|
29361fbee7
|
b=792305 delay shape mask update from resize to expose r=roc
--HG--
extra : rebase_source : 6b00c1e4d31fc1d5b6dc4d09882591da82dc622d
|
2012-09-24 11:15:48 +12:00 |
|
Marco Castelluccio
|
cc2ccf530a
|
Bug 630346 - Use basic layers for windows with transparency r=karlt
--HG--
extra : rebase_source : c078915a7455b61e0aff76af3cea735c4342a219
|
2012-09-24 11:22:28 +12:00 |
|
Jim Mathies
|
9418b94d60
|
Bug 726615 - Completely remove MozTouch event support from mc. r=smaug
|
2012-09-22 14:28:08 -05:00 |
|
Mats Palmgren
|
d86cd0b8aa
|
Bug 791518 - Use correct GDK type for gtk_selection_data_get_length() return value to avoid signed to unsigned conversion of -1 and subsequent crash. r=karl
|
2012-09-18 01:05:05 +02:00 |
|
Martin Stransky
|
4a163dab88
|
Bug 627699 - Port GTK2 to GTK3, gtk-rest. r=karlt
|
2012-09-13 21:56:59 -04:00 |
|
Martin Stransky
|
fa4a000b19
|
Bug 627699 - Port GTK2 to GTK3, nsBidiKeyboard patch. r=karlt
|
2012-09-13 21:56:58 -04:00 |
|
Randell Jesup
|
29ac5c0b8c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Ehsan Akhgari
|
151742b045
|
Remove two unused variables, no bug
--HG--
extra : rebase_source : 1d2fb26b146037905d729c0bc68105969c63de61
|
2012-08-27 17:30:56 -04:00 |
|
Ehsan Akhgari
|
1d1c7fe3dc
|
Bug 579517 - Part 8: Automatically convert some more NSPR numeric type usages that were landed on mozilla-inbound; r=bsmedberg
|
2012-08-22 12:32:21 -04:00 |
|
Ehsan Akhgari
|
a8a14f9163
|
Merge the landing of bug 579517 to mozilla-inbound
|
2012-08-22 12:12:15 -04:00 |
|
Karl Tomlinson
|
5059e5f4c6
|
b=671820 implement async nsIFilePicker::Open and make sync Show close window on response r=roc
--HG--
extra : transplant_source : %AC%C4%9AB%03%FC%29tE%3D%10X%7F%B4%ED%B6%07%D8%5C%BC
|
2012-08-22 16:56:55 +12:00 |
|
Masayuki Nakano
|
711f8ee174
|
Bug 784246 KeymapWrapper::GuessGDKKeyval() should return GDK_colon for NS_VK_COLON r=karlt
|
2012-08-21 13:35:23 +09:00 |
|
Ehsan Akhgari
|
8c296bbcd4
|
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 |
|
Neil Deakin
|
b9bd1357f1
|
Bug 743975 - remove the event handler argument to widget creation methods, r=tn
|
2012-08-15 14:53:09 -04:00 |
|
Neil Deakin
|
0413e44a55
|
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 |
|
Neil Deakin
|
193db1ca6c
|
Bug 743975 - remove NS_DESTROY event, r=smaug
|
2012-08-15 14:52:41 -04:00 |
|
Neil Deakin
|
34ac541af0
|
Bug 743975 - remove accessibility events from widget, replace with a nsBaseWidget::GetAccessible method, r=trevsaunders
|
2012-08-15 14:52:37 -04:00 |
|
Neil Deakin
|
510f6f1a72
|
Bug 743975 - move theme and window size done events to direct calls, r=smaug
|
2012-08-15 14:52:35 -04:00 |
|
Masayuki Nakano
|
6e35f349df
|
Bug 719320 part.13 Replace legacy mouse scroll event dispatchers with D3E wheel event dispatcher on GTK r=karlt
|
2012-08-12 10:42:37 +09:00 |
|
Masayuki Nakano
|
acbe3bbdd7
|
Bug 719320 part.1 Add DOM3 WheelEvent r=smaug, sr=jst
|
2012-08-12 10:42:34 +09:00 |
|
Mike Hommey
|
c1b35e7b2a
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Martin Stransky
|
4df2678829
|
Bug 544088 - Support Xt plugins OOP. r=karlt
|
2012-08-01 16:34:08 -04:00 |
|
Neil Deakin
|
28413e223c
|
Bug 357725, support minimum and maximum size constraints on windows and popups, r=mats,jmathies,karlt,smichaud,sr=neil
|
2012-07-30 20:43:29 -04:00 |
|
David Zbarsky
|
fa3cb43e08
|
Bug 778519 - Don't include Layers.h everywhere Part 2 r=cjones
|
2012-07-30 17:42:26 -07:00 |
|
Aryeh Gregor
|
2e7996f8d1
|
Bug 777292 - Convert incorrect conversions to nsresult and fix named constants; r=ehsan
|
2012-07-27 16:59:29 +03:00 |
|
Aryeh Gregor
|
57c0ad57fb
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Ehsan Akhgari
|
e195f09851
|
Bug 777829 - Remove ThemeRenderer::mWindow since it's never used; r=karlt
--HG--
extra : rebase_source : 3898c17e3fe6740b6cecbe0665b9b60710d356b4
|
2012-07-26 16:12:03 -04:00 |
|
Ehsan Akhgari
|
fefe04767a
|
Bug 758992 - Make the classes which use the XPCOM nsISupports implementation macros final, to avoid the warning about deleting using a pointer to a base class with virtual functions and no virtual dtor (more widget parts); blanket-r=bzbarsky
--HG--
extra : rebase_source : 6fa3942059662d5d2095de119b20bc63db1f553b
|
2012-07-26 15:17:33 -04:00 |
|
Ehsan Akhgari
|
4f7ec6d304
|
Remove an unused local variable (no bug)
--HG--
extra : rebase_source : 4b35da5a24f61289d9d36a195d0154028d629249
|
2012-07-26 15:17:26 -04:00 |
|
Mark Capella
|
7103242b4f
|
Bug 775041 - Make nsIWidget::IsEnabled return bool, r=roc, f=ms2ger
|
2012-07-23 01:19:08 -04:00 |
|
Mark Capella
|
bf92974758
|
Bug 769998 - Make nsIWidget::IsVisible return bool, r=roc, f=ms2ger
|
2012-07-19 04:57:50 -04:00 |
|
Masayuki Nakano
|
94a89956d7
|
Bug 751749 part.4 Give higher priority to Meta than Super and Hyper due to better compatibility with Web applications r=karlt
|
2012-07-19 10:28:17 +09:00 |
|
Masayuki Nakano
|
588dd9f9f3
|
Bug 751749 part.2 Support Win key for a modifier of shortcut key and access key r=smaug, enn
|
2012-07-19 10:28:16 +09:00 |
|
Masayuki Nakano
|
141ea58a3e
|
Bug 751749 part.1 Decide one modifier for a modifier flag r=karlt
|
2012-07-19 10:28:16 +09:00 |
|
David Zbarsky
|
7f0f075928
|
[Bug 774505] Don't include Layers.h everywhere r=cjones
|
2012-07-18 12:31:40 -04:00 |
|
Masayuki Nakano
|
a010f5444e
|
Bug 769190 part.2 Rename nsInputEvent::IsWin() and widget::MODIFIER_(SCROLL|WIN) to nsInputEvent::IsOS() and widget::MODIFIER_(SCROLLLOCK|OS) r=smaug
|
2012-07-06 09:42:05 +09:00 |
|
Ehsan Akhgari
|
6ef72aef93
|
Backout changeset f568fc280fb0 (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:24:55 -04:00 |
|
David Zbarsky
|
cd3c58ee76
|
Bug 763350 - Clean up some includes in content/ and dom/ r=smaug
|
2012-07-01 16:45:59 -07:00 |
|
Matt Woodrow
|
1f0dbc7c74
|
Bug 539356 - Part 9 - Implement DLBI. r=roc,bz,jwatt
|
2012-06-30 15:06:11 +12:00 |
|
Bonnie Surender
|
6dcaba353f
|
Fixing bug 715041. Add support for Idle API. r=bent, jst
|
2012-06-29 01:32:21 -07:00 |
|
Martin Stransky
|
d5ece17979
|
Bug 627699 - Port GTK2 to GTK3, gtk2compat.h extension. r=karlt
|
2012-06-27 20:15:32 -04:00 |
|