OSDN Git Service

android-x86/sdk.git
13 years agoPackage the plug-ins with debug info.
Xavier Ducrohet [Mon, 7 Feb 2011 17:55:23 +0000 (09:55 -0800)]
Package the plug-ins with debug info.

This allows us to get useful stack trace from external users.

Change-Id: I588ba6284f7f62cb7a7b73405e805171f350adab

13 years agoMerge "Improve handling for GestureOverlayView"
Tor Norbye [Mon, 7 Feb 2011 03:54:27 +0000 (19:54 -0800)]
Merge "Improve handling for GestureOverlayView"

13 years agoImprove handling for GestureOverlayView
Tor Norbye [Mon, 7 Feb 2011 02:25:29 +0000 (18:25 -0800)]
Improve handling for GestureOverlayView

The layout editor has special handling for the "root" element, which
for example suppresses hover-highlighting for the root and a click
will initiate a marquee selection rather than a drag.

Some layouts wrap the layout inside a GestoreOverlayView. This does
not work well since the "real" root is its child, which will not be
treated as a proper root.

This changeset fixes this situation by handling this scenario such
that both the gesture overlay and its child is treated as the root.

Also make fix such that the icon in the outline also works for the
gesture overlay.

Change-Id: Ia96d2bc402958b44f9f82646ff0fc4552ab0cf14

13 years agoMerge "Palette previews with custom themes and other palette fixes"
Tor Norbye [Mon, 7 Feb 2011 02:54:42 +0000 (18:54 -0800)]
Merge "Palette previews with custom themes and other palette fixes"

13 years agoPalette previews with custom themes and other palette fixes
Tor Norbye [Sun, 6 Feb 2011 23:58:18 +0000 (15:58 -0800)]
Palette previews with custom themes and other palette fixes

Palette previews are rendered on top of the default theme
background. For certain custom themes, where a gradient or image is
used, this can look terrible, since the preview images will include
portions of the gradient or image.

This changeset improves this situation by taking advantage of
layoutlib 5's ability to override the background. It now uses theme
resolution to find the background color, and paints the previews with
the custom background override to force this color. In addition, if
the theme background is not a color (but a gradient etc), it uses
layoutlib5's new render-drawable support to generate the background,
and it extracts a suitable color from it (currently, the center
pixel.)

This fix also ensures that the foreground color (used to paint labels
for the widgets that cannot be rendered, such as layouts) has a
suitable contrast with the background. After computing the background,
it computes the brightness, and if the foreground and background
differ less than 25% in brightness, then the foreground color is
forced to white or black depending on whether the background is light
or dark.

This changeset also contains a bugfix for a palette initialization
problem where in some cases the palette could come up empty (because
the code which attempts to avoid doing extra work when reloadPalette
is called repeatedly could be tricked by a scenario where the SDK
target does not change but its "have target data" status did.)

The open palette category is now preserved across palette refreshes
(which occur when you change palette modes or category/sorting
options, along with theme and render target changes).

Finally, the changeset also turns off the new window decorations
(system bar, action bar, etc) when generating preview images for both
palette previews and for drag & drop.

Change-Id: I8b8766ad45f2cb6a4a6b79a24c31ed0f08d1e826

13 years agoMerge "Add support for adding non-String value resources"
Tor Norbye [Mon, 7 Feb 2011 01:50:25 +0000 (17:50 -0800)]
Merge "Add support for adding non-String value resources"

13 years agoAdd support for adding non-String value resources
Tor Norbye [Fri, 4 Feb 2011 01:46:42 +0000 (17:46 -0800)]
Add support for adding non-String value resources

The ResourceChooser only supported adding new Strings. This changeset
lets you add other types of value resources -- dimensions, integers,
etc. It will create a new file in res/values/ if necessary, based on
the plural form of the resource name (e.g. for "string" resources it
will create "strings.xml", etc). For existing files, it will add a new
entry to the existing file, using the same indentation as the last
top-level element in the file.

Change-Id: I09272ff52af38a8a7a059d455f398befbe0d1abc

13 years agoMerge "Fix possible NPE in legacy callback support."
Xavier Ducrohet [Sun, 6 Feb 2011 19:29:14 +0000 (11:29 -0800)]
Merge "Fix possible NPE in legacy callback support."

13 years agoFix possible NPE in legacy callback support.
Xavier Ducrohet [Sun, 6 Feb 2011 18:42:55 +0000 (10:42 -0800)]
Fix possible NPE in legacy callback support.

Change-Id: I5faa155393466e1bc4b2fc1e9417cde91a8be456

13 years agoMerge "Add to layoutlib the ability to simply render a Drawable."
Xavier Ducrohet [Sat, 5 Feb 2011 02:03:48 +0000 (18:03 -0800)]
Merge "Add to layoutlib the ability to simply render a Drawable."

13 years agoAdd to layoutlib the ability to simply render a Drawable.
Xavier Ducrohet [Sat, 5 Feb 2011 01:28:43 +0000 (17:28 -0800)]
Add to layoutlib the ability to simply render a Drawable.

