Skip to content

GWM_GL (GUI Window Manager for OpenGL) - a simple cross-platform windowing system for use with simple messageboxes and/or windows

License

Notifications You must be signed in to change notification settings

ApplehatDot/GWM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GWM

GWM_GL (GUI Window Manager for OpenGL) - a simple cross-platform windowing system for use with simple messageboxes and/or windows without system-specific libraries (like WinAPI etc.)

Confirmed working on Windows and Linux

Any contribution would be nice :D

Using GWM in your project

for more info, see Example.c

GWM uses 2 structs - GWMConfig, WindowPosition:

typedef struct {
	float PosX;  // GWM Window X Position
	float PosY;  // GWM Window Y Position
} WindowPosition;

typedef struct {
	float WinX;  // GWM Window X Resolution
	float WinY;  // GWM Window Y Resolution
	char* DESC;  // Description; displayed text
	float DescX;  // Texts X Position
	float DescY;  // Texts Y Position
} GWMConfig;

PosX, PosY must be defined in your project like this:

// Value(s) can be changed up to your needs.
#define PosX 100.0f
#define PosY 100.0f

These values will be then passed down when defining structs:

WindowPosition WP = {PosX, PosY};
GWMConfig GWM = {
                200.0f,
                100.0f,
                "a quick brown fox jumps\nover the lazy dog",
                PosX + 1.0f,
                PosY + 78.0f
    }; 

then to display your GWM Window you insert MakeWindow(GWMConfig *GWM, WindowPosition *WP) command and see the window being created:

void display(){
    // Code
    MakeWindow(&GWM, &WP);
    // Rest of the Code
}

About

GWM_GL (GUI Window Manager for OpenGL) - a simple cross-platform windowing system for use with simple messageboxes and/or windows

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages