コード例 #1
0
ファイル: RadioButton.java プロジェクト: cjsheedy/controlp5
 /**
  * Convenience constructor to extend RadioButton.
  *
  * @example use/ControlP5extendController
  * @param theControlP5
  * @param theName
  */
 public RadioButton(ControlP5 theControlP5, String theName) {
   this(theControlP5, theControlP5.getDefaultTab(), theName, 0, 0);
   theControlP5.register(theControlP5.papplet, theName, this);
 }
コード例 #2
0
 /**
  * Convenience constructor to extend ControllerGroup.
  *
  * @example use/ControlP5extendController
  * @param theControlP5
  * @param theName
  */
 public ControllerGroup(ControlP5 theControlP5, String theName) {
   this(theControlP5, theControlP5.getDefaultTab(), theName, 0, 0);
   theControlP5.register(theControlP5.papplet, theName, this);
 }
コード例 #3
0
ファイル: Toggle.java プロジェクト: ramonrovirosa/MAT_259
 /**
  * Convenience constructor to extend Toggle.
  *
  * @example use/ControlP5extendController
  * @param theControlP5
  * @param theName
  */
 public Toggle(ControlP5 theControlP5, String theName) {
   this(theControlP5, theControlP5.getDefaultTab(), theName, 0, 0, 0, autoWidth, autoHeight);
   theControlP5.register(theControlP5.papplet, theName, this);
 }
コード例 #4
0
ファイル: ListBox.java プロジェクト: star003/sb
 /**
  * Convenience constructor to extend ListBox.
  *
  * @example use/ControlP5extendController
  * @param theControlP5
  * @param theName
  */
 public ListBox(ControlP5 theControlP5, String theName) {
   this(theControlP5, theControlP5.getDefaultTab(), theName, 0, 0, 99, 199);
   theControlP5.register(theControlP5.papplet, theName, this);
 }