java/rozsirene-atributy-jedit/src/cz/frantovo/rozsireneAtributy/jedit/DokovatelnyPanel.java
author František Kučera <franta-hg@frantovo.cz>
Mon, 11 Dec 2023 00:10:33 +0100
branchv_0
changeset 27 dc5786f3482b
parent 26 706d4c013bf1
child 29 8d42303538ed
permissions -rw-r--r--
oprava verze licence / fix license version: GNU GPLv3
     1 /**
     2  * Rozšířené atributy – program na správu rozšířených atributů souborů
     3  * Copyright © 2012 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    16  */
    17 package cz.frantovo.rozsireneAtributy.jedit;
    18 
    19 import cz.frantovo.rozsireneAtributy.gui.Model;
    20 import cz.frantovo.rozsireneAtributy.gui.Panel;
    21 import java.awt.BorderLayout;
    22 import java.io.File;
    23 import java.io.IOException;
    24 import java.util.logging.Level;
    25 import java.util.logging.Logger;
    26 import javax.swing.JOptionPane;
    27 import javax.swing.JPanel;
    28 import org.gjt.sp.jedit.Buffer;
    29 import org.gjt.sp.jedit.EBComponent;
    30 import org.gjt.sp.jedit.EBMessage;
    31 import org.gjt.sp.jedit.EditBus;
    32 import org.gjt.sp.jedit.View;
    33 import org.gjt.sp.jedit.msg.EditPaneUpdate;
    34 
    35 /**
    36  *
    37  * @author Ing. František Kučera (frantovo.cz)
    38  */
    39 public class DokovatelnyPanel extends JPanel implements EBComponent {
    40 
    41 	private static final Logger log = Logger.getLogger(DokovatelnyPanel.class.getName());
    42 	private View view;
    43 	private Panel panel;
    44 
    45 	public DokovatelnyPanel(final View view, final String position) {
    46 		this.view = view;
    47 		setLayout(new BorderLayout());
    48 		změňSoubor(view.getBuffer(), false);
    49 	}
    50 
    51 	/**
    52 	 * Zaregistrujeme se, aby nám chodily události editoru.
    53 	 */
    54 	@Override
    55 	public void addNotify() {
    56 		super.addNotify();
    57 		EditBus.addToBus(this);
    58 	}
    59 
    60 	/**
    61 	 * @see #addNotify()
    62 	 */
    63 	@Override
    64 	public void removeNotify() {
    65 		super.removeNotify();
    66 		EditBus.removeFromBus(this);
    67 	}
    68 
    69 	/**
    70 	 * Zpracujeme události editoru. Zajímá nás přepnutí na jiný soubor – abychom
    71 	 * pro něj zobrazili atributy.
    72 	 *
    73 	 * @param událost událost editoru
    74 	 */
    75 	@Override
    76 	public void handleMessage(EBMessage událost) {
    77 		try {
    78 			if (událost instanceof EditPaneUpdate) {
    79 				EditPaneUpdate epu = (EditPaneUpdate) událost;
    80 				// Chodí nám všechny události – potřebujeme filtrovat jen ty pro naše okno.
    81 				if (view == epu.getEditPane().getView()) {
    82 					// zajímá nás jen přepnutí souboru
    83 					if (epu.getWhat() == EditPaneUpdate.BUFFER_CHANGED) {
    84 						/**
    85 						 * TODO: je soubor nově otevřený?
    86 						 */
    87 						změňSoubor(view.getBuffer(), epu.getWhat() == EditPaneUpdate.CREATED);
    88 					}
    89 				}
    90 			}
    91 			// událost instanceof BufferUpdate
    92 			// událost instanceof PropertiesChanged
    93 		} catch (Exception e) {
    94 			log.log(Level.WARNING, "Chyba při zpracování události: " + událost, e);
    95 		}
    96 
    97 	}
    98 
    99 	private void změňSoubor(Buffer b, boolean využijAtributy) {
   100 		try {
   101 			File s = new File(b.getPath());
   102 
   103 			if (s.isFile() && s.canRead()) {
   104 				Model m = new Model(s);
   105 
   106 				if (panel == null) {
   107 					panel = new Panel(m);
   108 					removeAll();
   109 					add(panel, BorderLayout.CENTER);
   110 				} else {
   111 					panel.setModel(m);
   112 				}
   113 
   114 				if (využijAtributy) {
   115 					využijAtributy(m, b);
   116 				}
   117 
   118 			} else {
   119 				// TODO: zobrazit chybu
   120 				log.log(Level.WARNING, "Soubor neexistuje nebo nemáme práva na čtení: {0}", s);
   121 			}
   122 		} catch (IOException e) {
   123 			log.log(Level.WARNING, "Chyba při změně souboru.", e);
   124 		}
   125 	}
   126 
   127 	/**
   128 	 * Nastaví jEdit podle atributů daného souboru: - odsazování - kódování
   129 	 *
   130 	 * @param m model obsahující atributy
   131 	 * @param b soubor otevřený v editoru
   132 	 */
   133 	private void využijAtributy(Model m, Buffer b) {
   134 		JOptionPane.showMessageDialog(panel, "Nový soubor!");
   135 	}
   136 }