From 8189116ea4b5db4675e31dfd04a5687d55e29262 Mon Sep 17 00:00:00 2001 From: Eduardo Pedroni Date: Tue, 6 May 2014 14:29:37 +0100 Subject: Added javadocs, made minor changes to the comments --- doc/jcgp/gui/dragresize/HorizontalDragResize.html | 253 +++++++++++++++++++++ doc/jcgp/gui/dragresize/VerticalDragResize.html | 253 +++++++++++++++++++++ .../dragresize/class-use/HorizontalDragResize.html | 124 ++++++++++ .../dragresize/class-use/VerticalDragResize.html | 124 ++++++++++ doc/jcgp/gui/dragresize/package-frame.html | 21 ++ doc/jcgp/gui/dragresize/package-summary.html | 152 +++++++++++++ doc/jcgp/gui/dragresize/package-tree.html | 138 +++++++++++ doc/jcgp/gui/dragresize/package-use.html | 124 ++++++++++ 8 files changed, 1189 insertions(+) create mode 100644 doc/jcgp/gui/dragresize/HorizontalDragResize.html create mode 100644 doc/jcgp/gui/dragresize/VerticalDragResize.html create mode 100644 doc/jcgp/gui/dragresize/class-use/HorizontalDragResize.html create mode 100644 doc/jcgp/gui/dragresize/class-use/VerticalDragResize.html create mode 100644 doc/jcgp/gui/dragresize/package-frame.html create mode 100644 doc/jcgp/gui/dragresize/package-summary.html create mode 100644 doc/jcgp/gui/dragresize/package-tree.html create mode 100644 doc/jcgp/gui/dragresize/package-use.html (limited to 'doc/jcgp/gui/dragresize') diff --git a/doc/jcgp/gui/dragresize/HorizontalDragResize.html b/doc/jcgp/gui/dragresize/HorizontalDragResize.html new file mode 100644 index 0000000..4d47043 --- /dev/null +++ b/doc/jcgp/gui/dragresize/HorizontalDragResize.html @@ -0,0 +1,253 @@ + + + + + +HorizontalDragResize + + + + + + + + +
+ + + + + + + +
+ + + +
+
jcgp.gui.dragresize
+

Class HorizontalDragResize

+
+
+ +
+
    +
  • +
    +
    +
    public class HorizontalDragResize
    +extends java.lang.Object
    +
    This class adds horizontal drag resize functionality to any + arbitrary region provided. This is done by using the static + method makeDragResizable(). +

    + This is based on a class by Andrew Till found on: + http://andrewtill.blogspot.co.uk/2012/12/dragging-to-resize-javafx-region.html
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static voidmakeDragResizable(javafx.scene.layout.Region region) +
      Makes the specified region drag resizable.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        makeDragResizable

        +
        public static void makeDragResizable(javafx.scene.layout.Region region)
        +
        Makes the specified region drag resizable. + This particular implementation only creates a resize + click-and-drag area on the left side of the region. + The resize area is defined by GUI.RESIZE_MARGIN.
        +
        +
        Parameters:
        +
        region - the region to make resizable.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/doc/jcgp/gui/dragresize/VerticalDragResize.html b/doc/jcgp/gui/dragresize/VerticalDragResize.html new file mode 100644 index 0000000..28faeb5 --- /dev/null +++ b/doc/jcgp/gui/dragresize/VerticalDragResize.html @@ -0,0 +1,253 @@ + + + + + +VerticalDragResize + + + + + + + + +
+ + + + + + + +
+ + + +
+
jcgp.gui.dragresize
+

Class VerticalDragResize

+
+
+ +
+
    +
  • +
    +
    +
    public class VerticalDragResize
    +extends java.lang.Object
    +
    This class adds vertical drag resize functionality to any + arbitrary region provided. This is done by using the static + method makeDragResizable(). +

    + This is based on a class by Andrew Till found on: + http://andrewtill.blogspot.co.uk/2012/12/dragging-to-resize-javafx-region.html
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static voidmakeDragResizable(javafx.scene.layout.Region region) +
      Makes the specified region drag resizable.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        makeDragResizable

        +
        public static void makeDragResizable(javafx.scene.layout.Region region)
        +
        Makes the specified region drag resizable. + This particular implementation only creates a resize + click-and-drag area on the top side of the region. + The resize area is defined by GUI.RESIZE_MARGIN.
        +
        +
        Parameters:
        +
        region - the region to make resizable.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/doc/jcgp/gui/dragresize/class-use/HorizontalDragResize.html b/doc/jcgp/gui/dragresize/class-use/HorizontalDragResize.html new file mode 100644 index 0000000..afb6008 --- /dev/null +++ b/doc/jcgp/gui/dragresize/class-use/HorizontalDragResize.html @@ -0,0 +1,124 @@ + + + + + +Uses of Class jcgp.gui.dragresize.HorizontalDragResize + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
jcgp.gui.dragresize.HorizontalDragResize

+
+
No usage of jcgp.gui.dragresize.HorizontalDragResize
+ +
+ + + + + + + +
+ + + + diff --git a/doc/jcgp/gui/dragresize/class-use/VerticalDragResize.html b/doc/jcgp/gui/dragresize/class-use/VerticalDragResize.html new file mode 100644 index 0000000..e36108f --- /dev/null +++ b/doc/jcgp/gui/dragresize/class-use/VerticalDragResize.html @@ -0,0 +1,124 @@ + + + + + +Uses of Class jcgp.gui.dragresize.VerticalDragResize + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
jcgp.gui.dragresize.VerticalDragResize

+
+
No usage of jcgp.gui.dragresize.VerticalDragResize
+ +
+ + + + + + + +
+ + + + diff --git a/doc/jcgp/gui/dragresize/package-frame.html b/doc/jcgp/gui/dragresize/package-frame.html new file mode 100644 index 0000000..b26622d --- /dev/null +++ b/doc/jcgp/gui/dragresize/package-frame.html @@ -0,0 +1,21 @@ + + + + + +jcgp.gui.dragresize + + + + + +

jcgp.gui.dragresize

+
+

Classes

+ +
+ + diff --git a/doc/jcgp/gui/dragresize/package-summary.html b/doc/jcgp/gui/dragresize/package-summary.html new file mode 100644 index 0000000..576365e --- /dev/null +++ b/doc/jcgp/gui/dragresize/package-summary.html @@ -0,0 +1,152 @@ + + + + + +jcgp.gui.dragresize + + + + + + + + +
+ + + + + + + +
+ + +
+

Package jcgp.gui.dragresize

+
+
+ +
+ +
+ + + + + + + +
+ + + + diff --git a/doc/jcgp/gui/dragresize/package-tree.html b/doc/jcgp/gui/dragresize/package-tree.html new file mode 100644 index 0000000..6c31fb7 --- /dev/null +++ b/doc/jcgp/gui/dragresize/package-tree.html @@ -0,0 +1,138 @@ + + + + + +jcgp.gui.dragresize Class Hierarchy + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For Package jcgp.gui.dragresize

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + + + +
+ + + + diff --git a/doc/jcgp/gui/dragresize/package-use.html b/doc/jcgp/gui/dragresize/package-use.html new file mode 100644 index 0000000..5a4088d --- /dev/null +++ b/doc/jcgp/gui/dragresize/package-use.html @@ -0,0 +1,124 @@ + + + + + +Uses of Package jcgp.gui.dragresize + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Package
jcgp.gui.dragresize

+
+
No usage of jcgp.gui.dragresize
+ +
+ + + + + + + +
+ + + + -- cgit v1.2.3