Skip to content

Commit

Permalink
Export LAS
Browse files Browse the repository at this point in the history
  • Loading branch information
fbecir committed Feb 28, 2024
1 parent 57bf9d0 commit 0bde336
Show file tree
Hide file tree
Showing 14 changed files with 490 additions and 11 deletions.
6 changes: 6 additions & 0 deletions IGNMap/Builds/LinuxMakefile/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ OBJECTS_APP := \
$(JUCE_OBJDIR)/DtmLayersViewer_98c8b452.o \
$(JUCE_OBJDIR)/DtmShader_bfa70483.o \
$(JUCE_OBJDIR)/ExportImageDlg_2dc44e1.o \
$(JUCE_OBJDIR)/ExportLasDlg_f653953e.o \
$(JUCE_OBJDIR)/GeoBase_343e9923.o \
$(JUCE_OBJDIR)/ImageLayersViewer_843f60d0.o \
$(JUCE_OBJDIR)/ImageOptionsViewer_66bba7be.o \
Expand Down Expand Up @@ -1251,6 +1252,11 @@ $(JUCE_OBJDIR)/ExportImageDlg_2dc44e1.o: ../../Source/ExportImageDlg.cpp
@echo "Compiling ExportImageDlg.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"

$(JUCE_OBJDIR)/ExportLasDlg_f653953e.o: ../../Source/ExportLasDlg.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling ExportLasDlg.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"

$(JUCE_OBJDIR)/GeoBase_343e9923.o: ../../Source/GeoBase.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling GeoBase.cpp"
Expand Down
Binary file modified IGNMap/Builds/LinuxMakefile/build/IGNMap
Binary file not shown.
2 changes: 2 additions & 0 deletions IGNMap/Builds/VisualStudio2022/IGNMap_App.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ COPY ..\..\Images\*.* .\x64\Release\App\Images
<ClCompile Include="..\..\Source\DtmLayersViewer.cpp"/>
<ClCompile Include="..\..\Source\DtmShader.cpp"/>
<ClCompile Include="..\..\Source\ExportImageDlg.cpp"/>
<ClCompile Include="..\..\Source\ExportLasDlg.cpp"/>
<ClCompile Include="..\..\Source\GeoBase.cpp"/>
<ClCompile Include="..\..\Source\ImageLayersViewer.cpp"/>
<ClCompile Include="..\..\Source\ImageOptionsViewer.cpp"/>
Expand Down Expand Up @@ -1901,6 +1902,7 @@ COPY ..\..\Images\*.* .\x64\Release\App\Images
<ClInclude Include="..\..\Source\DtmLayersViewer.h"/>
<ClInclude Include="..\..\Source\DtmShader.h"/>
<ClInclude Include="..\..\Source\ExportImageDlg.h"/>
<ClInclude Include="..\..\Source\ExportLasDlg.h"/>
<ClInclude Include="..\..\Source\GeoBase.h"/>
<ClInclude Include="..\..\Source\ImageLayersViewer.h"/>
<ClInclude Include="..\..\Source\ImageOptionsViewer.h"/>
Expand Down
6 changes: 6 additions & 0 deletions IGNMap/Builds/VisualStudio2022/IGNMap_App.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -847,6 +847,9 @@
<ClCompile Include="..\..\Source\ExportImageDlg.cpp">
<Filter>IGNMap\Source</Filter>
</ClCompile>
<ClCompile Include="..\..\Source\ExportLasDlg.cpp">
<Filter>IGNMap\Source</Filter>
</ClCompile>
<ClCompile Include="..\..\Source\GeoBase.cpp">
<Filter>IGNMap\Source</Filter>
</ClCompile>
Expand Down Expand Up @@ -2952,6 +2955,9 @@
<ClInclude Include="..\..\Source\ExportImageDlg.h">
<Filter>IGNMap\Source</Filter>
</ClInclude>
<ClInclude Include="..\..\Source\ExportLasDlg.h">
<Filter>IGNMap\Source</Filter>
</ClInclude>
<ClInclude Include="..\..\Source\GeoBase.h">
<Filter>IGNMap\Source</Filter>
</ClInclude>
Expand Down
Binary file added IGNMap/Builds/VisualStudio2022/icon.ico
Binary file not shown.
Binary file modified IGNMap/Builds/VisualStudio2022/x64/Release/App/IGNMap.exe
Binary file not shown.
3 changes: 3 additions & 0 deletions IGNMap/IGNMap.jucer
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,9 @@
file="Source/ExportImageDlg.cpp"/>
<FILE id="bJ7a4v" name="ExportImageDlg.h" compile="0" resource="0"
file="Source/ExportImageDlg.h"/>
<FILE id="WZYtOP" name="ExportLasDlg.cpp" compile="1" resource="0"
file="Source/ExportLasDlg.cpp"/>
<FILE id="M0CWGn" name="ExportLasDlg.h" compile="0" resource="0" file="Source/ExportLasDlg.h"/>
<FILE id="MWj6Zn" name="GeoBase.cpp" compile="1" resource="0" file="Source/GeoBase.cpp"/>
<FILE id="nrp2RE" name="GeoBase.h" compile="0" resource="0" file="Source/GeoBase.h"/>
<FILE id="LKaR73" name="ImageLayersViewer.cpp" compile="1" resource="0"
Expand Down
2 changes: 1 addition & 1 deletion IGNMap/Source/ExportImageDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ ExportImageDlg::ExportImageDlg(XGeoBase* base, double xmin, double ymin, double
m_edtFilename.setText("");
m_edtFilename.setReadOnly(true);

grabKeyboardFocus();
getWantsKeyboardFocus();
}

//==============================================================================
Expand Down
Loading

0 comments on commit 0bde336

Please sign in to comment.