All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.parosproxy.paros.view.TabbedPanel Maven / Gradle / Ivy

Go to download

The Zed Attack Proxy (ZAP) is an easy to use integrated penetration testing tool for finding vulnerabilities in web applications. It is designed to be used by people with a wide range of security experience and as such is ideal for developers and functional testers who are new to penetration testing. ZAP provides automated scanners as well as a set of tools that allow you to find security vulnerabilities manually.

There is a newer version: 2.15.0
Show newest version
/*
 * Paros and its related class files.
 *
 * Paros is an HTTP/HTTPS proxy for assessing web application security.
 * Copyright (C) 2003-2004 www.proofsecure.com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the Clarified Artistic License
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * Clarified Artistic License for more details.
 *
 * You should have received a copy of the Clarified Artistic License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */
// ZAP: 2011/06/02 Warn the first time the user double clicks on a tab
// ZAP: 2012/04/23 Added @Override annotation to the appropriate method.
// ZAP: 2013/02/17 Issue 496: Allow to see the request and response at the same
// time in the main window
// ZAP: 2013/02/26 Issue 540: Maximised work tabs hidden when response tab
// position changed
// ZAP: 2016/04/06 Fix layouts' issues
// ZAP: 2019/06/01 Normalise line endings.
// ZAP: 2019/06/05 Normalise format/style.
package org.parosproxy.paros.view;

import javax.swing.JTabbedPane;
import org.parosproxy.paros.model.Model;
import org.zaproxy.zap.view.ComponentMaximiser;
import org.zaproxy.zap.view.ComponentMaximiserMouseListener;

public class TabbedPanel extends JTabbedPane {

    private static final long serialVersionUID = 8927990541854169615L;

    private ComponentMaximiserMouseListener componentMaximiserML;

    /** This is the default constructor */
    public TabbedPanel() {
        super();
        componentMaximiserML =
                new ComponentMaximiserMouseListener(
                        Model.getSingleton().getOptionsParam().getViewParam());
        initialize();
    }
    /** This method initializes this */
    private void initialize() {
        if (Model.getSingleton().getOptionsParam().getViewParam().getWmUiHandlingOption() == 0) {
            this.setSize(225, 145);
        }
        this.addMouseListener(componentMaximiserML);
    }

    public void setAlternativeParent(java.awt.Container alternativeParent) {
        ComponentMaximiser maximiser =
                alternativeParent != null ? new ComponentMaximiser(alternativeParent) : null;
        componentMaximiserML.setComponentMaximiser(maximiser);
    }

    public boolean isInAlternativeParent() {
        ComponentMaximiser maximiser = componentMaximiserML.getComponentMaximiser();
        if (maximiser == null) {
            return false;
        }
        return maximiser.isComponentMaximised();
    }

    public void alternateParent() {
        componentMaximiserML.triggerMaximisation(this);
    }
} //  @jve:visual-info  decl-index=0 visual-constraint="10,10"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy