mirror of
https://github.com/sojamo/controlp5
synced 2024-11-22 14:07:55 +01:00
implemented a multiline Textfield
This commit is contained in:
parent
1f7cb64986
commit
12a5e5c21b
3
.idea/.gitignore
vendored
Normal file
3
.idea/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
9
.idea/artifacts/controlp5_jar.xml
Normal file
9
.idea/artifacts/controlp5_jar.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<component name="ArtifactManager">
|
||||
<artifact type="jar" name="controlp5:jar">
|
||||
<output-path>$PROJECT_DIR$/out/artifacts/controlp5_jar</output-path>
|
||||
<root id="archive" name="controlp5.jar">
|
||||
<element id="module-output" name="controlp5" />
|
||||
<element id="extracted-dir" path="$PROJECT_DIR$/lib/processing.jar" path-in-jar="/" />
|
||||
</root>
|
||||
</artifact>
|
||||
</component>
|
9
.idea/libraries/ant_contrib_1_0b3.xml
Normal file
9
.idea/libraries/ant_contrib_1_0b3.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<component name="libraryTable">
|
||||
<library name="ant-contrib-1.0b3">
|
||||
<CLASSES>
|
||||
<root url="jar://$PROJECT_DIR$/resources/code/ant-contrib-1.0b3.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</component>
|
6
.idea/misc.xml
Normal file
6
.idea/misc.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_17_PREVIEW" project-jdk-name="temurin-17" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
11
.idea/modules.xml
Normal file
11
.idea/modules.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/resources/addons/addons.iml" filepath="$PROJECT_DIR$/resources/addons/addons.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/controlp5.iml" filepath="$PROJECT_DIR$/controlp5.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/examples/examples.iml" filepath="$PROJECT_DIR$/examples/examples.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/resources/resources.iml" filepath="$PROJECT_DIR$/resources/resources.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
124
.idea/uiDesigner.xml
Normal file
124
.idea/uiDesigner.xml
Normal file
@ -0,0 +1,124 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Palette2">
|
||||
<group name="Swing">
|
||||
<item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||
<default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
|
||||
</item>
|
||||
<item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||
<default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
|
||||
</item>
|
||||
<item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
|
||||
</item>
|
||||
<item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.svg" removable="false" auto-create-binding="false" can-attach-label="true">
|
||||
<default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
|
||||
</item>
|
||||
<item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||
<default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
|
||||
<initial-values>
|
||||
<property name="text" value="Button" />
|
||||
</initial-values>
|
||||
</item>
|
||||
<item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
||||
<initial-values>
|
||||
<property name="text" value="RadioButton" />
|
||||
</initial-values>
|
||||
</item>
|
||||
<item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
||||
<initial-values>
|
||||
<property name="text" value="CheckBox" />
|
||||
</initial-values>
|
||||
</item>
|
||||
<item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||
<default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
|
||||
<initial-values>
|
||||
<property name="text" value="Label" />
|
||||
</initial-values>
|
||||
</item>
|
||||
<item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
||||
<preferred-size width="150" height="-1" />
|
||||
</default-constraints>
|
||||
</item>
|
||||
<item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
||||
<preferred-size width="150" height="-1" />
|
||||
</default-constraints>
|
||||
</item>
|
||||
<item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
||||
<preferred-size width="150" height="-1" />
|
||||
</default-constraints>
|
||||
</item>
|
||||
<item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
||||
<preferred-size width="150" height="50" />
|
||||
</default-constraints>
|
||||
</item>
|
||||
<item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
||||
<preferred-size width="150" height="50" />
|
||||
</default-constraints>
|
||||
</item>
|
||||
<item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
||||
<preferred-size width="150" height="50" />
|
||||
</default-constraints>
|
||||
</item>
|
||||
<item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||
<default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
|
||||
</item>
|
||||
<item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
||||
<preferred-size width="150" height="50" />
|
||||
</default-constraints>
|
||||
</item>
|
||||
<item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||
<default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
|
||||
<preferred-size width="150" height="50" />
|
||||
</default-constraints>
|
||||
</item>
|
||||
<item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
||||
<preferred-size width="150" height="50" />
|
||||
</default-constraints>
|
||||
</item>
|
||||
<item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
||||
<preferred-size width="200" height="200" />
|
||||
</default-constraints>
|
||||
</item>
|
||||
<item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
||||
<preferred-size width="200" height="200" />
|
||||
</default-constraints>
|
||||
</item>
|
||||
<item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
||||
</item>
|
||||
<item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
||||
</item>
|
||||
<item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" />
|
||||
</item>
|
||||
<item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" />
|
||||
</item>
|
||||
<item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
|
||||
<preferred-size width="-1" height="20" />
|
||||
</default-constraints>
|
||||
</item>
|
||||
<item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||
<default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" />
|
||||
</item>
|
||||
<item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||
<default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" />
|
||||
</item>
|
||||
</group>
|
||||
</component>
|
||||
</project>
|
6
.idea/vcs.xml
Normal file
6
.idea/vcs.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
@ -23,7 +23,7 @@ The range of available controllers includes Slider, Button, Toggle, Knob, Textfi
|
||||
|
||||
## <a name"install"></a>Installation
|
||||
|
||||
To install the library from inside the Processing IDE, use the Library Manager from the menu under Sketch → Import Library → Add Library and search for ControlP5.
|
||||
To install the library from inside the Processing IDE, use the Library Manager from the menu under sketch.Sketch → Import Library → Add Library and search for ControlP5.
|
||||
|
||||
If you want to install ControlP5 manually, download (the latest) version from the [releases](https://github.com/sojamo/controlp5/releases) directory. Inside the downloaded .zip file you will find [install_instructions](resources/install_instructions.txt) that guide you through the installation details and tell you where the controlP5 folder needs to be put. In case you are looking for an earlier release, please check the [archive on google code](https://code.google.com/p/controlp5/downloads/list?can=1&q=&colspec=Filename+Summary+Uploaded+ReleaseDate+Size+DownloadCount).
|
||||
|
||||
|
20
controlp5.iml
Normal file
20
controlp5.iml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="module-library">
|
||||
<library>
|
||||
<CLASSES>
|
||||
<root url="jar://$MODULE_DIR$/lib/processing.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
</component>
|
||||
</module>
|
11
examples/examples.iml
Normal file
11
examples/examples.iml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/experimental/MidiMapper" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
BIN
lib/.DS_Store
vendored
Normal file
BIN
lib/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
lib/processing.jar
Normal file
BIN
lib/processing.jar
Normal file
Binary file not shown.
BIN
out/artifacts/controlp5_jar/controlp5.jar
Normal file
BIN
out/artifacts/controlp5_jar/controlp5.jar
Normal file
Binary file not shown.
3
out/production/addons/AddMethodList.sh
Normal file
3
out/production/addons/AddMethodList.sh
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
javac -cp .:../../../distribution/tmp/controlP5/library/controlP5.jar AddMethodList.java
|
||||
java -cp .:../../../distribution/tmp/controlP5/library/controlP5.jar:$HOME/Documents/workspace/libs/core.jar AddMethodList $HOME/Documents/workspace/controlp5/examples/controllers/ControlP5accordion/
|
BIN
out/production/controlp5/controlP5/Accordion.class
Normal file
BIN
out/production/controlp5/controlP5/Accordion.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Background.class
Normal file
BIN
out/production/controlp5/controlP5/Background.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Bang$BangImageView.class
Normal file
BIN
out/production/controlp5/controlP5/Bang$BangImageView.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Bang$BangView.class
Normal file
BIN
out/production/controlp5/controlP5/Bang$BangView.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Bang.class
Normal file
BIN
out/production/controlp5/controlP5/Bang.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/BitFont.class
Normal file
BIN
out/production/controlp5/controlP5/BitFont.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Button$ButtonImageView.class
Normal file
BIN
out/production/controlp5/controlP5/Button$ButtonImageView.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Button$ButtonView.class
Normal file
BIN
out/production/controlp5/controlP5/Button$ButtonView.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Button.class
Normal file
BIN
out/production/controlp5/controlP5/Button.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ButtonBar$1.class
Normal file
BIN
out/production/controlp5/controlP5/ButtonBar$1.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ButtonBar$ButtonBarView.class
Normal file
BIN
out/production/controlp5/controlP5/ButtonBar$ButtonBarView.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ButtonBar.class
Normal file
BIN
out/production/controlp5/controlP5/ButtonBar.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/CColor.class
Normal file
BIN
out/production/controlp5/controlP5/CColor.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/CDrawable.class
Normal file
BIN
out/production/controlp5/controlP5/CDrawable.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/CP.class
Normal file
BIN
out/production/controlp5/controlP5/CP.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/CallbackEvent.class
Normal file
BIN
out/production/controlp5/controlP5/CallbackEvent.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/CallbackListener.class
Normal file
BIN
out/production/controlp5/controlP5/CallbackListener.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Canvas.class
Normal file
BIN
out/production/controlp5/controlP5/Canvas.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Chart$ChartViewArea.class
Normal file
BIN
out/production/controlp5/controlP5/Chart$ChartViewArea.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Chart$ChartViewBar.class
Normal file
BIN
out/production/controlp5/controlP5/Chart$ChartViewBar.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
out/production/controlp5/controlP5/Chart$ChartViewLine.class
Normal file
BIN
out/production/controlp5/controlP5/Chart$ChartViewLine.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Chart$ChartViewPie.class
Normal file
BIN
out/production/controlp5/controlP5/Chart$ChartViewPie.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Chart.class
Normal file
BIN
out/production/controlp5/controlP5/Chart.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ChartData.class
Normal file
BIN
out/production/controlp5/controlP5/ChartData.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ChartDataSet.class
Normal file
BIN
out/production/controlp5/controlP5/ChartDataSet.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/CheckBox.class
Normal file
BIN
out/production/controlp5/controlP5/CheckBox.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ColorPalette.class
Normal file
BIN
out/production/controlp5/controlP5/ColorPalette.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ColorPicker$ColorField.class
Normal file
BIN
out/production/controlp5/controlP5/ColorPicker$ColorField.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ColorPicker.class
Normal file
BIN
out/production/controlp5/controlP5/ColorPicker.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
out/production/controlp5/controlP5/ColorWheel.class
Normal file
BIN
out/production/controlp5/controlP5/ColorWheel.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlBehavior.class
Normal file
BIN
out/production/controlp5/controlP5/ControlBehavior.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlBroadcaster.class
Normal file
BIN
out/production/controlp5/controlP5/ControlBroadcaster.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlElement.class
Normal file
BIN
out/production/controlp5/controlP5/ControlElement.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlEvent.class
Normal file
BIN
out/production/controlp5/controlP5/ControlEvent.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlFont.class
Normal file
BIN
out/production/controlp5/controlP5/ControlFont.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlGroup.class
Normal file
BIN
out/production/controlp5/controlP5/ControlGroup.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlKey.class
Normal file
BIN
out/production/controlp5/controlP5/ControlKey.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlListener.class
Normal file
BIN
out/production/controlp5/controlP5/ControlListener.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlP5$1.class
Normal file
BIN
out/production/controlp5/controlP5/ControlP5$1.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlP5$2.class
Normal file
BIN
out/production/controlp5/controlP5/ControlP5$2.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlP5$3.class
Normal file
BIN
out/production/controlp5/controlP5/ControlP5$3.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlP5$4.class
Normal file
BIN
out/production/controlp5/controlP5/ControlP5$4.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlP5$Invisible.class
Normal file
BIN
out/production/controlp5/controlP5/ControlP5$Invisible.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlP5$Layout.class
Normal file
BIN
out/production/controlp5/controlP5/ControlP5$Layout.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlP5.class
Normal file
BIN
out/production/controlp5/controlP5/ControlP5.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlP5Base$KeyCode.class
Normal file
BIN
out/production/controlp5/controlP5/ControlP5Base$KeyCode.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlP5Base.class
Normal file
BIN
out/production/controlp5/controlP5/ControlP5Base.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlP5Constants.class
Normal file
BIN
out/production/controlp5/controlP5/ControlP5Constants.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlP5Legacy.class
Normal file
BIN
out/production/controlp5/controlP5/ControlP5Legacy.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlTimer.class
Normal file
BIN
out/production/controlp5/controlP5/ControlTimer.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlWindow$Pointer.class
Normal file
BIN
out/production/controlp5/controlP5/ControlWindow$Pointer.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlWindow.class
Normal file
BIN
out/production/controlp5/controlP5/ControlWindow.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControlWindowCanvas.class
Normal file
BIN
out/production/controlp5/controlP5/ControlWindowCanvas.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Controller$1.class
Normal file
BIN
out/production/controlp5/controlP5/Controller$1.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Controller$DebugView.class
Normal file
BIN
out/production/controlp5/controlP5/Controller$DebugView.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/Controller.class
Normal file
BIN
out/production/controlp5/controlP5/Controller.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerAutomator$1.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerAutomator$1.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerAutomator.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerAutomator.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerDisplay.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerDisplay.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerGroup.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerGroup.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerInterface.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerInterface.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerLayout.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerLayout.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerLayoutElement.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerLayoutElement.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerList.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerList.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerPlug.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerPlug.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerProperties.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerProperties.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerProperty.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerProperty.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerStyle.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerStyle.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/ControllerView.class
Normal file
BIN
out/production/controlp5/controlP5/ControllerView.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/DropdownList$1.class
Normal file
BIN
out/production/controlp5/controlP5/DropdownList$1.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
out/production/controlp5/controlP5/DropdownList.class
Normal file
BIN
out/production/controlp5/controlP5/DropdownList.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/FieldChangedListener$1.class
Normal file
BIN
out/production/controlp5/controlP5/FieldChangedListener$1.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/FieldChangedListener$2.class
Normal file
BIN
out/production/controlp5/controlP5/FieldChangedListener$2.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/FieldChangedListener$3.class
Normal file
BIN
out/production/controlp5/controlP5/FieldChangedListener$3.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/FieldChangedListener$4.class
Normal file
BIN
out/production/controlp5/controlP5/FieldChangedListener$4.class
Normal file
Binary file not shown.
BIN
out/production/controlp5/controlP5/FieldChangedListener.class
Normal file
BIN
out/production/controlp5/controlP5/FieldChangedListener.class
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user