home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2006 April / DPPRO0406DVD.ISO / Essentials / Programming / Eclipse SDK / eclipse-SDK-3.1.1-win32.exe / eclipse / plugins / org.eclipse.ui.cheatsheets_3.1.1.jar / plugin.xml < prev   
Encoding:
Extensible Markup Language  |  2005-09-29  |  2.8 KB  |  72 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?eclipse version="3.0"?>
  3. <plugin>
  4.  
  5.     
  6. <!-- ========== Extension Points ================= -->
  7.  
  8.    <!-- =============================================================================== -->
  9.    <!-- Extension point: org.eclipse.ui.cheatsheets.cheatSheetContent                   -->
  10.    <!-- Extension-point for contributing a cheat sheet.                                 -->
  11.    <!--                                                                                 -->
  12.    <!-- =============================================================================== -->
  13.    <extension-point
  14.       id="cheatSheetContent"
  15.       name="%CHEAT_SHEET_CONTENT"
  16.       schema="schema/cheatSheetContent.exsd"/>
  17.       
  18.    <!-- =============================================================================== -->
  19.    <!-- Extension point: org.eclipse.ui.cheatsheets.cheatSheetItemExtension             -->
  20.    <!-- Extension-point for contributing controls to a cheat sheet item.                -->
  21.    <!--                                                                                 -->
  22.    <!-- =============================================================================== -->
  23.    <extension-point
  24.       id="cheatSheetItemExtension"
  25.       name="%CHEAT_SHEET_ITEM_EXTENSION"
  26.       schema="schema/cheatSheetItemExtension.exsd"/>
  27.  
  28. <!-- ========== Extensions ================= -->
  29.  
  30.    <extension
  31.          point="org.eclipse.ui.views">
  32.       <category
  33.             name="%CHEAT_SHEETS"
  34.             id="org.eclipse.ui.cheatsheets.cheatsheetCategory">
  35.       </category>
  36.       <view
  37.             name="%CHEAT_SHEETS"
  38.             icon="$nl$/icons/view16/cheatsheet_view.gif"
  39.             category="org.eclipse.ui.cheatsheets.cheatsheetCategory"
  40.             fastViewWidthRatio="0.5"
  41.             class="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"
  42.             id="org.eclipse.ui.cheatsheets.views.CheatSheetView">
  43.       </view>
  44.       <stickyView
  45.               id="org.eclipse.ui.cheatsheets.views.CheatSheetView"/>
  46.    </extension>
  47.    <extension
  48.          point="org.eclipse.ui.commands">
  49.       <command
  50.             name="%CHEAT_SHEETS_VIEW_COMMAND_NAME"
  51.             description="%CHEAT_SHEETS_VIEW_COMMAND_DESCRIPTION"
  52.             categoryId="org.eclipse.ui.category.views"
  53.             id="org.eclipse.ui.cheatsheets.views.CheatSheetView">
  54.       </command>
  55.      </extension>
  56.     <extension
  57.         point="org.eclipse.ui.bindings">
  58.       <key
  59.             sequence="M2+M3+Q H"
  60.             commandId="org.eclipse.ui.cheatsheets.views.CheatSheetView"
  61.             schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>      
  62.     </extension>
  63.     <extension
  64.           point="org.eclipse.ui.activitySupport">
  65.       <triggerPoint id="org.eclipse.ui.cheatsheetSelectionDialog">
  66.          <hint
  67.                id="interactive"
  68.                value="true"/>
  69.       </triggerPoint>
  70.     </extension>
  71. </plugin>
  72.