daboe01
98b9f57e0e
style
2014-04-17 10:00:50 +02:00
daboe01
e064ccd585
more style
2014-04-17 09:59:36 +02:00
daboe01
b5a63ed3fc
style
2014-04-17 09:58:04 +02:00
daboe01
147edddb90
added support for setWidthTracksTextView:
2014-04-17 09:55:25 +02:00
Alexandre Wilhelm
cd19fc7c81
New: capp_lint is installed with jake install
...
Previously we had to install capp_lint separately from Cappuccino.
Now capp_lint will be installed with Cappuccino.
Before capp_lint was installed in /urs/local/bin/, now it is in /usr/local/narwhal/bin/.
2014-04-16 16:49:40 -07:00
Alexander Ljungberg
b5f9501001
Test: CPObject isSubclassOfClass.
2014-04-16 23:01:17 +01:00
Alexander Ljungberg
8c0cd28f64
Merge branch 'master' of github.com:cappuccino/cappuccino
2014-04-16 22:06:16 +01:00
Martin Carlberg
e8e10d4224
Fixed: If receiver in the function objj_msgSend is a class we don't need to check if it is nil as a class can never be nil without the load has already failed.
2014-04-15 13:52:41 +02:00
Antoine Mercadal
3e187df75b
FIXED: CPPopover transitionend not correctly called in random cases with Chrome 34
...
There are some weird race conditions happening in Chrome 34 regarding the transitionend event. Setting the timeout to 10ms is not noticealble for the user, and seems to fix the issue.
2014-04-14 15:19:49 -07:00
Martin Carlberg
88d2ed9e93
Fixed: Forgot to commit the files for the new test case
2014-04-14 18:39:34 +02:00
Martin Carlberg
ab5674aa4e
Fixed: Send message test cases now work. Also added a test case for send message with 'self' as receiver
2014-04-14 16:38:34 +02:00
Martin Carlberg
81e4b6b37b
Fixed: If the function 'eval' is called it might have altered 'self' and from here on we check if 'self' is null before 'objj_msgSend' is called with 'self' as receiver
2014-04-14 16:37:21 +02:00
Martin Carlberg
b1507952df
Fixed: Checks if 'self' is nil only if self has a chance to be changed when sending messages
2014-04-11 15:41:32 +02:00
Martin Carlberg
c4ac7cf375
Fixed: Remove use of hard coded call of objj_msgSend function
2014-04-11 10:47:28 +02:00
Martin Carlberg
c23292db8a
Fixed: Optimized msgSend code when receiver is an identifier.
...
If the receiver is an identifier and not an ivar that needs 'self.' infront there is no need to assign it to a temporary variable. Also if the identifier is 'self' there we assume it is not nil.
2014-04-10 18:27:19 +02:00
Alexander Ljungberg
a350ffeaa1
Merge pull request #2103 from mrcarlberg/fast_msg_send
...
Fixed: Faster objj_msgSend
2014-04-10 11:23:59 +01:00
Martin Carlberg
0efb7e67c9
Fixed: Use new fast msgSend function for some foundation classes
2014-04-10 11:03:49 +02:00
Alexander Ljungberg
a61e0f6cec
Merge pull request #2103 from mrcarlberg/fast_msg_send
...
Fixed: Faster objj_msgSend
2014-04-10 09:45:55 +01:00
Martin Carlberg
0f5b36e9c5
Fixed: Code generated in test cases is corrected for the fast msgSend function
2014-04-09 17:02:28 +02:00
Martin Carlberg
93e7133076
Fixed: Got decorators working with the fast msgSend
2014-04-09 16:52:14 +02:00
Martin Carlberg
2411edd461
Fixed: Faster objj_msgSend
...
Conflicts:
Objective-J/Runtime.js
2014-04-08 20:51:18 +02:00
Antoine Mercadal
af83065df5
FIXED: Warning due to use of aDOMEvent.returnValue
...
This patch fixes a warning thrown by recent versions of Chrome about IE ways of doing. It simply uses aDOMEvent.returnValue if aDOMEvent.preventDefault() and aDOMEvent.cancelBubble if aDOMEvent.stopPropagation are not avavailable
2014-04-08 11:41:45 -07:00
Antoine Mercadal
1557c567d4
FIXED: crash due to wrong delegate bitmask
2014-04-03 15:56:04 -07:00
Antoine Mercadal
8bdaeab998
FIXED: Selection behavior when implementing selectionIndexesForProposedSelection
...
Previously, when delegates implemented tableView:selectionIndexesForProposedSelection:, the selection with arrow were broken. This patch ensure to try to select next/previous row if the current row cannot be selected.
It also cleans up the selection indexes when sending selectAll: as Cocoa does.
2014-04-03 14:10:00 -07:00
Antoine Mercadal
6825e3f7ce
Revert "Fixed: path is wrong with local copy"
...
This reverts commit de2397fa05 .
2014-04-03 12:35:44 -07:00
Antoine Mercadal
4602549ec8
STYLE: fix coding style issue
2014-04-03 11:34:33 -07:00
Antoine Mercadal
a7b2df2450
Merge pull request #2082 from zittix/patch-2
...
FIXED: CPSegementedControl with nib2cib crashes
2014-04-03 11:33:27 -07:00
daboe01
3c0f6d3631
fix for menu enabled state not beeing visually updated upon change
2014-04-03 20:00:28 +02:00
Antoine Mercadal
7ac37b75f3
Merge pull request #2097 from Asriwi/fix-textfield-placeholder
...
Fixed: show placeholder string while editing empty CPTextField
2014-04-03 10:50:05 -07:00
Antoine Mercadal
b1e6d57bf1
Merge pull request #2096 from daboe01/fix-text-clobbering-multiple-windows
...
Fixed: editing textFields on different windows can clobber each others contents
2014-04-03 10:45:12 -07:00
Antoine Mercadal
f19c6a0a5b
Merge pull request #2100 from Dogild/TableViewWillRemoveView
...
New: Added delegate tableView:willRemoveView:forTableColumn:row
2014-04-03 10:44:35 -07:00
Antoine Mercadal
789279fe76
Merge pull request #2098 from Dogild/CPBrowserDelegate
...
New: Added CPBrowserDelegate protocol
2014-04-03 10:43:37 -07:00
Antoine Mercadal
39a8d8803a
Merge pull request #2095 from Dogild/CPControlDelegate
...
New: Added CPControlTextEditingDelegate and CPTextFieldDelegate protocol
2014-04-03 10:43:13 -07:00
Antoine Mercadal
f4ce73fc0d
Merge pull request #2094 from Dogild/CPWindowDelegateProtocol
...
New: Added CPWindowDelegate protocol
2014-04-03 10:42:44 -07:00
Antoine Mercadal
cac9d9266c
Merge pull request #2093 from Dogild/CPTokenFieldDelegate
...
New: Added CPTokenFieldDelegate protocol.
2014-04-03 10:42:27 -07:00
Antoine Mercadal
7e94d02fb7
Merge pull request #2092 from Dogild/CPRuleEditorDelegate
...
New: Added CPRuleEditorDelegate protocol
2014-04-03 10:42:10 -07:00
Antoine Mercadal
f3913b1dd2
Merge pull request #2091 from Dogild/CPComboBoxDelegate
...
New: Added CPComboDelegate protocol
2014-04-03 10:41:40 -07:00
Antoine Mercadal
50fc716c15
Merge pull request #2090 from Dogild/CPMenuDelegateProtocol
...
New: Added protocol CPMenuDelegate
2014-04-03 10:41:21 -07:00
Antoine Mercadal
50412392f8
Merge pull request #2089 from Dogild/CPImageDelegateProtocol
...
New: Added protocol CPImageDelegate
2014-04-03 10:40:59 -07:00
Antoine Mercadal
1b80859022
Merge pull request #2088 from Dogild/CPSoundDelegateProtocole
...
New: Added protocol CPSoundDelegate
2014-04-03 10:40:42 -07:00
Antoine Mercadal
c6bd758793
Merge pull request #2087 from Dogild/CPAnimationDelegateProtocol
...
New: Added protocol CPAnimationDelegate
2014-04-03 10:40:07 -07:00
Antoine Mercadal
cd4d657815
Merge pull request #2086 from Dogild/SplitViewDelegateProtocol
...
New: Added CPSplitViewDelegate protocol
2014-04-03 10:39:28 -07:00
Antoine Mercadal
a4852b7a21
Merge pull request #2085 from Dogild/CPPopoverDelegateProtocole
...
New: Added CPPopoverDelegate protocole
2014-04-03 10:39:07 -07:00
Antoine Mercadal
0b3c06abc0
Merge pull request #2083 from Dogild/CPDatePickerAltCommandButton
...
New: Graphical CPDatePicker clicking on the arrows with key mask Command/Control/Alternate
2014-04-03 10:38:35 -07:00
Alexander Ljungberg
1b351ad5bb
New: + CPColor checkerBoardColor for debug use.
...
This color has a standard 'transparency' checkerboard pattern which is especially useful for our scrolling tests where it makes scrolling easy to visualise.
Refs #2078 , #2079 .
2014-04-03 11:38:11 +01:00
Alexander Ljungberg
1a1fc3ef21
Merge pull request #2079 from mockingbird/fix-osx-scrolling
...
Fix OS X scrolling issue. Closes #2078 .
2014-04-03 10:52:24 +01:00
Saikat Chakrabarti
fa3f18c88b
Have CPWindow setContentView check that the new view is not the same as the existing content view.
2014-04-02 22:56:22 -07:00
Alexandre Wilhelm
904454d737
New: added delegate outlineView:willRemoveView:forTableColumn:item: in CPOUtlineView
2014-04-02 19:27:40 -07:00
Alexandre Wilhelm
c1fb54ecad
New: Added delegate tableView:willRemoveView:forTableColumn:row
...
Added delegate tableView:willRemoveView:forTableColumn:row in CPTableView
2014-04-02 13:55:39 -07:00
Antoine Mercadal
bd88b28310
Merge pull request #2099 from Dogild/bootstrap
...
Fixed: path is wrong with local copy
2014-04-01 18:26:30 -07:00