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

ingenias.editor.GUIResources Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version

/** 
 * Copyright (C) 2010  Jorge J. Gomez-Sanz
 * 
 * This file is part of the INGENME tool. INGENME is an open source meta-editor
 * which produces customized editors for user-defined modeling languages
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation version 3 of the License
 *
 * 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
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see 
 **/

package ingenias.editor;

import ingenias.editor.entities.Entity;
import ingenias.editor.widget.DnDJTree;

import java.awt.Frame;
import java.util.Vector;

import javax.swing.JCheckBoxMenuItem;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
import javax.swing.JProgressBar;
import javax.swing.JRadioButtonMenuItem;
import javax.swing.JTextField;
import javax.swing.JTextPane;
import javax.swing.JTree;
import javax.swing.SwingUtilities;


public class GUIResources implements ProgressListener{

	private JTree arbolObjetos;

	private DnDJTree arbolProyectos;

	private JPanel buttonModelPanel;

	private JMenu codeGenerator;

	private ButtonToolBar commonButtons = null;

	private JCheckBoxMenuItem editOnMessages;
	private JCheckBoxMenuItem editPopUpProperties;
	private JRadioButtonMenuItem enableINGENIASView;
	private JRadioButtonMenuItem enableUMLView;
	private JMenu file;
	private JTextPane logs;
	private Frame mainFrame;
	private JTabbedPaneWithCloseIcons messagespane;
	private JTextPane moduleOutput;
	private JProgressBar pbar;
	private JPanel pprin;
	private Vector progressListeners=new Vector();
	private JMenuItem save;
	private JMenuItem saveas;
	private JEditorPane searchDiagramPanel; 

	private JTextField searchField;

	private JMenu tools = null;

	public void addPropertiesPanel(String name,JPanel jp, Entity ent){
		if (this.messagespane.indexOfTab(name) < 0) {
			//JScrollPane scrolledit=new JScrollPane();		 
			//scrolledit.getViewport().removeAll();
			//scrolledit.getViewport().add(jp,null);
			messagespane.addTab(name,ProjectTreeRenderer.selectIconByUserObject(ent),jp);
		} else
			this.messagespane.setSelectedIndex(this.messagespane.indexOfTab(name));
	}

	public void focusPropertiesPane(String name){
		if (this.messagespane.indexOfTab(name) >= 0) 			  
			this.messagespane.setSelectedIndex(this.messagespane.indexOfTab(name));
	}

	public void focusSearchPane(){
		this.messagespane.setSelectedIndex(2);
	}

	public JTree getArbolObjetos() {
		return arbolObjetos;
	}

	public DnDJTree getArbolProyectos() {
		return arbolProyectos;
	}

	public JPanel getButtonModelPanel() {
		return buttonModelPanel;
	}

	public JMenu getCodeGenerator() {
		return codeGenerator;
	}

	public ButtonToolBar getCommonButtons() {
		return commonButtons;
	}

	public JCheckBoxMenuItem getEditOnMessages() {
		return editOnMessages;
	}
	public JCheckBoxMenuItem getEditPopUpProperties() {
		return editPopUpProperties;
	}
	public JRadioButtonMenuItem getEnableINGENIASView() {
		return enableINGENIASView;
	}
	public JRadioButtonMenuItem getEnableUMLView() {
		return enableUMLView;
	}
	public JMenu getFile() {
		return file;
	}
	public JTextPane getLogs() {
		return logs;
	}
	public Frame getMainFrame() {
		return mainFrame;
	}
	public JTabbedPaneWithCloseIcons getMessagespane() {
		return messagespane;
	}
	public JTextPane getModuleOutput() {
		return moduleOutput;
	}

	public JPanel getPprin() {
		return pprin;
	}

	public JProgressBar getProgressBar() {
		return pbar;
	}


	public int getProgressBarValue() {
		if (pbar!=null){
			return pbar.getValue();
		}
		return 0;
	}

	public JMenuItem getSave() {
		return save;
	}

	public JMenuItem getSaveas() {
		return saveas;
	}

	public JEditorPane getSearchDiagramPanel() {
		return searchDiagramPanel;
	}

	public JTextField getSearchField() {
		return searchField;
	}

	public JMenu getTools() {
		return tools;
	}


	public void removePropertiesPane(String name){
		if (this.messagespane.indexOfTab(name) >= 0)
			this.messagespane.removeTabAt(this.messagespane.indexOfTab(name));
	}

	public void setArbolObjetos(JTree arbolObjetos) {
		this.arbolObjetos=arbolObjetos;

	}
	public void setArbolProyectos(DnDJTree arbolProyectos) {
		this.arbolProyectos=arbolProyectos;

	}


	public void setButtonModelPanel(JPanel buttonModelPanel) {
		this.buttonModelPanel=buttonModelPanel;

	}

	/**
	 *  Sets the changed attribute of the IDE class
	 */
	public  void setChanged() {
		if (save!=null && saveas!=null){
		save.setEnabled(true);
		saveas.setEnabled(true);
		}

	}

	public void setCodeGenerator(JMenu codeGenerator) {
		this.codeGenerator=codeGenerator;

	}

	public void setCommonButtons(ButtonToolBar commonButtons) {
		this.commonButtons = commonButtons;
	}

	public void setCurrentProgress(int progress) {
		for (ProgressListener pl:progressListeners)
			pl.setCurrentProgress(progress);
		
	}

	public void setEditOnMessages(JCheckBoxMenuItem editOnMessages2) {
		this.editOnMessages=editOnMessages2;

	}

	public void setEditPopUpProperties(JCheckBoxMenuItem editPopUpProperties) {
		this.editPopUpProperties=editPopUpProperties;

	}

	public void setEnableINGENIASView(JRadioButtonMenuItem enableINGENIASView) {
		this.enableINGENIASView=enableINGENIASView;

	}

	public void setEnableUMLView(JRadioButtonMenuItem enableUMLView) {
		this.enableUMLView=enableUMLView;

	}

	public void setFile(JMenu file) {
		this.file = file;
	}


	public void setLogs(JTextPane logs) {
		this.logs=logs;

	}

	public void setMainFrame(Frame mainFrame) {
		this.mainFrame = mainFrame;
	}

	public void setMessagespane(JTabbedPaneWithCloseIcons messagespane) {
		this.messagespane = messagespane;
	}

	public void setModuleOutput(JTextPane moduleOutput) {
		this.moduleOutput=moduleOutput;

	}

	public void setPprin(JPanel pprin) {
		this.pprin=pprin;

	}

	public void setProgressBar(JProgressBar pbar) {
		this.pbar=pbar;

	}

	

	public void setSave(JMenuItem save) {
		this.save=save;

	}

	public void setSaveas(JMenuItem saveas) {
		this.saveas = saveas;
	}

	public void setSaveAs(JMenuItem saveas) {
		this.saveas=saveas;

	}

	public void setSearchDiagramPanel(JEditorPane searchDiagramPanel) {
		this.searchDiagramPanel = searchDiagramPanel;
	}

	public void setSearchField(JTextField searchField) {
		this.searchField=searchField;

	}



	public void setTools(JMenu tools) {
		this.tools = tools;
	}

	/**
	 *  Sets the unChanged attribute of the IDE class
	 */
	public void setUnChanged() {
		if (save!=null && saveas!=null){
		save.setEnabled(false);
		saveas.setEnabled(true);
		}
	}
	
	public void removeProgressListener(ProgressListener pl){
		this.progressListeners.remove(pl);
	}
	
	public void addProgressListener(ProgressListener pl){
		this.progressListeners.add(pl);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy