Pure GUI apps for Win/Linux/Mac in C++ with G++

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • freeseif
    New Member
    • Jan 2010
    • 13

    Pure GUI apps for Win/Linux/Mac in C++ with G++

    GUI apps for Win/Linux/Mac in C/C++

    Please, i want know how to write a "pure" "native" "API-level" apps for Windows and Linux and Mac in C++.

    I don't want one-code run-anywhere, but a native code for every OS

    Solution For Windows

    Just use Mingw/Win32 API, its very simple!, very clear, and that way i like programming under Windows!.

    ------------------------

    Solution For Linux

    If i use for example wxWidgets-dev/GNU G++, my application can't run on other PC/Linux if there don't install wxWidgets ?! if else, how to include wxWidgets library in my EXE ?

    ------------------------

    Solution For Mac

    Objective-C++/GNU G++ is the solution ? or Carbon/C++/GNU G++ ?
  • JavierL
    New Member
    • Apr 2010
    • 17

    #2
    with wxWidgets it should run everywhere

    Comment

    • freeseif
      New Member
      • Jan 2010
      • 13

      #3
      i say pure and not cross-platform!

      Windows

      Mingw/Win32-API

      Linux

      G++/QT
      or
      G++/GTKMM

      Mac OS X

      i don't know.. i think Objective-C/Cocoa!

      Comment

      • newb16
        Contributor
        • Jul 2008
        • 687

        #4
        exclude /QT because it IS cross-platform. The same for GTK. The non-portable one for linux must be x11, but it isn't exactly UI library - but everything UI must be already ported somewhere.

        Comment

        Working...