root/platform/eclipse/sabotter/trunk/jp.xet.sabotter.eclipse/plugin.xml @ 15114

Revision 15102, 5.8 kB (checked in by daisuke_m, 5 years ago)

refactor

  • Property svn:mime-type set to text/plain
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<?eclipse version="3.2"?>
3<plugin>
4   <extension-point id="services" name="%plugin.extension.services" schema="schema/services.exsd"/>
5   <extension-point id="filters" name="%plugin.extension.filters" schema="schema/filters.exsd"/>
6   <extension
7         point="org.eclipse.ui.views">
8      <category
9            name="%SabotterViewCategory.name"
10            id="jp.xet.sabotter.eclipse">
11      </category>
12      <view
13            name="%SabotterView.name"
14            icon="icons/sabotter_16.gif"
15            category="jp.xet.sabotter.eclipse"
16            class="jp.xet.sabotter.eclipse.views.SabotterView"
17            id="jp.xet.sabotter.eclipse.views.SabotterView">
18      </view>
19   </extension>
20   <extension
21         point="org.eclipse.ui.perspectiveExtensions">
22      <perspectiveExtension
23            targetID="org.eclipse.ui.resourcePerspective">
24         <view
25               ratio="0.5"
26               relative="org.eclipse.ui.views.TaskList"
27               relationship="right"
28               id="jp.xet.sabotter.eclipse.views.SabotterView">
29         </view>
30      </perspectiveExtension>
31   </extension>
32   <extension
33         point="org.eclipse.ui.preferencePages">
34      <page
35            class="jp.xet.sabotter.eclipse.preferences.SabotterPreferencePage"
36            id="jp.xet.sabotter.preference"
37            name="%SabotterPreferencePage.name"/>
38   </extension>
39   <extension
40         point="org.eclipse.core.runtime.preferences">
41      <initializer class="jp.xet.sabotter.eclipse.preferences.SabotterPreferenceInitializer"/>
42   </extension>
43   <extension
44         point="org.eclipse.ui.themes">
45      <themeElementCategory
46            id="jp.xet.sabotter.eclipse.theme"
47            label="%SabotterThemeGroup.label">
48      </themeElementCategory>
49      <fontDefinition
50            categoryId="jp.xet.sabotter.eclipse.theme"
51            defaultsTo="org.eclipse.jface.dialogfont"
52            id="font_default_entry"
53            label="%SabotterTheme.font_default_entry">
54      </fontDefinition>
55      <fontDefinition
56            categoryId="jp.xet.sabotter.eclipse.theme"
57            defaultsTo="org.eclipse.jface.dialogfont"
58            id="font_unread_entry"
59            label="%SabotterTheme.font_unread_entry">
60      </fontDefinition>
61      <colorDefinition
62            categoryId="jp.xet.sabotter.eclipse.theme"
63            id="color_default_entry_foreground"
64            label="%SabotterTheme.color_default_entry_foreground"
65            value="COLOR_LIST_FOREGROUND">
66      </colorDefinition>
67      <colorDefinition
68            categoryId="jp.xet.sabotter.eclipse.theme"
69            id="color_default_entry_background"
70            label="%SabotterTheme.color_default_entry_background"
71            value="COLOR_LIST_BACKGROUND">
72      </colorDefinition>
73      <colorDefinition
74            categoryId="jp.xet.sabotter.eclipse.theme"
75            id="color_own_entry_foreground"
76            label="%SabotterTheme.color_own_entry_foreground"
77            value="COLOR_BLUE">
78      </colorDefinition>
79      <colorDefinition
80            categoryId="jp.xet.sabotter.eclipse.theme"
81            id="color_own_entry_background"
82            label="%SabotterTheme.color_own_entry_background"
83            value="COLOR_LIST_BACKGROUND">
84      </colorDefinition>
85      <colorDefinition
86            categoryId="jp.xet.sabotter.eclipse.theme"
87            id="color_reply_entry_foreground"
88            label="%SabotterTheme.color_reply_entry_foreground"
89            value="COLOR_RED">
90      </colorDefinition>
91      <colorDefinition
92            categoryId="jp.xet.sabotter.eclipse.theme"
93            id="color_reply_entry_background"
94            label="%SabotterTheme.color_reply_entry_background"
95            value="COLOR_LIST_BACKGROUND">
96      </colorDefinition>
97      <colorDefinition
98            categoryId="jp.xet.sabotter.eclipse.theme"
99            id="color_unread_entry_foreground"
100            label="%SabotterTheme.color_unread_entry_foreground"
101            value="COLOR_LIST_FOREGROUND">
102      </colorDefinition>
103      <colorDefinition
104            categoryId="jp.xet.sabotter.eclipse.theme"
105            id="color_unread_entry_background"
106            label="%SabotterTheme.color_unread_entry_background"
107            value="255,240,240">
108      </colorDefinition>
109      <colorDefinition
110            categoryId="jp.xet.sabotter.eclipse.theme"
111            id="color_input_normal_foreground"
112            label="%SabotterTheme.color_input_normal_foreground"
113            value="COLOR_BLACK">
114      </colorDefinition>
115      <colorDefinition
116            categoryId="jp.xet.sabotter.eclipse.theme"
117            id="color_input_normal_background"
118            label="%SabotterTheme.color_input_normal_background"
119            value="COLOR_WHITE">
120      </colorDefinition>
121      <colorDefinition
122            categoryId="jp.xet.sabotter.eclipse.theme"
123            id="color_input_warn_foreground"
124            label="%SabotterTheme.color_input_warn_foreground"
125            value="COLOR_BLACK">
126      </colorDefinition>
127      <colorDefinition
128            categoryId="jp.xet.sabotter.eclipse.theme"
129            id="color_input_warn_background"
130            label="%SabotterTheme.color_input_warn_background"
131            value="COLOR_YELLOW">
132      </colorDefinition>
133      <colorDefinition
134            categoryId="jp.xet.sabotter.eclipse.theme"
135            id="color_input_over_foreground"
136            label="%SabotterTheme.color_input_over_foreground"
137            value="COLOR_WHITE">
138      </colorDefinition>
139      <colorDefinition
140            categoryId="jp.xet.sabotter.eclipse.theme"
141            id="color_input_over_background"
142            label="%SabotterTheme.color_input_over_background"
143            value="COLOR_RED">
144      </colorDefinition>
145   </extension>
146</plugin>
Note: See TracBrowser for help on using the browser.