Examples of makeCheck()


Examples of net.bnubot.bot.gui.components.ConfigPanel.makeCheck()

        String[] values = TimeZone.getAvailableIDs();
        Arrays.sort(values);
        cmbTimeZone = boxAll.makeCombo("TimeZone", values, false);
        cmbTimeZone.setSelectedItem(TimeFormatter.timeZone.getID());

        chkAutoConnect = boxAll.makeCheck("Auto Connect", GlobalSettings.autoConnect);
        chkAutoRejoin = boxAll.makeCheck("Auto Rejoin After Kicked", GlobalSettings.autoRejoin);
        chkEnableMirrorSelector = boxAll.makeCheck("Enable Mirror Selector", GlobalSettings.enableMirrorSelector);
        chkEnableFloodProtect = boxAll.makeCheck("Enable Flood Protect", GlobalSettings.enableFloodProtect);
        chkPacketLog = boxAll.makeCheck("Packet Log", GlobalSettings.packetLog);
      }
View Full Code Here

Examples of net.bnubot.bot.gui.components.ConfigPanel.makeCheck()

        Arrays.sort(values);
        cmbTimeZone = boxAll.makeCombo("TimeZone", values, false);
        cmbTimeZone.setSelectedItem(TimeFormatter.timeZone.getID());

        chkAutoConnect = boxAll.makeCheck("Auto Connect", GlobalSettings.autoConnect);
        chkAutoRejoin = boxAll.makeCheck("Auto Rejoin After Kicked", GlobalSettings.autoRejoin);
        chkEnableMirrorSelector = boxAll.makeCheck("Enable Mirror Selector", GlobalSettings.enableMirrorSelector);
        chkEnableFloodProtect = boxAll.makeCheck("Enable Flood Protect", GlobalSettings.enableFloodProtect);
        chkPacketLog = boxAll.makeCheck("Packet Log", GlobalSettings.packetLog);
      }
      tabs.addTab("Settings", boxAll);
View Full Code Here

Examples of net.bnubot.bot.gui.components.ConfigPanel.makeCheck()

        cmbTimeZone = boxAll.makeCombo("TimeZone", values, false);
        cmbTimeZone.setSelectedItem(TimeFormatter.timeZone.getID());

        chkAutoConnect = boxAll.makeCheck("Auto Connect", GlobalSettings.autoConnect);
        chkAutoRejoin = boxAll.makeCheck("Auto Rejoin After Kicked", GlobalSettings.autoRejoin);
        chkEnableMirrorSelector = boxAll.makeCheck("Enable Mirror Selector", GlobalSettings.enableMirrorSelector);
        chkEnableFloodProtect = boxAll.makeCheck("Enable Flood Protect", GlobalSettings.enableFloodProtect);
        chkPacketLog = boxAll.makeCheck("Packet Log", GlobalSettings.packetLog);
      }
      tabs.addTab("Settings", boxAll);
View Full Code Here

Examples of net.bnubot.bot.gui.components.ConfigPanel.makeCheck()

        cmbTimeZone.setSelectedItem(TimeFormatter.timeZone.getID());

        chkAutoConnect = boxAll.makeCheck("Auto Connect", GlobalSettings.autoConnect);
        chkAutoRejoin = boxAll.makeCheck("Auto Rejoin After Kicked", GlobalSettings.autoRejoin);
        chkEnableMirrorSelector = boxAll.makeCheck("Enable Mirror Selector", GlobalSettings.enableMirrorSelector);
        chkEnableFloodProtect = boxAll.makeCheck("Enable Flood Protect", GlobalSettings.enableFloodProtect);
        chkPacketLog = boxAll.makeCheck("Packet Log", GlobalSettings.packetLog);
      }
      tabs.addTab("Settings", boxAll);

      boxAll = new ConfigPanel();
View Full Code Here

Examples of net.bnubot.bot.gui.components.ConfigPanel.makeCheck()

        chkAutoConnect = boxAll.makeCheck("Auto Connect", GlobalSettings.autoConnect);
        chkAutoRejoin = boxAll.makeCheck("Auto Rejoin After Kicked", GlobalSettings.autoRejoin);
        chkEnableMirrorSelector = boxAll.makeCheck("Enable Mirror Selector", GlobalSettings.enableMirrorSelector);
        chkEnableFloodProtect = boxAll.makeCheck("Enable Flood Protect", GlobalSettings.enableFloodProtect);
        chkPacketLog = boxAll.makeCheck("Packet Log", GlobalSettings.packetLog);
      }
      tabs.addTab("Settings", boxAll);

      boxAll = new ConfigPanel();
      {
View Full Code Here

Examples of net.bnubot.bot.gui.components.ConfigPanel.makeCheck()

      }
      tabs.addTab("Settings", boxAll);

      boxAll = new ConfigPanel();
      {
        chkProxyEnabled = boxAll.makeCheck("Enabled", GlobalSettings.socksEnabled);
        cmbProxyType = boxAll.makeCombo("Type", GlobalSettings.SOCKSType.values(), false);
        txtProxyHost = boxAll.makeText("Host", GlobalSettings.socksHost);
        spnProxyPort = boxAll.makeSpinner("Port", GlobalSettings.socksPort);
      }
      tabs.addTab("Proxy", boxAll);
