Java Code Examples for com.intellij.openapi.util.SystemInfo
The following examples show how to use
com.intellij.openapi.util.SystemInfo.
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source Project: consulo Author: consulo File: SystemHealthMonitor.java License: Apache License 2.0 | 7 votes |
private void checkSignalBlocking() { if (SystemInfo.isUnix && JnaLoader.isLoaded()) { try { LibC lib = Native.loadLibrary("c", LibC.class); Memory buf = new Memory(1024); if (lib.sigaction(LibC.SIGINT, null, buf) == 0) { long handler = Native.POINTER_SIZE == 8 ? buf.getLong(0) : buf.getInt(0); if (handler == LibC.SIG_IGN) { showNotification(new KeyHyperlinkAdapter("ide.sigint.ignored.message")); } } } catch (Throwable t) { LOG.warn(t); } } }
Example #2
Source Project: consulo Author: consulo File: ComponentWithBrowseButton.java License: Apache License 2.0 | 6 votes |
public ComponentWithBrowseButton(Comp component, @Nullable ActionListener browseActionListener) { super(new BorderLayout(SystemInfo.isMac ? 0 : 2, 0)); myComponent = component; // required! otherwise JPanel will occasionally gain focus instead of the component setFocusable(false); add(myComponent, BorderLayout.CENTER); myBrowseButton = new FixedSizeButton(myComponent); if (browseActionListener != null) { myBrowseButton.addActionListener(browseActionListener); } add(centerComponentVertically(myBrowseButton), BorderLayout.EAST); myBrowseButton.setToolTipText(UIBundle.message("component.with.browse.button.browse.button.tooltip.text")); // FixedSizeButton isn't focusable but it should be selectable via keyboard. if (ApplicationManager.getApplication() != null) { // avoid crash at design time new MyDoClickAction(myBrowseButton).registerShortcut(myComponent); } if (ScreenReader.isActive()) { myBrowseButton.setFocusable(true); myBrowseButton.getAccessibleContext().setAccessibleName("Browse"); } }
Example #3
Source Project: consulo Author: consulo File: NativeFileWatcherImpl.java License: Apache License 2.0 | 6 votes |
/** * Subclasses should override this method to provide a custom binary to run. */ @Nullable public static File getExecutable() { String execPath = System.getProperty(PROPERTY_WATCHER_EXECUTABLE_PATH); if (execPath != null) return new File(execPath); String[] names = null; if (SystemInfo.isWindows) { if ("win32-x86".equals(Platform.RESOURCE_PREFIX)) names = new String[]{"fsnotifier.exe"}; else if ("win32-x86-64".equals(Platform.RESOURCE_PREFIX)) names = new String[]{"fsnotifier64.exe", "fsnotifier.exe"}; } else if (SystemInfo.isMac) { names = new String[]{"fsnotifier"}; } else if (SystemInfo.isLinux) { if ("linux-x86".equals(Platform.RESOURCE_PREFIX)) names = new String[]{"fsnotifier"}; else if ("linux-x86-64".equals(Platform.RESOURCE_PREFIX)) names = new String[]{"fsnotifier64"}; else if ("linux-arm".equals(Platform.RESOURCE_PREFIX)) names = new String[]{"fsnotifier-arm"}; } if (names == null) return PLATFORM_NOT_SUPPORTED; return Arrays.stream(names).map(ContainerPathManager.get()::findBinFile).filter(Objects::nonNull).findFirst().orElse(null); }
Example #4
Source Project: consulo Author: consulo File: JBUIScale.java License: Apache License 2.0 | 6 votes |
private static float computeUserScaleFactor(float scale) { if (!SystemProperties.getBooleanProperty("hidpi", true)) { return 1f; } scale = discreteScale(scale); // Downgrading user scale below 1.0 may be uncomfortable (tiny icons), // whereas some users prefer font size slightly below normal which is ok. if (scale < 1 && sysScale() >= 1) { scale = 1; } // Ignore the correction when UIUtil.DEF_SYSTEM_FONT_SIZE is overridden, see UIUtil.initSystemFontData. if (SystemInfo.isLinux && scale == 1.25f && UIUtil.DEF_SYSTEM_FONT_SIZE == 12) { // Default UI font size for Unity and Gnome is 15. Scaling factor 1.25f works badly on Linux scale = 1f; } return scale; }
Example #5
Source Project: consulo Author: consulo File: VMOptions.java License: Apache License 2.0 | 6 votes |
@Nullable public static File getWriteFile() { String vmOptionsFile = System.getProperty("jb.vmOptionsFile"); if (vmOptionsFile == null) { // launchers should specify a path to an options file used to configure a JVM return null; } vmOptionsFile = new File(vmOptionsFile).getAbsolutePath(); if (!FileUtil.isAncestor(ContainerPathManager.get().getHomePath(), vmOptionsFile, true)) { // a file is located outside the IDE installation - meaning it is safe to overwrite return new File(vmOptionsFile); } File appHomeDirectory = ContainerPathManager.get().getAppHomeDirectory(); String fileName = ApplicationNamesInfo.getInstance().getProductName().toLowerCase(Locale.US); if (SystemInfo.is64Bit && !SystemInfo.isMac) fileName += "64"; if (SystemInfo.isWindows) fileName += ".exe"; fileName += ".vmoptions"; return new File(appHomeDirectory, fileName); }
Example #6
Source Project: consulo Author: consulo File: Restarter.java License: Apache License 2.0 | 6 votes |
public static int scheduleRestart(@Nonnull String... beforeRestart) throws IOException { try { int restartCode = getRestartCode(); if (restartCode != 0) { runCommand(beforeRestart); return restartCode; } else if (SystemInfo.isWindows) { restartOnWindows(beforeRestart); return 0; } else if (SystemInfo.isMac) { restartOnMac(beforeRestart); return 0; } } catch (Throwable t) { throw new IOException("Cannot restart application: " + t.getMessage(), t); } runCommand(beforeRestart); throw new IOException("Cannot restart application: not supported."); }
Example #7
Source Project: consulo Author: consulo File: FileAttributesReadingTest.java License: Apache License 2.0 | 6 votes |
@Test public void extraLongName() throws Exception { final String prefix = StringUtil.repeatSymbol('a', 128) + "."; final File dir = FileUtil.createTempDirectory( FileUtil.createTempDirectory( FileUtil.createTempDirectory( FileUtil.createTempDirectory( myTempDirectory, prefix, ".dir"), prefix, ".dir"), prefix, ".dir"), prefix, ".dir"); final File file = FileUtil.createTempFile(dir, prefix, ".txt"); assertTrue(file.exists()); FileUtil.writeToFile(file, myTestData); assertFileAttributes(file); if (SystemInfo.isWindows) { assertDirectoriesEqual(dir); } final String target = FileSystemUtil.resolveSymLink(file); assertEquals(file.getPath(), target); }
Example #8
Source Project: consulo Author: consulo File: LockSupportTest.java License: Apache License 2.0 | 6 votes |
@Test(timeout = 30000) public void testUseCanonicalPathLock() throws Exception { Assume.assumeThat(SystemInfo.isFileSystemCaseSensitive, CoreMatchers.is(false)); String path1 = myTempDir.getPath(); String path2 = path1.toUpperCase(Locale.ENGLISH); DesktopImportantFolderLocker lock1 = new DesktopImportantFolderLocker(path1 + "/c", path1 + "/s"); DesktopImportantFolderLocker lock2 = new DesktopImportantFolderLocker(path2 + "/c", path2 + "/s"); try { lock1.lock(); assertThat(lock2.lock(), CoreMatchers.equalTo(DesktopImportantFolderLocker.ActivateStatus.ACTIVATED)); } finally { lock1.dispose(); lock2.dispose(); } }
Example #9
Source Project: bamboo-soy Author: google File: RollbarErrorReportSubmitter.java License: Apache License 2.0 | 6 votes |
private void log(@NotNull IdeaLoggingEvent[] events, @Nullable String additionalInfo) { IdeaLoggingEvent ideaEvent = events[0]; if (ideaEvent.getThrowable() == null) { return; } LinkedHashMap<String, Object> customData = new LinkedHashMap<>(); customData.put(TAG_PLATFORM_VERSION, ApplicationInfo.getInstance().getBuild().asString()); customData.put(TAG_OS, SystemInfo.OS_NAME); customData.put(TAG_OS_VERSION, SystemInfo.OS_VERSION); customData.put(TAG_OS_ARCH, SystemInfo.OS_ARCH); customData.put(TAG_JAVA_VERSION, SystemInfo.JAVA_VERSION); customData.put(TAG_JAVA_RUNTIME_VERSION, SystemInfo.JAVA_RUNTIME_VERSION); if (additionalInfo != null) { customData.put(EXTRA_ADDITIONAL_INFO, additionalInfo); } if (events.length > 1) { customData.put(EXTRA_MORE_EVENTS, Stream.of(events).map(Object::toString).collect(Collectors.joining("\n"))); } rollbar.codeVersion(getPluginVersion()).log(ideaEvent.getThrowable(), customData); }
Example #10
Source Project: consulo Author: consulo File: FileUtil.java License: Apache License 2.0 | 6 votes |
@Nonnull private static String normalizeTail(int prefixEnd, @Nonnull String path, boolean separator) { final StringBuilder result = new StringBuilder(path.length()); result.append(path, 0, prefixEnd); int start = prefixEnd; if (start == 0 && SystemInfo.isWindows && (path.startsWith("//") || path.startsWith("\\\\"))) { start = 2; result.append("//"); separator = true; } for (int i = start; i < path.length(); ++i) { final char c = path.charAt(i); if (c == '/' || c == '\\') { if (!separator) result.append('/'); separator = true; } else { result.append(c); separator = false; } } return result.toString(); }
Example #11
Source Project: flutter-intellij Author: flutter File: Analytics.java License: BSD 3-Clause "New" or "Revised" License | 6 votes |
@Nullable private static String createUserAgent() { final String locale = Locale.getDefault().toString(); if (SystemInfo.isWindows) { return "Mozilla/5.0 (Windows; Windows; Windows; " + locale + ")"; } else if (SystemInfo.isMac) { return "Mozilla/5.0 (Macintosh; Intel Mac OS X; Macintosh; " + locale + ")"; } else if (SystemInfo.isLinux) { return "Mozilla/5.0 (Linux; Linux; Linux; " + locale + ")"; } return null; }
Example #12
Source Project: consulo Author: consulo File: FileAttributesReadingTest.java License: Apache License 2.0 | 6 votes |
@Nonnull private static FileAttributes getAttributes(@Nonnull final File file, final boolean checkList) { final FileAttributes attributes = FileSystemUtil.getAttributes(file); assertNotNull(attributes); System.out.println(attributes + ": " + file); if (SystemInfo.isWindows && checkList) { final String parent = file.getParent(); if (parent != null) { final FileInfo[] infos = IdeaWin32.getInstance().listChildren(parent); assertNotNull(infos); for (FileInfo info : infos) { if (file.getName().equals(info.getName())) { assertEquals(attributes, info.toFileAttributes()); return attributes; } } fail(file + " not listed"); } } return attributes; }
Example #13
Source Project: consulo Author: consulo File: WinProcessManager.java License: Apache License 2.0 | 6 votes |
public static int getProcessId(Process process) { String processClassName = process.getClass().getName(); if (processClassName.equals("java.lang.Win32Process") || processClassName.equals("java.lang.ProcessImpl")) { try { if (SystemInfo.IS_AT_LEAST_JAVA9) { //noinspection JavaReflectionMemberAccess return ((Long)Process.class.getMethod("pid").invoke(process)).intValue(); } long handle = assertNotNull(ReflectionUtil.getField(process.getClass(), process, long.class, "handle")); return Kernel32.INSTANCE.GetProcessId(new WinNT.HANDLE(Pointer.createConstant(handle))); } catch (Throwable t) { throw new IllegalStateException("Failed to get PID from instance of " + process.getClass() + ", OS: " + SystemInfo.OS_NAME, t); } } throw new IllegalStateException("Unable to get PID from instance of " + process.getClass() + ", OS: " + SystemInfo.OS_NAME); }
Example #14
Source Project: consulo Author: consulo File: MouseGestureManager.java License: Apache License 2.0 | 6 votes |
public void add(final IdeFrame frame) { if (!Registry.is("actionSystem.mouseGesturesEnabled")) return; if (SystemInfo.isMacOSSnowLeopard) { try { if (myListeners.containsKey(frame)) { remove(frame); } Object listener = new MacGestureAdapter(this, frame); myListeners.put(frame, listener); } catch (Throwable e) { LOG.debug(e); } } }
Example #15
Source Project: consulo Author: consulo File: NewProjectAction.java License: Apache License 2.0 | 6 votes |
@RequiredUIAccess @Nonnull @Override protected JPanel createSouthPanel() { JPanel buttonsPanel = new JPanel(new GridLayout(1, 2, SystemInfo.isMacOSLeopard ? 0 : 5, 0)); myCancelButton = new JButton(CommonBundle.getCancelButtonText()); myCancelButton.addActionListener(e -> doCancelAction()); buttonsPanel.add(myCancelButton); myOkButton = new JButton(CommonBundle.getOkButtonText()) { @Override public boolean isDefaultButton() { return true; } }; myOkButton.setEnabled(false); myOkButton.addActionListener(e -> doOkAction()); buttonsPanel.add(myOkButton); return JBUI.Panels.simplePanel().addToRight(buttonsPanel); }
Example #16
Source Project: consulo Author: consulo File: MinimizeCurrentWindowAction.java License: Apache License 2.0 | 6 votes |
@Override public void update(final AnActionEvent e) { final Presentation p = e.getPresentation(); p.setVisible(SystemInfo.isMac); if (SystemInfo.isMac) { Project project = e.getData(CommonDataKeys.PROJECT); if (project != null) { JFrame frame = (JFrame)TargetAWT.to(WindowManager.getInstance().getWindow(project)); if (frame != null) { JRootPane pane = frame.getRootPane(); p.setEnabled(pane != null && pane.getClientProperty(MacMainFrameDecorator.FULL_SCREEN) == null); } } } else { p.setEnabled(false); } }
Example #17
Source Project: azure-devops-intellij Author: microsoft File: VersionControlPathTests.java License: MIT License | 6 votes |
@Test public void localPathFromTfsRepresentationShouldConvertPathCase() throws IOException { File tempDirectory = FileUtil.createTempDirectory("azure-devops", ".tmp"); try { File tempFile = tempDirectory.toPath().resolve("CASE_SENSITIVE.tmp").toFile(); Assert.assertTrue(tempFile.createNewFile()); String tfsRepresentation = tempFile.getAbsolutePath(); // On non-Windows systems, TFS uses a "fake drive" prefix: if (!SystemInfo.isWindows) tfsRepresentation = "U:" + tfsRepresentation; String localPath = VersionControlPath.localPathFromTfsRepresentation(tfsRepresentation); Assert.assertEquals(tempFile.getAbsolutePath(), localPath); if (!SystemInfo.isFileSystemCaseSensitive) { tfsRepresentation = tfsRepresentation.toLowerCase(); localPath = VersionControlPath.localPathFromTfsRepresentation(tfsRepresentation); Assert.assertEquals(tempFile.getAbsolutePath(), localPath); } } finally { FileUtil.delete(tempDirectory); } }
Example #18
Source Project: consulo Author: consulo File: ToggleWindowedModeAction.java License: Apache License 2.0 | 6 votes |
@Override public void update(AnActionEvent event) { super.update(event); Presentation presentation = event.getPresentation(); if (SystemInfo.isMac) { presentation.setEnabledAndVisible(false); return; } Project project = event.getData(CommonDataKeys.PROJECT); if (project == null) { presentation.setEnabled(false); return; } ToolWindowManager mgr = ToolWindowManager.getInstance(project); String id = mgr.getActiveToolWindowId(); presentation.setEnabled(id != null && mgr.getToolWindow(id).isAvailable()); }
Example #19
Source Project: dynkt Author: xafero File: PathManager.java License: GNU Affero General Public License v3.0 | 5 votes |
private static String getOSSpecificBinSubdir() { if (SystemInfo.isWindows) { return "win"; } if (SystemInfo.isMac) { return "mac"; } return "linux"; }
Example #20
Source Project: consulo Author: consulo File: NativeFileWatcherImpl.java License: Apache License 2.0 | 5 votes |
private void processChange(@Nonnull String path, @Nonnull WatcherOp op) { if (SystemInfo.isWindows && op == WatcherOp.RECDIRTY) { myNotificationSink.notifyReset(path); return; } if ((op == WatcherOp.CHANGE || op == WatcherOp.STATS) && isRepetition(path)) { if (LOG.isTraceEnabled()) LOG.trace("repetition: " + path); return; } if (SystemInfo.isMac) { path = Normalizer.normalize(path, Normalizer.Form.NFC); } switch (op) { case STATS: case CHANGE: myNotificationSink.notifyDirtyPath(path); break; case CREATE: case DELETE: myNotificationSink.notifyPathCreatedOrDeleted(path); break; case DIRTY: myNotificationSink.notifyDirtyDirectory(path); break; case RECDIRTY: myNotificationSink.notifyDirtyPathRecursive(path); break; default: LOG.error("Unexpected op: " + op); } }
Example #21
Source Project: consulo Author: consulo File: JreHiDpiUtil.java License: Apache License 2.0 | 5 votes |
/** * Returns whether the JRE-managed HiDPI mode is enabled. * (True for macOS JDK >= 7.10 versions) * * @see ScaleType */ public static boolean isJreHiDPIEnabled() { Boolean value = jreHiDPI.get(); if (value == null) { synchronized (jreHiDPI) { value = jreHiDPI.get(); if (value == null) { value = false; if (SystemProperties.getBooleanProperty("hidpi", true)) { jreHiDPI_earlierVersion = true; // fixme [vistall] always allow hidpi on other jdks if (Boolean.TRUE) { try { GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); Boolean uiScaleEnabled = GraphicsEnvironmentHacking.isUIScaleEnabled(ge); if (uiScaleEnabled != null) { value = uiScaleEnabled; jreHiDPI_earlierVersion = false; } } catch (Throwable ignore) { } } if (SystemInfo.isMac) { value = true; } } jreHiDPI.set(value); } } } return value; }
Example #22
Source Project: consulo Author: consulo File: JnaUnixMediatorImpl.java License: Apache License 2.0 | 5 votes |
JnaUnixMediatorImpl() throws Exception { if (SystemInfo.isLinux) { if ("arm".equals(SystemInfo.OS_ARCH)) { if (SystemInfo.is32Bit) { myOffsets = LINUX_ARM; } else { throw new IllegalStateException("AArch64 architecture is not supported"); } } else if ("ppc".equals(SystemInfo.OS_ARCH)) { myOffsets = SystemInfo.is32Bit ? LNX_PPC32 : LNX_PPC64; } else { myOffsets = SystemInfo.is32Bit ? LINUX_32 : LINUX_64; } } else if (SystemInfo.isMac | SystemInfo.isFreeBSD) { myOffsets = SystemInfo.is32Bit ? BSD_32 : BSD_64; } else if (SystemInfo.isSolaris) { myOffsets = SystemInfo.is32Bit ? SUN_OS_32 : SUN_OS_64; } else { throw new IllegalStateException("Unsupported OS/arch: " + SystemInfo.OS_NAME + "/" + SystemInfo.OS_ARCH); } myLibC = (LibC)Native.loadLibrary("c", LibC.class); myUid = myLibC.getuid(); myGid = myLibC.getgid(); }
Example #23
Source Project: consulo Author: consulo File: OrderEntryAppearanceServiceImpl.java License: Apache License 2.0 | 5 votes |
@Nonnull @Override public CellAppearanceEx forSdk(@Nullable final Sdk jdk, final boolean isInComboBox, final boolean selected, final boolean showVersion) { if (jdk == null) { return SimpleTextCellAppearance.invalid(ProjectBundle.message("unknown.sdk"), AllIcons.Toolbar.Unknown); } String name = jdk.getName(); CompositeAppearance appearance = new CompositeAppearance(); SdkType sdkType = (SdkType)jdk.getSdkType(); appearance.setIcon(SdkUtil.getIcon(jdk)); SimpleTextAttributes attributes = getTextAttributes(sdkType.sdkHasValidPath(jdk), selected); CompositeAppearance.DequeEnd ending = appearance.getEnding(); ending.addText(name, attributes); if (showVersion) { String versionString = jdk.getVersionString(); if (versionString != null && !versionString.equals(name)) { SimpleTextAttributes textAttributes = isInComboBox && !selected ? SimpleTextAttributes.SYNTHETIC_ATTRIBUTES : SystemInfo.isMac && selected ? new SimpleTextAttributes(SimpleTextAttributes.STYLE_PLAIN, Color.WHITE): SimpleTextAttributes.GRAY_ATTRIBUTES; ending.addComment(versionString, textAttributes); } } return ending.getAppearance(); }
Example #24
Source Project: consulo-csharp Author: consulo File: MonoInternalCompilerProvider.java License: Apache License 2.0 | 5 votes |
@Override public void setupCompiler(@Nonnull DotNetModuleExtension<?> netExtension, @Nonnull CSharpModuleExtension<?> csharpExtension, @Nonnull MSBaseDotNetCompilerOptionsBuilder builder, @Nullable VirtualFile compilerSdkHome) throws DotNetCompileFailedException { Sdk sdk = netExtension.getSdk(); if(sdk == null) { throw new DotNetCompileFailedException("Mono SDK is not resolved"); } if(SystemInfo.isWindows) { builder.setExecutableFromSdk(sdk, "/../../../bin/mcs.bat"); } else if(SystemInfo.isMac) { builder.setExecutableFromSdk(sdk, "/../../../bin/mcs"); } else if(SystemInfo.isFreeBSD) { builder.setExecutable(MonoSdkType.ourDefaultFreeBSDCompilerPath); } else if(SystemInfo.isLinux) { builder.setExecutable(MonoSdkType.ourDefaultLinuxCompilerPath); } }
Example #25
Source Project: dark-mode-sync-plugin Author: gilday File: DarkModeSync.java License: MIT License | 5 votes |
/** @param lafManager IDEA look-and-feel manager for getting and setting the current theme */ public DarkModeSync(final LafManager lafManager) { themes = ServiceManager.getService(DarkModeSyncThemes.class); this.lafManager = lafManager; // Checks if OS is Windows or MacOS if (!(SystemInfo.isMacOSMojave || SystemInfo.isWin10OrNewer)) { logger.error("Plugin only supports macOS Mojave and greater or Windows 10 and greater"); scheduledFuture = null; return; } ScheduledExecutorService executor = JobScheduler.getScheduler(); scheduledFuture = executor.scheduleWithFixedDelay(this::updateLafIfNecessary, 0, 3, TimeUnit.SECONDS); }
Example #26
Source Project: consulo Author: consulo File: LafManagerImpl.java License: Apache License 2.0 | 5 votes |
/** * The following code is a trick! By default Swing uses lightweight and "medium" weight * popups to show JPopupMenu. The code below force the creation of real heavyweight menus - * this increases speed of popups and allows to get rid of some drawing artifacts. */ private static void fixPopupWeight() { int popupWeight = OurPopupFactory.WEIGHT_MEDIUM; String property = System.getProperty("idea.popup.weight"); if (property != null) property = property.toLowerCase().trim(); if (SystemInfo.isMacOSLeopard) { // force heavy weight popups under Leopard, otherwise they don't have shadow or any kind of border. popupWeight = OurPopupFactory.WEIGHT_HEAVY; } else if (property == null) { // use defaults if popup weight isn't specified if (SystemInfo.isWindows) { popupWeight = OurPopupFactory.WEIGHT_HEAVY; } } else { if ("light".equals(property)) { popupWeight = OurPopupFactory.WEIGHT_LIGHT; } else if ("medium".equals(property)) { popupWeight = OurPopupFactory.WEIGHT_MEDIUM; } else if ("heavy".equals(property)) { popupWeight = OurPopupFactory.WEIGHT_HEAVY; } else { LOG.error("Illegal value of property \"idea.popup.weight\": " + property); } } PopupFactory factory = PopupFactory.getSharedInstance(); if (!(factory instanceof OurPopupFactory)) { factory = new OurPopupFactory(factory); PopupFactory.setSharedInstance(factory); } PopupUtil.setPopupType(factory, popupWeight); }
Example #27
Source Project: consulo Author: consulo File: FileAttributesReadingTest.java License: Apache License 2.0 | 5 votes |
@Test public void special() throws Exception { assumeTrue(SystemInfo.isUnix); final File file = new File("/dev/null"); final FileAttributes attributes = getAttributes(file); assertEquals(FileAttributes.Type.SPECIAL, attributes.type); assertEquals(0, attributes.flags); assertEquals(0, attributes.length); assertTrue(attributes.isWritable()); final String target = FileSystemUtil.resolveSymLink(file); assertEquals(file.getPath(), target); }
Example #28
Source Project: consulo Author: consulo File: Messages.java License: Apache License 2.0 | 5 votes |
@Override public void show() { if (isMacSheetEmulation()) { setInitialLocationCallback(new Computable<Point>() { @Override public Point compute() { JRootPane rootPane = SwingUtilities.getRootPane(getWindow().getParent()); if (rootPane == null) { rootPane = SwingUtilities.getRootPane(getWindow().getOwner()); } Point p = rootPane.getLocationOnScreen(); p.x += (rootPane.getWidth() - getWindow().getWidth()) / 2; return p; } }); animate(); if (SystemInfo.isJavaVersionAtLeast(7, 0, 0)) { try { Method method = Class.forName("java.awt.Window").getDeclaredMethod("setOpacity", float.class); if (method != null) method.invoke(getPeer().getWindow(), .8f); } catch (Exception exception) { } } setAutoAdjustable(false); setSize(getPreferredSize().width, 0);//initial state before animation, zero height } super.show(); }
Example #29
Source Project: consulo Author: consulo File: LafManagerImpl.java License: Apache License 2.0 | 5 votes |
private static void fixGtkPopupStyle() { if (!UIUtil.isUnderGTKLookAndFeel()) return; // it must be instance of com.sun.java.swing.plaf.gtk.GTKStyleFactory, but class package-local if (SystemInfo.isJavaVersionAtLeast(10, 0, 0)) { return; } final SynthStyleFactory original = SynthLookAndFeel.getStyleFactory(); SynthLookAndFeel.setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(final JComponent c, final Region id) { final SynthStyle style = original.getStyle(c, id); if (id == Region.POPUP_MENU) { final Integer x = ReflectionUtil.getField(style.getClass(), style, int.class, "xThickness"); if (x != null && x == 0) { // workaround for Sun bug #6636964 ReflectionUtil.setField(style.getClass(), style, int.class, "xThickness", 1); ReflectionUtil.setField(style.getClass(), style, int.class, "yThickness", 3); } } return style; } }); new JBPopupMenu(); // invokes updateUI() -> updateStyle() SynthLookAndFeel.setStyleFactory(original); }
Example #30
Source Project: react-native-console Author: beansoftapp File: NotificationUtils.java License: BSD 3-Clause "New" or "Revised" License | 5 votes |
/** * python提示 */ public static void pythonNotFound() { String tip = "command 'python' not found. "; if (SystemInfo.isWindows) { tip += " if first installation python or Set Environment variable, Please restart your computer"; } errorNotification(tip); }