2024-03-30

This commit is contained in:
2024-03-30 19:57:14 +09:00
parent d4055752a9
commit 57cc9ca7ff
90 changed files with 4829 additions and 105 deletions

29
doc/18_tabbed_pane.md Normal file
View File

@@ -0,0 +1,29 @@
# Tabbed pane
* `JTabbedPane()` / `JTabbedPane(int)` / `JTabbedPane(int,int)` : TOP | BOTTOM | LEFT | RIGHT, WRAP_TAB_LAYOUT | SCROLL_TAB_LAYOUT
* `addTab(String,Icon,Component,String)` / `addTab(String,Icon,Component)` / `addTab(String,Component)` : 타이틀, 아이콘, 패널, 툴팁
* `insertTab(String,Icon,Component,String,int)`
* `removeTab(Component)` / `removeTabAt(int)` / `removeAll()`
* `getTabLayoutPolicy()` / `setTabLayoutPolicy(int)` : WRAP_TAB_LAYOUT | SCROLL_TAB_LAYOUT
* `getTabPlacement()` / `setTabPlacement(int)` : TOP | BOTTOM | LEFT | RIGHT
* `indexOfComponent(Component)` / `indexOfTab(String)` / `indexOfTab(Icon)`
* `getSelectedIndex()` / `setSelectedIndex(int)` / `getSelectedComponent()` / `setSelectedComponent(Component)`
* `getComponentAt()` / `setComponentAt(int,Component)`
* `getTitleAt(int)` / `setTitleAt(int,String)`
* `getIconAt(int)` / `setIconAt(int,Icon)`
* `getDisabledIconAt(int)` / `setDisabledIconAt(int,Icon)`
* `getBackgroundAt(int)` / `setBackgroundAt(int,Color)`
* `getForegroundAt(int)` / `setForegroundAt(int,Icon)`
* `isEnabledAt(int)` / `setEnabledAt(int,boolean)`
* `getMnemonicAt(int)` / `setMnemonicAt(int,int)`
* `getDisplayedMnemonicIndexAt(int)` / `setDisplayedMnemonicIndexAt(int,int)`
* `getToolTipTextAt(int)` / `setToolTipTextAt(int,String)`
* `getTabComponentAt(int)` / `setTabComponentAt(int,Component)`
* `indexOfTabComponent(Component)`