mirror of https://github.com/kivy/kivy.git
Page:
Embedding a Carousel inside a TabbedPanel
Pages
A draggable scrollbar using a slider
AdBuddiz Android advertisements integration for Kivy apps
Advanced Graphics: In Progress
An example of background Twisted server running on Android
Android Background Services
Android SDK NDK Information
Android SDK NDK Informations
Android native embedded browser
Android style menu app skeleton
Background Service using P4A android.service
Batch installer for windows(KivyInstaller)
Breaking changes in Kivy
Building Portable Package
Button(s) in settings panel
Buttons in Settings panel
Community Guidelines
Connecting Kivy with Anaconda (OSX)
Contextual Menus
Contextual menus
Control alpha of all the children
Create source distribution release on PyPI
Creating a Release APK
Data driven variables with kivy properties
Debugging widget sizes
Deep Linking with iOS and Android
Delayed Work using Clock
Drag and Drop Widgets
Dragable Widget
Draggable Scalable Button
Editable ComboBox
Editable Label
Embedding a Carousel inside a TabbedPanel
GestureBox
Home
Implementing Android Adaptive Icons
KEP001: Instantiate things other than widgets from kv
Kivy 2.0 api breaks
Kivy Blogs and Blog Posts
Kivy Python 2 Support Timeline
Kivy Technical FAQ
Kv language preprocessing
Linking ScreenManager to a different Widget
List of Kivy Projects
Markup Summary
Menu on long touch
Migration guide from legacy garden packages
Moving kivy.garden.xxx to kivy_garden.xxx and kivy.deps.xxx to kivy_deps.xxx
On touch current widget
On touch on current widget
Packaging Kivy apps written in Python 3, targeting Windows using Nuitka
Pyjnius Vibrator Example
Release Checklist
Release notes for 1.10.0
Release notes for 1.11.0
Sample Gestures
Scaler for Retina screen
Scollable Options in Settings panel
Scrollable Label
Setting Up Kivy with various popular IDE's
Setting up Pycharm on OSX (older versions)
Setting up garden with Mac Ports
Setting up kivy with various popular IDE
Simple slider with value in label
Snippet template
Snippets awaiting moderation
Snippets
Starting Kivy App and Service on bootup on Android
Styling a Spinner and SpinnerOption in KV
Talks and tutorials
Theming Kivy
Tiled Maps & Tile Based Movement
Tiling the background of a widget with an image, pixel perfect
Ubuntu Touch
Updating widget content from a items list
User Snippets
Using Asynchronous programming inside a Kivy application
Using Buildozer on windows 10 using WSL
Viewport with fixed resolution autofit to window
Windows RT
Working with Python threads inside a Kivy application
rand0m app
wiki_proposed
1
Embedding a Carousel inside a TabbedPanel
Mathieu Virbel edited this page 2013-09-27 10:34:33 +02:00
Table of Contents
Embedding Carousel in a TabbedPanel
Summary
- author: Qua-non
- kivy: >= 1.6.0
The idea of this snippet is to embedd and link the Carousel to a TabbedPanel. Here we::
- Add the Carousel to the TabbedPanel
- Store a tab ref in every slide
- Ask Carousel to change the Slide in TabbedPanels
switch_to
method. - *Ask TabbedPanel to change the tab in Carousels
on_index
method *
#!python
from kivy.app import App
from kivy.uix.tabbedpanel import TabbedPanel
from kivy.properties import ObjectProperty
from kivy.lang import Builder
Builder.load_string('''
<RootWidget>:
carousel: carousel
do_default_tab: False
Carousel:
on_index: root.on_index(*args)
id: carousel
Button:
text: 'Slide one'
tab: tab1
Button:
text: 'Slide Two'
tab:tab2
Button:
text: 'Slide three'
tab: tab3
TabbedPanelItem:
id: tab1
text: 'tab1'
slide: 0
TabbedPanelItem:
id: tab2
text: 'tab2'
slide: 1
TabbedPanelItem:
id: tab3
text: 'tab 3'
slide: 2
''')
class RootWidget(TabbedPanel):
def on_index(self, instance, value):
tab = instance.current_slide.tab
if self.current_tab != tab:
self.switch_to(tab)
def switch_to(self, header):
# we have to replace the functionality of the original switch_to
self.current_tab.state = "normal"
header.state = 'down'
self._current_tab = header
# set the carousel to load the appropriate slide
# saved in the screen attribute of the tab head
self.carousel.index = header.slide
class MainApp(App):
def build(self):
return RootWidget()
if __name__ == '__main__':
MainApp().run()
##Comments add your comments here...