Loading...
Logo
Processing Forum
Howdy All,

G4P is powerful, I am looking for a tutorial on making option buttons (radio buttons) change the window resolution and background color when the appropriate option button is selected. My work schedule is rediculous so I only get a little processing time here and there. I appreciate the assistance.

Thank you.

KB

Replies(2)

Any sort of button class should have a way to query the button for it's state. You might have to work that out on your own.

Then you can use an if statement, which would check a button's state, to determine how to draw things.

Changing the background color is as simple as using a different color when you call background().

I don't know exactly what you mean by "changing the resolution".
Do you want to resize the window?
Do you want to zoom in?
Do you want things to be more blocky?
All of these are possible!
This post is in response to the message you sent to me regarding handling option selection events when using the GUI builder tool. With regard to resizing windows etc. then I am sure others can add to this thread.
--------------------------------------------------------------------------------------------------------------------------------------------------

I used the GUI biuilder tool to create the simple demo application shown listed

There are two option groups:-
Group 1 has three option buttons to select the colour and
Group 2 has two option buttons to select light/dark.

In the builder tool I canged the variable name and  event method name to make it easier to identify the event handlers. They are :-

Variable name      Event Method name
optRed             option_red_select 
optGreen           option_green_select 
optBlue            option_blue_select 
optDark            option_dark_select 
optLight           option_light_select 


The five event methods are at the start of the gui tab and these are executed when the corresponding option is selected.

Main Sketch Tab:
Copy code
  1. // Need G4P library
  2. import guicomponents.*;
  3. int backCol;
  4. int r,g,b;
  5. boolean dark = false;

  6. void setup(){
  7.   size(480, 320);
  8.   createGUI();
  9.   customGUI();
  10.   // Place your setup code here
  11.   r = b = 0;
  12.   g = 250;
  13. }

  14. void draw(){
  15.   background(r,g,b);
  16.   fill(200);
  17.   noStroke();
  18.   rect(0,0,240,100); 
  19. }

  20. // Use this method to add additional statements
  21. // to customise the GUI controls
  22. void customGUI(){
  23. }

gui tab
Copy code
  1. /* =========================================================
  2.  * ====                   WARNING                        ===
  3.  * =========================================================
  4.  * The code in this tab has been generated from the GUI form
  5.  * designer and care should be taken when editing this file.
  6.  * Only add/edit code inside the event handlers i.e. only
  7.  * use lines between the matching comment tags. e.g.
  8.  void myBtnEvents(GButton button) { //_CODE_:button1:12356:
  9.      // It is safe to enter your event code here 
  10.  } //_CODE_:button1:12356:
  11.  
  12.  * Do not rename this tab!
  13.  * =========================================================
  14.  */

  15. void option_red_select(GOption opt_selected, GOption opt_deselected) { //_CODE_:optRed:589177:
  16.   r = g = b = 0;
  17.   r = 250;
  18.   if (dark == true)
  19.     r = 125;
  20. } //_CODE_:optRed:589177:

  21. void option_green_select(GOption opt_selected, GOption opt_deselected) { //_CODE_:optGreen:689373:
  22.   r = g = b = 0;
  23.   g = 250;
  24.   if (dark == true)
  25.     g = 125;
  26. } //_CODE_:optGreen:689373:

  27. void option_blue_select(GOption opt_selected, GOption opt_deselected) { //_CODE_:optBlue:669478:
  28.   r = g = b = 0;
  29.   b = 250;
  30.   if (dark == true)
  31.     b = 125;
  32. } //_CODE_:optBlue:669478:

  33. void option_light_select(GOption opt_selected, GOption opt_deselected) { //_CODE_:optLight:808969:
  34.   if (r == 125)
  35.     r = 250;
  36.   if (g == 125)
  37.     g = 250;
  38.   if (b == 125)
  39.     b = 250;
  40.   dark = false;
  41. } //_CODE_:optLight:808969:

  42. void option_dark_select(GOption opt_selected, GOption opt_deselected) { //_CODE_:optDark:825304:
  43.   if (r == 250)
  44.     r = 125;
  45.   if (g == 250)
  46.     g = 125;
  47.   if (b == 250)
  48.     b = 125;
  49.   dark = true;
  50. } //_CODE_:optDark:825304:

  51. // Create all the GUI controls.
  52. // autogenerated do not edit
  53. void createGUI(){
  54.   G4P.setColorScheme(this, GCScheme.BLUE_SCHEME);
  55.   G4P.messagesEnabled(false);
  56.   optGroup1 = new GOptionGroup();
  57.   optRed = new GOption(this, "Red", 32, 8, 90);
  58.   optGroup1.addOption(optRed);
  59.   optRed.addEventHandler(this, "option_red_select");
  60.   optGreen = new GOption(this, "Green", 32, 32, 90);
  61.   optGroup1.addOption(optGreen);
  62.   optGreen.setSelected(true);
  63.   optGreen.addEventHandler(this, "option_green_select");
  64.   optBlue = new GOption(this, "Blue", 32, 56, 90);
  65.   optGroup1.addOption(optBlue);
  66.   optBlue.addEventHandler(this, "option_blue_select");
  67.   optGroup2 = new GOptionGroup();
  68.   optLight = new GOption(this, "Light", 136, 24, 90);
  69.   optGroup2.addOption(optLight);
  70.   optLight.setSelected(true);
  71.   optLight.addEventHandler(this, "option_light_select");
  72.   optDark = new GOption(this, "Dark", 136, 48, 90);
  73.   optGroup2.addOption(optDark);
  74.   optDark.addEventHandler(this, "option_dark_select");
  75. }

  76. // Variable declarations
  77. // autogenerated do not edit
  78. GOptionGroup optGroup1;
  79. GOption optRed;
  80. GOption optGreen;
  81. GOption optBlue;
  82. GOptionGroup optGroup2;
  83. GOption optLight;
  84. GOption optDark;

Hope this example helps