Go to file
2012-06-25 11:30:03 +02:00
Demo Some demo cleanup. 2012-06-24 17:36:54 +02:00
stb_font New font handling: 2012-06-21 12:06:08 +02:00
stb_image Removed TDImage class. 2012-05-19 14:59:46 +02:00
tbanimation Fix for broken automatic focusing in windows that fade in. 2012-06-25 11:30:03 +02:00
tinkerbell Prevent jumpy scroll when dragging a scrollbar while more content is added. 2012-06-24 18:45:33 +02:00
.gitignore .gitignore some build objects 2012-06-21 12:01:21 +02:00
freeglut.dll First commit to public rep 2011-12-14 08:42:33 +01:00
integration.txt Added context lost & restored listener. 2012-06-21 16:32:46 +02:00
Makefile Added context lost & restored listener. 2012-06-21 16:32:46 +02:00
readme.txt New font handling: 2012-06-21 12:06:08 +02:00

// ================================================================================
// == This file is a part of Tinkerbell UI Toolkit. (C) 2011-2012, Emil Segerås  ==
// ==             See tinkerbell.h for more information and license.             ==
// ================================================================================

Tinkerbell UI Toolkit - ALPHA
-----------------------------

NOTE: This is a alpha version. Some APIs is still experimental and is very
      likely to change.

I created Tinkerbell UI toolkit because i wanted a small UI toolkit for use in
games, that has minimal dependencies and is very easy to work with.

It has no dependency on stl, RTTI or exceptions. Compiling without these features
makes footprint very small. Utility classes (such as string, lists, hash table,
etc.) are quite minimal for the basic needs of tinkerbell itself.

Image loading and font system can be used if wanted, or you can make it use
whatever systems you have for this already.

What features does it have
--------------------------

  Tinkerbell core:

  -Widgets (many common standard widgets)
  -Text editing widget (With clipboard, undo/redo, styling functionality, embedded content...)
  -Extendable skin system with automatic runtime atlas creation.
  -Automatic widget layout (No need to specify widget dimensions by pixels)
  -Text based UI resource format (No need to write C++ to create UI)
  -Keyboard friendly (tab focus etc.)
  -Message handling, with delayed/timed messages.
  -All containers are scrollable/pannable (automatically from mouse/finger
   interaction, and following focus).
  -Very failproof event handling (F.ex deleting a widget that is on the
   stack in a event handler is not dangerous).
  -Widget connections (synchronize multiple widgets with "widget-values")
  -Language string handling
  -No dependency on stl, exceptions, RTTI
  -Very portable & easy to implement new backends (Image loading, fonts, renderer)
  -Support 32/64bit architectures and tested on Windows/Linux/Mac/Android/iOS
  -Uses constexpr by default for all ID comparisions on compilers that support it.
  -Unicode support (UTF8)

What features does it NOT have
-------------------------------

  -BIDI

  -No painting API except the skin & string rendering.
   The idea is that you plug tinkerbell into a OpenGL/Direct2D/3D environment anyway.

  -Not designed to run in multiple threads (running in a dedicated UI thread should
   of course be fine)

Extending tinkerbell - What to think about (if a pull request should be accepted)
---------------------------------------------------------------------------------

  -Do not make it dependant on exceptions, RTTI or stl (or boost or similar)

  -It should not crash or leak if out of memory.

  -Follow the used code style (4 spaces wide tabs, indentation & whitespace style,
   documentation etc.)

Author
------

Emil Segerås (emilsegers@gmail.com)
http://fiffigt.com/