Commit Graph

290 Commits

Author SHA1 Message Date
Qua-non 71ebe6c6e5 Doc: update images/gif's to reflect latest theme for kivy 2012-10-01 02:30:58 +05:30
Mathieu Virbel cfb118cccf boxlayout: honoring pos_hint, only the one that make sense depending the orientation. closes #698 2012-09-29 13:35:47 +02:00
Mathieu Virbel 66b78ec63f line: extend Line() to add new setter: ellipse, circle and rectangle. With this, we can build automatically the points.
Check the examples/canvas/lines_extended.py for a demo.
2012-09-26 18:43:03 +02:00
Mathieu Virbel 8c642388af line: add close property, use it for both legacy or extended mode.
+ don't draw cap if line is closed
+ optimize cos/sin calculation
+ fix crash due to invalid calculation if some round joint are avoided
2012-09-24 15:41:13 +02:00
Mathieu Virbel 9f4a649a3e enhance line example with 2 lines and sin/cos animation 2012-09-22 01:02:19 +02:00
Mathieu Virbel a217c363bc line: add an example 2012-09-22 00:08:49 +02:00
Mathieu Virbel 9df112b77e markup: the fix from #619 was wrong, and the text L+1 was shifted to the right. If we have a new line, set the default line-height to a space height (should be the smaller line height possible.) 2012-09-10 12:30:16 +02:00
Mathieu Virbel 1d60799254 step pr: pep8 + add it to the demo 2012-09-02 13:08:19 +02:00
tshirtman c2082e95b3 add back showcase textinput size change, forgotten at merge 2012-08-07 12:42:51 +02:00
tshirtman 53c16201ea Merge branch 'master' of github.com:kivy/kivy
Conflicts:
	examples/demo/showcase/showcase.kv
2012-08-07 11:54:36 +02:00
tshirtman 20bf42f885 fix a lot of tab characters in examples… 2012-08-07 11:45:53 +02:00
tshirtman 9719aaed80 replace tab with spaces in example kv. 2012-08-07 11:38:27 +02:00
Edwin Marshall (aspidites) a2e531051f - updated example to use new API; still issues 2012-07-31 22:15:58 -05:00
Mathieu Virbel 0167a5e4ca spinner: add spinner in the showcase example 2012-07-31 16:28:43 +02:00
Mathieu Virbel 82eb0051f4 spinner: introduce new Spinner widget: A view that displays one child at a time and lets the user pick among them. Made only for text.
(this replace the combobox pull request, and its based on the dropdown widget.)
2012-07-31 16:02:51 +02:00
gabriel.pettier 357e9a2afa stylefixes 2012-07-29 22:17:02 +02:00
gabriel.pettier 9c68e79665 remove all obsolete __android__ uses in __name__ tests 2012-07-29 21:43:01 +02:00
Mathieu Virbel 04b405669f Merge branch 'uix-screenmanager' 2012-07-13 02:10:16 +02:00
Mathieu Virbel ba0e4732ac screenmanager: more documentation, extend example with new Wipe/Fade transitions. add factory registers. 2012-07-13 02:10:05 +02:00
Mathieu Virbel 03a1978f3e popup: fixed popup usage when content is defined from kv + add example. closes #562 2012-07-09 20:11:30 +02:00
Mathieu Virbel de923fabff add a simple example for demonstrating screenmanager 2012-07-08 21:56:34 +02:00
Qua-non 3b4fafabcf TabbedPanel: change `default_tab_class` to `..._cls` &
change it's type from StringProperty to ObjectProperty
to be consistant with other widgets.
2012-07-02 23:30:30 +05:30
Qua-non 9e7d26e158 TabbedPanel: introduce current_tab property 2012-07-02 01:03:37 +05:30
Qua-non c3ab0c5469 TabbedPanel: Fix loading of default tab content when using a existing
rule
2012-07-01 22:00:46 +05:30
Qua-non aa4d61cbb5 TabbedPanel: remove `orientation` from docs and from examples as
the default content container is now a FloatLayout instead of a
GridLayout, for consistancy with other widgets.
2012-07-01 18:50:46 +05:30
Qua-non 5c717450fb TabbedPanel: remove debug(Print) statements 2012-07-01 17:51:20 +05:30
Qua-non 0367e82ed2 TabbedPanel: introduce dafault_tab_class 2012-07-01 16:37:13 +05:30
Qua-non daa04288fd TabbedPanel: Fix. pep8 and multiple content in nested/kv
closes #543
2012-06-28 15:19:36 +05:30
Mathieu Virbel becf7fda42 Introduce CheckBox widget. If a group is set, it became a "radio button". 2012-06-23 19:28:01 +02:00
Mathieu Virbel 219a1a938a update kivy launcher installation instruction 2012-06-19 17:21:44 +02:00
Mathieu Virbel 9b21638be3 fixes app build with kv usage/root widget + others typo 2012-06-18 02:48:44 +02:00
Mathieu Virbel d1e4b40550 remove debug in touchtracer 2012-06-17 19:32:33 +02:00
Mathieu Virbel fec2f6c07f update ClearBuffers / ClearColor documentation and implementation. 2012-06-16 18:59:10 +02:00
Mathieu Virbel 46162a06e4 audio: rework audio class to use resource_find for filename, deprecate filename->source, status->state by using Properties. Closes #450
+ rework documentation
2012-06-16 17:41:07 +02:00
Mathieu Virbel a25356be03 stacklayout: fix missing size_hint_y/x calculation when layouting. closes #480 2012-06-16 01:35:16 +02:00
Qua-non a7df2b8865 :TabbedPanel: Fix tab_width, was calculated wrong in certain situations.
Plus minor doc fixes
2012-06-10 03:03:17 +05:30
Mathieu Virbel 53b8db5273 Merge branch 'uix-tabbedpanel' of ssh://github.com/kivy/kivy
Conflicts:
	kivy/uix/tabbedpanel.py
2012-06-09 18:00:43 +02:00
Mathieu Virbel 56017fd8cd tiny fixes 2012-06-09 17:47:03 +02:00
Qua-non 1bacb4355c Tabbed Panel: Fix example: call super when overriding switch_to 2012-06-08 22:10:05 +05:30
Qua-non 2865883f22 Tabbed Panel: example: show tab positions for each panel,
widget: remove only the autogenerated tab while changing the default_tab
2012-06-08 17:39:33 +05:30
Qua-non 3e2bf4c465 Tabbed Panel: Add ability to add a closable tab in example 2012-06-08 14:20:03 +05:30
Mathieu Virbel 81b2869f3b Merge branch 'master' into uix-tabbedpanel 2012-06-06 18:42:52 +02:00
Edwin Marshall (aspidites) 5066e4f55e - added sane defaults to some properties 2012-05-20 14:20:26 -07:00
Mathieu Virbel b9cc78ab04 rst: better rendering of definition item list 2012-05-07 19:11:36 +02:00
Mathieu Virbel 276a5f27ff graphics: fix stencil usage when nested, and add a new StencilUnUse instruction to remove manually the mask. We need that because it's complex to track & replay the drawing between 2 instructions.
Stencil use now INCR and DECR instructions, and with that method, you can nest up to 128 stencil layers (was 8 before.).
2012-04-16 16:20:08 +02:00
Punjab d1be6b1cac Minor Gurmukhi text edit. Replaced translation of first word. 2012-04-12 17:00:51 -05:00
Punjab 5e438306c7 Added Gurmukhi text for testing support. 2012-04-12 16:54:41 -05:00
Qua-non b4f1ee6832 add info text 2012-04-09 22:06:47 +05:30
Qua-non 435cdf91fe improve example 2012-04-09 22:02:46 +05:30
Qua-non 610ac74619 allow for variable tab_width and rename advanced example 2012-04-09 21:07:36 +05:30