[[TOC]] == Overview of SynthLookAndFeel == * See http://java.sun.com/docs/books/tutorial/uiswing/lookandfeel/synth.html if you are not familiar with synth. * SynthLookAndFeel provides a mechanism for customizing the LookAndFeel through an XML file where everything is described. * Every part of Swing can be customized by providing a style for it. Example: {{{ }}} * Basically what we need to define is styles for every key. As you can see there are states for most UI components that need different resources, fonts etc. See the next example: * The different possible keys are as follows: ArrowButton, Button, CheckBox, RadioButton, ToggleButton, ComboBox, InternalFrame, InternalFrameTitlePane, InternalFrameTitlePane.closeButton, InternalFrameTitlePane.iconifyButton, InternalFrameTitlePane.maximizeButton, DesktopPane, FileChooser, List, MenuBar, Menu, MenuItem, MenuItemAccelerator, CheckBoxMenuItem, RadioButtonMenuItem, PopupMenu, PopupMenuSeparator, OptionPane, RootPane, Panel, ProgressBar, ScrollBar, ScrollBarTrack, ScrollBarThumb, ScrollPane, Viewport, Separator, Slider, SliderTrack, SliderThumb, SplitPane, SplitPaneDivider, Table, TableHeader, TabbedPane, TabbedPaneContent, TabbedPaneTab, TabbedPaneTabArea, Label, ToolTip, TextField, FormattedTextField, PasswordField, TextArea, TextPane, EditorPane, Spinner, ComboBox.listRenderer, TableHeader.renderer, ToolBar, ToolBarContent, ToolBarSeparator, ToolBarDragWindow, Tree, TreeCell '''and may be more''' ... == Overview of our approach == * Images used to create the look and feel will be named like this "button_pressed.png" for example. * The XML file will be named "sophie2_lookandfeel.xml" * The look and feel will be named SophieLookAndFeel. * The skin of Sophie will be constructed of three parts: * The java look and feel * Our current skin types: * Images for halo icons. * Tool-tips * Titles * Myddoggy properties (this is not going to be described in detail here and is for later revision.) * A skin definition is something like: {{{ //titles and tool-tips "extra.annotations.annotations-tab/title : text : 4nn0t4t10n5", "extra.annotations.annotations-tab/tool-tip : text : 5t1ck n0t35 t0 th3 b00k, h1ghl1ght 50m3 t3xt 0r r3c0rd y0ur v01c3 c0mm3nt5", //icons "main.app.halos.frame.rotate.frame-rotation-properties-halo-button/halo-icon : icon : rotate.png", "main.view.halos.frame.move.main-title-bar-halo/bg-image : icon : frame_title_bar.png", //the look and feel for this skin... "javax.swing.plaf.synth/LookAndFeel : lookandfeel : SophieLookAndFeel", }}} * the ids are text, icon, lookandfeel. Later we will add mydoggy-properties id. = Sophie2 Skin = == Styles for parts of the UI == * For every style we will use png images. They '''WILL NOT''' be linked for every style defined because this is a tedious task to do. Instead see [source:branches/private/peko/sophie2-app-tuning/modules/org.sophie2.main.skin.alternative/src/main/java/org/sophie2/main/skin/alternative/lookandfeel/resources resources] for all images used! * Default - this is used where no other style is defined: {{{ }}} * ArrowButton - finished! {{{ }}} * Button - ready (may change the resources used for the buttons) {{{ }}} * CheckBox - ready (provided by dido) {{{ }}} * RadioButton - ready (provided by dido) {{{ }}} * ToggleButton - ready (may change the resources - it now uses the buttons images) {{{ }}} * ComboBox - needs selected state customization. {{{ }}} * InternalFrame {{{ }}} * InternalFrameTitlePane - ready (interface not as proposed by shift, may need serious customization to make it look as they've proposed.) {{{ }}} * InternalFrameTitlePane.closeButton - ready (this is part of InternalFrameTitlePane, see previous for more info). {{{ }}} * InternalFrameTitlePane.iconifyButton - ready (this is part of InternalFrameTitlePane, see previous for more info). {{{ }}} * InternalFrameTitlePane.maximizeButton - ready (this is part of InternalFrameTitlePane, see previous for more info). {{{ }}} * DesktopPane * FileChooser * List {{{ }}} * MenuBar - finished (exactly as proposed by shift). {{{ }}} * Menu - finished (exactly as proposed by shift). {{{ }}} * MenuItem - finished (exactly as proposed by shift). {{{ }}} * MenuItemAccelerator - finished (exactly as proposed by shift). {{{ }}} * CheckBoxMenuItem * RadioButtonMenuItem * PopupMenu {{{ }}} * PopupMenuSeparator * OptionPane * RootPane * Panel {{{ }}} * ProgressBar * ScrollBar * ScrollBarTrack - ready {{{ }}} * ScrollBarThumb - ready (should only change the resources) {{{ }}} * ScrollPane * Viewport * Separator * Slider * SliderTrack {{{ }}} * SliderThumb {{{ }}} * SplitPane * SplitPaneDivider * Table * TableHeader * TabbedPane - ready {{{ }}} * TabbedPaneContent * TabbedPaneTab - ready {{{ }}} * TabbedPaneTabArea * Label * ToolTip * TextField {{{ }}} * FormattedTextField {{{ }}} * PasswordField * TextArea * TextPane * EditorPane * Spinner {{{ }}} * ComboBox.listRenderer * TableHeader.renderer * ToolBar * ToolBarContent * ToolBarSeparator * ToolBarDragWindow * Tree {{{ }}} * TreeCell * '''Icons for sophie2 skin''' - [source:branches/private/peko/sophie2-app-tuning/modules/org.sophie2.main.skin.alternative/src/main/resources/distrib/icons/sophie2 sophie2 icons] * Some UI components need to be customized furthermore from the default look and feel customization provided. * For example the title bar of the frame should be different for every skin. This will be accomplished by providing a custom UI that replaces the custom PanelUI provided in SophieLookAndFeel. We should define custom UIs for other components as well (the Hud dialog etc). == Screenshots of current implementation == * Sophie2 screen shots: * General screenshots of Sophie2 new interface: * Screenshot 1: [[BR]] [[Image(source:branches/private/peko/sophie2-app-tuning/doc/screenshots/screenshot1.png)]] * Screenshot 2: [[BR]] [[Image(source:branches/private/peko/sophie2-app-tuning/doc/screenshots/screenshot2.png)]] * Screenshot of the swing set with the new interface: [[BR]] [[Image(source:branches/private/peko/sophie2-app-tuning/doc/screenshots/screenshot-swingset.png)]] == Comments for further customizations (next revision things) == * The things that are finished are the ones that are absolutely ready and have the desired interface. * The things that are ready are more or less finished and need less customizations * Things to do next: * Provide more states for as much components as possible. * Provide font and colors of the font for not finished components. * Provide insets for not finished components. * Create a sophie painter that tiles images. This is usedful for images that have different patterns. * customize mydoggy (may need some design changes in the module.) = Alternative Skin = * The alternative skin uses a third party look and feel called NidRODLookAndFeel (see http://personales.ya.com/nimrod/faq-en.html for more information). * A full set of icons is now provided. See [source:branches/private/peko/sophie2-app-tuning/modules/org.sophie2.main.skin.alternative/src/main/resources/distrib/icons/alternative alternative skin resources]. * Screenshots:[[BR]] [[Image(source:branches/private/peko/sophie2-app-tuning/doc/screenshots/screenshot-alternative.png)]]