Results 1 to 10 of 14

Thread: Looking for simple GUI library/framework

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #10
    Quote Originally Posted by Cybermonkey View Post
    Has anyone of you made a simple GUI library or can direct to one? It should be made up of graphics primitives like lines, circles, filled circles, filled rectangles etc. so I could adapt it easily.
    I made such library for my engine, but it's not depend on the engine:
    https://github.com/casteng/base/tree/dev/ACS
    It works through an implementation of TScreen abstract class declared in BaseGraph unit.
    The implementation should be able to draw graphic primitives and render text.

    It also uses object-oriented (class based) message system instead of windows-like events.
    The message system is mostly in this unit:
    https://github.com/casteng/base/blob/dev/BaseMsg.pas
    Last edited by Mirage; 09-08-2014 at 10:36 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •