Window Resize Event

Window Resize Event

Question:
How can I detect that a window has been resized?I can detect events such as WindowIconified,WindowDeiconified, WindowOpening, WindowClosing, etc., but not the resize event.

Answer:
Figuring out how to detect a window resizing isn’t immediately obviousbecause you might expect the event to be represented by a WindowEvent.In fact, window resizing is just a specific instance of componentresizing, which is signalled by a ComponentEvent. TheComponentEvent.COMPONENT_RESIZED identifier indicates that a ComponentEventis signalling a resize. To receive the event, you must add aComponentListener to the window. Rather than implementing all themethods required by a ComponentListener, it will suffice to subclassComponenetAdapter, and override its componentResized()method. The following program shows how to do this, displaying thenew dimensions of a window as it is resized.

import java.awt.*;import java.awt.event.*;public class ResizeWindow extends Frame {  Label label;  public void showSize() {    label.setText(getWidth() + ", " + getHeight());  }  public ResizeWindow() {    label = new Label();    label.setAlignment(Label.CENTER);    add(label, BorderLayout.CENTER);    addComponentListener(new ComponentAdapter() {      public void componentResized(ComponentEvent e) {        ResizeWindow.this.showSize();      }    });  }  public static final void main(String[] args) {    Frame frame = new ResizeWindow();    WindowListener exitListener;    exitListener = new WindowAdapter() {      public void windowClosing(WindowEvent e) {        Window window = e.getWindow();        window.setVisible(false);        window.dispose();        System.exit(0);      }    };           frame.addWindowListener(exitListener);    frame.setSize(200, 200);    frame.setVisible(true);  }}

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of