AppEasy Core SDK  1.5.0
Cross platform mobile and desktop app and game development SDK - The easy way to make apps
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines
CzUIListBox.h File Reference
#include "CzActor.h"
#include "CzScene.h"
#include "CzUIBase.h"
#include "CzTemplates.h"

Go to the source code of this file.

Classes

struct  CzUIListBoxItem
class  CzUIListBox
class  CzUIListBoxCreator

Defines

#define CZ_NEW_LISTBOX(scene, listbox, name, background, width, height)

Define Documentation

#define CZ_NEW_LISTBOX (   scene,
  listbox,
  name,
  background,
  width,
  height 
)
Value:
CzUIListBox* listbox = new CzUIListBox();                                       \
    listbox->setName(name);                                                         \
    scene->addActor(listbox);                                                       \
    listbox->Init(background, width, height);                                       \
    listbox->InitListBox();