Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How are GUIs drawn?

How do people make GUIs? I mean the basic building block or principle they used to draw visual components on the screen like KDE, Gnome, etc. Are there any simple examples about how to draw something like a rectangle on the screen by directly dealing with the hardware?

I am using a PC for those who are asking about my platform.

like image 555
Lettuce Avatar asked Feb 26 '23 01:02

Lettuce


2 Answers

Well okay, let's start at the bottom. You have a monitor that displays an image. This image is a matrix of pixels, say, 1600x1200 pixels with 24 bits depth.

The monitor knows what to display from the video adapter. The video adapter knows what to display through the "frame buffer", which is a big block of memory that - in this example - contains 1600 * 1200 pixels, usually with 32 bits per pixel in contemporary cards.

The frame buffer is often accessible to the CPU as a big block and memory that it can poke into directly, and some adapters have GPUs that allow for things like rendering stuff into the frame buffer, like shaded textured triangles, so the CPU just sends commands through a "command buffer", telling it what to draw and where.

Then you have the operating system, which loads a hardware driver that communicates with the video adapter.

The operating system usually offers functions to write to the frame buffer using functions. Win32 for example has lots of functions like BitBlt, Line, Text, etc. These will end up talking to the driver.

Then you have something like Java, that renders its own graphics, typically using functions provided by the operating system.

like image 99
EboMike Avatar answered Mar 03 '23 12:03

EboMike


The simple answer is bitmaps, in fact this would also apply to fonts on terminals in the early days.

The original GUI's, things like Xerox Parc's Alto GUI were based on bitmap displays, and the graphics were drawn with simple bitmap drawing tools and graphics libraries, using simple geometry to determine shapes like circles, squares, rectangles etc, and then map them to display pixels.

Today's GUI are the same, except with additional software and hardware that have sped up and improved the process, and performance of these GUIs.

The fundamental mapping of bits e.g. 10101010 to pixels is dependent on the display hardware, but at a simplistic level, you would provide a display buffer in memory and simply populate it's bytes with the display data.

So for a basic monochrome bitmap, you'd draw it by providing bits that represented the shape you want to draw, you can either position these bits, like this, a simple 8x8pix button.

01111110
10000001
10000001
10111101
10111101
10000001
10000001
01111110

Which you can see easier if I render it with # and SPACE instead of 1 and 0.

 ###### 
#      #
#      #
# #### #
# #### #
#      #
#      #
 ###### 

Which as a bitmap image would look like this : http://i.stack.imgur.com/i7lVQ.png (I know it's a bit small :) but this is the sort of scale we would've begun at, when GUI's were first developed.)

If you had a more complex (e.g. 24 bit color display, you'd provide each pixel using a 24bit number.)

Obviously some bitmaps cannot be drawn manually (for example the border of a window), like we've done above, this is where geometry comes in handy, and we can use simple functions to determine the pixel values required to draw a rectangle, or any other simple shape, and then build from there.

Once you are able to draw graphics in this way on a display, you then hook a drawing loop onto a system interrupt to keep the display up to date (you redraw the display very often, depending on your system performance.) This way you can make it handle interaction from user devices, e.g. a mouse.

Back in the early days, even before Xerox Parc / Alto there were a number of early computer systems which had Vector based displays, these would make up an image by drawing lines on a CRT representation of a cartesian plane. However, these displays never saw mainstream use, except perhaps in some early video games, like Asteroids and Tempest.

like image 29
ocodo Avatar answered Mar 03 '23 10:03

ocodo