Revision | 3a40cbd3bb17d5bb8636070a132269dc10cb2d2d (tree) |
---|---|
Time | 2014-04-06 16:17:28 |
Author | Kana Koda <kodakana@user...> |
Commiter | Kana Koda |
AozoraEmDa:IMが自動表示されないように修正。
@@ -0,0 +1,26 @@ | ||
1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
2 | + package="org.pulpdust.da.aozora.em" | |
3 | + android:versionCode="1" | |
4 | + android:versionName="0.1" | |
5 | + android:installLocation="auto"> | |
6 | + | |
7 | + <uses-sdk | |
8 | + android:minSdkVersion="4" | |
9 | + android:targetSdkVersion="19" /> | |
10 | + | |
11 | + <application | |
12 | + android:allowBackup="true" | |
13 | + android:icon="@drawable/ic_launcher" | |
14 | + android:label="@string/app_name" | |
15 | + android:theme="@style/AppTheme" > | |
16 | + <activity | |
17 | + android:name=".AozoraEmDaActivity" | |
18 | + android:label="@string/app_name" > | |
19 | + <intent-filter> | |
20 | + <action android:name="org.pulpdust.da.action.LAUNCH" /> | |
21 | + <category android:name="android.intent.category.DEFAULT" /> | |
22 | + </intent-filter> | |
23 | + </activity> | |
24 | + </application> | |
25 | + | |
26 | +</manifest> |
@@ -1,218 +0,0 @@ | ||
1 | -package org.pulpdust.da.braces; | |
2 | - | |
3 | -import android.annotation.SuppressLint; | |
4 | -import android.content.Intent; | |
5 | -import android.content.SharedPreferences; | |
6 | -import android.os.Bundle; | |
7 | -import android.support.v4.app.FragmentActivity; | |
8 | -import android.widget.Button; | |
9 | -import android.widget.RadioButton; | |
10 | -import android.widget.RadioGroup; | |
11 | -import android.view.View; | |
12 | -import android.view.View.OnClickListener; | |
13 | - | |
14 | -public class BracesDaActivity extends FragmentActivity { | |
15 | - final static String TAG = "BracesDA Main"; | |
16 | - final static String DA_EX_TEXT = "org.pulpdust.da.extra.TEXT"; | |
17 | - final static String DA_EX_THEME = "org.pulpdust.da.extra.THEME"; | |
18 | - final static String DA_EX_RETURN = "org.pulpdust.da.extra.RETURN"; | |
19 | - String sbj; | |
20 | - Button brackets; | |
21 | - Button asterisks; | |
22 | - Button braces; | |
23 | - Button quotations; | |
24 | - Button parentheses; | |
25 | - Button angles; | |
26 | - Button hyphens; | |
27 | - Button apostrophes; | |
28 | - RadioGroup convert; | |
29 | - RadioButton upper; | |
30 | - RadioButton lower; | |
31 | - RadioButton caps; | |
32 | - RadioButton none; | |
33 | - | |
34 | - @Override | |
35 | - public void onCreate(Bundle savedInstanceState) { | |
36 | - int cs = getIntent().getIntExtra(DA_EX_THEME, 0); | |
37 | - if (cs >= 1){ | |
38 | - setTheme(R.style.AppTheme_Dark); | |
39 | - } else { | |
40 | - setTheme(R.style.AppTheme); | |
41 | - } | |
42 | - super.onCreate(savedInstanceState); | |
43 | - setContentView(R.layout.activity_bracesda); | |
44 | - brackets = (Button) findViewById(R.id.button1); | |
45 | - asterisks = (Button) findViewById(R.id.button2); | |
46 | - braces = (Button) findViewById(R.id.button3); | |
47 | - quotations = (Button) findViewById(R.id.button4); | |
48 | - parentheses = (Button) findViewById(R.id.button5); | |
49 | - angles = (Button) findViewById(R.id.button6); | |
50 | - hyphens = (Button) findViewById(R.id.button7); | |
51 | - apostrophes = (Button) findViewById(R.id.button8); | |
52 | - upper = (RadioButton) findViewById(R.id.radio0); | |
53 | - lower = (RadioButton) findViewById(R.id.radio1); | |
54 | - caps = (RadioButton) findViewById(R.id.radio2); | |
55 | - none = (RadioButton) findViewById(R.id.radio3); | |
56 | - convert = (RadioGroup) findViewById(R.id.radioGroup1); | |
57 | - readPrefs(); | |
58 | - sbj = getIntent().getStringExtra(DA_EX_TEXT); | |
59 | - if (sbj == null) sbj = ""; | |
60 | - | |
61 | - brackets.setOnClickListener(new OnClickListener(){ | |
62 | - | |
63 | - @Override | |
64 | - public void onClick(View v) { | |
65 | - Intent ret = new Intent(); | |
66 | - String retstr = getString(R.string.bracket_left) + | |
67 | - doConvert(sbj, convert.getCheckedRadioButtonId()) + | |
68 | - getString(R.string.bracket_right); | |
69 | - ret.putExtra(DA_EX_RETURN, retstr); | |
70 | - setResult(RESULT_OK, ret); | |
71 | - finish(); | |
72 | - } | |
73 | - | |
74 | - }); | |
75 | - asterisks.setOnClickListener(new OnClickListener(){ | |
76 | - | |
77 | - @Override | |
78 | - public void onClick(View v) { | |
79 | - Intent ret = new Intent(); | |
80 | - String retstr = getString(R.string.asterisk) + | |
81 | - doConvert(sbj, convert.getCheckedRadioButtonId()) + | |
82 | - getString(R.string.asterisk); | |
83 | - ret.putExtra(DA_EX_RETURN, retstr); | |
84 | - setResult(RESULT_OK, ret); | |
85 | - finish(); | |
86 | - } | |
87 | - | |
88 | - }); | |
89 | - braces.setOnClickListener(new OnClickListener(){ | |
90 | - | |
91 | - @Override | |
92 | - public void onClick(View v) { | |
93 | - Intent ret = new Intent(); | |
94 | - String retstr = getString(R.string.brace_left) + | |
95 | - doConvert(sbj, convert.getCheckedRadioButtonId()) + | |
96 | - getString(R.string.brace_right); | |
97 | - ret.putExtra(DA_EX_RETURN, retstr); | |
98 | - setResult(RESULT_OK, ret); | |
99 | - finish(); | |
100 | - } | |
101 | - | |
102 | - }); | |
103 | - quotations.setOnClickListener(new OnClickListener(){ | |
104 | - | |
105 | - @Override | |
106 | - public void onClick(View v) { | |
107 | - Intent ret = new Intent(); | |
108 | - String retstr = getString(R.string.quotation) + | |
109 | - doConvert(sbj, convert.getCheckedRadioButtonId()) + | |
110 | - getString(R.string.quotation); | |
111 | - ret.putExtra(DA_EX_RETURN, retstr); | |
112 | - setResult(RESULT_OK, ret); | |
113 | - finish(); | |
114 | - } | |
115 | - | |
116 | - }); | |
117 | - parentheses.setOnClickListener(new OnClickListener(){ | |
118 | - | |
119 | - @Override | |
120 | - public void onClick(View v) { | |
121 | - Intent ret = new Intent(); | |
122 | - String retstr = getString(R.string.parenthesis_left) + | |
123 | - doConvert(sbj, convert.getCheckedRadioButtonId()) + | |
124 | - getString(R.string.parenthesis_right); | |
125 | - ret.putExtra(DA_EX_RETURN, retstr); | |
126 | - setResult(RESULT_OK, ret); | |
127 | - finish(); | |
128 | - } | |
129 | - | |
130 | - }); | |
131 | - angles.setOnClickListener(new OnClickListener(){ | |
132 | - | |
133 | - @Override | |
134 | - public void onClick(View v) { | |
135 | - Intent ret = new Intent(); | |
136 | - String retstr = getString(R.string.angle_left) + | |
137 | - doConvert(sbj, convert.getCheckedRadioButtonId()) + | |
138 | - getString(R.string.angle_right); | |
139 | - ret.putExtra(DA_EX_RETURN, retstr); | |
140 | - setResult(RESULT_OK, ret); | |
141 | - finish(); | |
142 | - } | |
143 | - | |
144 | - }); | |
145 | - hyphens.setOnClickListener(new OnClickListener(){ | |
146 | - | |
147 | - @Override | |
148 | - public void onClick(View v) { | |
149 | - Intent ret = new Intent(); | |
150 | - String retstr = getString(R.string.hyphen) + | |
151 | - doConvert(sbj, convert.getCheckedRadioButtonId()) + | |
152 | - getString(R.string.hyphen); | |
153 | - ret.putExtra(DA_EX_RETURN, retstr); | |
154 | - setResult(RESULT_OK, ret); | |
155 | - finish(); | |
156 | - } | |
157 | - | |
158 | - }); | |
159 | - apostrophes.setOnClickListener(new OnClickListener(){ | |
160 | - | |
161 | - @Override | |
162 | - public void onClick(View v) { | |
163 | - Intent ret = new Intent(); | |
164 | - String retstr = getString(R.string.apostrophe) + | |
165 | - doConvert(sbj, convert.getCheckedRadioButtonId()) + | |
166 | - getString(R.string.apostrophe); | |
167 | - ret.putExtra(DA_EX_RETURN, retstr); | |
168 | - setResult(RESULT_OK, ret); | |
169 | - finish(); | |
170 | - } | |
171 | - | |
172 | - }); | |
173 | - } | |
174 | - @Override | |
175 | - protected void onStop(){ | |
176 | - super.onStop(); | |
177 | - writePrefs(); | |
178 | - } | |
179 | - | |
180 | - @SuppressLint("DefaultLocale") | |
181 | - public String doConvert(String obj, int mode){ | |
182 | - String result = ""; | |
183 | - switch (mode){ | |
184 | - case R.id.radio0: | |
185 | - result = obj.toUpperCase(); | |
186 | - break; | |
187 | - case R.id.radio1: | |
188 | - result = obj.toLowerCase(); | |
189 | - break; | |
190 | - case R.id.radio2: | |
191 | - if (obj.length() == 0){ | |
192 | - result = ""; | |
193 | - } else if (obj.length() == 1){ | |
194 | - result = obj.toUpperCase(); | |
195 | - } else { | |
196 | - result = obj.substring(0,1).toUpperCase() + obj.substring(1).toLowerCase(); | |
197 | - } | |
198 | - break; | |
199 | - case R.id.radio3: | |
200 | - result = obj; | |
201 | - break; | |
202 | - } | |
203 | - return result; | |
204 | - } | |
205 | - | |
206 | - public void readPrefs(){ | |
207 | - SharedPreferences sp = getPreferences(MODE_PRIVATE); | |
208 | - convert.check(sp.getInt("checked", R.id.radio3)); | |
209 | - } | |
210 | - | |
211 | - public void writePrefs(){ | |
212 | - SharedPreferences sp = getPreferences(MODE_PRIVATE); | |
213 | - SharedPreferences.Editor pe = sp.edit(); | |
214 | - pe.putInt("checked", convert.getCheckedRadioButtonId()); | |
215 | - pe.commit(); | |
216 | - } | |
217 | - | |
218 | -} |
@@ -0,0 +1,27 @@ | ||
1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
2 | + package="org.pulpdust.da.aozora.em" | |
3 | + android:versionCode="1" | |
4 | + android:versionName="0.1" | |
5 | + android:installLocation="auto"> | |
6 | + | |
7 | + <uses-sdk | |
8 | + android:minSdkVersion="4" | |
9 | + android:targetSdkVersion="19" /> | |
10 | + | |
11 | + <application | |
12 | + android:allowBackup="true" | |
13 | + android:icon="@drawable/ic_launcher" | |
14 | + android:label="@string/app_name" | |
15 | + android:theme="@style/AppTheme" > | |
16 | + <activity | |
17 | + android:name=".AozoraEmDaActivity" | |
18 | + android:label="@string/app_name" | |
19 | + android:windowSoftInputMode="stateVisible|adjustResize" > | |
20 | + <intent-filter> | |
21 | + <action android:name="org.pulpdust.da.action.LAUNCH" /> | |
22 | + <category android:name="android.intent.category.DEFAULT" /> | |
23 | + </intent-filter> | |
24 | + </activity> | |
25 | + </application> | |
26 | + | |
27 | +</manifest> |
@@ -1,6 +1,10 @@ | ||
1 | 1 | ddms.logcat.auotmonitor.level=error |
2 | 2 | ddms.logcat.automonitor.userprompt=true |
3 | +devicePanel.Col0=126 | |
4 | +devicePanel.Col1=53 | |
5 | +devicePanel.Col4=81 | |
3 | 6 | eclipse.preferences.version=1 |
7 | +lastImageSaveDir=/home/kodakana/Documents/2014 | |
4 | 8 | logcat.view.colsize.Application=173 |
5 | 9 | logcat.view.colsize.Level=28 |
6 | 10 | logcat.view.colsize.PID=64 |
@@ -8,3 +12,10 @@ logcat.view.colsize.TID=64 | ||
8 | 12 | logcat.view.colsize.Tag=129 |
9 | 13 | logcat.view.colsize.Text=670 |
10 | 14 | logcat.view.colsize.Time=179 |
15 | +threadPanel.Col0=36 | |
16 | +threadPanel.Col1=52 | |
17 | +threadPanel.Col2=78 | |
18 | +threadPanel.Col3=47 | |
19 | +threadPanel.Col4=47 | |
20 | +threadPanel.Col5=427 | |
21 | +threadPanel.stack.col0=677 |
@@ -10,20 +10,20 @@ | ||
10 | 10 | </launchGroup> |
11 | 11 | <launchGroup id="org.eclipse.debug.ui.launchGroup.debug"> |
12 | 12 | <mruHistory> |
13 | -<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="BracesDA"/> "/> | |
14 | -<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="KakomunDA"/> "/> | |
15 | 13 | <launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="AozoraEmDA"/> "/> |
16 | 14 | <launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="AozoraRubyDA"/> "/> |
15 | +<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="BracesDA"/> "/> | |
16 | +<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="KakomunDA"/> "/> | |
17 | 17 | <launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="SampleDA"/> "/> |
18 | 18 | </mruHistory> |
19 | 19 | <favorites/> |
20 | 20 | </launchGroup> |
21 | 21 | <launchGroup id="org.eclipse.debug.ui.launchGroup.run"> |
22 | 22 | <mruHistory> |
23 | -<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="BracesDA"/> "/> | |
24 | -<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="KakomunDA"/> "/> | |
25 | 23 | <launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="AozoraEmDA"/> "/> |
26 | 24 | <launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="AozoraRubyDA"/> "/> |
25 | +<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="BracesDA"/> "/> | |
26 | +<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="KakomunDA"/> "/> | |
27 | 27 | <launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="SampleDA"/> "/> |
28 | 28 | </mruHistory> |
29 | 29 | <favorites/> |
@@ -1,6 +1,6 @@ | ||
1 | 1 | <?xml version="1.0" encoding="ASCII"?> |
2 | 2 | <application:Application xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:advanced="http://www.eclipse.org/ui/2010/UIModel/application/ui/advanced" xmlns:application="http://www.eclipse.org/ui/2010/UIModel/application" xmlns:basic="http://www.eclipse.org/ui/2010/UIModel/application/ui/basic" xmlns:menu="http://www.eclipse.org/ui/2010/UIModel/application/ui/menu" xmi:id="_1dE5oLsLEeOj1duRcKPRhA" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_1dE5obsLEeOj1duRcKPRhA" bindingContexts="_1dFhxLsLEeOj1duRcKPRhA"> |
3 | - <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<workbench>
<mruList>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="KakomunDaActivity.java" tooltip="KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java">
<persistable path="/KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="BracesDaActivity.java" tooltip="BracesDA/src/org/pulpdust/da/braces/BracesDaActivity.java">
<persistable path="/BracesDA/src/org/pulpdust/da/braces/BracesDaActivity.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="AozoraRubyDaActivity.java" tooltip="AozoraRubyDA/src/org/pulpdust/da/aozora/ruby/AozoraRubyDaActivity.java">
<persistable path="/AozoraRubyDA/src/org/pulpdust/da/aozora/ruby/AozoraRubyDaActivity.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.manifest.ManifestEditor" name="AndroidManifest.xml" tooltip="AozoraEmDA/AndroidManifest.xml">
<persistable path="/AozoraEmDA/AndroidManifest.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.manifest.ManifestEditor" name="AndroidManifest.xml" tooltip="AozoraRubyDA/AndroidManifest.xml">
<persistable path="/AozoraRubyDA/AndroidManifest.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.manifest.ManifestEditor" name="AndroidManifest.xml" tooltip="SampleDA/AndroidManifest.xml">
<persistable path="/SampleDA/AndroidManifest.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="AozoraEmDaActivity.java" tooltip="AozoraEmDA/src/org/pulpdust/da/aozora/em/AozoraEmDaActivity.java">
<persistable path="/AozoraEmDA/src/org/pulpdust/da/aozora/em/AozoraEmDaActivity.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="SampleDaActivity.java" tooltip="SampleDA/src/org/pulpdust/da/sample/SampleDaActivity.java">
<persistable path="/SampleDA/src/org/pulpdust/da/sample/SampleDaActivity.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.manifest.ManifestEditor" name="AndroidManifest.xml" tooltip="BracesDA/AndroidManifest.xml">
<persistable path="/BracesDA/AndroidManifest.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.manifest.ManifestEditor" name="AndroidManifest.xml" tooltip="KakomunDA/AndroidManifest.xml">
<persistable path="/KakomunDA/AndroidManifest.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.CommonXmlEditor" name="activity_kakomunda.xml" tooltip="KakomunDA/res/layout/activity_kakomunda.xml">
<persistable path="/KakomunDA/res/layout/activity_kakomunda.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.CommonXmlEditor" name="activity_aozoraem.xml" tooltip="AozoraEmDA/res/layout-v8/activity_aozoraem.xml">
<persistable path="/AozoraEmDA/res/layout-v8/activity_aozoraem.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.CommonXmlEditor" name="activity_aozoraruby.xml" tooltip="AozoraRubyDA/res/layout-v8/activity_aozoraruby.xml">
<persistable path="/AozoraRubyDA/res/layout-v8/activity_aozoraruby.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.CommonXmlEditor" name="activity_aozoraem.xml" tooltip="AozoraEmDA/res/layout/activity_aozoraem.xml">
<persistable path="/AozoraEmDA/res/layout/activity_aozoraem.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.CommonXmlEditor" name="activity_aozoraruby.xml" tooltip="AozoraRubyDA/res/layout/activity_aozoraruby.xml">
<persistable path="/AozoraRubyDA/res/layout/activity_aozoraruby.xml"/>
</file>
</mruList>
</workbench>"/> | |
3 | + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<workbench>
<mruList>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="AozoraEmDaActivity.java" tooltip="AozoraEmDA/src/org/pulpdust/da/aozora/em/AozoraEmDaActivity.java">
<persistable path="/AozoraEmDA/src/org/pulpdust/da/aozora/em/AozoraEmDaActivity.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="SampleDaActivity.java" tooltip="SampleDA/src/org/pulpdust/da/sample/SampleDaActivity.java">
<persistable path="/SampleDA/src/org/pulpdust/da/sample/SampleDaActivity.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="KakomunDaActivity.java" tooltip="KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java">
<persistable path="/KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="BracesDaActivity.java" tooltip="BracesDA/src/org/pulpdust/da/braces/BracesDaActivity.java">
<persistable path="/BracesDA/src/org/pulpdust/da/braces/BracesDaActivity.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="AozoraRubyDaActivity.java" tooltip="AozoraRubyDA/src/org/pulpdust/da/aozora/ruby/AozoraRubyDaActivity.java">
<persistable path="/AozoraRubyDA/src/org/pulpdust/da/aozora/ruby/AozoraRubyDaActivity.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.manifest.ManifestEditor" name="AndroidManifest.xml" tooltip="AozoraEmDA/AndroidManifest.xml">
<persistable path="/AozoraEmDA/AndroidManifest.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.manifest.ManifestEditor" name="AndroidManifest.xml" tooltip="AozoraRubyDA/AndroidManifest.xml">
<persistable path="/AozoraRubyDA/AndroidManifest.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.manifest.ManifestEditor" name="AndroidManifest.xml" tooltip="SampleDA/AndroidManifest.xml">
<persistable path="/SampleDA/AndroidManifest.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.manifest.ManifestEditor" name="AndroidManifest.xml" tooltip="BracesDA/AndroidManifest.xml">
<persistable path="/BracesDA/AndroidManifest.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.manifest.ManifestEditor" name="AndroidManifest.xml" tooltip="KakomunDA/AndroidManifest.xml">
<persistable path="/KakomunDA/AndroidManifest.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.CommonXmlEditor" name="activity_kakomunda.xml" tooltip="KakomunDA/res/layout/activity_kakomunda.xml">
<persistable path="/KakomunDA/res/layout/activity_kakomunda.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.CommonXmlEditor" name="activity_aozoraem.xml" tooltip="AozoraEmDA/res/layout-v8/activity_aozoraem.xml">
<persistable path="/AozoraEmDA/res/layout-v8/activity_aozoraem.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.CommonXmlEditor" name="activity_aozoraruby.xml" tooltip="AozoraRubyDA/res/layout-v8/activity_aozoraruby.xml">
<persistable path="/AozoraRubyDA/res/layout-v8/activity_aozoraruby.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.CommonXmlEditor" name="activity_aozoraem.xml" tooltip="AozoraEmDA/res/layout/activity_aozoraem.xml">
<persistable path="/AozoraEmDA/res/layout/activity_aozoraem.xml"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="com.android.ide.eclipse.editors.CommonXmlEditor" name="activity_aozoraruby.xml" tooltip="AozoraRubyDA/res/layout/activity_aozoraruby.xml">
<persistable path="/AozoraRubyDA/res/layout/activity_aozoraruby.xml"/>
</file>
</mruList>
</workbench>"/> | |
4 | 4 | <tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags> |
5 | 5 | <tags>ModelMigrationProcessor.001</tags> |
6 | 6 | <children xsi:type="basic:TrimmedWindow" xmi:id="_1dE5obsLEeOj1duRcKPRhA" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_1dE5orsLEeOj1duRcKPRhA" label="%trimmedwindow.label.eclipseSDK" x="-4" y="25" width="1022" height="740"> |
@@ -72,11 +72,12 @@ | ||
72 | 72 | <tags>persp.showIn:org.eclipse.team.ui.GenericHistoryView</tags> |
73 | 73 | <tags>persp.showIn:org.eclipse.ui.views.ResourceNavigator</tags> |
74 | 74 | <tags>persp.showIn:org.eclipse.ui.navigator.ProjectExplorer</tags> |
75 | - <children xsi:type="basic:PartSashContainer" xmi:id="_1dE5pbsLEeOj1duRcKPRhA" selectedElement="_1dE5rLsLEeOj1duRcKPRhA" horizontal="true"> | |
75 | + <children xsi:type="basic:PartSashContainer" xmi:id="_1dE5pbsLEeOj1duRcKPRhA" selectedElement="_1dE5prsLEeOj1duRcKPRhA" horizontal="true"> | |
76 | 76 | <children xsi:type="basic:PartStack" xmi:id="_1dE5prsLEeOj1duRcKPRhA" elementId="left" visible="false" containerData="2500" selectedElement="_1dE5p7sLEeOj1duRcKPRhA"> |
77 | 77 | <tags>newtablook</tags> |
78 | 78 | <tags>org.eclipse.e4.primaryNavigationStack</tags> |
79 | 79 | <tags>Minimized</tags> |
80 | + <tags>active</tags> | |
80 | 81 | <children xsi:type="advanced:Placeholder" xmi:id="_1dE5p7sLEeOj1duRcKPRhA" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_1dE657sLEeOj1duRcKPRhA"/> |
81 | 82 | <children xsi:type="advanced:Placeholder" xmi:id="_1dE5qLsLEeOj1duRcKPRhA" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_1dE7A7sLEeOj1duRcKPRhA"/> |
82 | 83 | <children xsi:type="advanced:Placeholder" xmi:id="_1dE5qbsLEeOj1duRcKPRhA" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_1dE7BLsLEeOj1duRcKPRhA"/> |
@@ -111,6 +112,63 @@ | ||
111 | 112 | </children> |
112 | 113 | </children> |
113 | 114 | </children> |
115 | + <children xsi:type="advanced:Perspective" xmi:id="_3TCCYL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.Perspective" selectedElement="_3TCCYb0_EeOUEal7hoKuyg" label="DDMS" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/ddms-16.png"> | |
116 | + <persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:org.eclipse.jdt.ui.actions.OpenProjectWizard,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,"/> | |
117 | + <tags>persp.actionSet:org.eclipse.ui.cheatsheets.actionSet</tags> | |
118 | + <tags>persp.actionSet:org.eclipse.search.searchActionSet</tags> | |
119 | + <tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation</tags> | |
120 | + <tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation</tags> | |
121 | + <tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo</tags> | |
122 | + <tags>persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet</tags> | |
123 | + <tags>persp.actionSet:org.eclipse.ui.actionSet.keyBindings</tags> | |
124 | + <tags>persp.actionSet:org.eclipse.ui.actionSet.openFiles</tags> | |
125 | + <tags>persp.perspSC:org.eclipse.ui.resourcePerspective</tags> | |
126 | + <tags>persp.perspSC:org.eclipse.debug.ui.DebugPerspective</tags> | |
127 | + <tags>persp.perspSC:org.eclipse.jdt.ui.JavaPerspective</tags> | |
128 | + <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.DeviceView</tags> | |
129 | + <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.FileExplorerView</tags> | |
130 | + <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.HeapView</tags> | |
131 | + <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.AllocTrackerView</tags> | |
132 | + <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.LogCatView</tags> | |
133 | + <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.ThreadView</tags> | |
134 | + <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.NetworkStatsView</tags> | |
135 | + <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.SysInfoView</tags> | |
136 | + <tags>persp.viewSC:org.eclipse.ui.views.ResourceNavigator</tags> | |
137 | + <tags>persp.viewSC:org.eclipse.ui.views.BookmarkView</tags> | |
138 | + <tags>persp.viewSC:org.eclipse.ui.views.ContentOutline</tags> | |
139 | + <tags>persp.viewSC:org.eclipse.ui.views.PropertySheet</tags> | |
140 | + <tags>persp.viewSC:org.eclipse.ui.views.ProblemView</tags> | |
141 | + <tags>persp.viewSC:org.eclipse.ui.views.ProgressView</tags> | |
142 | + <tags>persp.viewSC:org.eclipse.ui.views.TaskList</tags> | |
143 | + <children xsi:type="basic:PartSashContainer" xmi:id="_3TCCYb0_EeOUEal7hoKuyg" selectedElement="_3TCCYr0_EeOUEal7hoKuyg"> | |
144 | + <children xsi:type="basic:PartSashContainer" xmi:id="_3TCCYr0_EeOUEal7hoKuyg" containerData="8000" selectedElement="_3TCCZr0_EeOUEal7hoKuyg" horizontal="true"> | |
145 | + <children xsi:type="basic:PartStack" xmi:id="_3TCCY70_EeOUEal7hoKuyg" elementId="devices" containerData="3000" selectedElement="_3TCCZb0_EeOUEal7hoKuyg"> | |
146 | + <tags>newtablook</tags> | |
147 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCZL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.DeviceView:*" toBeRendered="false" ref="_3S3DQL0_EeOUEal7hoKuyg"/> | |
148 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCZb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.DeviceView" ref="_3S44cL0_EeOUEal7hoKuyg"/> | |
149 | + </children> | |
150 | + <children xsi:type="basic:PartSashContainer" xmi:id="_3TCCZr0_EeOUEal7hoKuyg" containerData="7000" selectedElement="_3TCCaL0_EeOUEal7hoKuyg" horizontal="true"> | |
151 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCZ70_EeOUEal7hoKuyg" elementId="org.eclipse.ui.editorss" toBeRendered="false" containerData="5000" ref="_1dE6wrsLEeOj1duRcKPRhA"/> | |
152 | + <children xsi:type="basic:PartStack" xmi:id="_3TCCaL0_EeOUEal7hoKuyg" elementId="ddms-detail" containerData="5000" selectedElement="_3TCCar0_EeOUEal7hoKuyg"> | |
153 | + <tags>newtablook</tags> | |
154 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCab0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.ThreadView:*" toBeRendered="false" ref="_3S5fgL0_EeOUEal7hoKuyg"/> | |
155 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCar0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.ThreadView" ref="_3S5fgb0_EeOUEal7hoKuyg"/> | |
156 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCa70_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.HeapView" ref="_3S6GkL0_EeOUEal7hoKuyg"/> | |
157 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCbL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.AllocTrackerView" ref="_3S6Gkb0_EeOUEal7hoKuyg"/> | |
158 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCbb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.NetworkStatsView" ref="_3S6toL0_EeOUEal7hoKuyg"/> | |
159 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCbr0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.FileExplorerView" ref="_3S6tob0_EeOUEal7hoKuyg"/> | |
160 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCb70_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.EmulatorControlView" ref="_3S7UsL0_EeOUEal7hoKuyg"/> | |
161 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCcL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.SysInfoView" ref="_3S77wL0_EeOUEal7hoKuyg"/> | |
162 | + </children> | |
163 | + </children> | |
164 | + </children> | |
165 | + <children xsi:type="basic:PartStack" xmi:id="_3TCCcb0_EeOUEal7hoKuyg" elementId="logcat" containerData="2000" selectedElement="_3TCCc70_EeOUEal7hoKuyg"> | |
166 | + <tags>newtablook</tags> | |
167 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCcr0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.LogCatView:*" toBeRendered="false" ref="_3S11IL0_EeOUEal7hoKuyg"/> | |
168 | + <children xsi:type="advanced:Placeholder" xmi:id="_3TCCc70_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.LogCatView" ref="_1dE7UbsLEeOj1duRcKPRhA"/> | |
169 | + </children> | |
170 | + </children> | |
171 | + </children> | |
114 | 172 | </children> |
115 | 173 | <children xsi:type="basic:PartStack" xmi:id="_1dE5vLsLEeOj1duRcKPRhA" elementId="stickyFolderRight" toBeRendered="false" containerData="2500"> |
116 | 174 | <children xsi:type="advanced:Placeholder" xmi:id="_1dE5vbsLEeOj1duRcKPRhA" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_1dE6vbsLEeOj1duRcKPRhA"/> |
@@ -136,11 +194,10 @@ | ||
136 | 194 | <tags>categoryTag:Help</tags> |
137 | 195 | </sharedElements> |
138 | 196 | <sharedElements xsi:type="advanced:Area" xmi:id="_1dE6wrsLEeOj1duRcKPRhA" elementId="org.eclipse.ui.editorss" selectedElement="_1dE6w7sLEeOj1duRcKPRhA"> |
139 | - <children xsi:type="basic:PartStack" xmi:id="_1dE6w7sLEeOj1duRcKPRhA" elementId="org.eclipse.e4.primaryDataStack" selectedElement="_ZP7SMLzeEeO7Yto4c03a5g"> | |
197 | + <children xsi:type="basic:PartStack" xmi:id="_1dE6w7sLEeOj1duRcKPRhA" elementId="org.eclipse.e4.primaryDataStack" selectedElement="_5rQBgL1AEeOUEal7hoKuyg"> | |
140 | 198 | <tags>newtablook</tags> |
141 | 199 | <tags>org.eclipse.e4.primaryDataStack</tags> |
142 | 200 | <tags>EditorStack</tags> |
143 | - <tags>active</tags> | |
144 | 201 | <children xsi:type="basic:Part" xmi:id="_W_h84LzeEeO7Yto4c03a5g" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="AozoraRubyDaActivity.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="AozoraRubyDA/src/org/pulpdust/da/aozora/ruby/AozoraRubyDaActivity.java" closeable="true"> |
145 | 202 | <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/AozoraRubyDA/src/org/pulpdust/da/aozora/ruby/AozoraRubyDaActivity.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="137" selectionOffset="1272" selectionTopPixel="134"/>
</editor>"/> |
146 | 203 | <tags>Editor</tags> |
@@ -152,11 +209,21 @@ | ||
152 | 209 | <tags>Editor</tags> |
153 | 210 | <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> |
154 | 211 | <tags>removeOnHide</tags> |
155 | - <tags>active</tags> | |
156 | - <tags>activeOnClose</tags> | |
157 | 212 | </children> |
158 | 213 | <children xsi:type="basic:Part" xmi:id="__d8scLzeEeO7Yto4c03a5g" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="KakomunDaActivity.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java" closeable="true"> |
159 | - <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="1768" selectionTopPixel="471"/>
</editor>"/> | |
214 | + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="1323" selectionTopPixel="471"/>
</editor>"/> | |
215 | + <tags>Editor</tags> | |
216 | + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> | |
217 | + <tags>removeOnHide</tags> | |
218 | + </children> | |
219 | + <children xsi:type="basic:Part" xmi:id="_ufw18L0_EeOUEal7hoKuyg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="SampleDaActivity.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="SampleDA/src/org/pulpdust/da/sample/SampleDaActivity.java" closeable="true"> | |
220 | + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/SampleDA/src/org/pulpdust/da/sample/SampleDaActivity.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="519" selectionTopPixel="0"/>
</editor>"/> | |
221 | + <tags>Editor</tags> | |
222 | + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> | |
223 | + <tags>removeOnHide</tags> | |
224 | + </children> | |
225 | + <children xsi:type="basic:Part" xmi:id="_5rQBgL1AEeOUEal7hoKuyg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="AozoraEmDaActivity.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="AozoraEmDA/src/org/pulpdust/da/aozora/em/AozoraEmDaActivity.java" closeable="true"> | |
226 | + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/AozoraEmDA/src/org/pulpdust/da/aozora/em/AozoraEmDaActivity.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="937" selectionTopPixel="0"/>
</editor>"/> | |
160 | 227 | <tags>Editor</tags> |
161 | 228 | <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> |
162 | 229 | <tags>removeOnHide</tags> |
@@ -167,6 +234,8 @@ | ||
167 | 234 | <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view group_libraries="1" layout="2" linkWithEditor="0" rootMode="1" workingSetName="Aggregate for window 1396166732194">
<customFilters userDefinedPatternsEnabled="false">
<xmlDefinedFilters>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LocalTypesFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.StaticsFilter" isEnabled="false"/>
<child filterId="org.eclipse.pde.ui.ExternalPluginLibrariesFilter1" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ClosedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonSharedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaElementFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ContainedLibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.CuAndClassFileFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyInnerPackageFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.PackageDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyPackageFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ImportDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.FieldsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.HideInnerClassFilesFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonPublicFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer_patternFilterId_.*" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.EmptyLibraryContainerFilter" isEnabled="true"/>
<child filterId="org.eclipse.pde.ui.BinaryProjectFilter1" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.SyntheticMembersFilter" isEnabled="true"/>
</xmlDefinedFilters>
</customFilters>
</view>"/> |
168 | 235 | <tags>View</tags> |
169 | 236 | <tags>categoryTag:Java</tags> |
237 | + <tags>active</tags> | |
238 | + <tags>activeOnClose</tags> | |
170 | 239 | <menus xmi:id="_1dE66LsLEeOj1duRcKPRhA" elementId="org.eclipse.jdt.ui.PackageExplorer"> |
171 | 240 | <tags>ViewMenu</tags> |
172 | 241 | <tags>menuContribution:menu</tags> |
@@ -312,6 +381,62 @@ | ||
312 | 381 | </menus> |
313 | 382 | <toolbar xmi:id="_1dE7U7sLEeOj1duRcKPRhA" elementId="com.android.ide.eclipse.ddms.views.LogCatView" visible="false"/> |
314 | 383 | </sharedElements> |
384 | + <sharedElements xsi:type="basic:Part" xmi:id="_3S11IL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.LogCatView:*" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="LogCat" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/logcat.png" closeable="true"> | |
385 | + <tags>View</tags> | |
386 | + <tags>categoryTag:Android</tags> | |
387 | + </sharedElements> | |
388 | + <sharedElements xsi:type="basic:Part" xmi:id="_3S3DQL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.DeviceView:*" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Devices" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/device.png" closeable="true"> | |
389 | + <tags>View</tags> | |
390 | + <tags>categoryTag:Android</tags> | |
391 | + </sharedElements> | |
392 | + <sharedElements xsi:type="basic:Part" xmi:id="_3S44cL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.DeviceView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Devices" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/device.png" tooltip="" closeable="true"> | |
393 | + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> | |
394 | + <tags>View</tags> | |
395 | + <tags>categoryTag:Android</tags> | |
396 | + <menus xmi:id="_3Tv0EL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.DeviceView"> | |
397 | + <tags>ViewMenu</tags> | |
398 | + <tags>menuContribution:menu</tags> | |
399 | + </menus> | |
400 | + <toolbar xmi:id="_3Tv0Eb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.DeviceView" visible="false"/> | |
401 | + </sharedElements> | |
402 | + <sharedElements xsi:type="basic:Part" xmi:id="_3S5fgL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.ThreadView:*" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Threads" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/thread.png" closeable="true"> | |
403 | + <tags>View</tags> | |
404 | + <tags>categoryTag:Android</tags> | |
405 | + </sharedElements> | |
406 | + <sharedElements xsi:type="basic:Part" xmi:id="_3S5fgb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.ThreadView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Threads" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/thread.png" tooltip="" closeable="true"> | |
407 | + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> | |
408 | + <tags>View</tags> | |
409 | + <tags>categoryTag:Android</tags> | |
410 | + <menus xmi:id="_3Vs74L0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.ThreadView"> | |
411 | + <tags>ViewMenu</tags> | |
412 | + <tags>menuContribution:menu</tags> | |
413 | + </menus> | |
414 | + <toolbar xmi:id="_3Vs74b0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.ThreadView" visible="false"/> | |
415 | + </sharedElements> | |
416 | + <sharedElements xsi:type="basic:Part" xmi:id="_3S6GkL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.HeapView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Heap" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/heap.png" closeable="true"> | |
417 | + <tags>View</tags> | |
418 | + <tags>categoryTag:Android</tags> | |
419 | + </sharedElements> | |
420 | + <sharedElements xsi:type="basic:Part" xmi:id="_3S6Gkb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.AllocTrackerView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Allocation Tracker" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/heap.png" closeable="true"> | |
421 | + <tags>View</tags> | |
422 | + <tags>categoryTag:Android</tags> | |
423 | + </sharedElements> | |
424 | + <sharedElements xsi:type="basic:Part" xmi:id="_3S6toL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.NetworkStatsView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Network Statistics" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/networkstats.png" closeable="true"> | |
425 | + <tags>View</tags> | |
426 | + <tags>categoryTag:Android</tags> | |
427 | + </sharedElements> | |
428 | + <sharedElements xsi:type="basic:Part" xmi:id="_3S6tob0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.FileExplorerView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="File Explorer" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/android.png" closeable="true"> | |
429 | + <tags>View</tags> | |
430 | + <tags>categoryTag:Android</tags> | |
431 | + </sharedElements> | |
432 | + <sharedElements xsi:type="basic:Part" xmi:id="_3S7UsL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.EmulatorControlView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Emulator Control" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/emulator-16.png" closeable="true"> | |
433 | + <tags>View</tags> | |
434 | + <tags>categoryTag:Android</tags> | |
435 | + </sharedElements> | |
436 | + <sharedElements xsi:type="basic:Part" xmi:id="_3S77wL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.SysInfoView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="System Information" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" closeable="true"> | |
437 | + <tags>View</tags> | |
438 | + <tags>categoryTag:Android</tags> | |
439 | + </sharedElements> | |
315 | 440 | <trimBars xmi:id="_1dE7VLsLEeOj1duRcKPRhA" elementId="org.eclipse.ui.main.toolbar"> |
316 | 441 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7VbsLEeOj1duRcKPRhA" elementId="group.file" toBeRendered="false"> |
317 | 442 | <tags>toolbarSeparator</tags> |
@@ -319,18 +444,18 @@ | ||
319 | 444 | </children> |
320 | 445 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7V7sLEeOj1duRcKPRhA" elementId="org.eclipse.ui.workbench.file"> |
321 | 446 | <tags>Draggable</tags> |
322 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SCzrkLzbEeO7Yto4c03a5g" elementId="new.group"/> | |
323 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC0SoLzbEeO7Yto4c03a5g" elementId="newWizardDropDown"/> | |
324 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC0SobzbEeO7Yto4c03a5g" elementId="new.ext" visible="false"/> | |
325 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC0SorzbEeO7Yto4c03a5g" elementId="save.group" visible="false"/> | |
326 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC0So7zbEeO7Yto4c03a5g" elementId="save"/> | |
327 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC0SpLzbEeO7Yto4c03a5g" elementId="saveAll"/> | |
328 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC0SpbzbEeO7Yto4c03a5g" elementId="save.ext" visible="false"/> | |
329 | - <children xsi:type="menu:HandledToolItem" xmi:id="_SC0SprzbEeO7Yto4c03a5g" elementId="print" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.gif" tooltip="Print" command="_1dGveLsLEeOj1duRcKPRhA"/> | |
330 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39ALzbEeO7Yto4c03a5g" elementId="print.ext" visible="false"/> | |
331 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39AbzbEeO7Yto4c03a5g" elementId="build.group"/> | |
332 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39ArzbEeO7Yto4c03a5g" elementId="build.ext" visible="false"/> | |
333 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39A7zbEeO7Yto4c03a5g" elementId="additions"/> | |
447 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNGIL0_EeOUEal7hoKuyg" elementId="new.group"/> | |
448 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNGIb0_EeOUEal7hoKuyg" elementId="newWizardDropDown"/> | |
449 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNGIr0_EeOUEal7hoKuyg" elementId="new.ext" visible="false"/> | |
450 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNGI70_EeOUEal7hoKuyg" elementId="save.group" visible="false"/> | |
451 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNtML0_EeOUEal7hoKuyg" elementId="save"/> | |
452 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNtMb0_EeOUEal7hoKuyg" elementId="saveAll"/> | |
453 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNtMr0_EeOUEal7hoKuyg" elementId="save.ext" visible="false"/> | |
454 | + <children xsi:type="menu:HandledToolItem" xmi:id="_pfNtM70_EeOUEal7hoKuyg" elementId="print" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.gif" tooltip="Print" enabled="false" command="_1dGveLsLEeOj1duRcKPRhA"/> | |
455 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfQwgL0_EeOUEal7hoKuyg" elementId="print.ext" visible="false"/> | |
456 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfQwgb0_EeOUEal7hoKuyg" elementId="build.group"/> | |
457 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfQwgr0_EeOUEal7hoKuyg" elementId="build.ext" visible="false"/> | |
458 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfQwg70_EeOUEal7hoKuyg" elementId="additions"/> | |
334 | 459 | </children> |
335 | 460 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7ZLsLEeOj1duRcKPRhA" elementId="additions" toBeRendered="false"> |
336 | 461 | <tags>toolbarSeparator</tags> |
@@ -338,59 +463,53 @@ | ||
338 | 463 | </children> |
339 | 464 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7gbsLEeOj1duRcKPRhA" elementId="org.eclipse.ui.edit.text.actionSet.presentation"> |
340 | 465 | <tags>Draggable</tags> |
341 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_qrYcQLy5EeOHtOgB1g4JqA" elementId="Presentation"/> | |
342 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_qrYcQby5EeOHtOgB1g4JqA" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb"/> | |
343 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_qrYcQry5EeOHtOgB1g4JqA" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences"/> | |
344 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_qrYcQ7y5EeOHtOgB1g4JqA" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode"/> | |
345 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_qrYcRLy5EeOHtOgB1g4JqA" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"/> | |
346 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_qrYcRby5EeOHtOgB1g4JqA" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"/> | |
347 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_WEDTcLzbEeO7Yto4c03a5g" elementId="Presentation"/> | |
348 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_WED6gLzbEeO7Yto4c03a5g" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb"/> | |
349 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_WED6gbzbEeO7Yto4c03a5g" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences"/> | |
350 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_WED6grzbEeO7Yto4c03a5g" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode"/> | |
351 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_WED6g7zbEeO7Yto4c03a5g" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"/> | |
352 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_WED6hLzbEeO7Yto4c03a5g" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"/> | |
466 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_qsR9QL0_EeOUEal7hoKuyg" elementId="Presentation"/> | |
467 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_qsR9Qb0_EeOUEal7hoKuyg" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb"/> | |
468 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_qsR9Qr0_EeOUEal7hoKuyg" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences"/> | |
469 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_qsR9Q70_EeOUEal7hoKuyg" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode"/> | |
470 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_qsTLYL0_EeOUEal7hoKuyg" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"/> | |
471 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_qsTLYb0_EeOUEal7hoKuyg" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"/> | |
353 | 472 | </children> |
354 | 473 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7jrsLEeOj1duRcKPRhA" elementId="adt.actionSet.avdManager"> |
355 | 474 | <tags>Draggable</tags> |
356 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFM4QLzbEeO7Yto4c03a5g" elementId="android_project"/> | |
357 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFM4QbzbEeO7Yto4c03a5g" elementId="com.android.ide.eclipse.adt.ui.sdkmanager"/> | |
358 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFM4QrzbEeO7Yto4c03a5g" elementId="com.android.ide.eclipse.adt.ui.avdmanager"/> | |
475 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg7kcL0_EeOUEal7hoKuyg" elementId="android_project"/> | |
476 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg7kcb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.adt.ui.sdkmanager"/> | |
477 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg7kcr0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.adt.ui.avdmanager"/> | |
359 | 478 | </children> |
360 | 479 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7krsLEeOj1duRcKPRhA" elementId="adt.actionSet.lint"> |
361 | 480 | <tags>Draggable</tags> |
362 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFM4Q7zbEeO7Yto4c03a5g" elementId="android_project"/> | |
363 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFM4RLzbEeO7Yto4c03a5g" elementId="com.android.ide.eclipse.adt.ui.lintrunner"/> | |
481 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg7kc70_EeOUEal7hoKuyg" elementId="android_project"/> | |
482 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg7kdL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.adt.ui.lintrunner"/> | |
364 | 483 | </children> |
365 | 484 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7lbsLEeOj1duRcKPRhA" elementId="adt.actionSet.wizards"> |
366 | 485 | <tags>Draggable</tags> |
367 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFM4RbzbEeO7Yto4c03a5g" elementId="android_project"/> | |
368 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfULzbEeO7Yto4c03a5g" elementId="com.android.ide.eclipse.adt.wizards.actions.NewXmlFileAction"/> | |
486 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8LgL0_EeOUEal7hoKuyg" elementId="android_project"/> | |
487 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lgb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.adt.wizards.actions.NewXmlFileAction"/> | |
369 | 488 | </children> |
370 | 489 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7mLsLEeOj1duRcKPRhA" elementId="org.eclipse.debug.ui.breakpointActionSet"> |
371 | 490 | <tags>Draggable</tags> |
372 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfUbzbEeO7Yto4c03a5g" elementId="breakpointGroup"/> | |
373 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfUrzbEeO7Yto4c03a5g" elementId="org.eclipse.debug.ui.actions.SkipAllBreakpoints"/> | |
491 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lgr0_EeOUEal7hoKuyg" elementId="breakpointGroup"/> | |
492 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lg70_EeOUEal7hoKuyg" elementId="org.eclipse.debug.ui.actions.SkipAllBreakpoints"/> | |
374 | 493 | </children> |
375 | 494 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7m7sLEeOj1duRcKPRhA" elementId="org.eclipse.debug.ui.launchActionSet"> |
376 | 495 | <tags>Draggable</tags> |
377 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfU7zbEeO7Yto4c03a5g" elementId="debug"/> | |
378 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfVLzbEeO7Yto4c03a5g" elementId="org.eclipse.debug.internal.ui.actions.DebugDropDownAction"/> | |
379 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfVbzbEeO7Yto4c03a5g" elementId="org.eclipse.debug.internal.ui.actions.RunDropDownAction"/> | |
380 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfVrzbEeO7Yto4c03a5g" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar"/> | |
496 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8LhL0_EeOUEal7hoKuyg" elementId="debug"/> | |
497 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lhb0_EeOUEal7hoKuyg" elementId="org.eclipse.debug.internal.ui.actions.DebugDropDownAction"/> | |
498 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lhr0_EeOUEal7hoKuyg" elementId="org.eclipse.debug.internal.ui.actions.RunDropDownAction"/> | |
499 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lh70_EeOUEal7hoKuyg" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar"/> | |
381 | 500 | </children> |
382 | 501 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7oLsLEeOj1duRcKPRhA" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet"> |
383 | 502 | <tags>Draggable</tags> |
384 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfV7zbEeO7Yto4c03a5g" elementId="JavaWizards"/> | |
385 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfWLzbEeO7Yto4c03a5g" elementId="org.eclipse.jdt.ui.actions.OpenProjectWizard"/> | |
386 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfWbzbEeO7Yto4c03a5g" elementId="org.eclipse.jdt.ui.actions.OpenPackageWizard"/> | |
387 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfWrzbEeO7Yto4c03a5g" elementId="org.eclipse.jdt.ui.actions.NewTypeDropDown"/> | |
503 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8LiL0_EeOUEal7hoKuyg" elementId="JavaWizards"/> | |
504 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lib0_EeOUEal7hoKuyg" elementId="org.eclipse.jdt.ui.actions.OpenProjectWizard"/> | |
505 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lir0_EeOUEal7hoKuyg" elementId="org.eclipse.jdt.ui.actions.OpenPackageWizard"/> | |
506 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Li70_EeOUEal7hoKuyg" elementId="org.eclipse.jdt.ui.actions.NewTypeDropDown"/> | |
388 | 507 | </children> |
389 | 508 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7pbsLEeOj1duRcKPRhA" elementId="org.eclipse.search.searchActionSet"> |
390 | 509 | <tags>Draggable</tags> |
391 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfW7zbEeO7Yto4c03a5g" elementId="Search"/> | |
392 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfXLzbEeO7Yto4c03a5g" elementId="openType"/> | |
393 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfXbzbEeO7Yto4c03a5g" elementId="org.eclipse.search.OpenSearchDialogPage"/> | |
510 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8LjL0_EeOUEal7hoKuyg" elementId="Search"/> | |
511 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Ljb0_EeOUEal7hoKuyg" elementId="openType"/> | |
512 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Ljr0_EeOUEal7hoKuyg" elementId="org.eclipse.search.OpenSearchDialogPage"/> | |
394 | 513 | </children> |
395 | 514 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7qbsLEeOj1duRcKPRhA" elementId="group.nav" toBeRendered="false"> |
396 | 515 | <tags>toolbarSeparator</tags> |
@@ -398,15 +517,15 @@ | ||
398 | 517 | </children> |
399 | 518 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7q7sLEeOj1duRcKPRhA" elementId="org.eclipse.ui.workbench.navigate"> |
400 | 519 | <tags>Draggable</tags> |
401 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39BLzbEeO7Yto4c03a5g" elementId="history.group"/> | |
402 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39BbzbEeO7Yto4c03a5g" elementId="group.application" visible="false"/> | |
403 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39BrzbEeO7Yto4c03a5g" elementId="backardHistory"/> | |
404 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39B7zbEeO7Yto4c03a5g" elementId="forwardHistory"/> | |
405 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39CLzbEeO7Yto4c03a5g" elementId="pin.group"/> | |
406 | - <children xsi:type="menu:HandledToolItem" xmi:id="_SC4kELzbEeO7Yto4c03a5g" elementId="org.eclipse.ui.window.pinEditor" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.gif" tooltip="Pin Editor" enabled="false" command="_1dGJO7sLEeOj1duRcKPRhA"/> | |
407 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfXrzbEeO7Yto4c03a5g" elementId="org.eclipse.ui.edit.text.gotoNextAnnotation"/> | |
408 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfX7zbEeO7Yto4c03a5g" elementId="org.eclipse.ui.edit.text.gotoPreviousAnnotation"/> | |
409 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfYLzbEeO7Yto4c03a5g" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition"/> | |
520 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfQwhL0_EeOUEal7hoKuyg" elementId="history.group"/> | |
521 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfQwhb0_EeOUEal7hoKuyg" elementId="group.application" visible="false"/> | |
522 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfRXkL0_EeOUEal7hoKuyg" elementId="backardHistory"/> | |
523 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfRXkb0_EeOUEal7hoKuyg" elementId="forwardHistory"/> | |
524 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfRXkr0_EeOUEal7hoKuyg" elementId="pin.group"/> | |
525 | + <children xsi:type="menu:HandledToolItem" xmi:id="_pfRXk70_EeOUEal7hoKuyg" elementId="org.eclipse.ui.window.pinEditor" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.gif" tooltip="Pin Editor" enabled="false" command="_1dGJO7sLEeOj1duRcKPRhA"/> | |
526 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lj70_EeOUEal7hoKuyg" elementId="org.eclipse.ui.edit.text.gotoNextAnnotation"/> | |
527 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8LkL0_EeOUEal7hoKuyg" elementId="org.eclipse.ui.edit.text.gotoPreviousAnnotation"/> | |
528 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lkb0_EeOUEal7hoKuyg" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition"/> | |
410 | 529 | </children> |
411 | 530 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7t7sLEeOj1duRcKPRhA" elementId="group.editor" toBeRendered="false"> |
412 | 531 | <tags>toolbarSeparator</tags> |
@@ -418,8 +537,8 @@ | ||
418 | 537 | </children> |
419 | 538 | <children xsi:type="menu:ToolBar" xmi:id="_1dE7u7sLEeOj1duRcKPRhA" elementId="org.eclipse.ui.workbench.help" visible="false"> |
420 | 539 | <tags>Draggable</tags> |
421 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC4kEbzbEeO7Yto4c03a5g" elementId="group.help"/> | |
422 | - <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC4kErzbEeO7Yto4c03a5g" elementId="group.application" visible="false"/> | |
540 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfR-oL0_EeOUEal7hoKuyg" elementId="group.help"/> | |
541 | + <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfR-ob0_EeOUEal7hoKuyg" elementId="group.application" visible="false"/> | |
423 | 542 | </children> |
424 | 543 | <children xsi:type="menu:ToolControl" xmi:id="_1dE7vrsLEeOj1duRcKPRhA" elementId="PerspectiveSpacer" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl"> |
425 | 544 | <tags>stretch</tags> |
@@ -3,7 +3,6 @@ INDEX VERSION 1.126+/home/kodakana/Workspace/DAs/.metadata/.plugins/org.eclipse. | ||
3 | 3 | 2446651349.index |
4 | 4 | 139751634.index |
5 | 5 | 965234107.index |
6 | -1469882382.index | |
7 | 6 | 2099288744.index |
8 | 7 | 2041947667.index |
9 | 8 | 2863901844.index |
@@ -14,12 +14,12 @@ | ||
14 | 14 | </section> |
15 | 15 | <section name="JavaElementSearchActions"> |
16 | 16 | </section> |
17 | + <section name="quick_assist_proposal_size"> | |
18 | + </section> | |
17 | 19 | <section name="NewClassWizardPage"> |
18 | 20 | <item value="false" key="create_constructor"/> |
19 | 21 | <item value="true" key="create_unimplemented"/> |
20 | 22 | </section> |
21 | - <section name="quick_assist_proposal_size"> | |
22 | - </section> | |
23 | 23 | <section name="NewPackageWizardPage"> |
24 | 24 | <item value="false" key="create_package_info_java"/> |
25 | 25 | </section> |
@@ -1,8 +1,8 @@ | ||
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <section name="Workbench"> |
3 | 3 | <section name="org.eclipse.ui.internal.QuickAccess"> |
4 | - <item value="634" key="dialogWidth"/> | |
5 | - <item value="474" key="dialogHeight"/> | |
4 | + <item value="640" key="dialogWidth"/> | |
5 | + <item value="480" key="dialogHeight"/> | |
6 | 6 | <list key="orderedProviders"> |
7 | 7 | </list> |
8 | 8 | <list key="textArray"> |
@@ -12,6 +12,8 @@ | ||
12 | 12 | <list key="textEntries"> |
13 | 13 | </list> |
14 | 14 | </section> |
15 | + <section name="ZipFileExportWizard"> | |
16 | + </section> | |
15 | 17 | <section name="ImportExportAction"> |
16 | 18 | <item value="org.eclipse.ui.wizards.import.ExternalProject" key="ImportExportPage.STORE_SELECTED_IMPORT_WIZARD_ID"/> |
17 | 19 | <list key="ImportExportPage.STORE_EXPANDED_IMPORT_CATEGORIES"> |
@@ -1,7 +1,7 @@ | ||
1 | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
2 | 2 | package="org.pulpdust.da.aozora.em" |
3 | - android:versionCode="1" | |
4 | - android:versionName="0.1" | |
3 | + android:versionCode="2" | |
4 | + android:versionName="0.11" | |
5 | 5 | android:installLocation="auto"> |
6 | 6 | |
7 | 7 | <uses-sdk |
@@ -15,8 +15,7 @@ | ||
15 | 15 | android:theme="@style/AppTheme" > |
16 | 16 | <activity |
17 | 17 | android:name=".AozoraEmDaActivity" |
18 | - android:label="@string/app_name" | |
19 | - android:windowSoftInputMode="stateVisible|adjustResize" > | |
18 | + android:label="@string/app_name" > | |
20 | 19 | <intent-filter> |
21 | 20 | <action android:name="org.pulpdust.da.action.LAUNCH" /> |
22 | 21 | <category android:name="android.intent.category.DEFAULT" /> |
@@ -1,7 +1,7 @@ | ||
1 | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
2 | 2 | package="org.pulpdust.da.aozora.em" |
3 | - android:versionCode="1" | |
4 | - android:versionName="0.1" | |
3 | + android:versionCode="2" | |
4 | + android:versionName="0.11" | |
5 | 5 | android:installLocation="auto"> |
6 | 6 | |
7 | 7 | <uses-sdk |
@@ -15,8 +15,7 @@ | ||
15 | 15 | android:theme="@style/AppTheme" > |
16 | 16 | <activity |
17 | 17 | android:name=".AozoraEmDaActivity" |
18 | - android:label="@string/app_name" | |
19 | - android:windowSoftInputMode="stateVisible|adjustResize" > | |
18 | + android:label="@string/app_name" > | |
20 | 19 | <intent-filter> |
21 | 20 | <action android:name="org.pulpdust.da.action.LAUNCH" /> |
22 | 21 | <category android:name="android.intent.category.DEFAULT" /> |