|
From: Christopher W. <caw...@us...> - 2006-04-12 21:26:29
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25379/src/org/rubypeople/rdt/ui Modified Files: StandardRubyElementContentProvider.java PreferenceConstants.java Log Message: a number of changes: - Re-arrange the preferences - add ability to edit ruby editor font - whole new syntax coloring page - new underline/strikethrough options for syntax coloring - fix bug delaying preference changes from applying on syntax coloring to open editors. - Add hyperlink between syntax coloring and general text editor prefs (which apply to coloring/fonts/appearance) - Remove some deprecated code Index: PreferenceConstants.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/PreferenceConstants.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** PreferenceConstants.java 30 Mar 2006 03:05:01 -0000 1.14 --- PreferenceConstants.java 12 Apr 2006 21:26:25 -0000 1.15 *************** *** 281,285 **** --- 281,298 ---- */ public static final String LINK_BROWSING_MEMBERS_TO_EDITOR= "org.rubypeople.rdt.ui.browsing.memberstoeditor"; //$NON-NLS-1$ + + /** + * Preference key suffix for strikethrough text style preference keys. + * + * @since 0.9.0 + */ + public static final String EDITOR_STRIKETHROUGH_SUFFIX= "_strikethrough"; //$NON-NLS-1$ + /** + * Preference key suffix for underline text style preference keys. + * + * @since 0.9.0 + */ + public static final String EDITOR_UNDERLINE_SUFFIX= "_underline"; //$NON-NLS-1$ public static void initializeDefaultValues(IPreferenceStore store) { Index: StandardRubyElementContentProvider.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/StandardRubyElementContentProvider.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** StandardRubyElementContentProvider.java 25 Mar 2006 02:37:43 -0000 1.1 --- StandardRubyElementContentProvider.java 12 Apr 2006 21:26:25 -0000 1.2 *************** *** 16,27 **** import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IFolder; - import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IResource; import org.eclipse.core.runtime.CoreException; - import org.eclipse.jface.viewers.ITreeContentProvider; import org.eclipse.jface.viewers.Viewer; ! ! import org.rubypeople.rdt.core.*; /** --- 16,32 ---- import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IFolder; import org.eclipse.core.resources.IResource; import org.eclipse.core.runtime.CoreException; import org.eclipse.jface.viewers.ITreeContentProvider; import org.eclipse.jface.viewers.Viewer; ! import org.rubypeople.rdt.core.IParent; ! import org.rubypeople.rdt.core.IRubyElement; ! import org.rubypeople.rdt.core.IRubyElementDelta; ! import org.rubypeople.rdt.core.IRubyModel; ! import org.rubypeople.rdt.core.IRubyProject; ! import org.rubypeople.rdt.core.IRubyScript; ! import org.rubypeople.rdt.core.ISourceReference; ! import org.rubypeople.rdt.core.RubyCore; ! import org.rubypeople.rdt.core.RubyModelException; /** |