CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2013
    Location
    Germany
    Posts
    3

    Question Layout manager advise

    For an existing (old) SDL2 based C++ project (Windows/Mac OS/Linux), we plan to (partially) refactor our UI to use a layout manager. In the past I have had a very good experience in Java with ClearThought's TableLayout (http://www.clearthought.info/sun/pro...out/index.html), therefore I am looking for something similar. So I have searched the web and besides bloated tool kits I couldn't find anything.

    Optimal would be a 1:1 conversion of the TableLayout Java source code. But anything which comes close would be helpful.

  2. #2
    Join Date
    Feb 2017
    Posts
    677

    Re: Layout manager advise

    A layout manager is usually part of or builds on a graphics subsystem of some kind. For example, according to the link you supplied, TableLayout is a third-party addition to the Java AWT (where it enhances the built-in GridBagLayout).

    So a layout manager cannot be selected in isolation. It will depend of your choice of graphics subsystem and ultimately which GUI package you decide to use or are using already.
    Last edited by wolle; February 5th, 2018 at 02:52 AM.

Tags for this Thread

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured