Jump to content

Recommended Posts

Posted

Gui file:

package com.creepysheep.magnet.client.gui;

import com.creepysheep.magnet.handler.ConfigHandler;
import com.creepysheep.magnet.handler.FilterHandler;
import com.creepysheep.magnet.reference.ButtonReference;
import com.creepysheep.magnet.utility.LogHelper;
import cpw.mods.fml.client.config.GuiCheckBox;
import net.minecraft.client.gui.*;

import java.awt.*;

public class confGui extends GuiScreen {

    FilterHandler filterHandler = new FilterHandler();
    GuiButton test1 = new GuiButton(0, 50, 40, 100, 20, "Add");


    @Override
    public void drawScreen(int x, int y, float f) {
        drawDefaultBackground();

        drawCenteredString(fontRendererObj, "Toggle filtered items", this.width / 2, 22, 16777215);
        if (ConfigHandler.isEnabled = true);

        this.buttonList.add(test1);
        //this.buttonList.add(new GuiButton(0, 50, 40, 100, 20, "Add"));
        this.buttonList.add(new GuiButton(1, 50, 70, 100, 20, "Remove"));
        this.buttonList.add(ButtonReference.test2);

        super.drawScreen(x, y, f);
    }

    @Override
    public boolean doesGuiPauseGame() {
        return false;
    }

    public void actionPerformed(GuiButton button) {
        switch(button.id) {

            case 2:
                LogHelper.info(ButtonReference.test2.isChecked());
                    if(ButtonReference.test2.isChecked()) {
                        ButtonReference.test2.setIsChecked(true);
                        return;
                    }
                else{
                        ButtonReference.test2.setIsChecked(false);
                        return;
                    }
                }


        }
}

 

Button declaration:

 public static GuiCheckBox test2 = new GuiCheckBox(2, 50, 100, "Enabled?", false);

 

Output:

EQymJ6O.png

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.