"Orange" Modern UI Theme: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (updated image links)
(fixed image links (could someone host it?))
Line 12: Line 12:
It has two themes (general and NSIS), each one with different icons:
It has two themes (general and NSIS), each one with different icons:


http://www.iespana.es/lsmonki/NSIS/Orange/Sets.png
http://www.monki.es/descargas/nsis/orange/sets.png


Each theme consist of two icons (un/install), two "wizard" bitmaps (un/install), and four "header" bitmaps (un/install, left/right).
Each theme consist of two icons (un/install), two "wizard" bitmaps (un/install), and four "header" bitmaps (un/install, left/right).
Line 18: Line 18:
== Welcome/Finish Bitmaps ==
== Welcome/Finish Bitmaps ==


http://lsmonki.iespana.es/nsis/orange/wizard.png
http://www.monki.es/descargas/nsis/orange/wizard.png


== Headers ==
== Headers ==


http://lsmonki.iespana.es/nsis/orange/headers.png
http://www.monki.es/descargas/nsis/orange/headers.png


== Icons ==
== Icons ==


http://lsmonki.iespana.es/nsis/orange/icon-images.png
http://www.monki.es/descargas/nsis/orange/icon-images.png


== Screenshots ==
== Screenshots ==


=== Install ===
=== Install ===
These links are broken(403 Forbidden):


[http://lsmonki.iespana.es/nsis/orange/1.jpg http://lsmonki.iespana.es/nsis/orange/1_s.jpg]
[http://www.monki.es/descargas/nsis/orange/1.jpg http://www.monki.es/descargas/nsis/orange/1_s.jpg]
[http://lsmonki.iespana.es/nsis/orange/2.jpg http://lsmonki.iespana.es/nsis/orange/2_s.jpg]
[http://www.monki.es/descargas/nsis/orange/2.jpg http://www.monki.es/descargas/nsis/orange/2_s.jpg]


=== Uninstall ===
=== Uninstall ===
These links are broken(403 Forbidden):


[http://lsmonki.iespana.es/nsis/orange/un1.jpg http://lsmonki.iespana.es/nsis/orange/un1_s.jpg]
[http://www.monki.es/descargas/nsis/orange/un1.jpg http://www.monki.es/descargas/nsis/orange/un1_s.jpg]
[http://lsmonki.iespana.es/nsis/orange/un2.jpg http://lsmonki.iespana.es/nsis/orange/un2_s.jpg]
[http://www.monki.es/descargas/nsis/orange/un2.jpg http://www.monki.es/descargas/nsis/orange/un2_s.jpg]


== Usage ==
== Usage ==

Revision as of 19:12, 12 February 2007

Author: MoNKi (talk, contrib)


Links

Orange-Full-MoNKi.zip (557 KB)
Includes source files in Adobe Photoshop and Macromedia Freehand format.

Extract the package contents in the "${NSISDIR}\Contrib\Graphics" dir.

Description

The "Orange Modern UI Theme" is a collection of icons and bitmaps for use with the Modern UI, based on the colors of the NSIS website.

It has two themes (general and NSIS), each one with different icons:

sets.png

Each theme consist of two icons (un/install), two "wizard" bitmaps (un/install), and four "header" bitmaps (un/install, left/right).

Welcome/Finish Bitmaps

wizard.png

Headers

headers.png

Icons

icon-images.png

Screenshots

Install

1_s.jpg 2_s.jpg

Uninstall

un1_s.jpg un2_s.jpg

Usage

Here's a simple copy-n-paste example on how to use the orange theme.
The code below uses the text-on-the-box variant and a right-sided header.

; MUI Settings / Icons
!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\orange-install-nsis.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\orange-uninstall-nsis.ico"
 
; MUI Settings / Header
!define MUI_HEADERIMAGE
!define MUI_HEADERIMAGE_RIGHT
!define MUI_HEADERIMAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Header\orange-r-nsis.bmp"
!define MUI_HEADERIMAGE_UNBITMAP "${NSISDIR}\Contrib\Graphics\Header\orange-uninstall-r-nsis.bmp"
 
; MUI Settings / Wizard
!define MUI_WELCOMEFINISHPAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Wizard\orange-nsis.bmp"
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Wizard\orange-uninstall-nsis.bmp"