Click here to Skip to main content
Licence 
First Posted 22 Oct 2004
Views 289,780
Bookmarked 276 times

OpenTheme : An open source graphic user interface (GUI) toolkit

By | 22 Oct 2004 | Article
An innovative alternative to XAML and XUL

Sample Image - maximum width is 600 pixels

Introduction

OpenTheme is an XML based GUI toolkit with a set of foundation class and WYSIWYG editor. Although it's originally designed for full screen GUI, it is also good for Windowed user interface, with full localization support and arbitary look-and-feel.

I prepared a full tutorial at

Background

When I was developing my OpenHTPC project, I was always thinking about how to make it looking cool. Since I'm not a graphic designer, I know I will never actually design any 'cool' graphics. That brought up an interesting old question, is there a way to completely separate the design of graphic user interface from the design of the business logic?

Well, since I'm confident I'm a fairly good software architect, I think I can do this job better. Finally, I designed this OpenTheme project. In this project, I tried some new technics. And finally I had chance to express my own opinion about software design and implementation in this project.

Using the code

It is still the preliminary Alpha release. So some of the design is still subject to changes. The best way to understand the design is to read the tutorial from a user's point of view.

But this release is already stable enough. The ThemeEditor can be used to design the entire ThemePack. In your code, just use the following code to load a Themepack.

// Create a ThemePack
ThemePack tp = ThemePack.FromXml(fileName, null);
// Run through Themes contained in the ThemePack

foreach (Theme curTheme in tp)
{
   // ........
}

// Get a Top Level page from Theme
ThemeObject themeObj = curTheme.GetThemeObject(ID);
// Draw this ThemeObject with a Graphics
themeObj.SetBounds(......);
themeObj.RecalculateLayout(Graphics g);
themeObj.Invalidate(Graphics g);

Points of Interest

A Theme is a collection of layered graphics (with alpha transparancy) with layout manager. System provides a set of 'atomic' components such as Images (OpenThemePictureBox), Text (OpenThemeTextBox), Color block (OpenThemeColorBox). Components can contain sub components within their bounds. The sub-components may contain other sub-components.

System also provides some more complicated components with custom code to determine the bounds of its sub-components for more complicated layout management. Those are called 'container' components.

Programmers can easily implement their own 'atomic' components and 'container' components. For example, the system provides a button component to support buttons with absolutly ARBITARY user designed look and feel. Below are the look and feels of that button with different state.

Disabled

Enabled

Active

Focused

Toggled

Another example is the horizontal scrollbar.

The logic is complete to define any popular components (such as button, radio, scrollbar, menu etc) with completely user defined look and feel, for full screen or windowed applications.

The system is very light-weighted. The core part only have barely more than 2000 lines of code and only dependent on some very basic GDI+ functions and XML library. And it doesn't even depend on Windows Forms classes. I would expect it to be ported to Linux platform and .Net compact framework with very little or no modification in the near future.

History

  • Oct. 20, Initial Alpha release.

TODO List:

  • Event model
  • Finish all common controls
  • Visual Studio .Net extensibility integration

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

weiqj

Web Developer

United States United States

Member

Hello All!

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmemberhi2hak9:34 3 Aug '11  
Generalgood Pinmemberfuturejo3:15 3 Aug '08  
Questionlicensing PinmemberJayTau19:26 11 May '07  
AnswerRe: licensing Pinmemberdedel23:10 19 Aug '07  
GeneralGreat job man... Pinmemberantecedents13:53 6 Feb '07  
GeneralNice but... PinmemberMarcel Härry12:51 16 Nov '06  
GeneralRe: Nice but... Pinmemberweiqj12:55 16 Nov '06  
GeneralRe: Nice but... PinmemberKenGuru20:41 16 Nov '06  
GeneralRe: Nice but... Pinmemberweiqj12:14 18 Nov '06  
QuestionRe: Nice but... Pinmemberstixoffire10:58 22 Mar '07  
AnswerRe: Nice but... Pinmemberweiqj5:55 23 Mar '07  
QuestionEvents Pinmemberobeea9:45 9 Aug '06  
AnswerRe: Events Pinmemberweiqj9:41 11 Aug '06  
Questionpublic repository? PinmemberN e m a8:29 23 Jan '06  
QuestionNo images, no icons PinmemberGord Murdoch18:28 15 Nov '05  
AnswerRe: No images, no icons Pinmemberweiqj13:49 16 Nov '05  
GeneralRe: No images, no icons PinmemberGord Murdoch7:52 18 Nov '05  
GeneralGetRelativeDirectory() error PinmemberSmangood18:08 18 Oct '05  
GeneralRe: GetRelativeDirectory() error PinsussAnonymous16:33 23 Oct '05  
GeneralAn error at runtime PinmemberCong Dan22:39 28 Sep '05  
GeneralRe: An error at runtime Pinmemberweiqj3:04 1 Oct '05  
Questionwhere can i download the ThemeEditor? PinmemberYour details have been updated20:20 11 Aug '05  
AnswerRe: where ican i download the ThemeEditor? Pinmemberweiqj4:02 14 Aug '05  
Just follow the link at the beginning of the article.
GeneralRe: where can i download the ThemeEditor? PinmemberYour details have been updated16:53 14 Aug '05  
GeneralRe: where can i download the ThemeEditor? Pinmemberweiqj9:53 15 Aug '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 22 Oct 2004
Article Copyright 2004 by weiqj
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid