Commit Graph

1822 Commits

Author SHA1 Message Date
Mathieu Virbel 13646a3814 ios: add some issues in the doc 2012-03-11 22:53:18 +01:00
Mathieu Virbel 3866b93e99 demo: activate pause capability for our 3 kivy demo 2012-03-11 02:16:02 +01:00
tshirtman 51584e1acf Merge pull request #415 from kivy/record_keyboard
Record keyboard
2012-03-09 13:23:59 -08:00
gabriel.pettier 6713ea470a Revert "simplify RecorderMotionEvent depack"
This reverts commit 97021f3287.
2012-03-09 22:22:05 +01:00
Mathieu Virbel 8f72fd4b3f doc fixes 2012-03-09 17:32:23 +01:00
Mathieu Virbel d6a5bae975 doc: add instructions for packaging on ios 2012-03-09 16:52:31 +01:00
Mathieu Virbel 0ea603d796 Merge branch 'master' of ssh://github.com/kivy/kivy 2012-03-09 15:57:22 +01:00
Mathieu Virbel 88ac5be1d7 fix android documentation 2012-03-09 15:56:59 +01:00
Mathieu Virbel 74c2ab07ec graphics/fbo: fix bad renaming. 2012-03-08 12:22:50 +01:00
Mathieu Virbel 520c11874e Merge branch 'core-gl-reload' 2012-03-08 02:03:50 +01:00
Mathieu Virbel 610a604bb0 core/graphics: typo on graphics 2012-03-08 02:03:31 +01:00
Mathieu Virbel c77224386e core/graphics: add documentation about gl reloading, and examples about how to reload generated texture and fbo 2012-03-08 01:59:52 +01:00
Mathieu Virbel b316ce3c5a kivy/config: add resizable token in graphics section, default to 1. If 0, the window will have a static size. 2012-03-08 01:20:08 +01:00
Mathieu Virbel ca7714281b core/graphics: fix missing attributes not copied when reloaded (min_filter, mag_filter and wrap)
+ fix vbo crash (invalid flags set while reloading.)
2012-03-08 01:10:41 +01:00
tshirtman 7bc5ab95ed closes: #418 2012-03-07 17:02:09 +01:00
tshirtman 27f5270c9a closes: #417 2012-03-07 17:00:55 +01:00
qua-non 8399784a75 add version info for background_color and foreground_color properties 2012-03-07 17:57:06 +05:30
tshirtman bc07e6d43e Merge pull request #416 from akshayaurora/text_input_color
Add background_color and foreground_color properties to TextInput
2012-03-07 01:55:18 -08:00
Qua-non 414a31aad9 add background_color and foreground_color properties to TextInput 2012-03-07 03:17:26 +05:30
Mathieu Virbel 7fd74fa431 core/window: fix maximize/restore size (clicking twice on the maximum button didnt restore the previous size. this fix works on windows, but not on osx) 2012-03-06 19:49:15 +01:00
Mathieu Virbel 15087eba65 core/graphics: include fbo in the gl reloading process. standardize add/remove_reload_observers for texture, fbo and context 2012-03-06 16:49:27 +01:00
Mathieu Virbel b85fe03599 graphics/context: introduce a new Context singleton manager. It's responsible for managing resources for texture, vbo, shaders, canvas. Deallocation are going though manual delayed GC. Reloading are managed on Window needs.
+ It's mainly used to get the reloading code in one place, and reduce the complexity from each graphics class.
+ create vbo resources only when drawing, not at creation.
2012-03-06 02:31:40 +01:00
gabriel.pettier 97021f3287 simplify RecorderMotionEvent depack 2012-03-06 01:44:58 +01:00
gabriel.pettier eb527ef6c5 add physicall keyboard events to recording module 2012-03-06 01:41:28 +01:00
Mathieu Virbel edd1d2a5ee core/window: remove some debugs 2012-03-05 17:28:49 +01:00
Mathieu Virbel d45219d5b8 core/window: better handling of system size. window size can now be changed, opengl is automatically reloaded on the first resize (the first initialization doesn't count.)
+ fix issue with mouse_up never fired after a resize
2012-03-05 17:03:23 +01:00
Mathieu Virbel d05777e954 core: got a first version of gl context reloading working. now need to clean and test more. 2012-03-03 18:45:23 +01:00
Mathieu Virbel 4ee7014da9 Merge branch 'master' into core-gl-reload 2012-03-02 01:09:52 +01:00
Mathieu Virbel 4952db3b22 core/window: implement a new dropfile event, currently used only on macosx. 2012-03-02 00:48:32 +01:00
Mathieu Virbel 6c1430d3c2 button: fix grabbing priority in touch move/up 2012-03-01 23:45:19 +01:00
Mathieu Virbel 625528db29 Merge pull request #412 from akshayaurora/bubble
Remove redundant `background_texture`, this also fixes updation of textu...
2012-03-01 14:40:46 -08:00
Qua-non 62752ddd26 Remove redundant `background_texture`, this also fixes updation of texture
when background_image was changed.
2012-03-02 03:01:00 +05:30
qua-non 349f3e22b2 Merge pull request #411 from akshayaurora/nested_widget
propagate on_touch_down on_touch_up and on_touch_move to kids in Button and Label
2012-02-29 22:27:03 -08:00
Qua-non e2cf603ddd propagate touch_move and touch_up events to kids and two style guide fixes 2012-03-01 11:50:48 +05:30
Qua-non 732f239b54 propagate on_touch_down to kids in Button and Label 2012-03-01 02:20:08 +05:30
Mathieu Virbel 318dc9ccb6 Merge branch 'master' of ssh://github.com/kivy/kivy 2012-02-29 19:38:51 +01:00
Mathieu Virbel 85367ca1bb core/graphics: use a gpu buffer for storing vertex indices, and use it with GL_ELEMENT_ARRAY_BUFFER. Faster for screen with lot of drawings.
+ dont unbind after drawing, but only when using Callback instruction.
2012-02-29 19:38:32 +01:00
Mathieu Virbel f725b9e7b7 working on the opengl context reloading. first pass, partially working on osx. 2012-02-27 17:29:24 +01:00
Mathieu Virbel 402ad02514 fix pyinstaller packaging + macosx docs. Seem that __import__ is not supported by pyinstalled, so the last pep8/pyflakes fixes broke it. 2012-02-27 03:36:41 +01:00
Mathieu Virbel abfeb2bc3c add possibility to read rst document with python -m kivy.uix.rst <docname.rst> 2012-02-24 14:38:43 +01:00
Mathieu Virbel e9fbb48463 fix setup.py for python-for-android project 2012-02-24 11:24:21 +01:00
Mathieu Virbel 46dfe8951e fix window build. 2012-02-24 02:25:25 +01:00
Mathieu Virbel da1e506abf try to fix win32 build 2012-02-24 02:14:14 +01:00
Mathieu Virbel 69bea76df9 rework setup.py, need testing on windows/linux. hopefully that would be more easy to implement new extensions that require new libs now. 2012-02-24 00:25:20 +01:00
Mathieu Virbel 8d3403d3eb core/label: fix rendering of line without text (black bar again.) 2012-02-22 16:01:55 +01:00
Mathieu Virbel 4b56de0de9 videoplayer: implement fullscreen boolean. The video can be switch to fullscreen with a double tap. Closes #331
+ behavior can be deactivated by setting allow_fullscreen to False.
+ rst video player use default fullscreen now.
+ update example to use this new widget
2012-02-21 17:14:50 +01:00
Mathieu Virbel 4719946be8 rst: support for .. video:: directive 2012-02-21 12:42:39 +01:00
Mathieu Virbel 0e4c300d63 videoplayer: add annotation support 2012-02-20 20:10:13 +01:00
Mathieu Virbel 18f4882c78 videoplayer: introduce new videoplayer widget, support for thumbnail, play/pause button, volume button, seek bar + real load only when user pressed the play button. 2012-02-20 18:20:28 +01:00
Mathieu Virbel 3f01ad4e2c Merge branch 'master' of ssh://github.com/kivy/kivy 2012-02-20 18:19:02 +01:00