HomeSort by relevance Sort by last modified time
    Searched defs:skin (Results 1 - 25 of 50) sorted by null

1 2

  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/skin/android/parser/
ILayoutBean.java 16 package com.motorola.studio.android.emulator.skin.android.parser;
RectangleBean.java 16 package com.motorola.studio.android.emulator.skin.android.parser;
105 * @see com.motorola.studio.android.emulator.skin.android.parser.ILayoutBean#setKeyValue(java.lang.String, java.lang.String)
ImagePositionBean.java 16 package com.motorola.studio.android.emulator.skin.android.parser;
158 * @see com.motorola.studio.android.emulator.skin.android.parser.ILayoutBean#setKeyValue(java.lang.String, java.lang.String)
PartBean.java 16 package com.motorola.studio.android.emulator.skin.android.parser;
PartRefBean.java 16 package com.motorola.studio.android.emulator.skin.android.parser;
128 * @see com.motorola.studio.android.emulator.skin.android.parser.ILayoutBean#setKeyValue(java.lang.String, java.lang.String)
ILayoutConstants.java 16 package com.motorola.studio.android.emulator.skin.android.parser;
LayoutBean.java 16 package com.motorola.studio.android.emulator.skin.android.parser;
40 * Pseudo-layouts are created when the skin has only one part and no layouts
46 * Pseudo-layouts are created when the skin has only one part and no layouts
190 * @see com.motorola.studio.android.emulator.skin.android.parser.ILayoutBean#setKeyValue(java.lang.String, java.lang.String)
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/core/skin/
IAndroidKey.java 16 package com.motorola.studio.android.emulator.core.skin;
45 * key at the skin
ISkinFrameworkConstants.java 16 package com.motorola.studio.android.emulator.core.skin;
21 * Interface containing constants that are relevant to the Android Emulator Skin
26 String SKIN_EXTENSION_POINT_ID = EmulatorPlugin.PLUGIN_ID + ".skin";
AndroidSkinBean.java 16 package com.motorola.studio.android.emulator.core.skin;
23 * This bean holds data from the skin.xml file
26 * - Provide an easy way to retrieve data read from skin.xml files
39 * Adds a skin property to the bean
41 * @param key The skin property key to use
42 * @param value The value of the skin property
50 * Retrieves a value of a skin property identified by key
69 * Tests if open external display information is available at the skin
93 * Tests if external display information is available at the skin
IAndroidSkin.java 16 package com.motorola.studio.android.emulator.core.skin;
30 * skin extension point
73 * handset represented by this skin
75 * @return The key collection read from skin
80 * Retrieves a bean containing all skin data that does not refer to the keys
82 * @return The skin bean
84 * @throws SkinException If any problem occurs while retrieving the skin data
91 * Tests if flip is supported by the phone represented by this skin
98 * Set where the skin files are located based on the emulator root dir
102 * @throws SkinException If the path provided does not contain a valid skin
    [all...]
AndroidPressKey.java 16 package com.motorola.studio.android.emulator.core.skin;
30 * at skin
71 * @param name The key name. This is usually a human readable skin, that
94 * @param name The key name. This is usually a human readable skin, that
98 * @param key A rectangle that represents the key area at skin
225 * Retrieves a rectangle that represents the key area at skin
227 * @return A rectangle that represents the key area at skin
SkinFramework.java 16 package com.motorola.studio.android.emulator.core.skin;
38 * This class is the entrance point to the Android Emulator Skin Contribution Framework
40 * all plugins plugged at com.motorola.studio.android.emulator.skin extension point.
68 * Retrieves the IDs of every skin that is plugged to this framework
73 * @return A collection of installed skin names
81 * Retrieves a skin object identified by the provided ID
83 * @param skinId The ID of the skin to be retrieved
85 * @return The skin object that have the ID provided
87 * @throws SkinException If the skin cannot be loaded by the skin framewor
    [all...]
ISkinKeyXmlTags.java 16 package com.motorola.studio.android.emulator.core.skin;
19 * Interface that contains the tags used into skin.xml and key.xml files
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/ui/handlers/
ChangeEmulatorOrientationHandler.java 24 import com.motorola.studio.android.emulator.core.skin.IAndroidSkin;
59 IAndroidSkin skin = ((AbstractAndroidView) viewPart).getSkin(instance); local
60 String cmd = skin.getLayoutScreenCommand(instance.getCurrentLayout());
102 // IAndroidSkin skin = view.getSkin(instance);
104 // if (skin != null)
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/ui/controls/skin/
AndroidSkinLayout.java 16 package com.motorola.studio.android.emulator.ui.controls.skin;
26 import com.motorola.studio.android.emulator.core.skin.AndroidSkinBean;
27 import com.motorola.studio.android.emulator.core.skin.ISkinKeyXmlTags;
36 * The position and size of the widgets are read from the skin bean provided
40 * - Draw the widgets that composes the skin in the correct position and
52 * Object that holds information from the skin.xml file
53 * of the skin being currently used
55 private final AndroidSkinBean skin; field in class:AndroidSkinLayout
68 * Flag that indicates if the skin contains an open external display
74 * Flag that indicates if the skin contains an external displa
    [all...]
  /external/quake/quake/src/QW/client/