View Full Code Here

Examples of net.bnubot.bot.gui.components.ConfigPanel.makeCheck()

      tabs.addTab("Proxy", boxAll);

      boxAll = new ConfigPanel();
      {
        boxAll.add(new JLabel("You must reopen profiles for these changes to take effect."));
        chkWhisperBack = boxAll.makeCheck("Whisper Command Responses", GlobalSettings.whisperBack);

        plugins = new ArrayList<Class<? extends EventHandler>>();
        chkEnabledPlugins = new ArrayList<JCheckBox>();
        for(Class<? extends EventHandler> plugin : PluginManager.getPlugins()) {
          // Do not allow the user to disable the GUI in this way
View Full Code Here

Examples of net.bnubot.bot.gui.components.ConfigPanel.makeCheck()

        for(Class<? extends EventHandler> plugin : PluginManager.getPlugins()) {
          // Do not allow the user to disable the GUI in this way
          if(plugin == GuiEventHandler.class)
            continue;

          JCheckBox chkEnablePlugin = boxAll.makeCheck(plugin.getSimpleName(), PluginManager.isEnabled(plugin));
          chkEnabledPlugins.add(chkEnablePlugin);
          plugins.add(plugin);
        }
        spnTriviaRoundLength = boxAll.makeSpinner("Trivia Round Length", Integer.valueOf(GlobalSettings.triviaRoundLength));
      }
View Full Code Here

Examples of net.bnubot.bot.gui.components.ConfigPanel.makeCheck()

        cmbBNUserToStringCommandResponse.setSelectedIndex(GlobalSettings.bnUserToStringCommandResponse);

        cmbTrayIconMode = boxAll.makeCombo("Tray Icon", TrayIconMode.values(), false);
        cmbTrayIconMode.setSelectedItem(GlobalSettings.trayIconMode);

        chkTrayMinimizeTo = boxAll.makeCheck("Minimize To System Tray (Java 6+)", GlobalSettings.trayMinimizeTo);
        chkTrayDisplayConnectDisconnect = boxAll.makeCheck("Tray: Connect/Disconnect", GlobalSettings.trayDisplayConnectDisconnect);
        chkTrayDisplayChannel = boxAll.makeCheck("Tray: Channel", GlobalSettings.trayDisplayChannel);
        chkTrayDisplayJoinPart = boxAll.makeCheck("Tray: Join/Part", GlobalSettings.trayDisplayJoinPart);
        chkTrayDisplayChatEmote = boxAll.makeCheck("Tray: Chat/Emote", GlobalSettings.trayDisplayChatEmote);
        chkTrayDisplayWhisper = boxAll.makeCheck("Tray: Whisper", GlobalSettings.trayDisplayWhisper);
View Full Code Here

Examples of net.bnubot.bot.gui.components.ConfigPanel.makeCheck()

        cmbTrayIconMode = boxAll.makeCombo("Tray Icon", TrayIconMode.values(), false);
        cmbTrayIconMode.setSelectedItem(GlobalSettings.trayIconMode);

        chkTrayMinimizeTo = boxAll.makeCheck("Minimize To System Tray (Java 6+)", GlobalSettings.trayMinimizeTo);
        chkTrayDisplayConnectDisconnect = boxAll.makeCheck("Tray: Connect/Disconnect", GlobalSettings.trayDisplayConnectDisconnect);
        chkTrayDisplayChannel = boxAll.makeCheck("Tray: Channel", GlobalSettings.trayDisplayChannel);
        chkTrayDisplayJoinPart = boxAll.makeCheck("Tray: Join/Part", GlobalSettings.trayDisplayJoinPart);
        chkTrayDisplayChatEmote = boxAll.makeCheck("Tray: Chat/Emote", GlobalSettings.trayDisplayChatEmote);
        chkTrayDisplayWhisper = boxAll.makeCheck("Tray: Whisper", GlobalSettings.trayDisplayWhisper);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.