[[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-tuning/modules/org.sophie2.main.skin.alternative/src/main/resources/distrib/resources resources] for all images used!
* Current look and feel definition:
{{{
}}}
* '''Icons for sophie2 skin''' - [source:branches/private/peko/sophie2-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:
* Screenshots of Sophie2 new interface:
[[Image(source:branches/private/peko/sophie2-tuning/doc/screenshots/app_tuning_r3_screenshot.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.)