Reputation: 27195
I know this is not related to programming but I am curious to know about which Framework or tool (like we use .NET Framework to develop desktop application interface) mozilla uses to develop their products like "Firefox", "Thunderbird" etc.
I like the interface of their applications the buttons especially looks cool and light weight. In first look their application and interface looks light weight. Whereas in .NET frameworks desktop applications, buttons looks heavy they are not having effects like moziila have on their interface.
Can anyone tell me what they uses and can i use the same to develop my applications?
Upvotes: 0
Views: 1620
Reputation: 5408
The UI they use is all based on XUL, the programming is done in just c++.
Upvotes: 1
Reputation: 1804
Mozilla uses XUL to create UI for Firefox and Thunderbird. You can think of XUL like a kind of HTML and CSS.
Upvotes: 1
Reputation: 1292
Their UI is based on XUL (http://en.wikipedia.org/wiki/XUL). You can use a program called XULRunner to create similar applications.
Upvotes: 3