mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
338 lines
9.9 KiB
Java
Executable File
338 lines
9.9 KiB
Java
Executable File
|
|
//Title: OpenCASCADE Samples
|
|
//Version:
|
|
//Copyright: Copyright (c) 1999
|
|
//Author: User Interface Group (Nizhny Novgorod)
|
|
//Company: Matra Datavision
|
|
//Description:
|
|
|
|
|
|
import java.awt.*;
|
|
import java.awt.event.*;
|
|
import javax.swing.*;
|
|
import java.util.*;
|
|
import jcas.Standard_CString;
|
|
import CASCADESamplesJni.*;
|
|
import SamplesTopologyJni.*;
|
|
import util.*;
|
|
|
|
public class SampleTopologyAnalysisPanel extends SamplePanel
|
|
implements ActionListener,
|
|
MouseListener,
|
|
MouseMotionListener
|
|
{
|
|
//-----------------------------------------------------------//
|
|
// Resources
|
|
//-----------------------------------------------------------//
|
|
static protected ResourceBundle resGui =
|
|
ResourceBundle.getBundle("SampleTopologyAnalysis");
|
|
|
|
static protected ImageIcon imgValid = new ImageIcon(resGui.getString("Icon-Valid"));
|
|
static protected ImageIcon imgLinear = new ImageIcon(resGui.getString("Icon-Linear"));
|
|
static protected ImageIcon imgSurface = new ImageIcon(resGui.getString("Icon-Surface"));
|
|
static protected ImageIcon imgVolume = new ImageIcon(resGui.getString("Icon-Volume"));
|
|
|
|
|
|
//-----------------------------------------------------------//
|
|
// Components
|
|
//-----------------------------------------------------------//
|
|
private ViewPanel myView3d;
|
|
|
|
private static V3d_Viewer myViewer3d = null;
|
|
|
|
private static AIS_InteractiveContext myAISContext = null;
|
|
|
|
private int startX = 0, startY = 0;
|
|
private boolean Dragged = false;
|
|
|
|
|
|
//-----------------------------------------------------------//
|
|
// External access
|
|
//-----------------------------------------------------------//
|
|
public static V3d_Viewer getViewer3d()
|
|
{
|
|
return myViewer3d;
|
|
}
|
|
|
|
public static AIS_InteractiveContext getAISContext()
|
|
{
|
|
return myAISContext;
|
|
}
|
|
|
|
|
|
//=======================================================================//
|
|
// Constructor //
|
|
//=======================================================================//
|
|
public SampleTopologyAnalysisPanel()
|
|
{
|
|
// 3D Initialization
|
|
//------------------------------------------
|
|
myViewer3d.SetDefaultLights();
|
|
myViewer3d.SetLightOn();
|
|
|
|
if (myAISContext == null)
|
|
{
|
|
myAISContext = new AIS_InteractiveContext(myViewer3d);
|
|
myAISContext.SetDisplayMode(AIS_DisplayMode.AIS_Shaded, false);
|
|
}
|
|
}
|
|
|
|
//-----------------------------------------------------------------------//
|
|
public JPanel createViewPanel()
|
|
{
|
|
JPanel mainPanel = new JPanel();
|
|
mainPanel.setLayout(new GridBagLayout());
|
|
mainPanel.setBorder(BorderFactory.createEmptyBorder(0, 5, 5, 0));
|
|
|
|
// Viewer 3D
|
|
//------------------------------------------
|
|
myViewer3d = SamplesTopologyPackage.CreateViewer("TopologyAnalysis");
|
|
|
|
myView3d = new ViewPanel() {
|
|
public ViewCanvas createViewPort()
|
|
{
|
|
return new CASCADEView3d(SampleTopologyAnalysisPanel.getViewer3d()) {
|
|
public void setWindow3d(V3d_View view, int hiwin, int lowin) {
|
|
SamplesTopologyPackage.SetWindow(view, hiwin, lowin);
|
|
}
|
|
};
|
|
}
|
|
};
|
|
|
|
myView3d.addMouseListener(this);
|
|
myView3d.addMouseMotionListener(this);
|
|
|
|
|
|
// Layout
|
|
//------------------------------------------
|
|
mainPanel.add(myView3d, new GridBagConstraints(0, 0, 1, 1, 1.0, 1.0,
|
|
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
|
new Insets(0, 0, 0, 0), 0, 0));
|
|
|
|
return mainPanel;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------//
|
|
public Component createToolbar()
|
|
{
|
|
JToolBar tools = (JToolBar) super.createToolbar();
|
|
|
|
ButtonGroup group = new ButtonGroup();
|
|
Insets margin = new Insets(1, 1, 1, 1);
|
|
JButton button;
|
|
|
|
button = new HeavyButton(imgValid);
|
|
button.setToolTipText(resGui.getString("TT-Valid"));
|
|
button.setActionCommand("Valid");
|
|
button.addActionListener(this);
|
|
button.setMargin(margin);
|
|
tools.add(button);
|
|
|
|
tools.addSeparator();;
|
|
|
|
button = new HeavyButton(imgLinear);
|
|
button.setToolTipText(resGui.getString("TT-Linear"));
|
|
button.setActionCommand("Linear");
|
|
button.addActionListener(this);
|
|
button.setMargin(margin);
|
|
tools.add(button);
|
|
|
|
button = new HeavyButton(imgSurface);
|
|
button.setToolTipText(resGui.getString("TT-Surface"));
|
|
button.setActionCommand("Surface");
|
|
button.addActionListener(this);
|
|
button.setMargin(margin);
|
|
tools.add(button);
|
|
|
|
button = new HeavyButton(imgVolume);
|
|
button.setToolTipText(resGui.getString("TT-Volume"));
|
|
button.setActionCommand("Volume");
|
|
button.addActionListener(this);
|
|
button.setMargin(margin);
|
|
tools.add(button);
|
|
|
|
return tools;
|
|
}
|
|
|
|
|
|
//=======================================================================//
|
|
// Actions //
|
|
//=======================================================================//
|
|
public void postProcess(TCollection_AsciiString message, String title)
|
|
{
|
|
myView3d.getViewPort().FitAll();
|
|
|
|
String text = message.ToCString().GetValue();
|
|
text += "\n-------------------- END ----------------------\n";
|
|
|
|
traceMessage(text, title);
|
|
}
|
|
|
|
//=======================================================================//
|
|
// Tests
|
|
//=======================================================================//
|
|
public void onValid()
|
|
{
|
|
TCollection_AsciiString message = new TCollection_AsciiString();
|
|
TCollection_AsciiString result = new TCollection_AsciiString();
|
|
SamplesTopologyPackage.Validity(myAISContext, message, result);
|
|
|
|
postProcess(message, resGui.getString("Dlg-Valid"));
|
|
|
|
JOptionPane.showMessageDialog(this, result.ToCString().GetValue());
|
|
}
|
|
|
|
|
|
//=======================================================================//
|
|
public void onLinear()
|
|
{
|
|
TCollection_AsciiString message = new TCollection_AsciiString();
|
|
TCollection_AsciiString result = new TCollection_AsciiString();
|
|
SamplesTopologyPackage.LinearProp(myAISContext, message, result);
|
|
|
|
postProcess(message, resGui.getString("Dlg-Linear"));
|
|
|
|
JOptionPane.showMessageDialog(this, result.ToCString().GetValue());
|
|
}
|
|
|
|
|
|
//=======================================================================//
|
|
public void onSurface()
|
|
{
|
|
TCollection_AsciiString message = new TCollection_AsciiString();
|
|
TCollection_AsciiString result = new TCollection_AsciiString();
|
|
SamplesTopologyPackage.SurfaceProp(myAISContext, message, result);
|
|
|
|
postProcess(message, resGui.getString("Dlg-Surface"));
|
|
|
|
JOptionPane.showMessageDialog(this, result.ToCString().GetValue());
|
|
}
|
|
|
|
|
|
//=======================================================================//
|
|
public void onVolume()
|
|
{
|
|
TCollection_AsciiString message = new TCollection_AsciiString();
|
|
TCollection_AsciiString result = new TCollection_AsciiString();
|
|
SamplesTopologyPackage.VolumeProp(myAISContext, message, result);
|
|
|
|
postProcess(message, resGui.getString("Dlg-Volume"));
|
|
|
|
JOptionPane.showMessageDialog(this, result.ToCString().GetValue());
|
|
}
|
|
|
|
|
|
//=======================================================================//
|
|
// ActionListener interface
|
|
//=======================================================================//
|
|
public void actionPerformed(ActionEvent e)
|
|
{
|
|
String command = e.getActionCommand();
|
|
|
|
if (command.equals("Valid")) onValid();
|
|
else if (command.equals("Linear")) onLinear();
|
|
else if (command.equals("Surface")) onSurface();
|
|
else if (command.equals("Volume")) onVolume();
|
|
}
|
|
|
|
//=======================================================================//
|
|
// MouseListener interface
|
|
//=======================================================================//
|
|
public void mouseClicked(MouseEvent e)
|
|
{
|
|
}
|
|
|
|
public void mousePressed(MouseEvent e)
|
|
{
|
|
if (SwingUtilities.isLeftMouseButton(e))
|
|
{
|
|
startX = e.getX();
|
|
startY = e.getY();
|
|
Object src = e.getSource();
|
|
|
|
if (src == myView3d)
|
|
{
|
|
V3d_View view3d = ((CASCADEView3d) myView3d.getViewPort()).getView();
|
|
if (view3d != null)
|
|
myAISContext.MoveTo(startX, startY, view3d);
|
|
}
|
|
}
|
|
else if (SwingUtilities.isRightMouseButton(e))
|
|
{
|
|
if (e.getSource() == myView3d)
|
|
{
|
|
PopupMenu defPopup = myView3d.getDefaultPopup();
|
|
myView3d.add(defPopup);
|
|
defPopup.show(myView3d, e.getX(), e.getY() + 30);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void mouseReleased(MouseEvent e)
|
|
{
|
|
if (SwingUtilities.isLeftMouseButton(e))
|
|
{
|
|
Object src = e.getSource();
|
|
|
|
if (Dragged)
|
|
{
|
|
if (src == myView3d)
|
|
{
|
|
V3d_View view3d = ((CASCADEView3d) myView3d.getViewPort()).getView();
|
|
if (view3d != null)
|
|
{
|
|
if (e.isShiftDown())
|
|
myAISContext.ShiftSelect(startX, startY, e.getX(), e.getY(), view3d, true);
|
|
else
|
|
myAISContext.Select(startX, startY, e.getX(), e.getY(), view3d, true);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (src == myView3d)
|
|
{
|
|
if (e.isShiftDown())
|
|
myAISContext.ShiftSelect(true);
|
|
else
|
|
myAISContext.Select(true);
|
|
}
|
|
}
|
|
Dragged = false;
|
|
}
|
|
}
|
|
|
|
public void mouseEntered(MouseEvent e)
|
|
{
|
|
}
|
|
|
|
public void mouseExited(MouseEvent e)
|
|
{
|
|
}
|
|
|
|
//=======================================================================//
|
|
// MouseMotionListener interface
|
|
//=======================================================================//
|
|
public void mouseDragged(MouseEvent e)
|
|
{
|
|
if (SwingUtilities.isLeftMouseButton(e) &&
|
|
e.getSource() == myView3d)
|
|
Dragged = true;
|
|
}
|
|
|
|
public void mouseMoved(MouseEvent e)
|
|
{
|
|
Object src = e.getSource();
|
|
|
|
if (src == myView3d)
|
|
{
|
|
V3d_View view3d = ((CASCADEView3d) myView3d.getViewPort()).getView();
|
|
if (myAISContext != null && view3d != null)
|
|
myAISContext.MoveTo(e.getX(), e.getY(), view3d);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|