Changes between Version 8 and Version 9 of GROUP_BASE_SKINS_R0


Ignore:
Timestamp:
04/21/09 15:00:34 (16 years ago)
Author:
nenko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUP_BASE_SKINS_R0

    v8 v9  
    6969  * all icons must be .png files 
    7070 
    71 In this order to create a new skin requires you to: 
     71In this order to create a new skin, you should do the next steps: 
    7272 * to make new skin part with the name of the new skin 
    7373 * register this skin part through the extension point mechanism 
    7474 * fill the values that you want your new skin to overload/replace/override or whatever it is called 
     75 
     76 
     77{{{ 
     78protected void defineExtensions(List<SophieExtension<?>> res) { 
     79  SkinPart part = new BaseSkinPart("my-new-skin"); 
     80  //init the values that will be in the new skin 
     81  res.add(part.asExtension()); 
     82} 
     83}}} 
     84 
     85 
    7586= Implementation = 
    7687^(Describe and link the implementation results here (from the wiki or the repository).)^