GUI Library

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
firas981

GUI Library

Post by firas981 »

how i can port gui to my simple os , i.e Is there GUI library
which is not dependent on another os too much in its internal design ..?
thanks
proxy

Re:GUI Library

Post by proxy »

first of all, please don't double post, you wont get a faster responce that way...

now on to your answer, the simple answer is there isn't one. All GUI systems at the OS level are going to be strongly tied to the API your OS implements, there is not canned GUI system where you just fill in the blanks and you have windows :P

So unfortunately, as far as I know, the cut & paste technique won't work here. Do some research and write a GUI system :P (I would advice starting with a functional console though, much easier to debug)

proxy
User avatar
Pype.Clicker
Member
Member
Posts: 5964
Joined: Wed Oct 18, 2006 2:31 am
Location: In a galaxy, far, far away
Contact:

Re:GUI Library

Post by Pype.Clicker »

as the GUI interacts more or less with hardware (mouse and video accesses, for instance), it cannot be 100% hardware-independent ... or it is actually dependent of an Hardware Abstraction Layer that you'll have to mimmic in your OS.

What are you exactly looking for ? a widget toolkit ? a drawing library ? a user-events delivery engine ? ... A GUI is all that ! ...

I would suggest you to google for a GUI atop of SDL or Allegro, and then try to offer an Allegro-equivalent service in your OS so that you can port the GUI on it.
ASHLEY4

Re:GUI Library

Post by ASHLEY4 »

Try this to get you started
http://rain.prohosting.com/websnarf/gui/
ps: It a slow link some times.

ASHLEY4.
User avatar
Pype.Clicker
Member
Member
Posts: 5964
Joined: Wed Oct 18, 2006 2:31 am
Location: In a galaxy, far, far away
Contact:

Re:GUI Library

Post by Pype.Clicker »

ASHLEY4 wrote: Try this to get you started
http://rain.prohosting.com/websnarf/gui/
ps: It a slow link some times.

ASHLEY4.
i may be missing some link, but all i could found there is "GUI.EXE" and "README.TXT" ... I hardly see how it could get someone started ?...
firas981

Re:GUI Library

Post by firas981 »

I agree with Pype.Clicker , I have already visited this link and I
I have got just what Pype.Clicker said ,...

about redundant post , in the first post i thought that some error has occured , so i repeated the post ...
so it is not intended .
thanks
ASHLEY4

Re:GUI Library

Post by ASHLEY4 »

Sorry the link usest have the code and tuts with it, the zip now has just gui.exe and readme etc.
I will try to find it from my backup cd's if you want.

ASHLEY4.
Post Reply