[[TOC]]
= Sophie2 Skin =
== Overview of SynthLookAndFeel ==
* 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 icons. What is more there are addition attributes for a component called properties. See the next example:
{{{
}}}
* Basically what we need to do is define styles for as much keys as possible. Of course not every part should be customized but it will look nicer if we do so.
* 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.xml"
== 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
== 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)]]