Nadwey / NadWin

WinAPI GUI library

Home Page:https://nadwey.github.io/NadWin/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NadWin

A Blazingly fast🚀, small⚡, cross-platform✝️, header-only📦, easy-to-use🤝, simple👌, modern🔥, beautiful🌈, elegant👑, powerful💪, intuitive🧠, and flexible🧘‍♂️ GUI library for C++.

Hello World in NadWin

#include "nadwin/nadwin.hpp"

int main()
{
	nadwin::App app;

	nadwin::Window window;
	window.SetTitle("Hello World");
	window.Show();

	return app.Run();
}

TODO

  • Windows implementation
    • Window creation
    • WinGDI rendering
    • Direct2D or whatever rendering
  • Linux (Xorg, Wayland) implementation
    • Window creation
    • ...?
    • Profit
  • macOS implementation
    • Figure out how to get a Mac
  • Make controls
  • Make a layout system (probably will be a separate library) or steal one from somewhere

About

WinAPI GUI library

https://nadwey.github.io/NadWin/

License:Do What The F*ck You Want To Public License


Languages

Language:C++ 100.0%