CaiWenzhi
58db7b5c75
Some widgets would be default enabled touch
2014-03-07 12:34:19 +08:00
CaiWenzhi
1606671224
Fixed bug of Text
2014-03-07 12:05:33 +08:00
CaiWenzhi
1d867d770b
Modify Windows project
2014-03-06 22:27:57 +08:00
CaiWenzhi
94339312ba
Modify text filed size control
2014-03-06 21:58:45 +08:00
CaiWenzhi
8b7a5c3141
Add RichText sample
2014-03-06 20:52:29 +08:00
CaiWenzhi
03f5be47da
Modify for editor
2014-03-06 17:21:09 +08:00
CaiWenzhi
2a5ecc2376
Fixed bugs of Flipping
2014-03-06 13:40:46 +08:00
CaiWenzhi
5e84c15812
Add RichText
2014-03-05 23:03:49 +08:00
CaiWenzhi
4f9dfdbef8
Fixed build error except Windows
2014-03-05 21:18:51 +08:00
CaiWenzhi
ab47cafb31
Merge branch 'develop' into develop_nutty_modify_framework_for315
...
Conflicts:
build/cocos2d_libs.xcodeproj/project.pbxproj
cocos/gui/UIButton.cpp
cocos/gui/UIButton.h
cocos/gui/UIWidget.h
2014-03-05 16:52:31 +08:00
pandamicro
364317b532
Feature #4236 : Refactor is/setFlipX/Y to is/setFlippedX/Y in gui classes
2014-03-04 23:42:58 +08:00
CaiWenzhi
8b9d572961
Merge branch 'develop' into develop_nutty_modify_framework_for315
2014-03-04 16:59:06 +08:00
CaiWenzhi
4a2dc4a607
Add custom widget and reader
2014-03-04 16:51:35 +08:00
James Chen
5d1113aeea
issue #4234 : Fixes linking error in UI.
2014-03-04 13:49:54 +08:00
Ricardo Quesada
c386f88e32
Merge branch 'develop' into visit_draw_improved
...
Conflicts:
CHANGELOG
cocos/gui/UILayout.h
2014-03-03 11:27:42 -08:00
CaiWenzhi
c09b139fee
Fixed bug of loadingbar
2014-03-03 23:46:47 +08:00
CaiWenzhi
c615811124
Modify methods of Changing color and opacity.
2014-03-03 23:24:57 +08:00
cai wenzhi
a6e4a5e5aa
Adjust layout
2014-03-02 22:41:47 +08:00
cai wenzhi
683d3c9f14
Merge branch 'develop' into develop_nutty_modify_framework_for315
2014-03-02 19:28:44 +08:00
cai wenzhi
4f90676e92
Add method for editor
2014-03-01 22:34:25 +08:00
Ricardo Quesada
d78304599d
Cache working OK.
...
Performance increased in 20% for static objects.
2014-02-28 16:10:48 -08:00
Ricardo Quesada
6920bec6ef
transform object returns the MV
...
code cleaner.
the kmGL code is altogether
2014-02-28 11:20:53 -08:00
Ricardo Quesada
eb66ddd931
visit and draw improved.
...
`visit()` and `draw()` are improved.
they both receive:
- `Renderer`
- `kmMat4` for transformation
- `bool` whether or not the transform changed from the previous frame
Although `draw` and `visit` are not using the 3 new parameters,
they will start using it in the coming days (or weeks, or months).
Those parameters are needed for:
- `Renderer` shouldn't be a singleton. There should be one renderer per Director. There could be more than one renderer
- we should get rid of `kmGLXXX` functions since nodoby knows what is happening. the `kmMat4` is for that.
- whenever possible, we should try to optimize the multiplications. the `dirty` flag is for that.
We need those changes, so, it is better to change the API now, and not right after v3.0-final is released.
2014-02-27 21:43:54 -08:00
James Chen
a96f44f31d
Adds override for override functions (onEnter, onExit) in cpp-tests.
2014-02-27 21:10:03 +08:00
andyque
bf81591b48
fixed #3829 . change namespace gui to ui
2014-02-25 10:18:44 +08:00
James Chen
5e6130c92c
issue #4058 : Get rid of Object ,rename it to Ref.
2014-02-20 10:53:49 +08:00
CaiWenzhi
c1cfa1cce2
Merge branch 'develop' into develop_nutty_modify_framework_addlayoutparameterclone
2014-02-07 11:26:46 +08:00
Ricardo Quesada
8ecaf49f93
GLView improvements
...
it is not longer a singleton
it is possible to specify the size
2014-01-23 15:36:55 -08:00
CaiWenzhi
88ef4e1cc5
Merge branch 'develop' into develop_nutty_modify_framework_addlayoutparameterclone
2014-01-22 11:58:59 +08:00
James Chen
9f793f8a9b
Warning fixes: 1) getZOrder —> getLocalZOrder. 2) long —> int
2014-01-20 15:03:30 +08:00
CaiWenzhi
223857398d
Add "override"
2014-01-20 13:44:44 +08:00
CaiWenzhi
f10e1ee04c
optimize scissor clipping
2014-01-20 13:38:13 +08:00
CaiWenzhi
a3f9a636e2
Merge branch 'develop' into develop_nutty_modify_framework_addlayoutparameterclone
2014-01-20 11:54:11 +08:00
Ricardo Quesada
5fcbf42356
GlobalZOrder is used for render priority...
...
...and not vertexZ
Node::setGlobalZOrder() is used to change that.
Node::setZOrder() -> Node::setLocalZOrder();
2014-01-18 11:38:06 -08:00
Ricardo Quesada
8931d968c0
Renderer uses a float as a key
...
Instead of using a 64-bit int key with viewport, opaque and depth,
it only uses a 32-bit float with only the depth.
Saves time in:
- No need to convert the 32-bit float into 24-bit int
- keys are shorter
2014-01-17 16:08:29 -08:00
CaiWenzhi
f33064a2fc
Fixed bug of label
2014-01-17 15:22:59 +08:00
CaiWenzhi
58ed383c01
Merge branch 'develop' into develop_nutty_modify_framework_addlayoutparameterclone
2014-01-17 14:12:19 +08:00
Ricardo Quesada
d0dbf34319
removes "include "cocos2d.h" from cocos2d files
2014-01-16 21:35:58 -08:00
CaiWenzhi
bea46fa290
Add clone method to LayoutParameter
2014-01-17 13:10:04 +08:00
CaiWenzhi
3f4db26a2b
Fixed bugs
2014-01-10 16:02:23 +08:00
CaiWenzhi
c3b7a9645a
Fixed bugs of "anchor point" and "update"
2014-01-09 19:00:47 +08:00
CaiWenzhi
1ca7642976
Merge branch 'develop' into develop_nutty_modify_framework_removeuselesssample
2014-01-09 15:51:24 +08:00
CaiWenzhi
19f0e55464
fixed bug of layout
2014-01-09 15:43:18 +08:00
walzer
7055340ace
fixed #3627 . There're no UICCLabelAtlas any more.
2014-01-09 12:43:57 +08:00
walzer
2d8fcb2c00
issue #3627 , remove UICCLabelAtlas, add LabelAtlas::create() for GUI module
2014-01-09 12:40:51 +08:00
CaiWenzhi
e3667a2894
Fixed bugs.
2014-01-09 09:58:27 +08:00
James Chen
26efb4bf5c
long —> ssize_t for some classes.
2014-01-07 18:26:31 +08:00
edwardzhou
e1c21aa9cb
rename UIHelper to Helper for consistency
2014-01-07 16:22:18 +08:00
James Chen
2a3481f20c
Moves temp files to CURRENT_BINARY_DIR.
2014-01-06 23:44:36 -08:00
Zhe Wang
9b6027d284
Merge pull request #4947 from walzer/develop
...
udpate copyrights for the new year 2014 and Chukong.
2014-01-06 19:50:18 -08:00