skin.c 35 Determines the best skin for the given scoreboard
36 slot, and sets scoreboard->skin
42 skin_t *skin; local
50 s = Info_ValueForKey (sc->userinfo, "skin");
66 sc->skin = &skins[i];
67 Skin_Cache (sc->skin);
78 skin = &skins[numskins];
79 sc->skin = skin;
82 memset (skin, 0, sizeof(*skin))
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdDetailsDialog.java 83 String skin = properties.get(AvdManager.AVD_INI_SKIN_NAME); local
84 if (skin != null) {
85 displayValue(c, "Skin:", skin);
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/ui/view/
LayoutContributionItem.java 32 import com.motorola.studio.android.emulator.core.skin.IAndroidSkin;
73 IAndroidSkin skin = view.getSkin(instance); local
74 if (skin != null)
76 Collection<String> layoutNames = skin.getAvailableLayouts();
AndroidViewData.java 28 import com.motorola.studio.android.emulator.core.skin.IAndroidSkin;
29 import com.motorola.studio.android.emulator.core.skin.SkinFramework;
42 private IAndroidSkin skin; field in class:AndroidViewData
65 * Loads the Android emulator skin of the given the AVD/instance
66 * @param instance whose skin will be loaded
67 * @throws SkinException if it is no possible to load the skin
74 skin = skinFw.getSkinById(skinId, skinPath);
75 Collection<String> layoutNames = skin.getAvailableLayouts();
81 debug("The skin has multiple layouts. Setting " + firstLayout + " as the current one.");
88 * Returns null if no skin is loaded
    [all...]
AndroidView.java 44 import com.motorola.studio.android.emulator.core.skin.IAndroidSkin;
45 import com.motorola.studio.android.emulator.core.skin.ISkinKeyXmlTags;
50 import com.motorola.studio.android.emulator.ui.controls.skin.SkinComposite;
58 * RESPONSIBILITY: - Show the skin to the end user
82 * Creates the skin composite, main display and CLI display related to
98 IAndroidSkin skin = tabData.getSkin(); local
110 if (instance.getProperties().getProperty("Command_Line").contains("-no-skin"))
113 skin.getSkinBean(instance.getCurrentLayout()).getSkinPropertyValue(
116 skin.getSkinBean(instance.getCurrentLayout()).getSkinPropertyValue(
129 createMainDisplay(composite, skin, instance, (ISWTPainter) dat
    [all...]
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/device/ui/wizard/
WizardStartupOptionsPage.java 28 import com.motorola.studio.android.emulator.core.skin.IAndroidSkin;
29 import com.motorola.studio.android.emulator.core.skin.SkinFramework;
68 private IAndroidSkin skin; field in class:WizardStartupOptionsPage
105 // Get selected Skin name
113 skin =
121 "Error reading instance skin during startup options page creation", e);
140 new StartupOptionsComposite(parent, NativeUIUtils.getDefaultCommandLine(), skin,
  /external/quake/quake/src/WinQuake/
cl_parse.cpp 338 int skin; local
420 skin = MSG_ReadByte();
422 skin = ent->baseline.skin;
423 if (skin != ent->skinnum) {
424 ent->skinnum = skin;
434 ent->skinnum = ent->baseline.skin;
498 ent->baseline.skin = MSG_ReadByte();
684 ent->skinnum = ent->baseline.skin;
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/device/ui/
AndroidPropertiesStartupOptionsPage.java 33 import com.motorola.studio.android.emulator.core.skin.IAndroidSkin;
34 import com.motorola.studio.android.emulator.core.skin.SkinFramework;
112 IAndroidSkin skin = null; local
116 skin = sm.getSkinById(emuInstance.getSkinId(), emuInstance.getSkinPath());
121 "Error reading instance skin during startup options page creation", e);
126 new StartupOptionsComposite(parent, emuInstance.getCommandLineArguments(), skin,
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/skin/android/
AndroidSkin.java 16 package com.motorola.studio.android.emulator.skin.android;
37 import com.motorola.studio.android.emulator.core.skin.AndroidSkinBean;
38 import com.motorola.studio.android.emulator.core.skin.IAndroidKey;
39 import com.motorola.studio.android.emulator.core.skin.IAndroidSkin;
40 import com.motorola.studio.android.emulator.core.skin.ISkinKeyXmlTags;
42 import com.motorola.studio.android.emulator.skin.android.parser.LayoutFileModel;
43 import com.motorola.studio.android.emulator.skin.android.parser.LayoutFileParser;
48 * The released images of the skin, as read from the skin files
53 * The pressed images of the skin, as read from the skin file
    [all...]

Completed in 1244 milliseconds

1 2