Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Orion/How Tos/Editor Theme"

< Orion‎ | How Tos
(Theming Overview)
Line 5: Line 5:
 
TextTheme is at the centre of the new theming API. The main functions available are:
 
TextTheme is at the centre of the new theming API. The main functions available are:
  
* setThemeClass - takes a className and a themeStyleSheet which has one property: an href to the Stylesheet
+
* <code>setThemeClass (className, styleSheet)</code> - takes a className and a ThemeStyleSheet which has one property: an href to the Stylesheet
* getThemeClass - returns the theme classname.
+
* <code>getThemeClass ()</code> - returns the theme classname.
* onThemeChanged - sends out an event when the theme changes
+
* <code>onThemeChanged </code> - sends out an event when the theme changes

Revision as of 17:49, 8 March 2013

New theming support was introduced for the editor as part of the 3.0 release. This wiki is meant to provide an overview of how to make use of the new features.

Theming Overview

TextTheme is at the centre of the new theming API. The main functions available are:

  • setThemeClass (className, styleSheet) - takes a className and a ThemeStyleSheet which has one property: an href to the Stylesheet
  • getThemeClass () - returns the theme classname.
  • onThemeChanged - sends out an event when the theme changes

Copyright © Eclipse Foundation, Inc. All Rights Reserved.