• allegro5.a5_display
  • allegro5.a5_file
  • allegro5.a5_font
  • allegro5.a5_image
  • allegro5.a5_joystick
  • allegro5.a5_main
  • allegro5.a5_misc
  • allegro5.a5_opengl
  • allegro5.a5_shader
  • allegro5.a5_sound
  • allegro5.a5_thread
  • allegro5.a5_triangles
  • animation
  • array
  • atlas
  • buffer
  • color
  • common
  • csg.csg_aabb
  • csg.csg
  • csg.csg_octree
  • csg.csg_shapes
  • csg.csg_test
  • data
  • display
  • exception
  • file
  • font
  • glsl
  • grid
  • hash
  • image
  • image_op
  • index
  • ini
  • isometric
  • joystick
  • keyboard
  • land
  • layer
  • list
  • log
  • main
  • map
  • mem
  • mouse
  • net
  • noise
  • openglutil
  • perlin
  • pixelmask
  • plasma
  • pool
  • protobuf
  • queue
  • random
  • runner
  • shader
  • sound
  • sprite
  • thread
  • tilegrid
  • triangles
  • util2d
  • util3d
  • util
  • view
  • voronoi
  • widget.base
  • widget.board
  • widget.book
  • widget.box
  • widget.button
  • widget.checkbox
  • widget.container
  • widget.edit
  • widget.gul
  • widget.hbox
  • widget.layout
  • widget
  • widget.menu
  • widget.mover
  • widget.panel
  • widget.scrollbar
  • widget.scrolling
  • widget.sizer
  • widget.slider
  • widget.spin
  • widget.text
  • widget.theme
  • widget.vbox
  • widget.widget_list
  • yaml.external
  • yaml.internal
  • yaml
  • yaml.xml

land.widget.book

LandWidgetBook

A book widget is a container, which shows only one of its children at a time. The visible one can be selected with tabs (usually at the top).

land_widget_book_initialize

Parameters: LandWidget * base, LandWidget * parent, int x, int y, int w, int h

land_widget_book_show_page

Parameters: LandWidget * self, LandWidget * page

Change the visible page of the notebook. If ‘’page’’ is None or not a child of the notebook, then an empty tab will be shown.

land_widget_book_remove_page

Parameters: LandWidget * widget, LandWidget * rem

Remove a widget from the book.

land_widget_book_add

Parameters: LandWidget * widget, LandWidget * add

Add a new item to the notebook. This will not make it visible yet, use [land_widget_book_show_page] for that.

land_widget_book_pagename

Parameters: LandWidget * widget, char const * name

land_widget_book_new

Parameters: LandWidget * parent, int x, int y, int w, int h

Returns: LandWidget*

land_widget_book_get_tabbar

Parameters: LandWidget * widget

Returns: LandWidget*

land_widget_book_hide_tabbar

Parameters: LandWidget * widget

land_widget_book_interface_initialize

no parameters

land_widget_book_get_current_page

Parameters: LandWidget * self

Returns: LandWidget*

land_widget_book_get_page_n

Parameters: LandWidget * self, LandWidget * page

Returns: int

land_widget_book_get_last_page

Parameters: LandWidget * self

Returns: LandWidget*

land_widget_book_get_nth_page

Parameters: LandWidget * self, int n

Returns: LandWidget*

land_widget_book_show_nth

Parameters: LandWidget * self, int n


Generated: Thu 27 Feb 2020 10:49:37 PM EST