Compare commits

..

2 Commits

Author SHA1 Message Date
db8c23c322 2024-06-12 2024-06-12 13:10:22 +09:00
7e1d726c23 2024-06-12 2024-06-12 13:10:10 +09:00
50 changed files with 146 additions and 31 deletions

6
Writerside2/c.list Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE categories
SYSTEM "https://resources.jetbrains.com/writerside/1.0/categories.dtd">
<categories>
<category id="wrs" name="Writerside documentation" order="1"/>
</categories>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2024. Elex. All Rights Reesrved.
~ https://www.elex-project.com/
-->
<buildprofiles xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/1.0/build-profiles.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<variables></variables>
<build-profile instance="s">
<variables>
<noindex-content>true</noindex-content>
</variables>
</build-profile>
</buildprofiles>

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 274 KiB

58
Writerside2/s.tree Normal file
View File

@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2024. Elex. All Rights Reesrved.
- https://www.elex-project.com/
-->
<!DOCTYPE instance-profile
SYSTEM "https://resources.jetbrains.com/writerside/1.0/product-profile.dtd">
<instance-profile id="s"
name="Swing"
start-page="starter-topic.md">
<toc-element topic="starter-topic.md">
<toc-element topic="Containers.md">
<toc-element topic="Top-Level-Containers.md"/>
<toc-element topic="Dialog.md"/>
<toc-element topic="Internal-Frame.md"/>
</toc-element>
<toc-element topic="Components.md">
<toc-element topic="Basic-Component-Methods.md"/>
<toc-element topic="Text-Component.md"/>
<toc-element topic="Buttons.md"/>
<toc-element topic="File-Chooser-and-Color-Chooser.md"/>
<toc-element topic="Combo-Box.md"/>
<toc-element topic="Label.md"/>
<toc-element topic="List.md"/>
<toc-element topic="Menu.md"/>
<toc-element topic="Panel.md"/>
<toc-element topic="Progress-Bar.md"/>
<toc-element topic="Separator.md"/>
<toc-element topic="Slider.md"/>
<toc-element topic="Spinner.md"/>
<toc-element topic="Split-Pane.md"/>
<toc-element topic="Tabbed-Pane.md"/>
<toc-element topic="Table.md"/>
<toc-element topic="Tool-Bar.md"/>
<toc-element topic="Tree.md"/>
<toc-element topic="Border.md"/>
<toc-element topic="Layout-Manager.md"/>
<toc-element topic="Editor-Pane.md"/>
</toc-element>
<toc-element topic="Canvas.md">
<toc-element topic="Painting.md"/>
<toc-element topic="Geometrics.md"/>
</toc-element>
<toc-element topic="Etc.md">
<toc-element topic="Tooltip.md"/>
<toc-element topic="Icon.md"/>
<toc-element topic="Font.md"/>
<toc-element topic="Thread.md"/>
<toc-element topic="Desktop.md"/>
<toc-element topic="Look-and-Feel.md"/>
<toc-element topic="Drag-and-Drop.md"/>
<toc-element topic="Listeners.md"/>
</toc-element>
</toc-element>
</instance-profile>

View File

@@ -49,10 +49,10 @@ ButtonGroup group = ((DefaultButtonModel)button.getModel()).getGroup();
* `isEnabled()` / `setEnabled(boolean)` * `isEnabled()` / `setEnabled(boolean)`
* `getValue(String)` / `putValue(String,Object)` * `getValue(String)` / `putValue(String,Object)`
* ACCELERATOR_KEY : KeyStroke * ACCELERATOR_KEY : KeyStroke
* ACTION_COMMAND_KEY : String * ACTION_COMMAND_KEY : String
* LONG_DESCRIPTION * LONG_DESCRIPTION
* MNEMONIC_KEY * MNEMONIC_KEY
* NAME * NAME
* SHORT_DESCRIPTION * SHORT_DESCRIPTION
* SMALL_ICON * SMALL_ICON

View File

@@ -0,0 +1,3 @@
# Canvas
Start typing here...

View File

@@ -0,0 +1,3 @@
# Components
Start typing here...

View File

@@ -0,0 +1,3 @@
# Containers
Start typing here...

View File

@@ -46,16 +46,16 @@
## DropLocation ## DropLocation
* JList.DropLocation * JList.DropLocation
* `isInsert()` * `isInsert()`
* `getIndex()` * `getIndex()`
* JTree.DropLocation * JTree.DropLocation
* `getChildIndex()` * `getChildIndex()`
* `getPath()` * `getPath()`
* JTable.DropLocation * JTable.DropLocation
* `isInsertRow()` * `isInsertRow()`
* `isInserColumn()` * `isInserColumn()`
* `getRow()` * `getRow()`
* `getColumn()` * `getColumn()`
* JTextComponent.DropLocation * JTextComponent.DropLocation
* `getIndex()` * `getIndex()`
* `getBias()` * `getBias()`

View File

@@ -1 +1,3 @@
# Editor Pane
https://docs.oracle.com/javase/tutorial/uiswing/components/editorpane.html https://docs.oracle.com/javase/tutorial/uiswing/components/editorpane.html

View File

@@ -0,0 +1,3 @@
# Etc
Start typing here...

View File

@@ -16,12 +16,12 @@
## JRootPane ## JRootPane
* Glass pane * Glass pane
* Layered pane * Layered pane
* FRAME_CONTENT_LAYER : -30000 * FRAME_CONTENT_LAYER : -30000
* DEFAULT_LAYER : 0 * DEFAULT_LAYER : 0
* PALETTE_LAYER : 100 * PALETTE_LAYER : 100
* MODAL_LAYER : 200 * MODAL_LAYER : 200
* POPUP_LAYER : 300 * POPUP_LAYER : 300
* DRAG_LAYER : 400 * DRAG_LAYER : 400
* Content pane * Content pane
* JMenu bar * JMenu bar

View File

@@ -0,0 +1,2 @@
# Swing

5
Writerside2/v.list Normal file
View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE vars SYSTEM "https://resources.jetbrains.com/writerside/1.0/vars.dtd">
<vars>
<var name="product" value="Writerside"/>
</vars>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2024. Elex. All Rights Reesrved.
- https://www.elex-project.com/
-->
<!DOCTYPE ihp SYSTEM "https://resources.jetbrains.com/writerside/1.0/ihp.dtd">
<ihp version="2.0">
<topics dir="topics" web-path="topics"/>
<images dir="images" web-path="images"/>
<instance src="s.tree"/>
</ihp>