To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

GNUstep Renaissance

From Wikipedia, the free encyclopedia

GNUstep Renaissance is a development framework that reads XML descriptions of graphical user interfaces from an application bundle and converts them into native widgets and connections at runtime under either GNUstep or Mac OS X.

GNUstep Renaissance was written by Nicola Pero as an alternative to the NIB and gorm files used by Interface Builder and Gorm, respectively. Unlike the aforementioned formats, Renaissance can generate interfaces that can be run without modification on either GNUstep or Mac OS X. It also uses a feature called AutoLayout, which means that localized strings do not have to be manually resized.

As of January 2006, GNUstep Renaissance is beta software. A graphical frontend to Renaissance does not yet exist. A stable release has not been made since 2008, though the downloadable binary has not been rebuilt and is still the previous version.[1]

Example

A simple example of an interface specification:

<gsmarkup>
 <objects>
 <menu type="main">
 <menuItem title="Quit" action="terminate:" key="q"/>
 </menu>
 <window id="myWindow" title="Hello, World">
 <vbox>
 <label>Hello, World</label>
 <button title="OK" action="performClose:" target="#myWindow"/>
 </vbox>
 </window>
 </objects>
</gsmarkup>

Assuming this file is in the application bundle and named Sample.gsmarkup, it can be loaded with the following Objective-C code:

[NSBundle loadGSMarkupNamed:@"Sample" owner:self];

Software using Renaissance

  • Zipper

See also

  • Gorm - GNUstep Graphical Object Relationship Manager (also UI builder)
  • Interface Builder - Mac OS X and former NextStep Graphical Object Relationship Manager and UI builder

References

  1. ^ "Renaissance". (TODO: The binary distribution is still the 0.8.0 one, we need to update it)

External links


This page was last edited on 16 May 2024, at 15:17
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.