/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
D | LocaleMenuListener.java | 46 private final ConfigurationChooser mConfigChooser; field in LocaleMenuListener 54 mConfigChooser = configChooser; in LocaleMenuListener() 63 mConfigChooser.selectLocale(mLocale); in widgetSelected() 64 mConfigChooser.onLocaleChange(); in widgetSelected() 68 IProject project = mConfigChooser.getProject(); in widgetSelected() 69 Shell shell = mConfigChooser.getShell(); in widgetSelected()
|
D | OrientationMenuAction.java | 48 private final ConfigurationChooser mConfigChooser; field in OrientationMenuAction 55 mConfigChooser = configuration; in OrientationMenuAction() 99 NightMode selected = mConfigChooser.getConfiguration().getNightMode(); in addMenuItems() 109 UiMode selected = mConfigChooser.getConfiguration().getUiMode(); in addMenuItems() 134 Configuration configuration = mConfigChooser.getConfiguration(); in run() 136 mConfigChooser.notifyFolderConfigChanged(); in run() 153 Configuration configuration = mConfigChooser.getConfiguration(); in run()
|
D | TargetMenuListener.java | 42 private final ConfigurationChooser mConfigChooser; field in TargetMenuListener 50 mConfigChooser = configChooser; in TargetMenuListener() 64 target = ConfigurationMatcher.findDefaultRenderTarget(mConfigChooser); in widgetSelected() 73 mConfigChooser.selectTarget(target); in widgetSelected() 74 mConfigChooser.onRenderingTargetChange(); in widgetSelected()
|
D | ActivityMenuListener.java | 51 private final ConfigurationChooser mConfigChooser; field in ActivityMenuListener 59 mConfigChooser = configChooser; in ActivityMenuListener() 68 Configuration configuration = mConfigChooser.getConfiguration(); in widgetSelected() 70 AdtPlugin.openJavaClass(mConfigChooser.getProject(), fqcn); in widgetSelected() 74 mConfigChooser.selectActivity(mFqcn); in widgetSelected() 75 mConfigChooser.onSelectActivity(); in widgetSelected()
|
D | ConfigurationMatcher.java | 71 private final ConfigurationChooser mConfigChooser; field in ConfigurationMatcher 88 mConfigChooser = chooser; in ConfigurationMatcher() 188 List<Locale> localeList = mConfigChooser.getLocaleList(); in adaptConfigSelection() 225 mConfigChooser.selectDeviceState(matchState); in adaptConfigSelection() 226 mConfigChooser.selectLocale(locale); in adaptConfigSelection() 250 List<Locale> localeList = mConfigChooser.getLocaleList(); in findAndSetCompatibleConfig() 251 Collection<Device> devices = mConfigChooser.getDevices(); in findAndSetCompatibleConfig() 359 mConfigChooser.selectDevice(mConfiguration.getDevice()); in findAndSetCompatibleConfig() 360 mConfigChooser.selectDeviceState(mConfiguration.getDeviceState()); in findAndSetCompatibleConfig() 361 mConfigChooser.selectLocale(mConfiguration.getLocale()); in findAndSetCompatibleConfig() [all …]
|
D | ThemeMenuAction.java | 76 private final ConfigurationChooser mConfigChooser; field in ThemeMenuAction 85 mConfigChooser = configuration; in ThemeMenuAction() 181 IProject project = mConfigChooser.getEditedFile().getProject(); in addMenuItems() 183 Configuration configuration = mConfigChooser.getConfiguration(); in addMenuItems() 282 String current = mConfigChooser.getConfiguration().getTheme(); in addMenuItems() 289 return theme.equals(mConfigChooser.getConfiguration().getTheme()); in isSelectedTheme() 294 SelectThemeAction action = new SelectThemeAction(mConfigChooser, title, theme, selected); in addMenuItem()
|
D | VaryingConfiguration.java | 101 new VaryingConfiguration(other.mConfigChooser, parent); in create() 170 List<Locale> locales = mConfigChooser.getLocaleList(); in getLocale() 194 List<IAndroidTarget> targets = mConfigChooser.getTargetList(); in getTarget() 201 ManifestInfo info = ManifestInfo.get(mConfigChooser.getProject()); in getTarget() 237 Collection<Device> devices = mConfigChooser.getDevices(); in getDevice()
|
D | Configuration.java | 114 protected ConfigurationChooser mConfigChooser; field in Configuration 168 mConfigChooser = chooser; in Configuration() 182 mConfigChooser = chooser; in setChooser() 192 return mConfigChooser; in getChooser() 241 Configuration copy = create(original.mConfigChooser); in copy() 603 if (target == null && mConfigChooser != null) { in syncFolderConfig() 604 target = mConfigChooser.getProjectTarget(); in syncFolderConfig() 680 IProject project = mConfigChooser.getProject(); in computePreferredTheme() 730 ResourceRepository frameworkRes = mConfigChooser.getClient().getFrameworkResources(); in checkThemePrefix() 750 for (Device d : mConfigChooser.getDevices()) { in initialize() [all …]
|
D | DeviceMenuListener.java | 55 private final ConfigurationChooser mConfigChooser; field in DeviceMenuListener 61 mConfigChooser = configChooser; in DeviceMenuListener() 67 mConfigChooser.selectDevice(mDevice); in widgetSelected() 68 mConfigChooser.onDeviceChange(); in widgetSelected()
|
D | ConfigurationMenuListener.java | 71 private final ConfigurationChooser mConfigChooser; field in ConfigurationMenuListener 81 mConfigChooser = configChooser; in ConfigurationMenuListener() 99 ConfigurationClient client = mConfigChooser.getClient(); in widgetSelected() 109 IFile editedFile = mConfigChooser.getEditedFile(); in widgetSelected()
|
D | NestedConfiguration.java | 93 new NestedConfiguration(other.mConfigChooser, parent); in create() 464 return ConfigurationChooser.getLocaleLabel(configuration.mConfigChooser, in computeDisplayName()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
D | GraphicalEditorPart.java | 254 private ConfigurationChooser mConfigChooser; field in GraphicalEditorPart 419 mConfigChooser = new ConfigurationChooser(this, layoutBarAndCanvas, initialState); in createPartControl() 420 mConfigChooser.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); in createPartControl() 527 Display display = mConfigChooser.getDisplay(); in showStructureViews() 532 if (!mConfigChooser.isDisposed()) { in showStructureViews() 656 IAndroidTarget oldTarget = mConfigChooser.getConfiguration().getTarget(); in aboutToChange() 687 best = ConfigurationMatcher.getBestFileMatch(mConfigChooser); in changed() 702 data = mConfigChooser.getConfiguration().toPersistentString(); in changed() 721 mConfigChooser.saveConstraints(); in changed() 728 Configuration configuration = mConfigChooser.getConfiguration(); in changed() [all …]
|