Konstantin Bulenkov
12 years ago
3 changed files with 28 additions and 1 deletions
@ -0,0 +1,3 @@
|
||||
<component name="ProjectDictionaryState"> |
||||
<dictionary name="kb" /> |
||||
</component> |
@ -0,0 +1,22 @@
|
||||
package com.bulenkov.darcula.ui.win; |
||||
|
||||
import javax.swing.*; |
||||
import javax.swing.plaf.ComponentUI; |
||||
import javax.swing.plaf.basic.BasicInternalFrameUI; |
||||
|
||||
/** |
||||
* @author Konstantin Bulenkov |
||||
*/ |
||||
public class DarculaWindowsInternalFrameUI extends BasicInternalFrameUI { |
||||
public DarculaWindowsInternalFrameUI(JInternalFrame b) { |
||||
super(b); |
||||
} |
||||
|
||||
|
||||
@SuppressWarnings({"MethodOverridesStaticMethodOfSuperclass", "UnusedDeclaration"}) |
||||
public static ComponentUI createUI(JComponent c) { |
||||
return new DarculaWindowsInternalFrameUI(((JInternalFrame) c)); |
||||
} |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue