BTT Rich Client Theme Configuration

Identifier:
com.ibm.btt.rcp.theme.settings

Since:
BTT 6.1

Description:
This extension point is used to customize SWT/JFace control themes. It separates into two type controls, normal type and input type: You can change font, background color and foreground color for these two type controls by configuring this extension point. You should extend this extension point in your project for only once.

Configuration Markup:

<!ELEMENT extension (settings*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT settings EMPTY>

<!ATTLIST settings

id                    CDATA #REQUIRED

default               (true | false)

normalFont            CDATA #IMPLIED

normalBackgroundColor CDATA #IMPLIED

normalForegroundColor CDATA #IMPLIED

inputFont             CDATA #IMPLIED

inputBackgroundColor  CDATA #IMPLIED

inputForegroundColor  CDATA #IMPLIED>


Examples:
Following is an example:


   <extension
         point="com.ibm.btt.rcp.theme.settings">
      <settings
            inputBackgroundColor="255,255,255"
            inputFont="Times New Roman,10,italic"
            inputForegroundColor="0,0,255"
            normalBackgroundColor="255,255,0"
            normalFont="Comic Sans MS,11,bold"
            normalForegroundColor="0,68,158"/>
   </extension>


Licensed Materials - Property of IBM Restricted Materials of IBM 5724-H82 (C) Copyright IBM Corp. 2007, 2008 All Rights Reserved. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.