• R/O
  • HTTP
  • SSH
  • HTTPS

コミット一覧

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Small footprint UI library for hardware accelerated games & applications


RSS
Rev. 日時 作者
52049fb 2014-05-03 19:49:42 Emil Segerås

Debugging improvement of TBBitmapFragment

-Clear in different shades
-Worked around bug with visual studio variable watcher

776dc5b 2014-05-03 19:49:42 Emil Segerås

Added TBBitmapFragment GetAllocatedHeight.

d7f56ab 2014-05-03 19:49:41 Emil Segerås

Minor optimization in TBSpaceAllocator

a0a41e2 2014-05-03 19:49:40 Emil Segerås

Default map size should be customizable.

9ddd252 2014-05-01 20:36:05 Emil Segerås

.gitignore Demo.exe

b5fab75 2014-05-01 20:35:01 Emil Segerås

Fixed so Demo windows adapt better to high DPI skin.

-Position and sizes should of course be read as dimensions (dp by default).
-MoveIn and clip windows after getting preferred size.

80a88ee 2014-05-01 20:23:24 Emil Segerås

Extracted TBWindow::ResizeToFitContent logic into new method.

cbbaa15 2014-05-01 20:19:35 Emil Segerås

Added TBRect methods MoveIn and CenterIn.

6da8124 2014-05-01 20:14:07 Emil Segerås

Added ClampClipMax

3d8843a 2014-04-27 03:18:45 Emil Segerås

Fixed shortcut keys on osx.

7a2467a 2014-04-27 03:15:51 Emil Segerås

Fixed linking on osx with glfw 3.0.4.

66e2c34 2014-04-21 21:51:53 Emil Segerås

Switched to glfw version 3.0.4 for demo.

d6c9c0b 2014-04-21 21:45:34 Emil Segerås

Moved GLFW defines to makefile (linux/mac).

e690e30 2014-04-21 21:34:44 Emil Segerås

Moved GLFW defines to project (windows).

b51fb79 2014-04-21 21:05:38 Emil Segerås

Added flag to read-append node trees.

ebd3d11 2014-04-21 20:48:08 Emil Segerås

Added EVENT_TYPE_FILE_DROP, and CUSTOM.

Extend TBWidgetEvent by making it a TBTypedObject instead of adding even
more to it. Should perhaps refactorize it, but that will require lots of changes.

Implemented EVENT_TYPE_FILE_DROP for upcoming version of glfw (not used yet).

3b4b737 2014-04-21 20:48:06 Emil Segerås

Added const version of TBSafeCast.

1524019 2014-04-21 20:48:04 Emil Segerås

Always Invalidate automatically from InvalidateLayout.

InvalidateLayout actually depend on Invalidate since the relayout
is driven by paint.

Fixes bug that nothing happened if a widget called InvalidateLayout
but not Invalidate.

5ccd321 2014-04-21 20:47:59 Emil Segerås

Optimization: removed pointless clearing of unused fragment map data.

CopyData will set used parts of the map.

c5614f0 2014-04-15 03:23:07 Emil Segerås

Fix issue with TBID debug code and build order.

The static hash table used for debuggung should only be accessed
if turbo badger is initialized, to guarantee that the hashtable itself
has been initialized properly.

7cf3178 2014-04-14 03:45:02 Emil Segerås

Only scroll on wheel events without modifier key. Fixes #11.

It's common to use wheel and modifier combos for other things.

bdbfeec 2014-04-06 02:34:05 Emil Segerås

Removed unintentional allocation in android demo onDrawFrame.

c2cfa0b 2014-03-30 05:50:00 Emil Segerås

Clarified skin unit comment

3c770dc 2014-03-30 05:50:00 Emil Segerås

Replaced unnecessary dimmer image with background-color.

1395306 2014-03-30 05:35:59 Emil Segerås

Size improvements for skin elements. Part of #8.

Moved intrinsic skin size logic from widgets to skin and added attributes:

pref-width and pref-height overrides widget calculated pref-width
and pref-height.

width and height specifies intrinsic width and height.

7512fe0 2014-03-22 04:30:43 Emil Segerås

Added API to abort animations of a given type.

d9e9369 2014-03-22 04:27:08 Emil Segerås

Fixed superfluous scrollbar change events.

Adjust invalid max to min instead of the reverse since it's a much
more common use case that min is 0 and max is calculated.

TBEditField calculates a negative max when scrollbars aren't needed
which changed both min and value each time, causing change events.

249c689 2014-03-21 05:03:30 Emil Segerås

Removed "#define nullptr" since it can cause compile errors.

nullptr is a keyword. If some compiler doesn't have nullptr, it would
be better to define nullptr for that compiler specifically.

222f997 2014-03-16 21:34:40 Emil Segerås

TBAnimationObject should be a TBTypedObject.

So animation listeners know how to cast safely.

3d71eaf 2014-03-16 21:31:39 Emil Segerås

Added getters for widget children iterators.