![]() |
![]() |
![]() |
![]() |
![]() |
||||
![]() |
![]() |
![]() |
![]() |
|||||
![]() |
|||
Good ideas aren't worth much if you don't have the tools to implement them. The difficulty with applying interface design to applications with most of the default toolkits that come with the operating system is that you're locked in to someone else's way of thinking. While Goblin can reproduce any of the interface styles your OS can produce, it can also be used to step beyond that and produce an interface that uses any style you like. The interface toolkit runs from a 32-bit rendering pipeline, and produces effects such as soft shadows, additive glows, gradient overlays, bitmap based control widgets, and other things that can be used to create whatever you want on the screen, and make it do whatever you want it to do. |
Every item that's visible on the screen in a Goblin app is a 'Widget'. There are a number of different types of widget available, from the simple Colour Widget (a rectangular block of 32-bit colour) to the Image Widget (a 32-bit bitmap displayed on the screen). Each widget can have a range of special effects such as shadows and glows applied, and those effects can be adjusted dynamically to create animations such as pulsing or fading if needed. Widgets can process a number of events such as mouse clicks and timer events. This means that any object you see on the screen can be active like a button, process animations or key events, and do a number of other things. Using this system, your interface can come alive, reacting to user actions or timed events in any way you desire. Complex widgets such as multi-column tables and text edit boxes are also supported, with the flexibility of all the other Goblin widgets. Using this system you can make sure that every element of your application matches the style you have chosen, not needing to rely on default OS based UI items. |
The Goblin UI system allows a wide range of special effects to be built in to the interface. Simple systems such as procedural gradient overlays give you the ability to add depth to the visual elements of the UI without requiring additional bitmaps. To create a texture in the backdrop of your window for example, you can add a single textured 'tile' to the backdrop and have it repeat over the surface, then tell it to render a procedural gradient on top to give it depth. The gradient can be changed at any time, even while running the application, without changing any of the bitmaps. Subtle effects such as fading glows and pulsing rollovers are easily managed using the event processing systems built in to the Widgets. If you want to pulse a widget, you can simply attach a timer and process the timer event to alter the widget's opacity dynamically. Opacity is a property of all widgets, and adjusts their opacity regardless of the source images used to create them. |
![]() |
- Home - Products - Tutorials - Company - Contact Us - Top - |