Package chatroom.utils

Examples of chatroom.utils.ImageFilter


        profilePic.addMouseListener(new MouseAdapter() {

            @Override
            public void mousePressed(MouseEvent e) {
                JFileChooser imageChooser = new JFileChooser();
                imageChooser.setFileFilter(new ImageFilter());
                imageChooser.setAccessory(new ImagePreview(imageChooser));
                int ret = imageChooser.showOpenDialog(ClientGUI.this);
                if (ret == JFileChooser.APPROVE_OPTION) {
                    File f = imageChooser.getSelectedFile();
                    changeProfilePic(f);
View Full Code Here


        insertPicButton.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                JFileChooser imageChooser = new JFileChooser();
                imageChooser.setFileFilter(new ImageFilter());
                imageChooser.setAccessory(new ImagePreview(imageChooser));
                int ret = imageChooser.showOpenDialog(HTMLTextEditor.this);
                if (ret == JFileChooser.APPROVE_OPTION) {
                    File f = imageChooser.getSelectedFile();
                    String str = null;
View Full Code Here

TOP

Related Classes of chatroom.utils.ImageFilter

Copyright © 2018 www.massapicom. 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.