diff --git a/Fltk/Callbacks.cpp b/Fltk/Callbacks.cpp index 5c66f87f789fba373fef09b63de796e201255042..dcd65834f642ca0a5e0b663b00d52e393608140a 100644 --- a/Fltk/Callbacks.cpp +++ b/Fltk/Callbacks.cpp @@ -1,4 +1,4 @@ -// $Id: Callbacks.cpp,v 1.528 2007-05-04 18:27:53 geuzaine Exp $ +// $Id: Callbacks.cpp,v 1.529 2007-05-07 08:36:36 geuzaine Exp $ // // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // @@ -4398,12 +4398,12 @@ void view_save_stl_cb(CALLBACK_ARGS) void view_save_txt_cb(CALLBACK_ARGS) { - _view_save_as((int)(long)data, "Save As Text", 4); + _view_save_as((int)(long)data, "Save As Raw Text", 4); } void view_save_msh_cb(CALLBACK_ARGS) { - _view_save_as((int)(long)data, "Save As Mesh", 5); + _view_save_as((int)(long)data, "Save As Gmsh Mesh", 5); } void view_alias_cb(CALLBACK_ARGS) diff --git a/Fltk/GUI.cpp b/Fltk/GUI.cpp index 3eedc3d565bba30e391e8697f1e46f6239603417..38274ddb8df5fe415e180269c6a0ce829952d9b5 100644 --- a/Fltk/GUI.cpp +++ b/Fltk/GUI.cpp @@ -1,4 +1,4 @@ -// $Id: GUI.cpp,v 1.613 2007-05-05 11:19:51 geuzaine Exp $ +// $Id: GUI.cpp,v 1.614 2007-05-07 08:36:36 geuzaine Exp $ // // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // @@ -2073,7 +2073,7 @@ void GUI::create_option_window() Fl_Group *o = new Fl_Group(L + WB, WB + BH, width - 2 * WB, height - 2 * WB - BH, "General"); o->hide(); - geo_value[2] = new Fl_Value_Input(L + 2 * WB, 2 * WB + 1 * BH, IW, BH, "Geometrical tolerance"); + geo_value[2] = new Fl_Value_Input(L + 2 * WB, 2 * WB + 1 * BH, IW, BH, "Geometry tolerance"); geo_value[2]->align(FL_ALIGN_RIGHT); geo_value[2]->callback(geometry_options_ok_cb); diff --git a/Plugin/Makefile b/Plugin/Makefile index 24555e4f1f9c817463f5a19b5251f088418e02cb..f0eebe9a721589795394751974899ab7484559f3 100644 --- a/Plugin/Makefile +++ b/Plugin/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.123 2007-05-05 10:24:53 geuzaine Exp $ +# $Id: Makefile,v 1.124 2007-05-07 08:36:36 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -40,7 +40,7 @@ SRC = Plugin.cpp\ Skin.cpp\ Extract.cpp ExtractElements.cpp ExtractEdges.cpp\ MakeSimplex.cpp\ - Evaluate.cpp\ + Evaluate.cpp FieldView.cpp\ Integrate.cpp Gradient.cpp Curl.cpp Divergence.cpp\ Annotate.cpp Remove.cpp\ Probe.cpp\ @@ -80,7 +80,7 @@ Plugin.o: Plugin.cpp Plugin.h ../Common/Options.h ../Common/Message.h \ MakeSimplex.h Smooth.h Transform.h Triangulate.h Warp.h \ SphericalRaise.h Eigenvectors.h Eigenvalues.h Lambda2.h Evaluate.h \ ../Common/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h \ - Probe.h ../Common/Context.h + Probe.h FieldView.h ../Common/Context.h Levelset.o: Levelset.cpp Levelset.h Plugin.h ../Common/Options.h \ ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \ ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \ @@ -225,6 +225,24 @@ Evaluate.o: Evaluate.cpp Plugin.h ../Common/Options.h ../Common/Message.h \ ../Common/AdaptiveViews.h ../Common/GmshMatrix.h Evaluate.h \ ../Common/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h \ ../Common/Context.h +FieldView.o: FieldView.cpp Plugin.h ../Common/Options.h \ + ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \ + ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \ + ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \ + ../Mesh/Field.h ../Geo/Geo.h ../Common/GmshDefines.h \ + ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h ../Geo/SPoint2.h \ + ../Geo/SPoint3.h ../Geo/SVector3.h ../Geo/SPoint3.h \ + ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../DataStr/Tree.h \ + ../DataStr/avl.h ../Geo/SPoint2.h ../Geo/ExtrudeParams.h ../Geo/GEdge.h \ + ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ + ../Geo/SBoundingBox3d.h ../Geo/GVertex.h ../Geo/GEntity.h \ + ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/GPoint.h ../Geo/SPoint2.h \ + ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/MElement.h \ + ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ + ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ + ../Common/Context.h ../Geo/ExtrudeParams.h ../Common/OctreePost.h \ + ../Common/Octree.h ../Common/OctreeInternals.h FieldView.h \ + ../Common/ShapeFunctions.h Integrate.o: Integrate.cpp Plugin.h ../Common/Options.h \ ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \ ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \