Copy GV source to clipboard in rightclick menu of Graph.

This commit is contained in:
Jindra Petřík
2018-05-24 15:31:31 +02:00
parent cdd1acb1f9
commit 74fcac338e
8 changed files with 592 additions and 271 deletions
@@ -0,0 +1,34 @@
/*
* Copyright (C) 2010-2018 JPEXS
*
* 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, either version 3 of the License, or
* (at your option) any later version.
*
* 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 <http://www.gnu.org/licenses/>.
*/
package com.jpexs.decompiler.flash.gui.graph;
import com.jpexs.decompiler.graph.Graph;
import javax.swing.JPanel;
/**
*
* @author JPEXS
*/
public abstract class AbstractGraphPanel extends JPanel {
protected Graph graph;
public AbstractGraphPanel(Graph graph) throws InterruptedException {
this.graph = graph;
graph.init(null);
}
}