joshmoz%gmail.com
|
6b0c23ad37
|
change assertions to warnings. b=291096 r=pinkerton sr=smfr a=bsmedberg
git-svn-id: svn://10.0.0.236/trunk@176824 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-07-28 23:51:21 +00:00 |
|
smfr%smfr.org
|
0b2a03f004
|
Fix bug 301807: sometimes on launch the tab bar would not be drawn, because the Mac widget code lost invalidates that happened during paints. Now we make sure not to clobber the WindowPtr's updateRgn after painting, so that those invalidates get drawn the next time. r=mento, jhpedemonte, sr=me, a=bsmedberg.
git-svn-id: svn://10.0.0.236/trunk@176785 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-07-28 18:00:16 +00:00 |
|
smfr%smfr.org
|
f83c73b250
|
Fix bug 289973: white patches in XUL menus. This happened because the window was being resized inside an update, so that the window's new visRgn from SizeWindow was being clobbered by the later EndUpdate(). Fixed by breaking out of BeginUpdate/EndUpdate around the SizeWindow. This also required us to move all update handling to the Carbon Event handler (that was only being used for sheets). r=mento, r=jhpedemonte, sr=me, a=bsmedberg.
git-svn-id: svn://10.0.0.236/trunk@176338 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-07-20 18:24:09 +00:00 |
|
mark%moxienet.com
|
7e829e2988
|
Bug 300095, tab close button draws over top of scrollbar after tab bar collapses. Don't validate control rects after drawing, when it's too late for us to care. Allows the system to paint. r=jhpedemonte sr=smfr a=shaver
git-svn-id: svn://10.0.0.236/trunk@176337 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-07-20 17:52:00 +00:00 |
|
smfr%smfr.org
|
9f5907d156
|
Fix bug 289353: bad drawing on scrolling, if the scrolled area is not rectangular (e.g. page with abs-positioned divs). The synchronous update was messing with the window state so that later drawing was incorrectly clipped. Fixed by using an asycnchronous invalidate. r=mento, r=jhpedemonte, sr=me, a=shaver.
git-svn-id: svn://10.0.0.236/trunk@176336 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-07-20 17:41:56 +00:00 |
|
smfr%smfr.org
|
e01ddec624
|
Fix bug 292914: if scrolling up more than 32767 pixels, window didn't refresh. Fix by just manually invalidating if scrolling will redraw the entire scrolled area. r=joshmoz, sr=jhpedemonte, a=bsmedberg.
git-svn-id: svn://10.0.0.236/trunk@176275 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-07-19 21:21:21 +00:00 |
|
mark%moxienet.com
|
adb234b084
|
Bug 298677, Mac Carbon scrollbars draw in the wrong location and jump out from under the mouse since CFRunLoopSource (bug 282940). Be more careful about restoring the QD origin. Obsoletes and backs out an earlier partial fix, cleaning up bug 300058, drawing artifacts in scrollbars. r=pinkerton sr=smfr a=bsmedberg
git-svn-id: svn://10.0.0.236/trunk@176113 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-07-14 22:48:34 +00:00 |
|
smfr%smfr.org
|
818da747fa
|
Fix the drawing part of bug 298677: scrollbars draw in the wrong place. Fixed by registering a Carbon Event handler on the native control that ensures that the port origin is set correctly before control draws. r=josh, jhpedemonte. sr=me. a=shaver.
git-svn-id: svn://10.0.0.236/trunk@175750 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-07-07 15:47:49 +00:00 |
|
joshmoz%gmail.com
|
bcca8a2301
|
clean up old mac os classic stuff. b=281889 r=smfr sr=bryner a=bsmedberg
git-svn-id: svn://10.0.0.236/trunk@175668 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-07-06 01:23:20 +00:00 |
|
mark%moxienet.com
|
e70d7aa72f
|
Bug 299384, Crash in Mac Carbon nsNativeScrollbar::DoScrollAction when using the scrollbar while reloading since 282940. Handle Destroy() when the page is going away. r=josh sr=smfr a=asa
git-svn-id: svn://10.0.0.236/trunk@175546 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-07-03 05:44:08 +00:00 |
|
timeless%mozdev.org
|
e9f54b6bb1
|
Bug 299100 remove useless references to nsVoidArray
widget
r=darin sr=darin a=asa
git-svn-id: svn://10.0.0.236/trunk@175469 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-07-01 04:40:31 +00:00 |
|
smfr%smfr.org
|
d240c30efe
|
Fix bug 274036: makes sure Mac native controls (Carbon & Cocoa) look disabled when there is nowhere to scroll by removing arbitrary hardcoded limits. r=josh, sr=bryner, a=chofmann.
git-svn-id: svn://10.0.0.236/trunk@175189 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-06-28 00:18:33 +00:00 |
|
mozilla.mano%sent.com
|
654105ce93
|
Bug 298549 - nsBidiKeyboard.cpp breaks gcc 4 builds. patch from Mark Mentovai <mark@moxienet.com>, r=me, sr=smfr, a=mkaply.
git-svn-id: svn://10.0.0.236/trunk@175053 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-06-23 17:50:41 +00:00 |
|
mozilla.mano%sent.com
|
224e8e9d75
|
Bug 298430 - drop support for Mac OS X 10.1. First part: code cleanup. r=josh, sr=darin, a=shaver
git-svn-id: svn://10.0.0.236/trunk@175028 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-06-23 00:59:03 +00:00 |
|
joshmoz%gmail.com
|
6902151737
|
gcc 4 fixes for Mac OS X. part 2 of landing (last part). Patch by Mark Mentovai. b=294244 r=josh sr=darin a=dbaron
git-svn-id: svn://10.0.0.236/trunk@174619 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-06-15 03:52:48 +00:00 |
|
joshmoz%gmail.com
|
b3c8eed3c3
|
gcc 4 fixes for Mac OS X. part 1 of the landing. Patch by Mark Mentovai. b=294244 r=josh sr=darin a=dbaron
git-svn-id: svn://10.0.0.236/trunk@174618 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-06-15 03:49:26 +00:00 |
|
bsmedberg%covad.net
|
adc050bf6d
|
Bug 295711 part 2 - hide menus (mac) that do not have a <menupopup> child - r=jhpedemonte sr=jst a=shaver
git-svn-id: svn://10.0.0.236/trunk@174122 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-06-03 17:53:40 +00:00 |
|
timeless%mozdev.org
|
464be8ac2e
|
Bug 106386 Correct misspellings in source code
patch by ajvincent@gmail.com r=timeless rs=brendan a=chofmann
git-svn-id: svn://10.0.0.236/trunk@174115 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-06-03 10:26:28 +00:00 |
|
timeless%mozdev.org
|
6789898ed6
|
Bug 283827 When turn on IME and switch applications before fix characters, location bar doesn't accept any more character
patch by katsuhiromihara@goo.jp r=pinkerton sr=smfr a=asa
git-svn-id: svn://10.0.0.236/trunk@173934 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-06-01 16:33:48 +00:00 |
|
jst%mozilla.jstenback.com
|
ebed1ee784
|
Fixing bug 289940. Make chrome event handlers only receive trusted events by default. r=jonas@sicking.cc, sr=peterv@propagandism.org, a=chofmann@mozilla.org
git-svn-id: svn://10.0.0.236/trunk@172848 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-04-28 23:48:28 +00:00 |
|
peterv%propagandism.org
|
29b628a938
|
Bustage fix.
git-svn-id: svn://10.0.0.236/trunk@170774 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-03-16 12:05:28 +00:00 |
|
jst%mozilla.jstenback.com
|
fd02353dc3
|
Fixing the Mac widget portion of bug 285438. r+sr=bryner@brianryner.com
git-svn-id: svn://10.0.0.236/trunk@170763 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-03-16 02:05:59 +00:00 |
|
jst%mozilla.jstenback.com
|
215eaa61af
|
Whitespace cleanup.
git-svn-id: svn://10.0.0.236/trunk@170759 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-03-16 01:20:27 +00:00 |
|
peterv%propagandism.org
|
77e047ef6e
|
OS X part of fix for bug 125386 (flyout menu disappears when mouse passes over scrollable div or iframe). r=jhpedemonte, sr=sfraser.
git-svn-id: svn://10.0.0.236/trunk@169519 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-02-20 09:56:29 +00:00 |
|
smfr%smfr.org
|
22d0e10615
|
Fix bug 282295: drag feedback uses wrong cooridinates in Camino. Remove Cocoa-only #ifdeffed code that reversed the drag region Y coordinate because it's no longer needed after the fix for bug 281470. r=pink. This change only affects Camino.
git-svn-id: svn://10.0.0.236/trunk@169203 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-02-15 16:52:20 +00:00 |
|
pedemont%us.ibm.com
|
a27860a167
|
Bug 246245 - Fix leak. r=sfraser, sr=peterv.
git-svn-id: svn://10.0.0.236/trunk@168997 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-02-08 19:28:09 +00:00 |
|
timeless%mozdev.org
|
32a638e423
|
replacing fancy bullets (which chardet incorrectly guesses is a chinese character) with asterisks
sr=smfr
not part of the build (the ifdef isn't defined)
git-svn-id: svn://10.0.0.236/trunk@168818 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-02-04 22:15:08 +00:00 |
|
bryner%brianryner.com
|
41b51eec20
|
Additional REQUIRES cleanup for mailnews, mac, and suite directories (bug 73353). r+sr=dbaron.
git-svn-id: svn://10.0.0.236/trunk@168812 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-02-04 21:10:45 +00:00 |
|
smfr%smfr.org
|
3413b44a9f
|
Remove obsolete native widget files, and do some minor cleanup. Bug 279510, r=pinkerton
git-svn-id: svn://10.0.0.236/trunk@168495 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-29 02:09:21 +00:00 |
|
smfr%smfr.org
|
d96dc1f2b2
|
Fix bug 279510: remove all the pre-Carbon code and TARGET_CARBON #idfefs from widget. Patch by Ludovic Hirlimann <qa-mozilla@hirlimann.net>, r=pink, sr=me
git-svn-id: svn://10.0.0.236/trunk@168451 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-28 17:59:37 +00:00 |
|
smfr%smfr.org
|
ddf0d3ac3a
|
Fix bug 278655: we double-dispatched some mouse events because of the middle-click Carbon Event handler. Fix by making that handler only dispatch middle clicks, and returning noErr only when we think the event has been handled. Patch by yours truly and Steven Michaud <smichaud@pobox.com>, sr=me, r=pink.
git-svn-id: svn://10.0.0.236/trunk@168343 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-26 04:40:39 +00:00 |
|
peterv%propagandism.org
|
9e21903017
|
Fix for bug 277845 (live sheet resizing is broken (regression from bug 223545)). r=pedemonte, sr=smfr.
git-svn-id: svn://10.0.0.236/trunk@168300 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-25 14:06:59 +00:00 |
|
smfr%smfr.org
|
3aa2dd6bd0
|
Fix up the code that gets the "AppleKeyboardUIMode" system pref to look at the second bit of the value, rather than the value itself. Also add scope for the fullKeyboardAccessProperty variable, and check the result of CFNumberGetValue. Bug 187508.
git-svn-id: svn://10.0.0.236/trunk@168168 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-22 06:38:31 +00:00 |
|
bryner%brianryner.com
|
b4a3ac2fb3
|
Remove nsIXULContent. Bug 276698, r=sicking, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@168011 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-19 20:05:02 +00:00 |
|
aaronleventhal%moonset.net
|
26c4323c6c
|
Bug 167145. When PreventDefault() called for onkeydown event, do the same for onkeypress that follows. r=bryner, sr=neil
git-svn-id: svn://10.0.0.236/trunk@167966 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-19 02:38:59 +00:00 |
|
smfr%smfr.org
|
e8a4ad2357
|
Fix bug 269561: orphaned dropdown left after selecting an item in a combo box. Fix some code in nsMacWindow that could erroneously change the visibility of the window from false to true. r=pinkerton, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@167929 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-17 23:54:34 +00:00 |
|
pedemont%us.ibm.com
|
001fd78f89
|
Bug 269480 - Zooming uses wrong rect. Patch by ccarlen. r=pinkerton, sr=sfraser
git-svn-id: svn://10.0.0.236/trunk@167925 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-17 23:21:33 +00:00 |
|
timeless%mozdev.org
|
f1a18ad577
|
Bug 268311 Rewrite nsIFilePicker.displayDirectory handling and (windows) nsFilePicker::ShowW
r=neil sr=neil
git-svn-id: svn://10.0.0.236/trunk@167720 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-14 11:41:37 +00:00 |
|
bryner%brianryner.com
|
2040b1004d
|
Change cache interfaces to use ACString for the key. Bug 277627, r+sr=darin.
git-svn-id: svn://10.0.0.236/trunk@167653 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-13 03:25:28 +00:00 |
|
smontagu%smontagu.org
|
87baf96ab5
|
Bug 277467: Memory leak in nsLookAndFeel::GetMetric. patch by Asaf Romano <bugs.mano@mail-central.com>, r=joshmoz, sr=sfraser, a=asa.
git-svn-id: svn://10.0.0.236/trunk@167433 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-09 14:07:24 +00:00 |
|
neil%parkwaycc.co.uk
|
edf3bc6ccc
|
Null check followup b=187508 p=bugs.mano@mail-central.com r=pink sr=me a=asa
git-svn-id: svn://10.0.0.236/trunk@167397 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-07 20:32:26 +00:00 |
|
timeless%mozdev.org
|
c738708183
|
Bug 187508 Follow "full keyboard access" setting in System Preferences for tabbing navigation
patch by bugs.mano@mail-central.com r=aaronl sr=neil a=asa
git-svn-id: svn://10.0.0.236/trunk@167370 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-06 23:41:52 +00:00 |
|
bzbarsky%mit.edu
|
6cc2aafe00
|
Make people that want empty strings use EmptyC?String(). Bug 232691, patch by
Daniel Kraft <d@daniel-kraft.net>, r=jst, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@167258 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-04 19:31:31 +00:00 |
|
bzbarsky%mit.edu
|
e272c87dda
|
Remove the long-deprecated nsIWebShell interface. Bug 273319, r=biesi, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@167223 18797224-902f-48f8-a5cc-f745e15eee43
|
2005-01-03 22:51:17 +00:00 |
|
pedemont%us.ibm.com
|
a8dc6429ac
|
Forgot null check for checkin of bug 257546
git-svn-id: svn://10.0.0.236/trunk@167046 18797224-902f-48f8-a5cc-f745e15eee43
|
2004-12-27 16:09:59 +00:00 |
|
bmlk%gmx.de
|
e547c59f49
|
remove unused prescontext argument from GetOffsetFromView bug 276015 r/sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@167037 18797224-902f-48f8-a5cc-f745e15eee43
|
2004-12-26 19:48:54 +00:00 |
|
pedemont%us.ibm.com
|
5534e80882
|
Bug 151249 - Middle-click on link doesn't work on Mac. r=pinkerton, sr=sfraser.
git-svn-id: svn://10.0.0.236/trunk@166750 18797224-902f-48f8-a5cc-f745e15eee43
|
2004-12-15 16:32:02 +00:00 |
|
bsmedberg%covad.net
|
4c08900f0e
|
Bug 273876 - libxul step 2 (everything through widget, except spidermonkey) r=darin; again, this should not affect non-xulrunner trees.
git-svn-id: svn://10.0.0.236/trunk@166497 18797224-902f-48f8-a5cc-f745e15eee43
|
2004-12-09 19:28:35 +00:00 |
|
smontagu%smontagu.org
|
a1f1e1d1e5
|
Mac implementation of nsIBidiKeyboard. Bug 266551, patch by Asaf Romano <mozilla.mano@sent.com>, r=jhpedemonte, sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@165854 18797224-902f-48f8-a5cc-f745e15eee43
|
2004-11-28 18:36:23 +00:00 |
|
timeless%mozdev.org
|
722fa27132
|
Bug 269925 /Users/timeless/mozilla/widget/src/mac/nsWindow.cpp: warning: Boolean control_key_down()' and long long int microseconds()' defined but not used
r=pedemonte sr=bz
git-svn-id: svn://10.0.0.236/trunk@165369 18797224-902f-48f8-a5cc-f745e15eee43
|
2004-11-15 18:40:53 +00:00 |
|