Loading...
Logo
Processing Forum
I have been asked once or twice how to create a toggle (on/off) button with G4P. Unfortunately the library does not have one out-of-the-box solution.

It is possible to use the GCheckbox and change the graphic used to simulate a toggle button and I will show how to do it here.

The first thing to do is create a tiled image with the pictures to use for the two states. An example is shown here.


The code below was created using the GUI Builder tool, the statement at line 15 changes the image from the default tick-box to our own image above.

The width of the GCheckbox must be at least 12 pixels wider than the displayed image (i.e. half the full image width) otherwise it will cause an exception.

Copy code
  1. // Need G4P library
  2. import g4p_controls.*;
  3. public void setup() {
  4.   size(480, 320, JAVA2D);
  5.   createGUI();
  6.   customGUI();
  7. }
  8. public void draw() {
  9.   background(230);
  10. }

  11. // Use this method to add additional statements
  12. // to customise the GUI controls
  13. public void customGUI() {
  14.   mySwitch.setIcon("switch.jpg", 2, null, null);
  15. }

gui.tab (header comments removed)


Copy code
  1. public void switch_clicked(GCheckbox source, GEvent event) { //_CODE_:mySwitch:429373:
  2.   println("checkbox1 - GCheckbox event occured " + System.currentTimeMillis()%10000000 );
  3. } //_CODE_:mySwitch:429373:

  4. // Create all the GUI controls.
  5. // autogenerated do not edit
  6. public void createGUI() {
  7.   G4P.messagesEnabled(false);
  8.   G4P.setGlobalColorScheme(GCScheme.BLUE_SCHEME);
  9.   G4P.setCursor(ARROW);
  10.   if (frame != null)
  11.     frame.setTitle("Sketch Window");
  12.   mySwitch = new GCheckbox(this, 110, 62, 30, 36);
  13.   mySwitch.setOpaque(false);
  14.   mySwitch.addEventHandler(this, "switch_clicked");
  15. }

  16. // Variable declarations
  17. // autogenerated do not edit
  18. GCheckbox mySwitch;

Replies(1)

Image toggle buttons now available in G4P v3.3 see here