####Introduction Auxiliary libraries for Eclipse, JUnit and Java development in general. It includes the FlatScrollBar and more...
- Released components are available from this p2 software repository: http://fappel.github.io/xiliary
- Builds from development branch are also available: http://fappel.github.io/xiliary/development
####FlatScrollBar Drop in replacement for all your Eclipse 4.4+ based RCP apps table and tree scrollbars ... as easy as this in two tiny steps:
- add bundles com.codeaffine.eclipse.swt.jar and com.codeaffine.eclipse.ui.swt.theme.jar to your target platform and to your products feature.xml
- merge this snippet with your RCP apps CSS:
Tree {
flat-scroll-bar: true;
flat-scroll-bar-background : #ababab;
flat-scroll-bar-thumb: #cdcdcd;
flat-scroll-bar-page-increment: #f8f8f8;
flat-scroll-bar-thumb-top-level: #454545;
flat-scroll-bar-page-increment-top-level: #f8f8f8;
flat-scroll-bar-increment-length: 7;
adapter-demeanor: expand-on-mouse-over; /* fixed-width */
}
Table {
flat-scroll-bar: true;
flat-scroll-bar-background : #ababab;
flat-scroll-bar-thumb: #cdcdcd;
flat-scroll-bar-page-increment: #f8f8f8;
flat-scroll-bar-thumb-top-level: #454545;
flat-scroll-bar-page-increment-top-level: #f8f8f8;
flat-scroll-bar-increment-length: 7;
adapter-demeanor: expand-on-mouse-over; /* fixed-width */
}