• R/O
  • HTTP
  • SSH
  • HTTPS

Liste der Commits

Tags
Keine Tags

Frequently used words (click to add to your profile)

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

Small footprint UI library for hardware accelerated games & applications


RSS
Rev. Zeit Autor
26af4e9 2015-06-26 02:48:06 Emil Segerås

Added group-id support for TBButton.

18edf36 2015-06-26 02:48:06 Emil Segerås

Renamed & made ToggleGroup public as UpdateGroupWidgets.

31aa2f1 2015-06-26 02:48:00 Emil Segerås

Upgraded to glfw 3.1.1 for demo

101ec67 2015-05-14 16:21:26 Emil Segerås

Added getter for skin fragment manager.

So external code can add more fragments in the same fragment
manager (and improve batching).

36c1f30 2015-05-02 16:34:31 Emil Segerås

Merge pull request #38 from l0calh05t/master

64-bit build fix

7972334 2015-04-30 06:15:36 l0calh05t

64-bit build fix

08062f0 2015-02-03 01:30:17 Nuno Silva

Added PointerUp/Down consume support;

4105bc5 2014-12-31 06:25:00 Emil Segerås

Cleanup linux ifdef in glfw port

60f387e 2014-12-19 07:18:24 Emil Segerås

Added support for local node value references.

It's sometimes much more convenient to be able to look up
values locally instead of from other trees or including local
node branches.

41e7dcc 2014-11-03 02:54:15 Emil Segerås

Added some more predefined keyboard shortcuts.

305fc9e 2014-11-03 02:26:46 Emil Segerås

Moved child index methods to TBWidget from TBTabContainer.

f2eb845 2014-11-02 05:32:29 Emil Segerås

Use visibility for pages in TBTabContainer.

Instead of using opacity.
Also implement SetValue/GetValue for current page.

579174e 2014-11-02 05:32:28 Emil Segerås

Added OnVisibilityChanged

97b3fcc 2014-11-02 01:03:28 Emil Segerås

Fix for starting demo on osx.

d591064 2014-11-01 21:04:31 Emil Segerås

Refixed #10.

LINUX isn't defined anymore.

6377253 2014-10-30 05:34:09 Emil Segerås

Fix #30. Use -std=gnu++0x instead of -std=c++11.

Apparently the new standard is strict about POSIX functions that are
not part of the standard. strdup is used in a few places and need to
be replaced to change back to -std=c++11.

ebf9695 2014-10-30 05:30:17 Emil Segerås

Removed dependency strtok_r/s.

cb9ea6b 2014-10-19 20:53:34 Emil Segerås

Renamed STATUS_NO_MEMORY. Fixes #26.

2d25cdd 2014-10-09 23:24:59 Emil Segerås

Merge pull request #28 from nsf/caret_fix

Fix utf8 backward movement bug. Fixes #22.

c18bb90 2014-10-09 23:22:48 Emil Segerås

Merge pull request #27 from nsf/master

Enable -Wall -Wextra -Wno-unused-parameter on gcc and clang. Fixes #23.

db0c3d8 2014-10-09 17:17:25 nsf

Fix utf8 backward movement bug. Fixes #22.

Utf8 movement functions now only work between [0; i_max]. The fix also
includes a couple of TBCaret fixes, because of these changes.

bca50be 2014-10-09 17:04:46 nsf

Enable -Wall -Wextra -Wno-unused-parameter on gcc and clang. Fixes #23.

At the moment gcc still generates a bunch of warnings on stb_image.h, but we
can't workaround that easily without modifying the stb_image.h itself, which
is a third party code.

5156739 2014-10-01 18:55:55 nsf

Silence unused function warning in glfw portion of the demo app.

This function needs to be defined only starting from a certain version of the
GLFW, where it can actually be used. It's the drag'n'drop functionality.

16b3eb3 2014-10-01 18:53:02 nsf

Disable -Wunused-function for stb_image.h

Unfortunately it doesn't work for gcc, the only way to stop these warnings in
gcc is to use attributes. But since stb_image.h is a third party dependency,
modifying its code is discouraged.

fe2fafd 2014-10-01 04:35:38 Emil Segerås

Removed some warnings in demo code

5fe5408 2014-10-01 04:34:01 Emil Segerås

Upgraded thirdparty stb_image.h (1.38 -> 1.46)

f88e44a 2014-10-01 04:10:07 Emil Segerås

Merge pull request #21 from nsf/master

Minor warning fixes and clang support.

48ee638 2014-09-30 20:00:05 nsf

Support building with clang.

Sadly CMAKE_COMPILER_IS_GNUCXX is not true if building with clang. Even though
clang is mostly compatible with gcc.

P.S. A proper way to build stuff using clang under cmake is:
CC=clang CXX=clang++ cmake . <options>

de88e84 2014-09-30 19:51:09 nsf

Actually silence warning. A cast to (void) does so, not to (void*).

2155a33 2014-09-30 19:48:34 nsf

Add virtual destructor to a class with virtual functions.

Clang is not happy about it, emits a warning on -Wall. Technically it's not
required if you never call "delete" on a base class pointer. But it's a good
practice to define a virtual destructor at a point where virtual table is
also defined (implicitly by defining virtual functions).