tshirtman
fc62285c9e
Merge branch 'master' of github.com:kivy/kivy
2012-11-27 01:42:51 +01:00
tshirtman
ccc5666ee6
add some doc in the guide2
2012-11-27 01:42:13 +01:00
tshirtman
5f6ee4f9cf
add **kwargs to super().__init__ call in App.__init__
2012-11-27 00:06:35 +01:00
Thomas Hansen
a9db7f4014
core.text: fix line_height of last line in label (dont add extra space below label on last line)
2012-11-26 16:09:23 -06:00
Mathieu Virbel
d4ef9c3e92
add versionadded
2012-11-26 18:59:03 +01:00
Mathieu Virbel
17bf207703
Merge branch 'label_lineheight' of https://github.com/hansent/kivy into hansent-label_lineheight
2012-11-26 18:52:38 +01:00
tshirtman
7fe72d759e
update/fixes to guide2 doc
2012-11-26 17:35:21 +01:00
tshirtman
399c64f73c
Merge branch 'new_doc_review'
2012-11-26 17:06:47 +01:00
qua-non
3c1bf990be
UIX: Widget fix canvas positioning when inserting at first position ref:
...
issue #819
2012-11-26 06:32:35 +05:30
qua-non
450c8664f2
UIX: fix loading with non default `arrow_pos`, closes #820
2012-11-26 05:55:31 +05:30
tshirtman
0078438566
some addition to new documentation
2012-11-26 01:11:46 +01:00
qua-non
c45a318873
UIX: bubble honour index when adding to children
2012-11-26 04:29:08 +05:30
tshirtman
0debf84859
explain app creation and events
2012-11-25 02:34:15 +01:00
tshirtman
55da531dcb
Merge branch 'master' of github.com:kivy/kivy
2012-11-24 19:33:17 +01:00
tshirtman
813c0fe327
flake8 fixes to lang.py
...
replace double calls to startswith by call to startswith with a tuple
2012-11-24 19:16:47 +01:00
tshirtman
1776d77f9f
fix videoplayer not resetting data when source changed
2012-11-24 18:53:24 +01:00
tshirtman
0ac6810fc4
add patch from T500 to fix off-by-one error in kv errors
2012-11-24 18:53:24 +01:00
tshirtman
636684010b
fix videoplayer not resetting data when source changed
2012-11-23 22:47:10 +01:00
tshirtman
1ee7254c50
add patch from T500 to fix off-by-one error in kv errors
2012-11-23 16:35:44 +01:00
tshirtman
7066f35ce7
flake8 fixes and show binding in example of filechooser
2012-11-23 14:33:59 +01:00
Gabriel Pettier
2ea734c81e
Merge pull request #816 from mike-perdide/patch-5
...
ParserRuleProperty.__repr__ was missing a space
2012-11-22 15:16:21 -08:00
Julien Miotte
d2e93b03a0
ParserRuleProperty.__repr__ was missing a space
...
The displayed property would look like: <ParserRuleProperty name='cols' filename=None:3value='1' watched_keys=None>
2012-11-22 23:30:05 +01:00
Mathieu Virbel
60c9fdb4a4
carousel: hide the container type into slides, current_slide, previous_slide, next_slide. /!\ This commit BREAK the API
...
The previous API was bad, the container was exposed to the user: RelativeLayout. We never done this approach in other widget.
This commit give a direct access to the user slide. add/remove/clear widgets are fixed too.
2012-11-22 18:08:00 +01:00
Mathieu Virbel
55f6c97e97
relativelayout: if a size is passed in __init__() or in a rule, then ensure it will be used for the content size.
2012-11-22 18:05:07 +01:00
Mathieu Virbel
ea0a2f34a3
Merge pull request #809 from mike-perdide/fix-example
...
Fixing bind() example
2012-11-20 17:55:54 -08:00
Mathieu Virbel
5f0a2c4504
fix for latest Cython 0.17.2
2012-11-21 00:01:25 +01:00
Thomas Hansen
c08e79070f
add example to show text_size and line_height property of label
2012-11-20 14:36:22 -06:00
Thomas Hansen
44492e2ea4
add line_height property to label
2012-11-20 14:36:05 -06:00
Julien Miotte
7d07041331
Fixing bind() example (wrong event signature)
...
On_press only provides the emitting object.
2012-11-20 20:27:32 +01:00
Julien Miotte
e71dcabc1b
Fixing bind() exemple (undefined refs).
2012-11-20 20:27:05 +01:00
Mathieu Virbel
6ff2a698eb
stencil: add a python property to change the func_op of the StencilUse. Plus add the documentation for it. refs #790
2012-11-20 20:08:39 +01:00
Mathieu Virbel
dfb9930da9
Merge pull request #740 from kivy/TabbedPanelItem
...
Tabbed panel item
2012-11-19 08:19:38 -08:00
Mathieu Virbel
1fd31cefd8
Merge branch 'master' of ssh://github.com/kivy/kivy
2012-11-19 16:57:37 +01:00
Mathieu Virbel
85f2e0bc5a
utils: simplify get_hex_from_color
2012-11-19 16:56:53 +01:00
Mathieu Virbel
842b284c0d
Merge branch 'master' into color_label
2012-11-19 16:49:54 +01:00
Mathieu Virbel
2372fa9f30
Merge pull request #803 from kivy/win_size
...
Core: Window update `size` property on window re-size
2012-11-19 07:47:39 -08:00
Mathieu Virbel
7180c1ceb2
modalview: allow to close the modalview by hitting escape, if the auto_dismiss is allowed. closes #776
2012-11-19 16:46:23 +01:00
Mathieu Virbel
3d45421b2d
Merge pull request #771 from kivy/modalview_onopen_oncomplete
...
put the dispatching of the on_open event of modalview after the animation
2012-11-19 07:40:52 -08:00
qua-non
3d5932484a
Merge pull request #801 from mike-perdide/patch-3
...
Spacing is different from padding, fixing doc.
2012-11-17 15:09:05 -08:00
qua-non
6f014130a9
UIX:Label honour `color` property when using makup
2012-11-18 03:41:07 +05:30
Julien Miotte
06372db288
Spacing is different from padding, fixing doc.
2012-11-17 14:15:03 +01:00
tshirtman
2d776364fb
add simple example in kivy.uix.video.py
2012-11-16 14:31:56 +01:00
tshirtman
ae2c63ec33
adding simple example in slider.py
2012-11-15 20:58:09 +01:00
Mathieu Virbel
4a70238fca
Merge branch 'master' of ssh://github.com/kivy/kivy
2012-11-12 16:43:33 +01:00
Mathieu Virbel
0b4f8524ea
window: ensure the on_resize event is dispatched on win/osx. closes #789
2012-11-12 16:43:19 +01:00
Qua-non
880a85b504
Core: Window update `size` property on window re-size
2012-11-11 03:14:51 +05:30
Gabriel Pettier
ad3f5f139f
correct error in screenmanager docstring
...
(sm->screen)
2012-11-08 14:48:30 +01:00
Mathieu Virbel
b39248367b
Merge branch 'fix-carousel'
2012-11-08 09:48:20 +01:00
Mathieu Virbel
b242112850
carousel: dont use the same configuration as scrollview, the timing doesnt give a good behavior.
2012-11-08 09:47:50 +01:00
Mathieu Virbel
5cc1d26f07
add carousel example with buttons
2012-11-08 09:33:59 +01:00