Renamed project in copyright header.
This commit is contained in:
parent
2dcc17500a
commit
98d3dfbb7b
@ -1,21 +1,21 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
TinkerBell Integration guide
|
||||
Turbo Badger Integration guide
|
||||
-----------------------------
|
||||
|
||||
This is a short guide to integrating tinkerbell in a game or application.
|
||||
This is a short guide to integrating Turbo Badger in a game or application.
|
||||
It basically list what you most probably want to do.
|
||||
More details is found in the method definitions.
|
||||
|
||||
Input
|
||||
-----
|
||||
|
||||
You need to create a "root widget" for your UI widgets. A TBWidget that act
|
||||
as receiver for input, painting etc, and is parent to your other widgets.
|
||||
TinkerBell will handle input capture, focus, etc. automatically.
|
||||
You need to create at least one "root widget" for your UI widgets. A TBWidget that
|
||||
act as receiver for input, painting etc, and is parent to your other widgets.
|
||||
Turbo Badger will handle input capture, focus, etc. automatically.
|
||||
|
||||
List of input triggers (root is your root TBWidget):
|
||||
|
||||
@ -56,13 +56,13 @@ it needs to run next is changed.
|
||||
Rendering
|
||||
---------
|
||||
|
||||
TBRenderer & TBBitmap are the interfaces that implements everything that tinkerbell
|
||||
TBRenderer & TBBitmap are the interfaces that implements everything that Turbo Badger
|
||||
needs for rendering. There is already a OpenGL renderer implementation, using fixed
|
||||
function pipeline.
|
||||
|
||||
Some apps need to unload all graphics and reload it again, f.ex when the app
|
||||
is put to sleep in the background and the graphics context is lost.
|
||||
TinkerBell implements a renderer listener to handle this in all places that needs
|
||||
Turbo Badger implements a renderer listener to handle this in all places that needs
|
||||
it, so the only thing you need to do is to call:
|
||||
|
||||
g_renderer->InvokeContextLost(); // Forget all bitmaps
|
||||
@ -73,7 +73,7 @@ Font system
|
||||
-----------
|
||||
|
||||
There is font implementations for freetype and stb_truetype.h, and a bitmap font
|
||||
system (tbbf - "tinker bell bitmap font") that is very simple to use and supports
|
||||
system (tbbf - "turbo badger bitmap font") that is very simple to use and supports
|
||||
any range or characters, glow & shadow. You can choose any of theese or add your own.
|
||||
It possible to use multiple backends, so you can f.ex use tbbf for some bitmap fonts,
|
||||
and a freetype backend for other fonts.
|
||||
|
31
readme.md
31
readme.md
@ -1,19 +1,17 @@
|
||||
TinkerBell UI Toolkit
|
||||
|
||||
Turbo Badger - Fast UI toolkit for hardware accelerated games & applications.
|
||||
-----------------------------------------------------------------------------------
|
||||
|
||||
I created TinkerBell UI toolkit because i wanted a small UI toolkit for use in
|
||||
games and hardware accelerated applications across multiple platforms (that target
|
||||
both desktop and mobile).
|
||||
I created Turbo Badger because i wanted a small UI toolkit for use in games and
|
||||
hardware accelerated applications across multiple platforms (that target both
|
||||
desktop and mobile).
|
||||
|
||||
The goal is a toolkit that can be easily integrated into an existing codebase to
|
||||
make UI with skinning.
|
||||
|
||||
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.
|
||||
|
||||
I named it TinkerBell UI (TBUI for short) because it's lightweight (small
|
||||
footprint) compared to many other UI toolkits.
|
||||
etc.) are quite minimal for the basic needs of Turbo Badger itself.
|
||||
|
||||
See [integration.txt](integration.txt) for details about integrating image loading,
|
||||
renderer, font system etc.
|
||||
@ -53,7 +51,7 @@ following restrictions:
|
||||
What features does it have
|
||||
-----------------------------------------------------------------------------------
|
||||
|
||||
TinkerBell core:
|
||||
Core:
|
||||
|
||||
* Widgets (many common standard widgets)
|
||||
* Text editing widget (With clipboard, undo/redo, styling functionality,
|
||||
@ -84,7 +82,7 @@ TinkerBell core:
|
||||
* Unit tests.
|
||||
|
||||
|
||||
The code design & developing TinkerBell
|
||||
The code design & developing Turbo Badger
|
||||
-----------------------------------------------------------------------------------
|
||||
|
||||
If you try to familiarize yourself with the code, you might notice the heavily used
|
||||
@ -95,8 +93,8 @@ substitute for enums and all kind of things needing custom IDs.
|
||||
With compilers supporting C++ 11 `constexpr`, the string to integer conversion is
|
||||
done compile time.
|
||||
|
||||
If you want to add new stuff to TinkerBell, here are some hints that will make it
|
||||
easier to get a pull requests accepted:
|
||||
If you want to add new stuff, here are some hints that will make it easier to get a
|
||||
pull requests accepted:
|
||||
|
||||
* Do not make it dependant on exceptions, RTTI or stl (or boost or similar)
|
||||
|
||||
@ -149,6 +147,11 @@ scripts).
|
||||
Author
|
||||
-----------------------------------------------------------------------------------
|
||||
|
||||
Emil Segerås (emilsegers (at) gmail (dot) com)
|
||||
Emil Segerås
|
||||
Web: <http://fiffigt.com>
|
||||
TinkerBell home: <https://github.com/fruxo/tinkerbell>
|
||||
|
||||
Turbo Badger home: <https://github.com/fruxo/tinkerbell>
|
||||
Mailing list: turbobadger@googlegroups.com
|
||||
|
||||
Please use the mailing list for questions & suggestions instead of mailing me
|
||||
directly!
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// ================================================================================
|
||||
// == This file is a part of TinkerBell UI Toolkit. (C) 2011-2014, Emil Segerås ==
|
||||
// == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
|
||||
// == See tb_core.h for more information. ==
|
||||
// ================================================================================
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user