RenderParams is now a base class. SessionParams extends it
(and contains the layout and the rendering mode which are not
part of the base class).

DrawableParams is used for the new action and adds a reference
to a ResourceValue.

Change-Id: Ieacf4da91fda95df1d25a32ae0953bd9d8028113

13 years agoMerge "Support onClick method handlers in Hyperlink navigation"
Tor Norbye [Fri, 4 Feb 2011 19:59:23 +0000 (11:59 -0800)]
Merge "Support onClick method handlers in Hyperlink navigation"

13 years agoMerge "Add app name/icon and current render locale to the LayoutLib API."
Xavier Ducrohet [Fri, 4 Feb 2011 19:42:19 +0000 (11:42 -0800)]
Merge "Add app name/icon and current render locale to the LayoutLib API."

13 years agoSupport onClick method handlers in Hyperlink navigation
Tor Norbye [Wed, 2 Feb 2011 15:58:54 +0000 (07:58 -0800)]
Support onClick method handlers in Hyperlink navigation

This uses the JDT to search for method names matching the required
signature for XML-declarations of method handles, and opens the
method.

It searches first in the Activity classes, then globally.

Change-Id: I378a3abaf16aee28fb6fe6dc304ed061942c3774

13 years agoMerge "Prevent java.lang.ArithmeticException in draw9patch"
Tor Norbye [Fri, 4 Feb 2011 19:13:58 +0000 (11:13 -0800)]
Merge "Prevent java.lang.ArithmeticException in draw9patch"

13 years agoPrevent java.lang.ArithmeticException in draw9patch
Tor Norbye [Fri, 4 Feb 2011 17:07:27 +0000 (09:07 -0800)]
Prevent java.lang.ArithmeticException in draw9patch

Initialize the zoom field to 1 instead of the default 0 since
I ran into a scenario where a division by an uninitialized zoom
caused a divide by zero exception.

Exception in thread "AWT-EventQueue-0" java.lang.ArithmeticException:
    / by zero
at com.android.draw9patch.ui.ImageEditorPanel$ImageViewer.checkLockedR
    egion(ImageEditorPanel.java:894)
at com.android.draw9patch.ui.ImageEditorPanel$ImageViewer.access$1800(
    ImageEditorPanel.java:646)
at com.android.draw9patch.ui.ImageEditorPanel$ImageViewer$3.mouseMoved
    (ImageEditorPanel.java:745)
at java.awt.Component.processMouseMotionEvent(Component.java:6397)

Change-Id: I7d2252f07458864d591be91636477ace4b520855

13 years agoAdd app name/icon and current render locale to the LayoutLib API.
Xavier Ducrohet [Thu, 3 Feb 2011 19:43:14 +0000 (11:43 -0800)]
Add app name/icon and current render locale to the LayoutLib API.

This allows the layoutlib to render system/title/action bars
as a window decor like it would look on the device.
This can be disabled with RenderParams.setForceNoDecor().
(BTW, Params was renamed RenderParams too)

Also minor update to the API by replacing an int with Density
since the enum is now accessible to the API and layoutlib.

Change-Id: Ic37770a9276d12af90c60199a84b04cb64e7c3a1

13 years agoMerge "draw9patch tool: improving zoom process."
Tor Norbye [Fri, 4 Feb 2011 16:53:16 +0000 (08:53 -0800)]
Merge "draw9patch tool: improving zoom process."

13 years agoMerge "SDK Manager: support extras/vendor/path"
Raphael Moll [Fri, 4 Feb 2011 02:44:04 +0000 (18:44 -0800)]
Merge "SDK Manager: support extras/vendor/path"

13 years agoSDK Manager: support extras/vendor/path
Raphael Moll [Thu, 3 Feb 2011 23:14:14 +0000 (15:14 -0800)]
SDK Manager: support extras/vendor/path

This change makes the SDK manager install new extra
packages into SDK/extras/vendor/path, creating the
folders as needed.

Existing extra packages are not moved when they are updated,
provided that they keep the same 'vendor' and 'path' attributes
in their XML definition.

There is also some support for the form SDK/vendor-path/ that
was introduced by Tools r8 and r9.

SDK Bug: 14493

Change-Id: I28b301a768ea2c8c03573f865520b1b3e85f3868

13 years agodraw9patch tool: improving zoom process.
Keiji Ariyama [Thu, 3 Feb 2011 17:46:15 +0000 (02:46 +0900)]
draw9patch tool: improving zoom process.

Change-Id: Ie4d6408858db5b2bafb76ecb916e6b7c00ba0bb7

13 years agoReconcile korg and goog
Jean-Baptiste Queru [Thu, 3 Feb 2011 15:54:17 +0000 (07:54 -0800)]
Reconcile korg and goog

Change-Id: I10f6dee5046fcf802d5d09668bd61a79506475ae

13 years agoMerge "Binary XML editor"
Xavier Ducrohet [Thu, 3 Feb 2011 03:26:43 +0000 (19:26 -0800)]
Merge "Binary XML editor"

13 years agoBinary XML editor
snpe [Sat, 22 Jan 2011 03:15:08 +0000 (04:15 +0100)]
Binary XML editor

The change enable to review xml files from the android.jar file.
It works so that actually open file from
<SDK_HOME>/android-<APILEVEL>/data.
The com.android.ide.eclipse.adt.binaryXml (BinaryXMLDescriber)
content type associates Android resource xml files to the
BinaryXMLMultiPageEditorPart editor.
The editor checks if the file is contained in jar and is so,
convert editor input to XmlStorageEditorInput that handles
corresponding file from Android SDK.

Change-Id: I8596f0d3ca5477a12dc25f551243f125f8e6ba7e

13 years agoMerge "SDK: fix win-sdk build errors, make future errors fatal."
Raphael [Wed, 2 Feb 2011 21:41:18 +0000 (13:41 -0800)]
Merge "SDK: fix win-sdk build errors, make future errors fatal."

13 years agoMerge "SDK: fix win-sdk build errors, make future errors fatal." into readonly-korg...
Raphael [Wed, 2 Feb 2011 19:57:42 +0000 (11:57 -0800)]
Merge "SDK: fix win-sdk build errors, make future errors fatal." into readonly-korg-master

13 years agoSDK: fix win-sdk build errors, make future errors fatal.
Raphael [Tue, 1 Feb 2011 20:51:24 +0000 (12:51 -0800)]
SDK: fix win-sdk build errors, make future errors fatal.

Change the shell script to make any error fatal and actually
break the build, like it should.

Change-Id: Iee86b79c5b12a109ccb92dbc81d586c54ac68b5f

13 years agoMerge "Add support for CTRL+click on the method in Traceview."
Xavier Ducrohet [Wed, 2 Feb 2011 07:04:56 +0000 (23:04 -0800)]
Merge "Add support for CTRL+click on the method in Traceview."

13 years agoAdd support for CTRL+click on the method in Traceview.
Xavier Ducrohet [Wed, 2 Feb 2011 03:47:41 +0000 (19:47 -0800)]
Add support for CTRL+click on the method in Traceview.

This will open the method declaration in an editor.

Change-Id: I79e160bf565ac563e423132e010b7e51ab531673

13 years agoMerge "Let the Traceview plug-in open the trace file created through DDMS."
Xavier Ducrohet [Wed, 2 Feb 2011 02:46:01 +0000 (18:46 -0800)]
Merge "Let the Traceview plug-in open the trace file created through DDMS."

13 years agoLet the Traceview plug-in open the trace file created through DDMS.
Xavier Ducrohet [Wed, 2 Feb 2011 01:21:26 +0000 (17:21 -0800)]
Let the Traceview plug-in open the trace file created through DDMS.

New DDMS extension: traceviewLauncher.

This allows another plug-in (traceview) to provide
a way to open traceview file. If this doesn't work
it revert to the default behavior of DDMS which is to
open the external traceview program.

also reverted the extension of traceview file
from .atv to .trace because earlier versions of
Android would automatically create those files
using this extension.

Change-Id: I2605ad47e501770ae100da2ace781b1d5d8cebc5

13 years agoMerge "Fix possible NPE in Traceview."
Xavier Ducrohet [Wed, 2 Feb 2011 00:25:35 +0000 (16:25 -0800)]
Merge "Fix possible NPE in Traceview."

13 years agoMerge "Fixes problem in "draw9patch tool"."
Xavier Ducrohet [Tue, 1 Feb 2011 23:57:42 +0000 (15:57 -0800)]
Merge "Fixes problem in "draw9patch tool"."

13 years agoMerge "Make up better class names."
Xavier Ducrohet [Tue, 1 Feb 2011 23:41:29 +0000 (15:41 -0800)]
Merge "Make up better class names."

13 years agoFix possible NPE in Traceview.
Xavier Ducrohet [Tue, 1 Feb 2011 23:39:21 +0000 (15:39 -0800)]
Fix possible NPE in Traceview.

Change-Id: I7834a4fee69ae103a5a39416aacea689e2010519

13 years agoMerge "Put the Traceview plugin UI in an editor instead of a view."
Xavier Ducrohet [Tue, 1 Feb 2011 23:26:08 +0000 (15:26 -0800)]
Merge "Put the Traceview plugin UI in an editor instead of a view."

13 years agoPut the Traceview plugin UI in an editor instead of a view.
Pierre Zurek [Tue, 1 Feb 2011 21:14:30 +0000 (22:14 +0100)]
Put the Traceview plugin UI in an editor instead of a view.

The editor is associated with the .atv extension (Android TraceView).

Change-Id: I5133932804a0c24a52ba53617942c2ca65b9345b

13 years agoMake up better class names.
Xavier Ducrohet [Tue, 1 Feb 2011 22:16:46 +0000 (14:16 -0800)]
Make up better class names.

JavaGenerator -> SourceProcessor
GeneratorDeltaVisitor -> SourceChangeHandler
NonJavaFileBundle -> SourceFileData

Change-Id: Idaacbef34007a1af730500d8009241683ee9e37b

13 years agoMerge "Improvements to RenderScript support:"
Xavier Ducrohet [Tue, 1 Feb 2011 21:23:48 +0000 (13:23 -0800)]
Merge "Improvements to RenderScript support:"

13 years agoSDK: fix win-sdk build errors, make future errors fatal.
Raphael [Tue, 1 Feb 2011 20:51:24 +0000 (12:51 -0800)]
SDK: fix win-sdk build errors, make future errors fatal.

Change the shell script to make any error fatal and actually
break the build, like it should.

Change-Id: Iee86b79c5b12a109ccb92dbc81d586c54ac68b5f

13 years agoImprovements to RenderScript support:
Xavier Ducrohet [Tue, 1 Feb 2011 20:21:46 +0000 (12:21 -0800)]
Improvements to RenderScript support:

- change dependency file location to be in the gen folder
  in the same package as the source file. This prevents collisions
  if there are two classes named the same in different packages
  or source folders.

- Now that the dependency files are visible, track their deletion
  and force recompilation if this happens

- Missing dependency files during generator initialization force
  a recompilation of the source file.

- Prevent packaging from taking .rs, .rsh, and .d files from the
  source folders. This also impacts the Ant build system.

Change-Id: Iede9193f67370e1784bd8ba661198bbf99238074

13 years agoMerge "Add Renderscript support to the ADT builders."
Xavier Ducrohet [Tue, 1 Feb 2011 18:35:55 +0000 (10:35 -0800)]
Merge "Add Renderscript support to the ADT builders."

13 years agoAdd Renderscript support to the ADT builders.
Xavier Ducrohet [Tue, 1 Feb 2011 01:22:59 +0000 (17:22 -0800)]
Add Renderscript support to the ADT builders.

This uses the new JavaGenerator mechanism so that all that's needed
is to run llvm-rs-cc on a given list and parsing the dependency file
that's created.

Change-Id: Ib4928c980422dfe1944bc720c77bf6ae5be4c34a

13 years agoMerge "Change the JavaGenerator to handle output and dependencies."
Xavier Ducrohet [Tue, 1 Feb 2011 03:45:11 +0000 (19:45 -0800)]
Merge "Change the JavaGenerator to handle output and dependencies."

13 years agoChange the JavaGenerator to handle output and dependencies.
Xavier Ducrohet [Mon, 31 Jan 2011 21:09:08 +0000 (13:09 -0800)]
Change the JavaGenerator to handle output and dependencies.

Previously, the generator only handled a list of files to compile
and a list of files that were removed.

Now the Generator provides all that needed to do incremental
builders with known state. On top of providing a default
deltavisitor it handles file dependency and list of output
files.

The aidl generator was updated to use this, and the renderscript
generator will use the same mechanism.

Also fixed the abortOnBadSetup which through CoreException which did
nothing to stop later builders (unlike my comments said) and
poluted the workspace log with worthless messages.

Change-Id: Ib954beb9674f1387c022f926388adb8faf6cdac2

13 years agoMerge "Fix android.bat to support CWD with & character"
Raphael Moll [Mon, 31 Jan 2011 23:34:16 +0000 (15:34 -0800)]
Merge "Fix android.bat to support CWD with & character"

13 years agoFix android.bat to support CWD with & character
Raphael Moll [Mon, 31 Jan 2011 23:03:37 +0000 (15:03 -0800)]
Fix android.bat to support CWD with & character

SDK Bug: 12862

Change-Id: Ib9508ce384b91a234e33834b19aaff6cc77e8ade

13 years agoMerge "Respect Eclipse classpath when adding files to APK"
Xavier Ducrohet [Mon, 31 Jan 2011 18:52:09 +0000 (10:52 -0800)]
Merge "Respect Eclipse classpath when adding files to APK"

13 years agoRespect Eclipse classpath when adding files to APK
Dominic Mitchell [Thu, 25 Nov 2010 17:58:58 +0000 (17:58 +0000)]
Respect Eclipse classpath when adding files to APK

Iterating through the source folder may include files that the user has asked to be ignored.

http://code.google.com/p/android/issues/detail?id=12809

Change-Id: I18915cb8868feffe81499276923fec1415076186

13 years agoMerge "Guard against possible NPE."
Tor Norbye [Mon, 31 Jan 2011 06:22:00 +0000 (22:22 -0800)]
Merge "Guard against possible NPE."

13 years agoGuard against possible NPE.
Tor Norbye [Mon, 31 Jan 2011 04:54:58 +0000 (20:54 -0800)]
Guard against possible NPE.

Change-Id: I4be9b1659aa1394bea0f24f34fb4681e781b96ae

13 years agoMerge "Refactor aidl handling in its own class."
Xavier Ducrohet [Mon, 31 Jan 2011 04:09:55 +0000 (20:09 -0800)]
Merge "Refactor aidl handling in its own class."

13 years agoMerge "Cluster of improvements for merge tag views"
Tor Norbye [Mon, 31 Jan 2011 02:41:45 +0000 (18:41 -0800)]
Merge "Cluster of improvements for merge tag views"

13 years agoCluster of improvements for merge tag views
Tor Norbye [Mon, 24 Jan 2011 17:12:47 +0000 (09:12 -0800)]
Cluster of improvements for merge tag views

This changeset contains various improvements around usage of the
<merge> tag. Some of these fixes require layoutlib 5.

* Use the new layoutlib support for rendering multiple children at the
  root level - they now show up in the Outline (provided you are
  running layoutlib 5), can be selected in the layout editor, etc.

* Add a drop handler such that you can drag into the <merge> view and
  get drop feedback (similar to the FrameLayout)

* If the <merge> is empty, we don't get any ViewInfos, so in that case
  manufacture a dummy view sized to the screen. Similarly, if we get
  back ViewInfos that are children of a <merge> tag in the UI model,
  create a <merge> view initialized to the bounding rectangle of these
  views and reparent the views to it.

* Support highlighting multiple views simultaneously when you select
  an include tag that renders into multiple views (because the root of
  the included layout was a <merge> tag).  Similarly, make "Show
  Included In" work properly for <merge> views, and make the overlay
  mask used to hide all included content also reveal only the primary
  selected views (when a view is included more than once.) (Also tweak
  the visual appearance of the mask, and use better icon for the view
  root in the included-root scenario.)

* Improve the algorithm which deals with render results with null
  keys. Use adjacent children that -do- have keys as constraints when
  attempting to match up views without keys and unreferenced model
  nodes. This fixes issue
      http://code.google.com/p/android/issues/detail?id=14188

* Improve the way we pick views under the mouse. This used to search
  down the view hierarchy in sibling order. Instead, search in reverse
  sibling order since this will match what is drawn in the layout. For
  views like FrameLayout and <merge> views, the children are painted
  on top of ech other, so clicking on whatever is on top should choose
  that view, not some earlier sibling below it.

* Fix such that when you drag into the canvas, we *always* target the
  root node, even if it is not under the mouse. This is particularly
  important with <merge> tags, but this also helps if you for example
  have a LinearLayout as the root element, and the layout_height
  property is wrap_content instead of match_parent. In that case, the
  LinearLayout will *only* cover its children, so if you drag over the
  visual screen, it looks like you should be able to drop into the
  layout, but you cannot since it only covers its children. With this
  fix, all positions outside the root element's actual bounds are also
  considered targetting the root.

* Fix broken unit test, add new unit tests.

Change-Id: Id96a06a8763d02845af4531a47fe32afe703df2f

13 years agoRefactor aidl handling in its own class.
Xavier Ducrohet [Mon, 31 Jan 2011 00:18:36 +0000 (16:18 -0800)]
Refactor aidl handling in its own class.

It extends a new base class that will serve as a base
class for the one handling renderscript files.

Change-Id: Ibef0c4b9a792fe52bf7b70bf5d24f76a15cb65c9

13 years agoMerge "Traceview integration into Eclipse."
Xavier Ducrohet [Sun, 30 Jan 2011 22:41:37 +0000 (14:41 -0800)]
Merge "Traceview integration into Eclipse."

13 years agoTraceview integration into Eclipse.
Pierre Zurek [Mon, 20 Dec 2010 01:31:37 +0000 (02:31 +0100)]
Traceview integration into Eclipse.

New plugin which adds a Traceview view to Eclipse.

Change-Id: I3001dfde6ed28db3de8a75715a0ba0743f5c29b0

13 years agoMerge "Fix in PreferencePage."
Xavier Ducrohet [Sun, 30 Jan 2011 19:01:03 +0000 (11:01 -0800)]
Merge "Fix in PreferencePage."

13 years agoMerge "Fix for issue 14189."
Xavier Ducrohet [Sun, 30 Jan 2011 18:55:12 +0000 (10:55 -0800)]
Merge "Fix for issue 14189."

13 years agoFixes problem in "draw9patch tool".
Keiji Ariyama [Sat, 22 Jan 2011 18:33:45 +0000 (03:33 +0900)]
Fixes problem in "draw9patch tool".

If a big PNG image will be loading, HelpPanel hides ImageView.
This patch fix that problem.

Change-Id: I615705849b475e5b88daae7bef2af92cb5fa0657

13 years agoMerge "Scale drag previews with the screen zoom"
Tor Norbye [Sat, 29 Jan 2011 17:27:24 +0000 (09:27 -0800)]
Merge "Scale drag previews with the screen zoom"

13 years agoScale drag previews with the screen zoom
Tor Norbye [Fri, 28 Jan 2011 15:42:05 +0000 (07:42 -0800)]
Scale drag previews with the screen zoom

If you have zoomed your layout, which is going to be common when
designing for 10" screens, then the drag preview shown when dragging
from the palette is not sized correctly. It assumes a 100% zoom.

This changeset looks at the current canvas zoom and scales the preview
image such that it matches the canvas zoom, so if you're zoomed in
then the preview will be larger, and vice versa.

Change-Id: I471b4d8ae459aad79d50a2b54ecca6bd7d7cf943

13 years agoMerge "Deemphasize AbsoluteLayout"
Tor Norbye [Sat, 29 Jan 2011 17:16:20 +0000 (09:16 -0800)]
Merge "Deemphasize AbsoluteLayout"

13 years agoMerge "Add support for multiple hyperlink targets"
Tor Norbye [Sat, 29 Jan 2011 17:15:43 +0000 (09:15 -0800)]
Merge "Add support for multiple hyperlink targets"

13 years agoAdd support for multiple hyperlink targets
Tor Norbye [Sat, 29 Jan 2011 01:01:49 +0000 (17:01 -0800)]
Add support for multiple hyperlink targets

This changeset makes the Go To Declaration hyperlink resolver produce
a list of possible jump targets. Therefore, if you for example point
at @android:string/ok, you will get a popup listing all the various
string.xml files that define a translation for this string. If there
is a current configuration (which would be the case if you are
pointing at a resource url from a layout file, but not from a Java
file or a manifest file) then the declaration which best matches the
configuration is listed first, followed by everything else in
alphabetical order by the folder name.

This uses the resource maps which the IDE is already maintaining for
rendering, so it can compute the set of hyperlinks cheaply.

In addition, the hyperlink resolver now goes to the direct declaration
of the given resource. This definition can in turn reference another
resource url.

There is one exception to the instant resolution of files: ids. In
layouts it's common to define ids in place (via @+id), and these are
not available in the resource map. Therefore, if no id is found
defined in a value folder, then the search is deferred until the link
is actually clicked. The search will now search not just the base
layout folder, but all layout folders, starting with the same folder
as the link source, followed by all configuration-compatible folders,
followed by all folders.

Change-Id: I20fd4f5836e41e5a9839124b7be3a3230f5198f4

13 years agoDeemphasize AbsoluteLayout
Tor Norbye [Fri, 28 Jan 2011 03:42:29 +0000 (19:42 -0800)]
Deemphasize AbsoluteLayout

Move AbsoluteLayout out of the Layout category in the palette, and
into the "Advanced" category.  Also add selection hints for the
absolute which explains that AbsoluteLayout is deprecated.

Change-Id: I2b1633e90794bdec7b7a0d3171f9a29eb25dd258

13 years agoFix for issue 14189.
Pierre Zurek [Sun, 23 Jan 2011 22:15:51 +0000 (23:15 +0100)]
Fix for issue 14189.

Now the user can set if he wants to change perspective
when he double-clicks in the LogCat view.
If he wants to change perspective, he can set which
perspective shall be opened.

Change-Id: I3ed68f3f8ad3bbfcd6d161b63a0c0f218dd778b6

13 years agoMerge "Add MipMap to the resource type list."
Xavier Ducrohet [Sat, 29 Jan 2011 01:49:30 +0000 (17:49 -0800)]
Merge "Add MipMap to the resource type list."

13 years agoAdd MipMap to the resource type list.
Xavier Ducrohet [Sat, 29 Jan 2011 01:23:46 +0000 (17:23 -0800)]
Add MipMap to the resource type list.

Change-Id: I1f56ab470874e39dad8659d15a3699b83f1ac658

13 years agoMerge "Move Pair and annoatations into resources.jar now renamed as common.jar"
Xavier Ducrohet [Sat, 29 Jan 2011 01:21:10 +0000 (17:21 -0800)]
Merge "Move Pair and annoatations into resources.jar now renamed as common.jar"

13 years agoMove Pair and annoatations into resources.jar now renamed as common.jar
Xavier Ducrohet [Fri, 28 Jan 2011 23:18:32 +0000 (15:18 -0800)]
Move Pair and annoatations into resources.jar now renamed as common.jar

Move all the resource query methods that returned an array of 2 Strings
to return a pair of ResourceType and String.

Change-Id: I6b8447aa27005de786e2defef81ad88a72363523

13 years agoMerge "Fix compilation errors due to 2 independent changes."
Tor Norbye [Fri, 28 Jan 2011 20:55:40 +0000 (12:55 -0800)]
Merge "Fix compilation errors due to 2 independent changes."

13 years agoFix compilation errors due to 2 independent changes.
Xavier Ducrohet [Fri, 28 Jan 2011 20:52:13 +0000 (12:52 -0800)]
Fix compilation errors due to 2 independent changes.

Change-Id: Ib7aa41aa6c95ec17ffde2644320b851f8f02f85f

13 years agoMerge "Change APIs using String instead of ResourceType."
Xavier Ducrohet [Fri, 28 Jan 2011 20:42:37 +0000 (12:42 -0800)]
Merge "Change APIs using String instead of ResourceType."

13 years agoMerge "Improve QuickContactBadge designtime"
Tor Norbye [Fri, 28 Jan 2011 20:42:32 +0000 (12:42 -0800)]
Merge "Improve QuickContactBadge designtime"

13 years agoChange APIs using String instead of ResourceType.
Xavier Ducrohet [Fri, 28 Jan 2011 02:05:56 +0000 (18:05 -0800)]
Change APIs using String instead of ResourceType.

Move ResourceType into resources.jar so that it's accessible
to layoutlib.jar

This is cleaner and allows us to us more efficient EnumMap objects.

Change-Id: If11cbc69ae3ca8bd6c96e6d0ef402570a07af16f

13 years agoMerge "Fix clean script."
Raphael Moll [Fri, 28 Jan 2011 06:27:01 +0000 (22:27 -0800)]
Merge "Fix clean script."

13 years agoFix clean script.
Raphael Moll [Fri, 28 Jan 2011 06:23:50 +0000 (22:23 -0800)]
Fix clean script.

The way bash works, the script returns the status of the last command.
In this case, the last failed test's return value is what the script
returns, even when that's what we want. Encapsulating the test in
a function works around this.

Change-Id: I44de75d80b2d16ca4110f078d40db0f71f1aa400

13 years agoImprove QuickContactBadge designtime
Tor Norbye [Thu, 27 Jan 2011 23:44:33 +0000 (15:44 -0800)]
Improve QuickContactBadge designtime

Don't set the image src attribute on drop (which was done by the
ImageViewRule since QuickContactBadge extends ImageView), and don't
use the mail contact image in the render-config.

Change-Id: I182c5e253bb754d8ae5fc54583f6a06ad3415ad0

13 years agoMerge "Various palette improvements"
Tor Norbye [Fri, 28 Jan 2011 00:28:39 +0000 (16:28 -0800)]
Merge "Various palette improvements"

13 years agoVarious palette improvements
Tor Norbye [Thu, 27 Jan 2011 03:33:37 +0000 (19:33 -0800)]
Various palette improvements

1. Look up the theme background and foreground colors using theme
   resources, if possible.  These theme resources are then used to set
   the foreground and background colors on the labels used as a
   fallback for non-previewable widgets.  In other words, when you're
   looking at a dark theme, the layouts such as LinearLayout is now
   shown using a white label on a dark background, making the palette
   view more consistent visually.

2. Configure scrollbar increments properly such that scrolling the
   views with scrollwheels or mouse gestures works better.

3. Fix a bug in the way preview images were copied out of the rendered
   image; the root coordinates were not taken into account, which
   matters for themes like Theme.Dialog.

Change-Id: I4832166a0560d33fe4e4dd8079c82a180e07e897

13 years agoMerge "Update the Layoutlib API to contain part of the current config."
Xavier Ducrohet [Thu, 27 Jan 2011 23:43:36 +0000 (15:43 -0800)]
Merge "Update the Layoutlib API to contain part of the current config."

13 years agoUpdate the Layoutlib API to contain part of the current config.
Xavier Ducrohet [Thu, 27 Jan 2011 21:10:25 +0000 (13:10 -0800)]
Update the Layoutlib API to contain part of the current config.

Right now only the screen size is needed. We can add more to Params
as needed.

Since we should use the existing enum classes for this, I moved
all the current enum from sdklib into a new jar file called
resources.jar.

ADT, sdklib, layoutlib_api all depend on it.

Changes to resources should always be API compatible and the result
should be copied into the in-dev platform branch in prebuilt, similar
to layoutlib_api. See the README.txt files in layoutlib_api/ and
resources/

Change-Id: I877ba3cad555ec497954bb0866639e51e7751020

13 years agoMerge "Replace Properties.load(Reader) with Properties.load(InputStream)"
Tor Norbye [Thu, 27 Jan 2011 22:10:47 +0000 (14:10 -0800)]
Merge "Replace Properties.load(Reader) with Properties.load(InputStream)"

13 years agoMerge "Change pluging copyright date to 2011."
Raphael Moll [Thu, 27 Jan 2011 22:09:07 +0000 (14:09 -0800)]
Merge "Change pluging copyright date to 2011."

13 years agoReplace Properties.load(Reader) with Properties.load(InputStream)
Tor Norbye [Thu, 27 Jan 2011 21:44:49 +0000 (13:44 -0800)]
Replace Properties.load(Reader) with Properties.load(InputStream)

Change-Id: Ic378b53448f7ae73493ec692ba77ed35c908ed86

13 years agoChange pluging copyright date to 2011.
Raphael Moll [Sat, 22 Jan 2011 07:52:55 +0000 (23:52 -0800)]
Change pluging copyright date to 2011.

SDK bug 14206

Change-Id: I85c8ef070527ba0cc361caa28d3325f736d0b5c8

13 years agoMerge "Add more theme query APIs to RenderResources"
Xavier Ducrohet [Thu, 27 Jan 2011 18:00:54 +0000 (10:00 -0800)]
Merge "Add more theme query APIs to RenderResources"

13 years agoMerge "Properly convert the rendered layout images if alpha is needed."
Xavier Ducrohet [Thu, 27 Jan 2011 18:00:50 +0000 (10:00 -0800)]
Merge "Properly convert the rendered layout images if alpha is needed."

13 years agoAdd more theme query APIs to RenderResources
Xavier Ducrohet [Thu, 27 Jan 2011 03:24:43 +0000 (19:24 -0800)]
Add more theme query APIs to RenderResources

Change-Id: Iebde7536a0007898387dc7bb5d943e3767140a3c

13 years agoProperly convert the rendered layout images if alpha is needed.
Xavier Ducrohet [Thu, 27 Jan 2011 02:09:34 +0000 (18:09 -0800)]
Properly convert the rendered layout images if alpha is needed.

The layoutlib can specify if the image is rendered as a floating
window, and needs alpha.
If it doesn't needed it we do a faster convert discarding the
alpha which will be better when playing animations in the normal
case.

Change-Id: I2dbd2d1ae9190207b51978e4a8d77cdff25f3e45

13 years agoMerge "Move keymaps to frameworks/base/data/keyboards."
Jeff Brown [Wed, 26 Jan 2011 22:25:13 +0000 (14:25 -0800)]
Merge "Move keymaps to frameworks/base/data/keyboards."

13 years agoMerge "Palette with previews, categories and view modes"
Tor Norbye [Wed, 26 Jan 2011 03:24:02 +0000 (19:24 -0800)]
Merge "Palette with previews, categories and view modes"

13 years agoMerge "Combine DescDragSourceListener and PreviewDragSourceEffect"
Tor Norbye [Wed, 26 Jan 2011 03:23:38 +0000 (19:23 -0800)]
Merge "Combine DescDragSourceListener and PreviewDragSourceEffect"

13 years agoMove keymaps to frameworks/base/data/keyboards.
Jeff Brown [Wed, 26 Jan 2011 03:09:04 +0000 (19:09 -0800)]
Move keymaps to frameworks/base/data/keyboards.

Change-Id: I787601e3ab3ac4ce3d5ef5691788af62abbf91e9

13 years agoPalette with previews, categories and view modes
Tor Norbye [Fri, 21 Jan 2011 05:13:39 +0000 (21:13 -0800)]
Palette with previews, categories and view modes

This changeset contains the following improvements to the palette:

1. Display modes. The palette now supports several different view
   modes, and you can switch these via the context menu. The modes
   are:

   a. Previews. This renders previews for all the views using the
      current SDK platform, theme, screen density, etc.
   b. Small Previews. This is like (a), but scaled down to 75% size.
   c. Tiny Previews. Like (a), but scaled down to 50% size.
   d. Text + Icon. This shows an icon and the name of the view; this
      is the same as what the palette has looked like before this
      changeset.
   e. Icons only.

   All the modes, except for the Text+Icon mode, will lay out the
   views in a row (with vertical centering) to fit as much as possible
   in the available space for that category.

   The view mode, along with other view flags described below, are
   preserved across IDE sessions.

2. An accordion view. The palette is now using an Accordion control,
   which means it by default will keep a single category open, and it
   will always ensure that ALL the category labels are visible in the
   current view without scrolling. Via the context menu you can turn
   off the auto-close of the previous category.  The accordion view
   uses vertical scrollbars within each category content area, if
   necessary.

   The accordion view renders the category headers using open/close
   folder icons, a bold font, and a background gradient which varies
   between the normal and hovered states.

3. Categories. The category metadata is now used to organize the views
   into a handful of different categories. The categories can be
   enabled and disabled via the context menu. When you turn off
   categories, you get all the views in a single large list.

4. Alphabetical sorting. By default, the views are now sorted
   "naturally" (e.g.  the metadata provided order, where important
   views are listed first). You can switch it to alphabetical order
   via the context menu, in which case the items are listed in
   alphabetical order, either within their individual categories, or
   if categories are turned off, the global view list.

This changeset also adds a new SWT ImageControl. This is necessary to
display the preview images, because the CLabel, which is usually used
to display images in SWT, is hardcoded to hide the icon if there is
not enough horizontal space to display the full label (even when it
has no text label), so for wide preview images the images would simply
disappear when the palette was resized.

Change-Id: I1e1fe051947809206ef9f3a2dfa2fbeae0341107

13 years agoMerge "Add error message to log if layoutlib init fails"
Tor Norbye [Wed, 26 Jan 2011 01:20:17 +0000 (17:20 -0800)]
Merge "Add error message to log if layoutlib init fails"

13 years agoAdd error message to log if layoutlib init fails
Tor Norbye [Wed, 26 Jan 2011 00:03:11 +0000 (16:03 -0800)]
Add error message to log if layoutlib init fails

Change-Id: I5f61733c02002eca9400d5abbfc33393cabd1667

13 years agoCombine DescDragSourceListener and PreviewDragSourceEffect
Tor Norbye [Fri, 21 Jan 2011 03:56:08 +0000 (19:56 -0800)]
Combine DescDragSourceListener and PreviewDragSourceEffect

It turns out that a DragSource listener can also set a drag preview
effect, so we don't need to have two separate classes for this; this
was slightly tricky because the drag source needs to get the image
from the preview drag source effect in order to record the right
offsets for the drag.

This changeset rolls the two classes into one, the original drag
source.

Change-Id: I249736c13e49f06886318ea64dc8de40e832d216

13 years agoMerge "LayoutLib API update: build properties and multi ViewInfo results."
Xavier Ducrohet [Tue, 25 Jan 2011 22:13:17 +0000 (14:13 -0800)]
Merge "LayoutLib API update: build properties and multi ViewInfo results."