IDs used to remove buttons in the Search Results view
You can remove Search Results view buttons by using the related IDs in the trace log.
IDs for Clear Results List, Export Results List, Search and
				Replace, Manage Groupings, and
				Turn On/Off Thumbnail Display buttons in the
			Search Results view are listed in the 
		Processing
				[com.ixiasoft.dita.eclipse.gui.views.sidebar.SideBarResults] section of the
			trace
			log.Processing [com.ixiasoft.dita.eclipse.gui.views.sidebar.SideBarResults]
	com.ixiasoft.dita.eclipse.gui.views.sidebar.actions.ClearResultsList ....: 
	com.ixiasoft.dita.eclipse.gui.views.sidebar.actions.ExportResultsList ...: 
	com.ixiasoft.dita.eclipse.gui.views.sidebar.actions.SearchReplace .......: 
	com.ixiasoft.dita.eclipse.gui.views.sidebar.actions.ViewpointByButton ...: 
	com.ixiasoft.dita.eclipse.gui.views.sidebar.actions.ShowThumbnails ......: 
To remove a button from the Search Results view, enter its ID in a
				<removeditem> element and specify its type as
				org.eclipse.swt.widgets.Button. 
For example, to remove the Export Results List button, enter the
			following code in the eclipseui.xml
			file:
	<section id="com.ixiasoft.dita.eclipse.gui.views.sidebar.SideBarResults">
   <removeditem id="com.ixiasoft.dita.eclipse.gui.views.sidebar.actions.ExportResultsList" 
                type="org.eclipse.swt.widgets.Button"/>
   ...