├── README ├── doc ├── examples │ └── CppApiExamples │ │ ├── HelloWorldExample.cpp │ │ ├── InputExample.cpp │ │ ├── ModelExample.cpp │ │ ├── PaintExample.cpp │ │ ├── PluginExample │ │ ├── etc │ │ │ ├── emCore │ │ │ │ └── FpPlugins │ │ │ │ │ └── PlEx.emFpPlugin │ │ │ └── emMain │ │ │ │ ├── VcItemFiles │ │ │ │ └── PlEx1.PlEx │ │ │ │ └── VcItems │ │ │ │ └── PlEx1.emVcItem │ │ ├── etcw │ │ │ ├── emCore │ │ │ │ └── FpPlugins │ │ │ │ │ └── PlEx.emFpPlugin │ │ │ └── emMain │ │ │ │ ├── VcItemFiles │ │ │ │ └── PlEx1.PlEx │ │ │ │ └── VcItems │ │ │ │ └── PlEx1.emVcItem │ │ ├── makers │ │ │ └── PlEx.maker.pm │ │ └── src │ │ │ └── PlEx │ │ │ └── PlEx.cpp │ │ ├── README │ │ ├── SignalExample.cpp │ │ ├── SimpleAnimationExample.cpp │ │ ├── ToolkitExample.cpp │ │ ├── TreeExpansionExample.cpp │ │ └── run-example.pl ├── html │ ├── AdvancedConfiguration.html │ ├── ChangeLog.html │ ├── CppApiRef │ │ ├── emCore_emATMatrix_h.html │ │ ├── emCore_emAnything_h.html │ │ ├── emCore_emArray_h.html │ │ ├── emCore_emAvlTreeMap_h.html │ │ ├── emCore_emAvlTreeSet_h.html │ │ ├── emCore_emAvlTree_h.html │ │ ├── emCore_emBorder_h.html │ │ ├── emCore_emButton_h.html │ │ ├── emCore_emCheckBox_h.html │ │ ├── emCore_emCheckButton_h.html │ │ ├── emCore_emClipRects_h.html │ │ ├── emCore_emClipboard_h.html │ │ ├── emCore_emColorField_h.html │ │ ├── emCore_emColor_h.html │ │ ├── emCore_emConfigModel_h.html │ │ ├── emCore_emContext_h.html │ │ ├── emCore_emCoreConfigPanel_h.html │ │ ├── emCore_emCoreConfig_h.html │ │ ├── emCore_emCrossPtr_h.html │ │ ├── emCore_emCursor_h.html │ │ ├── emCore_emDialog_h.html │ │ ├── emCore_emEngine_h.html │ │ ├── emCore_emErrorPanel_h.html │ │ ├── emCore_emFileDialog_h.html │ │ ├── emCore_emFileModel_h.html │ │ ├── emCore_emFilePanel_h.html │ │ ├── emCore_emFileSelectionBox_h.html │ │ ├── emCore_emFpPlugin_h.html │ │ ├── emCore_emGUIFramework_h.html │ │ ├── emCore_emImageFile_h.html │ │ ├── emCore_emImage_h.html │ │ ├── emCore_emInput_h.html │ │ ├── emCore_emInstallInfo_h.html │ │ ├── emCore_emLabel_h.html │ │ ├── emCore_emLinearGroup_h.html │ │ ├── emCore_emLinearLayout_h.html │ │ ├── emCore_emListBox_h.html │ │ ├── emCore_emList_h.html │ │ ├── emCore_emLook_h.html │ │ ├── emCore_emMiniIpc_h.html │ │ ├── emCore_emModel_h.html │ │ ├── emCore_emPackGroup_h.html │ │ ├── emCore_emPackLayout_h.html │ │ ├── emCore_emPainter_h.html │ │ ├── emCore_emPanel_h.html │ │ ├── emCore_emPriSchedAgent_h.html │ │ ├── emCore_emProcess_h.html │ │ ├── emCore_emRadioBox_h.html │ │ ├── emCore_emRadioButton_h.html │ │ ├── emCore_emRasterGroup_h.html │ │ ├── emCore_emRasterLayout_h.html │ │ ├── emCore_emRecFileModel_h.html │ │ ├── emCore_emRec_h.html │ │ ├── emCore_emRef_h.html │ │ ├── emCore_emRenderThreadPool_h.html │ │ ├── emCore_emRes_h.html │ │ ├── emCore_emScalarField_h.html │ │ ├── emCore_emScheduler_h.html │ │ ├── emCore_emScreen_h.html │ │ ├── emCore_emSigModel_h.html │ │ ├── emCore_emSignal_h.html │ │ ├── emCore_emSplitter_h.html │ │ ├── emCore_emStd1_h.html │ │ ├── emCore_emStd2_h.html │ │ ├── emCore_emString_h.html │ │ ├── emCore_emStrokeEnd_h.html │ │ ├── emCore_emStroke_h.html │ │ ├── emCore_emSubViewPanel_h.html │ │ ├── emCore_emTextField_h.html │ │ ├── emCore_emTexture_h.html │ │ ├── emCore_emThread_h.html │ │ ├── emCore_emTimer_h.html │ │ ├── emCore_emTmpFile_h.html │ │ ├── emCore_emTunnel_h.html │ │ ├── emCore_emVarModel_h.html │ │ ├── emCore_emVarSigModel_h.html │ │ ├── emCore_emViewAnimator_h.html │ │ ├── emCore_emViewInputFilter_h.html │ │ ├── emCore_emViewRenderer_h.html │ │ ├── emCore_emView_h.html │ │ ├── emCore_emWindowStateSaver_h.html │ │ ├── emCore_emWindow_h.html │ │ ├── index-noframes.html │ │ ├── index.html │ │ ├── script.js │ │ ├── styles.css │ │ ├── tree.html │ │ ├── tree0.html │ │ ├── tree1.html │ │ ├── tree10.html │ │ ├── tree2.html │ │ ├── tree3.html │ │ ├── tree4.html │ │ ├── tree5.html │ │ ├── tree6.html │ │ ├── tree7.html │ │ ├── tree8.html │ │ └── tree9.html │ ├── CppApiTutorial.html │ ├── GeneralUserGuide.html │ ├── InstallAndStart.html │ ├── License.html │ ├── MakeSystem.html │ ├── SystemRequirements.html │ ├── emFileManCustomization.html │ ├── emFileManUserGuide.html │ ├── images │ │ ├── ControlAndContent.png │ │ ├── EngineClasses.png │ │ ├── ModelClassesAndMore.png │ │ ├── MouseFunc1.png │ │ ├── MouseFunc2.png │ │ ├── MouseFunc3.png │ │ ├── MouseFunc4.png │ │ ├── ToolkitClasses.png │ │ └── emFileManOverview.png │ ├── index.html │ └── src │ │ ├── CppApiRef-config.py │ │ ├── cpptohtml.py │ │ └── make-CppApiRef.pl └── pdf │ ├── AdvancedConfiguration.pdf │ ├── ChangeLog.pdf │ ├── GeneralUserGuide.pdf │ ├── InstallAndStart.pdf │ ├── License.pdf │ ├── SystemRequirements.pdf │ ├── emFileManCustomization.pdf │ ├── emFileManUserGuide.pdf │ ├── index.pdf │ └── src │ └── make-pdf.pl ├── eaglemode.sh ├── eaglemode.wsf ├── etc ├── emCore │ └── FpPlugins │ │ ├── SilChess.emFpPlugin │ │ ├── emAv_vlc.emFpPlugin │ │ ├── emAv_xine.emFpPlugin │ │ ├── emBmp.emFpPlugin │ │ ├── emClock.emFpPlugin │ │ ├── emDir.emFpPlugin │ │ ├── emDirStat.emFpPlugin │ │ ├── emFileLink.emFpPlugin │ │ ├── emFractal.emFpPlugin │ │ ├── emGif.emFpPlugin │ │ ├── emHmiDemo.emFpPlugin │ │ ├── emIlbm.emFpPlugin │ │ ├── emJpeg.emFpPlugin │ │ ├── emMines.emFpPlugin │ │ ├── emNetwalk.emFpPlugin │ │ ├── emPcx.emFpPlugin │ │ ├── emPdf.emFpPlugin │ │ ├── emPng.emFpPlugin │ │ ├── emPnm.emFpPlugin │ │ ├── emPs.emFpPlugin │ │ ├── emRas.emFpPlugin │ │ ├── emRgb.emFpPlugin │ │ ├── emStocks.emFpPlugin │ │ ├── emSvg.emFpPlugin │ │ ├── emTestPanel.emFpPlugin │ │ ├── emText.emFpPlugin │ │ ├── emText_Alt.emFpPlugin │ │ ├── emTga.emFpPlugin │ │ ├── emTiff.emFpPlugin │ │ ├── emTmpConv_abiword.emFpPlugin │ │ ├── emTmpConv_archives.emFpPlugin │ │ ├── emTmpConv_dia.emFpPlugin │ │ ├── emTmpConv_dvi.emFpPlugin │ │ ├── emTmpConv_eps.emFpPlugin │ │ ├── emTmpConv_fig.emFpPlugin │ │ ├── emTmpConv_g3.emFpPlugin │ │ ├── emTmpConv_html.emFpPlugin │ │ ├── emTmpConv_iso.emFpPlugin │ │ ├── emTmpConv_pov.emFpPlugin │ │ ├── emTmpConv_rpm.emFpPlugin │ │ ├── emTmpConv_wmf.emFpPlugin │ │ ├── emTmpConv_xwd.emFpPlugin │ │ ├── emTreeDump.emFpPlugin │ │ ├── emWebp.emFpPlugin │ │ ├── emXbm.emFpPlugin │ │ ├── emXpm.emFpPlugin │ │ └── version ├── emFileMan │ └── Commands │ │ ├── Advanced.props │ │ ├── Advanced │ │ ├── SelectRecursively.pl │ │ ├── chmod.pl │ │ ├── chown.pl │ │ ├── grp1.props │ │ └── grp1 │ │ │ ├── CreateISO.pl │ │ │ ├── FileInfo.pl │ │ │ └── touch.pl │ │ ├── AudioVideo.props │ │ ├── AudioVideo │ │ ├── Kaffeine.pl │ │ ├── Totem.pl │ │ ├── VLC.pl │ │ └── xine.pl │ │ ├── Clone.pl │ │ ├── Copy.pl │ │ ├── CopyAs.pl │ │ ├── Delete.pl │ │ ├── Exchange.pl │ │ ├── Graphics.props │ │ ├── Graphics │ │ ├── Dia.pl │ │ ├── Inkscape.pl │ │ ├── TheGIMP.pl │ │ └── Xfig.pl │ │ ├── MorePackUnpack.props │ │ ├── MorePackUnpack │ │ ├── MorePackCommands.props │ │ ├── MorePackCommands │ │ │ ├── Pack7z.pl │ │ │ ├── PackAr.pl │ │ │ ├── PackBz2.pl │ │ │ ├── PackGz.pl │ │ │ ├── PackLzma.pl │ │ │ ├── PackLzo.pl │ │ │ ├── PackTar.pl │ │ │ ├── PackTarLzma.pl │ │ │ ├── PackTarLzo.pl │ │ │ └── PackXz.pl │ │ ├── Pack.pl │ │ ├── UnpackInPlace.pl │ │ └── UnpackNewDir.pl │ │ ├── Move.pl │ │ ├── MoveAs.pl │ │ ├── NewDir.pl │ │ ├── NewFile.pl │ │ ├── PackTarBz2.pl │ │ ├── PackTarGz.pl │ │ ├── PackTarXz.pl │ │ ├── PackZip.pl │ │ ├── PlainText.props │ │ ├── PlainText │ │ ├── Kate.pl │ │ ├── Meld.pl │ │ ├── gedit.pl │ │ ├── grp1.props │ │ └── grp1 │ │ │ ├── diff.pl │ │ │ ├── grep.pl │ │ │ ├── grepi.pl │ │ │ └── wc.pl │ │ ├── Rename.pl │ │ ├── Run.props │ │ ├── Run │ │ ├── Run.pl │ │ ├── RunInTerminal.pl │ │ ├── RunOnSource.pl │ │ └── RunOnSourceInTerminal.pl │ │ ├── StructuredText.props │ │ ├── StructuredText │ │ ├── AbiWord.pl │ │ ├── Evince.pl │ │ ├── Firefox.pl │ │ └── LibreOffice.pl │ │ ├── SymLink.pl │ │ ├── Terminal.pl │ │ ├── Unpack.pl │ │ └── version └── emMain │ ├── CreateInitialBookmarks.pl │ ├── VcItemFiles │ ├── AboutEagleMode.emFileLink │ ├── AdvancedConfiguration.emFileLink │ ├── ChangeLog.emFileLink │ ├── Chess1.silchess │ ├── Clock1.emClock │ ├── Clock2.emClock │ ├── DebugTreeDump.emFileLink │ ├── DebugTreeDump.txt │ ├── FS.emFileLink │ ├── GeneralUserGuide.emFileLink │ ├── InstallAndStart.emFileLink │ ├── Julia1.emFractal │ ├── Julia2.emFractal │ ├── Julia3.emFractal │ ├── Julia4.emFractal │ ├── Julia5.emFractal │ ├── Julia6.emFractal │ ├── Julia7.emFractal │ ├── Julia8.emFractal │ ├── Julia9.emFractal │ ├── License.emFileLink │ ├── Mandelbrot.emFractal │ ├── Mines1.emMines │ ├── MultiJulia.emFractal │ ├── Netwalk1.emNetwalk │ ├── Stocks.emStocks │ ├── SystemRequirements.emFileLink │ ├── TestPanel.emTestPanel │ ├── emFileManCustomization.emFileLink │ ├── emFileManUserGuide.emFileLink │ ├── emHmiDemo.emHmiDemo │ ├── emLKC.emFileLink │ └── version │ └── VcItems │ ├── AboutEagleMode.emVcItem │ ├── AdvancedConfiguration.emVcItem │ ├── ChangeLog.emVcItem │ ├── Chess1.emVcItem │ ├── Clock1.emVcItem │ ├── Clock2.emVcItem │ ├── DebugTreeDump.emVcItem │ ├── DebugTreeDumpText.emVcItem │ ├── FS.emVcItem │ ├── GeneralUserGuide.emVcItem │ ├── InstallAndStart.emVcItem │ ├── Julia1.emVcItem │ ├── Julia2.emVcItem │ ├── Julia3.emVcItem │ ├── Julia4.emVcItem │ ├── Julia5.emVcItem │ ├── Julia6.emVcItem │ ├── Julia7.emVcItem │ ├── Julia8.emVcItem │ ├── Julia9.emVcItem │ ├── License.emVcItem │ ├── Mandelbrot.emVcItem │ ├── Mines1.emVcItem │ ├── MultiJulia.emVcItem │ ├── Netwalk1.emVcItem │ ├── Stocks.emVcItem │ ├── SystemRequirements.emVcItem │ ├── TestPanel.emVcItem │ ├── emFileManCustomization.emVcItem │ ├── emFileManUserGuide.emVcItem │ ├── emHmiDemo.emVcItem │ ├── emLKC.emVcItem │ └── version ├── etcw ├── emCore │ └── FpPlugins │ │ ├── SilChess.emFpPlugin │ │ ├── emAv_vlc.emFpPlugin │ │ ├── emBmp.emFpPlugin │ │ ├── emClock.emFpPlugin │ │ ├── emDir.emFpPlugin │ │ ├── emDirStat.emFpPlugin │ │ ├── emDiskDrives.emFpPlugin │ │ ├── emFileLink.emFpPlugin │ │ ├── emFractal.emFpPlugin │ │ ├── emGif.emFpPlugin │ │ ├── emHmiDemo.emFpPlugin │ │ ├── emIlbm.emFpPlugin │ │ ├── emJpeg.emFpPlugin │ │ ├── emMines.emFpPlugin │ │ ├── emNetwalk.emFpPlugin │ │ ├── emPcx.emFpPlugin │ │ ├── emPdf.emFpPlugin │ │ ├── emPng.emFpPlugin │ │ ├── emPnm.emFpPlugin │ │ ├── emPs.emFpPlugin │ │ ├── emRas.emFpPlugin │ │ ├── emRgb.emFpPlugin │ │ ├── emStocks.emFpPlugin │ │ ├── emSvg.emFpPlugin │ │ ├── emTestPanel.emFpPlugin │ │ ├── emText.emFpPlugin │ │ ├── emText_Alt.emFpPlugin │ │ ├── emTga.emFpPlugin │ │ ├── emTiff.emFpPlugin │ │ ├── emTmpConv_archives.emFpPlugin │ │ ├── emTreeDump.emFpPlugin │ │ ├── emWebp.emFpPlugin │ │ ├── emXbm.emFpPlugin │ │ ├── emXpm.emFpPlugin │ │ └── version ├── emFileMan │ └── Commands │ │ ├── Attributes.js │ │ ├── Clone.js │ │ ├── Command.js │ │ ├── Copy.js │ │ ├── CopyAs.js │ │ ├── Delete.js │ │ ├── Exchange.js │ │ ├── MorePackUnpack.props │ │ ├── MorePackUnpack │ │ ├── MorePackCommands.props │ │ ├── MorePackCommands │ │ │ ├── Pack7z.js │ │ │ ├── PackBz2.js │ │ │ ├── PackGz.js │ │ │ ├── PackLzma.js │ │ │ ├── PackTar.js │ │ │ ├── PackTarLzma.js │ │ │ └── PackXz.js │ │ ├── Pack.js │ │ ├── UnpackInPlace.js │ │ └── UnpackNewDir.js │ │ ├── Move.js │ │ ├── MoveAs.js │ │ ├── NewDir.js │ │ ├── NewFile.js │ │ ├── OpenOrRun.js │ │ ├── PackTarBz2.js │ │ ├── PackTarGz.js │ │ ├── PackTarXz.js │ │ ├── PackZip.js │ │ ├── PlainText.props │ │ ├── PlainText │ │ ├── Notepad.js │ │ ├── fc.js │ │ ├── findstr.js │ │ └── findstri.js │ │ ├── Rename.js │ │ ├── SelectRecursively.js │ │ ├── Unpack.js │ │ └── version └── emMain │ ├── CreateInitialBookmarks.js │ ├── VcItemFiles │ ├── AboutEagleMode.emFileLink │ ├── AdvancedConfiguration.emFileLink │ ├── ChangeLog.emFileLink │ ├── Chess1.silchess │ ├── Clock1.emClock │ ├── Clock2.emClock │ ├── DebugTreeDump.emFileLink │ ├── DebugTreeDump.txt │ ├── FS.emDiskDrives │ ├── GeneralUserGuide.emFileLink │ ├── InstallAndStart.emFileLink │ ├── Julia1.emFractal │ ├── Julia2.emFractal │ ├── Julia3.emFractal │ ├── Julia4.emFractal │ ├── Julia5.emFractal │ ├── Julia6.emFractal │ ├── Julia7.emFractal │ ├── Julia8.emFractal │ ├── Julia9.emFractal │ ├── License.emFileLink │ ├── Mandelbrot.emFractal │ ├── Mines1.emMines │ ├── MultiJulia.emFractal │ ├── Netwalk1.emNetwalk │ ├── Stocks.emStocks │ ├── SystemRequirements.emFileLink │ ├── TestPanel.emTestPanel │ ├── emFileManCustomization.emFileLink │ ├── emFileManUserGuide.emFileLink │ ├── emHmiDemo.emHmiDemo │ ├── emLKC.emFileLink │ └── version │ └── VcItems │ ├── AboutEagleMode.emVcItem │ ├── AdvancedConfiguration.emVcItem │ ├── ChangeLog.emVcItem │ ├── Chess1.emVcItem │ ├── Clock1.emVcItem │ ├── Clock2.emVcItem │ ├── DebugTreeDump.emVcItem │ ├── DebugTreeDumpText.emVcItem │ ├── FS.emVcItem │ ├── GeneralUserGuide.emVcItem │ ├── InstallAndStart.emVcItem │ ├── Julia1.emVcItem │ ├── Julia2.emVcItem │ ├── Julia3.emVcItem │ ├── Julia4.emVcItem │ ├── Julia5.emVcItem │ ├── Julia6.emVcItem │ ├── Julia7.emVcItem │ ├── Julia8.emVcItem │ ├── Julia9.emVcItem │ ├── License.emVcItem │ ├── Mandelbrot.emVcItem │ ├── Mines1.emVcItem │ ├── MultiJulia.emVcItem │ ├── Netwalk1.emVcItem │ ├── Stocks.emVcItem │ ├── SystemRequirements.emVcItem │ ├── TestPanel.emVcItem │ ├── emFileManCustomization.emVcItem │ ├── emFileManUserGuide.emVcItem │ ├── emHmiDemo.emVcItem │ ├── emLKC.emVcItem │ └── version ├── include ├── SilChess │ ├── SilChessControlPanel.h │ ├── SilChessMachine.h │ ├── SilChessModel.h │ ├── SilChessPanel.h │ └── SilChessRayTracer.h ├── emAv │ ├── emAvClient.h │ ├── emAvFileControlPanel.h │ ├── emAvFileModel.h │ ├── emAvFilePanel.h │ ├── emAvImageConverter.h │ ├── emAvLibDirCfg.h │ ├── emAvServerModel.h │ └── emAvStates.h ├── emBmp │ └── emBmpImageFileModel.h ├── emClock │ ├── emAlarmClockModel.h │ ├── emAlarmClockPanel.h │ ├── emClockDatePanel.h │ ├── emClockFileModel.h │ ├── emClockHandsPanel.h │ ├── emClockPanel.h │ ├── emStopwatchPanel.h │ ├── emTimeZonesModel.h │ └── emWorldClockPanel.h ├── emCore │ ├── emATMatrix.h │ ├── emAnything.h │ ├── emArray.h │ ├── emAvlTree.h │ ├── emAvlTreeMap.h │ ├── emAvlTreeSet.h │ ├── emBorder.h │ ├── emButton.h │ ├── emCheckBox.h │ ├── emCheckButton.h │ ├── emClipRects.h │ ├── emClipboard.h │ ├── emColor.h │ ├── emColorField.h │ ├── emConfigModel.h │ ├── emContext.h │ ├── emCoreConfig.h │ ├── emCoreConfigPanel.h │ ├── emCrossPtr.h │ ├── emCursor.h │ ├── emDialog.h │ ├── emEngine.h │ ├── emErrorPanel.h │ ├── emFileDialog.h │ ├── emFileModel.h │ ├── emFilePanel.h │ ├── emFileSelectionBox.h │ ├── emFontCache.h │ ├── emFpPlugin.h │ ├── emGUIFramework.h │ ├── emGroup.h │ ├── emImage.h │ ├── emImageFile.h │ ├── emInput.h │ ├── emInstallInfo.h │ ├── emLabel.h │ ├── emLinearGroup.h │ ├── emLinearLayout.h │ ├── emList.h │ ├── emListBox.h │ ├── emLook.h │ ├── emMiniIpc.h │ ├── emModel.h │ ├── emPackGroup.h │ ├── emPackLayout.h │ ├── emPainter.h │ ├── emPanel.h │ ├── emPriSchedAgent.h │ ├── emProcess.h │ ├── emRadioBox.h │ ├── emRadioButton.h │ ├── emRasterGroup.h │ ├── emRasterLayout.h │ ├── emRec.h │ ├── emRecFileModel.h │ ├── emRef.h │ ├── emRenderThreadPool.h │ ├── emRes.h │ ├── emScalarField.h │ ├── emScheduler.h │ ├── emScreen.h │ ├── emSigModel.h │ ├── emSignal.h │ ├── emSplitter.h │ ├── emStd1.h │ ├── emStd2.h │ ├── emString.h │ ├── emStroke.h │ ├── emStrokeEnd.h │ ├── emSubViewPanel.h │ ├── emTextField.h │ ├── emTexture.h │ ├── emThread.h │ ├── emTiling.h │ ├── emTimer.h │ ├── emTmpFile.h │ ├── emToolkit.h │ ├── emTunnel.h │ ├── emVarModel.h │ ├── emVarSigModel.h │ ├── emView.h │ ├── emViewAnimator.h │ ├── emViewInputFilter.h │ ├── emViewRenderer.h │ ├── emWindow.h │ └── emWindowStateSaver.h ├── emFileMan │ ├── emDirEntry.h │ ├── emDirEntryAltPanel.h │ ├── emDirEntryPanel.h │ ├── emDirModel.h │ ├── emDirPanel.h │ ├── emDirStatPanel.h │ ├── emFileLinkModel.h │ ├── emFileLinkPanel.h │ ├── emFileManConfig.h │ ├── emFileManControlPanel.h │ ├── emFileManModel.h │ ├── emFileManSelInfoPanel.h │ ├── emFileManTheme.h │ └── emFileManViewConfig.h ├── emFractal │ ├── emFractalFileModel.h │ └── emFractalFilePanel.h ├── emGif │ ├── emGifFileModel.h │ └── emGifFilePanel.h ├── emHmiDemo │ ├── emHmiDemoAnalogDisplay.h │ ├── emHmiDemoButton.h │ ├── emHmiDemoCone.h │ ├── emHmiDemoControls.h │ ├── emHmiDemoConveyor.h │ ├── emHmiDemoFile.h │ ├── emHmiDemoFillIndicator.h │ ├── emHmiDemoFlowIndicator.h │ ├── emHmiDemoMixer.h │ ├── emHmiDemoMonitors.h │ ├── emHmiDemoPanel.h │ ├── emHmiDemoPiece.h │ ├── emHmiDemoPieceGroup.h │ ├── emHmiDemoPump.h │ ├── emHmiDemoStation.h │ └── emHmiDemoTank.h ├── emIlbm │ └── emIlbmImageFileModel.h ├── emJpeg │ └── emJpegImageFileModel.h ├── emMain │ ├── emAutoplay.h │ ├── emBookmarks.h │ ├── emMainConfig.h │ ├── emMainContentPanel.h │ ├── emMainControlPanel.h │ ├── emMainPanel.h │ ├── emMainWindow.h │ ├── emStarFieldPanel.h │ └── emVirtualCosmos.h ├── emMines │ ├── emMinesControlPanel.h │ ├── emMinesFileModel.h │ └── emMinesPanel.h ├── emNetwalk │ ├── emNetwalkControlPanel.h │ ├── emNetwalkModel.h │ └── emNetwalkPanel.h ├── emPcx │ └── emPcxImageFileModel.h ├── emPdf │ ├── emPdfControlPanel.h │ ├── emPdfFileModel.h │ ├── emPdfFilePanel.h │ ├── emPdfPageAreasMap.h │ ├── emPdfPagePanel.h │ ├── emPdfSelection.h │ └── emPdfServerModel.h ├── emPng │ ├── emPngDecode.h │ └── emPngImageFileModel.h ├── emPnm │ └── emPnmImageFileModel.h ├── emPs │ ├── emPsDocument.h │ ├── emPsDocumentPanel.h │ ├── emPsFileModel.h │ ├── emPsFilePanel.h │ ├── emPsPagePanel.h │ └── emPsRenderer.h ├── emRas │ └── emRasImageFileModel.h ├── emRgb │ └── emRgbImageFileModel.h ├── emStocks │ ├── emStocksConfig.h │ ├── emStocksControlPanel.h │ ├── emStocksFetchPricesDialog.h │ ├── emStocksFileModel.h │ ├── emStocksFilePanel.h │ ├── emStocksItemChart.h │ ├── emStocksItemPanel.h │ ├── emStocksListBox.h │ ├── emStocksPricesFetcher.h │ └── emStocksRec.h ├── emSvg │ ├── emSvgFileModel.h │ ├── emSvgFilePanel.h │ └── emSvgServerModel.h ├── emTest │ └── emTestPanel.h ├── emText │ ├── emTextFileControlPanel.h │ ├── emTextFileModel.h │ └── emTextFilePanel.h ├── emTga │ └── emTgaImageFileModel.h ├── emTiff │ └── emTiffImageFileModel.h ├── emTmpConv │ ├── emTmpConvFramePanel.h │ ├── emTmpConvModel.h │ ├── emTmpConvModelClient.h │ └── emTmpConvPanel.h ├── emTreeDump │ ├── emTreeDumpControlPanel.h │ ├── emTreeDumpFileModel.h │ ├── emTreeDumpFilePanel.h │ ├── emTreeDumpRec.h │ ├── emTreeDumpRecPanel.h │ └── emTreeDumpUtil.h ├── emWebp │ └── emWebpImageFileModel.h ├── emWnds │ ├── emWndsClipboard.h │ ├── emWndsScheduler.h │ ├── emWndsScreen.h │ ├── emWndsViewRenderer.h │ └── emWndsWindowPort.h ├── emX11 │ ├── emX11Clipboard.h │ ├── emX11ExtDynamic.h │ ├── emX11Screen.h │ ├── emX11ViewRenderer.h │ └── emX11WindowPort.h ├── emXbm │ └── emXbmImageFileModel.h └── emXpm │ └── emXpmImageFileModel.h ├── make.pl ├── makers ├── SilChess.maker.pm ├── defaults.maker.pm ├── emAv.maker.pm ├── emBmp.maker.pm ├── emClock.maker.pm ├── emCore.maker.pm ├── emFileMan.maker.pm ├── emFractal.maker.pm ├── emGif.maker.pm ├── emHmiDemo.maker.pm ├── emIlbm.maker.pm ├── emJpeg.maker.pm ├── emMain.maker.pm ├── emMines.maker.pm ├── emNetwalk.maker.pm ├── emPcx.maker.pm ├── emPdf.maker.pm ├── emPng.maker.pm ├── emPnm.maker.pm ├── emPs.maker.pm ├── emRas.maker.pm ├── emRgb.maker.pm ├── emSendMiniIpc.maker.pm ├── emShowStdDlg.maker.pm ├── emStocks.maker.pm ├── emSvg.maker.pm ├── emTest.maker.pm ├── emText.maker.pm ├── emTga.maker.pm ├── emTiff.maker.pm ├── emTmpConv.maker.pm ├── emTreeDump.maker.pm ├── emWebp.maker.pm ├── emWnds.maker.pm ├── emX11.maker.pm ├── emXbm.maker.pm ├── emXpm.maker.pm ├── font2em.maker.pm ├── packers │ ├── common.pm │ ├── pack_deb.pl │ ├── pack_ebuild.pl │ ├── pack_exe.pl │ ├── pack_rpm.pl │ ├── pack_sb.pl │ ├── pack_tar-bz2.pl │ ├── pack_tar-gz.pl │ ├── pack_txz.pl │ └── pack_zip.pl ├── unicc │ ├── plugins │ │ ├── unicc_bor.pm │ │ ├── unicc_clang.pm │ │ ├── unicc_gnu.pm │ │ ├── unicc_int.pm │ │ ├── unicc_mic.pm │ │ ├── unicc_sun.pm │ │ └── unicc_wat.pm │ └── unicc.pl └── utils │ ├── MakeCopies.pl │ ├── MakeDirs.pl │ ├── MakeMocs.pl │ └── PkgConfig.pl ├── res ├── emAv │ ├── Masks.tga │ ├── Notes.tga │ ├── Pause.tga │ ├── Play.tga │ ├── PlayFast.tga │ ├── PlaySlow.tga │ ├── Stop.tga │ └── src │ │ ├── Masks.fig │ │ └── Notes.fig ├── emCore │ ├── font │ │ ├── 00000-0001F_128x224_C0Controls_original.tga │ │ ├── 00020-0007F_128x224_BasicLatin_original.tga │ │ ├── 000A0-000FF_128x224_Latin1Supplement_original.tga │ │ ├── 00100-0017F_128x224_LatinExtendedA_original.tga │ │ ├── 00180-0024F_128x224_LatinExtendedB_original.tga │ │ ├── 00370-003FF_128x224_GreekAndCoptic_original.tga │ │ ├── 00400-004FF_128x224_Cyrillic_original.tga │ │ ├── 00500-0052F_128x224_CyrillicSupplement_original.tga │ │ ├── 01E00-01EF9_128x224_LatinExtendedAdditional_original.tga │ │ ├── 02010-0205F_128x224_GeneralPunctuation_original.tga │ │ ├── 020A0-020B5_128x224_CurrencySymbols_original.tga │ │ ├── 02500-0257F_128x224_BoxDrawing_original.tga │ │ ├── 02580-0259F_128x224_BlockElements_original.tga │ │ ├── CostlyChar.tga │ │ └── UnknownChar.tga │ └── toolkit │ │ ├── Button.tga │ │ ├── ButtonBorder.tga │ │ ├── ButtonChecked.tga │ │ ├── ButtonPressed.tga │ │ ├── CheckBox.tga │ │ ├── CheckBoxPressed.tga │ │ ├── CustomRectBorder.tga │ │ ├── Dir.tga │ │ ├── DirUp.tga │ │ ├── GroupBorder.tga │ │ ├── GroupInnerBorder.tga │ │ ├── IOField.tga │ │ ├── PopupBorder.tga │ │ ├── RadioBox.tga │ │ ├── RadioBoxPressed.tga │ │ ├── Splitter.tga │ │ ├── SplitterPressed.tga │ │ ├── Tunnel.tga │ │ └── src │ │ ├── Dir-devel.tga │ │ ├── DirUp-devel.tga │ │ ├── invalpha.pl │ │ ├── toolkit-finalize.pl │ │ ├── toolkit-render.pl │ │ ├── toolkit-set-settings.pl │ │ └── toolkit.blend ├── emFileMan │ ├── icons │ │ ├── aspect_ratio_1.tga │ │ ├── aspect_ratio_2.tga │ │ ├── aspect_ratio_3.tga │ │ ├── clear_selection.tga │ │ ├── copy_names.tga │ │ ├── copy_paths.tga │ │ ├── directories_first.tga │ │ ├── select_all.tga │ │ ├── show_hidden_files.tga │ │ ├── sort_by_class.tga │ │ ├── sort_by_date.tga │ │ ├── sort_by_ending.tga │ │ ├── sort_by_name.tga │ │ ├── sort_by_size.tga │ │ ├── sort_by_version.tga │ │ ├── swap_selection.tga │ │ ├── theme_CardBlue.tga │ │ ├── theme_CardGreen.tga │ │ ├── theme_CardPink.tga │ │ ├── theme_CardSandy.tga │ │ ├── theme_Glass.tga │ │ ├── theme_Metal.tga │ │ ├── theme_Night.tga │ │ ├── theme_Paper.tga │ │ └── theme_Simple.tga │ ├── scripts │ │ ├── cmd-util.js │ │ ├── cmd-util.pl │ │ ├── emArch.js │ │ ├── emArch.sh │ │ └── msleep.js │ └── themes │ │ ├── CardBlue1.emFileManTheme │ │ ├── CardBlue2.emFileManTheme │ │ ├── CardBlue3.emFileManTheme │ │ ├── CardGreen1.emFileManTheme │ │ ├── CardGreen2.emFileManTheme │ │ ├── CardGreen3.emFileManTheme │ │ ├── CardInnerBorder.tga │ │ ├── CardOuterBorder.tga │ │ ├── CardPink1.emFileManTheme │ │ ├── CardPink2.emFileManTheme │ │ ├── CardPink3.emFileManTheme │ │ ├── CardSandy1.emFileManTheme │ │ ├── CardSandy2.emFileManTheme │ │ ├── CardSandy3.emFileManTheme │ │ ├── Glass1.emFileManTheme │ │ ├── Glass2.emFileManTheme │ │ ├── Glass3.emFileManTheme │ │ ├── GlassInnerBorder.tga │ │ ├── GlassOuterBorder.tga │ │ ├── Metal1.emFileManTheme │ │ ├── Metal2.emFileManTheme │ │ ├── Metal3.emFileManTheme │ │ ├── MetalInnerBorder.tga │ │ ├── MetalOuterBorder.tga │ │ ├── Night1.emFileManTheme │ │ ├── Night2.emFileManTheme │ │ ├── Night3.emFileManTheme │ │ ├── NightInnerBorder.tga │ │ ├── NightOuterBorder.tga │ │ ├── Paper1.emFileManTheme │ │ ├── Paper2.emFileManTheme │ │ ├── Paper3.emFileManTheme │ │ ├── PaperBorder.tga │ │ ├── Simple1.emFileManTheme │ │ ├── Simple2.emFileManTheme │ │ ├── Simple3.emFileManTheme │ │ └── src │ │ ├── genCardBlue.pl │ │ ├── genCardGreen.pl │ │ ├── genCardPink.pl │ │ ├── genCardSandy.pl │ │ ├── genGlass.pl │ │ ├── genMetal.pl │ │ ├── genNight.pl │ │ ├── genPaper.pl │ │ ├── genSimple.pl │ │ ├── themes-render.pl │ │ ├── themes-set-settings.pl │ │ └── themes.blend ├── emHmiDemo │ ├── Button │ │ ├── light.tga │ │ ├── off.tga │ │ ├── on.tga │ │ └── src │ │ │ ├── Button.png │ │ │ ├── Button.pov │ │ │ ├── borders.inc │ │ │ ├── light.tga │ │ │ ├── off.tga │ │ │ ├── on.tga │ │ │ └── step4.tga │ ├── Media │ │ ├── circuit.pdf │ │ ├── document.pdf │ │ ├── graph1.pdf │ │ ├── graph2.pdf │ │ ├── src │ │ │ ├── circuit.png │ │ │ ├── document.odt │ │ │ ├── graph1.svg │ │ │ ├── graph2.svg │ │ │ └── table.ods │ │ └── table.pdf │ ├── Monitor │ │ ├── noise.gif │ │ ├── off.gif │ │ ├── pies.gif │ │ └── src │ │ │ ├── noise │ │ │ ├── 00.tga │ │ │ ├── 01.tga │ │ │ ├── 02.tga │ │ │ ├── 03.tga │ │ │ ├── 04.tga │ │ │ ├── 05.tga │ │ │ ├── 06.tga │ │ │ ├── 07.tga │ │ │ ├── 08.tga │ │ │ └── 09.tga │ │ │ └── pies │ │ │ ├── pies.pov │ │ │ └── render-animation.sh │ ├── Pieces │ │ ├── 00.tga │ │ ├── 00mask.tga │ │ ├── 01.tga │ │ ├── 01mask.tga │ │ ├── 02.tga │ │ ├── 02mask.tga │ │ ├── 03.tga │ │ ├── 03mask.tga │ │ ├── 04.tga │ │ ├── 04mask.tga │ │ ├── 05.tga │ │ ├── 05mask.tga │ │ ├── 06.tga │ │ ├── 06mask.tga │ │ ├── 07.tga │ │ ├── 07mask.tga │ │ ├── 08.tga │ │ ├── 08mask.tga │ │ ├── 09.tga │ │ ├── 09mask.tga │ │ ├── 10.tga │ │ ├── 10mask.tga │ │ ├── 11.tga │ │ ├── 11mask.tga │ │ ├── 12.tga │ │ ├── 12mask.tga │ │ ├── 13.tga │ │ ├── 13mask.tga │ │ ├── 14.tga │ │ ├── 14mask.tga │ │ ├── 15.tga │ │ ├── 15mask.tga │ │ ├── 16.tga │ │ ├── 16mask.tga │ │ ├── 17.tga │ │ ├── 17mask.tga │ │ ├── 18.tga │ │ ├── 18mask.tga │ │ ├── 19.tga │ │ ├── 19mask.tga │ │ ├── 20.tga │ │ ├── 20mask.tga │ │ └── src │ │ │ ├── layout.tga │ │ │ ├── pov │ │ │ ├── borders.inc │ │ │ ├── circle100.pov │ │ │ ├── circle200.pov │ │ │ ├── circle300.pov │ │ │ ├── circle400.pov │ │ │ ├── circle500.pov │ │ │ ├── circle600.pov │ │ │ ├── circle700.pov │ │ │ ├── common.inc │ │ │ ├── corner.pov │ │ │ ├── pipe.pov │ │ │ ├── rect.pov │ │ │ ├── rect30.pov │ │ │ ├── rect45.pov │ │ │ ├── rect60.pov │ │ │ └── render.sh │ │ │ ├── step1.tga │ │ │ ├── step1shadow.tga │ │ │ ├── step2.tga │ │ │ └── step2mask.tga │ ├── RoundBorder.tga │ └── TickMark.tga ├── emLKC │ ├── README │ ├── emLKC.patch.bz2 │ ├── screenshot-1.jpg │ ├── screenshot-2.jpg │ └── screenshot-3.jpg ├── emMain │ ├── Autoplay.tga │ ├── CloseWindow.tga │ ├── ContinueLastAutoplay.tga │ ├── ControlEdges.tga │ ├── Fullscreen.tga │ ├── NewWindow.tga │ ├── Quit.tga │ ├── ReloadFiles.tga │ ├── SkipToNext.tga │ ├── SkipToPrev.tga │ ├── Slider.tga │ ├── Star.tga │ ├── VcItemInnerBorder.tga │ ├── VcItemOuterBorder.tga │ └── src │ │ ├── ControlEdges.pov │ │ ├── Slider.pov │ │ ├── VcItemInnerBorder.pov │ │ ├── VcItemOuterBorder.pov │ │ └── borders.inc ├── emNetwalk │ ├── Background.tga │ ├── Border.tga │ ├── Lights.tga │ ├── Marks.tga │ ├── NoBorder.tga │ ├── Pipes.tga │ └── Symbols.tga ├── emPs │ ├── page_shadow.tga │ ├── rendering.tga │ ├── src │ │ └── hourglass.pov │ └── waiting.tga ├── emStocks │ └── scripts │ │ ├── alphavantage_co.pl │ │ ├── polygon_io.pl │ │ └── random.pl └── icons │ ├── 3d_model.tga │ ├── anchor.tga │ ├── archive.tga │ ├── audio.tga │ ├── back_up.tga │ ├── back_up_as.tga │ ├── ball.tga │ ├── bench_vice.tga │ ├── book.tga │ ├── books.tga │ ├── books2.tga │ ├── burn_cd.tga │ ├── camera.tga │ ├── castle.tga │ ├── cd-rom.tga │ ├── chain.tga │ ├── cherry.tga │ ├── clock.tga │ ├── clone_file.tga │ ├── cloud.tga │ ├── copy_file.tga │ ├── copy_file_as.tga │ ├── create_iso_file.tga │ ├── decrypt.tga │ ├── decrypt_file.tga │ ├── delete_file.tga │ ├── diff.tga │ ├── diff_to_file.tga │ ├── directory.tga │ ├── disk_free.tga │ ├── dna.tga │ ├── document.tga │ ├── documents.tga │ ├── download.tga │ ├── drawing.tga │ ├── eaglemode.ico │ ├── eaglemode.tga │ ├── eaglemode32.png │ ├── eaglemode48.png │ ├── eaglemode48.tga │ ├── eaglemode96.png │ ├── earth.tga │ ├── edit_encrypted.tga │ ├── em-dialog48.tga │ ├── encrypt.tga │ ├── encrypt_file.tga │ ├── error_unknown_icon.tga │ ├── exchange_files.tga │ ├── file.tga │ ├── file_attributes.tga │ ├── file_info.tga │ ├── file_owner.tga │ ├── file_permissions.tga │ ├── file_time.tga │ ├── flower.tga │ ├── fractal.tga │ ├── grep.tga │ ├── grepi.tga │ ├── hard_disk.tga │ ├── heart.tga │ ├── help.tga │ ├── home.tga │ ├── iso_file.tga │ ├── mines.tga │ ├── move_file.tga │ ├── move_file_as.tga │ ├── netwalk.tga │ ├── new_dir.tga │ ├── new_file.tga │ ├── notepad.tga │ ├── open_or_run.tga │ ├── pack_file.tga │ ├── pack_file_7z.tga │ ├── pack_file_ar.tga │ ├── pack_file_bz2.tga │ ├── pack_file_gz.tga │ ├── pack_file_lzma.tga │ ├── pack_file_lzo.tga │ ├── pack_file_tar.tga │ ├── pack_file_tar_bz2.tga │ ├── pack_file_tar_gz.tga │ ├── pack_file_tar_lzma.tga │ ├── pack_file_tar_lzo.tga │ ├── pack_file_tar_xz.tga │ ├── pack_file_xz.tga │ ├── pack_file_zip.tga │ ├── package.tga │ ├── patch_file.tga │ ├── picture.tga │ ├── piggy_bank.tga │ ├── plain_text.tga │ ├── rename_file.tga │ ├── root.tga │ ├── rotate_left.tga │ ├── rotate_right.tga │ ├── run.tga │ ├── run_in_terminal.tga │ ├── run_on_source.tga │ ├── run_on_source_in_terminal.tga │ ├── saturn.tga │ ├── select_files_recursively.tga │ ├── silchess.tga │ ├── src │ ├── eagle.fig │ ├── icons-finalize.pl │ ├── icons-render.pl │ ├── icons-set-settings.pl │ ├── icons.blend │ ├── tx_drawing.png │ ├── tx_earth.png │ └── tx_picture.png │ ├── ssd.tga │ ├── star.tga │ ├── storage.tga │ ├── sym_link.tga │ ├── teddy.tga │ ├── terminal.tga │ ├── text_editor.tga │ ├── thirdparty │ ├── README │ ├── abiword.tga │ ├── dia.tga │ ├── evince.tga │ ├── firefox.tga │ ├── gedit.tga │ ├── gimp.tga │ ├── inkscape.tga │ ├── kaffeine.tga │ ├── kate.tga │ ├── libreoffice.tga │ ├── meld.tga │ ├── totem.tga │ ├── vlc.tga │ ├── xfig.tga │ └── xine.tga │ ├── treasure_chest.tga │ ├── unpack_file.tga │ ├── unpack_file_in_new_dir.tga │ ├── unpack_file_in_place.tga │ ├── upload.tga │ ├── usb_flash_drive.tga │ ├── version_add.tga │ ├── version_cancel.tga │ ├── version_checkout.tga │ ├── version_commit.tga │ ├── version_copy.tga │ ├── version_delete.tga │ ├── version_diff.tga │ ├── version_info.tga │ ├── version_list.tga │ ├── version_merge.tga │ ├── version_move.tga │ ├── version_props.tga │ ├── version_pull.tga │ ├── version_push.tga │ ├── version_rename.tga │ ├── version_search.tga │ ├── version_time.tga │ ├── version_update.tga │ ├── video.tga │ ├── virtual_cosmos.tga │ ├── wc.tga │ └── wrench.tga └── src ├── SilChess ├── SilChess.cpp ├── SilChessControlPanel.cpp ├── SilChessFpPlugin.cpp ├── SilChessMachine.cpp ├── SilChessModel.cpp ├── SilChessPanel.cpp ├── SilChessRayTracer.cpp ├── XSilChess.cpp └── graphics │ ├── board.bmp │ └── pieces.pov ├── emAv ├── emAvClient.cpp ├── emAvFileControlPanel.cpp ├── emAvFileModel.cpp ├── emAvFilePanel.cpp ├── emAvFpPlugin.cpp ├── emAvImageConverter.cpp ├── emAvImageConverter_AVX2.cpp ├── emAvLibDirCfg.cpp ├── emAvServerModel.cpp ├── emAvServerProcProtocol.README ├── emAvServerProc_vlc.c ├── emAvServerProc_xine.c └── emAvStates.cpp ├── emBmp ├── emBmpFpPlugin.cpp └── emBmpImageFileModel.cpp ├── emClock ├── emAlarmClockModel.cpp ├── emAlarmClockPanel.cpp ├── emClockDatePanel.cpp ├── emClockFileModel.cpp ├── emClockFpPlugin.cpp ├── emClockHandsPanel.cpp ├── emClockPanel.cpp ├── emStopwatchPanel.cpp ├── emTimeZonesModel.cpp ├── emTimeZonesProc.c └── emWorldClockPanel.cpp ├── emCore ├── emATMatrix.cpp ├── emAnything.cpp ├── emAvlTree.cpp ├── emBorder.cpp ├── emButton.cpp ├── emCheckBox.cpp ├── emCheckButton.cpp ├── emClipboard.cpp ├── emColor.cpp ├── emColorField.cpp ├── emConfigModel.cpp ├── emContext.cpp ├── emCoreConfig.cpp ├── emCoreConfigPanel.cpp ├── emCrossPtr.cpp ├── emCursor.cpp ├── emDialog.cpp ├── emEngine.cpp ├── emErrorPanel.cpp ├── emFileDialog.cpp ├── emFileModel.cpp ├── emFilePanel.cpp ├── emFileSelectionBox.cpp ├── emFontCache.cpp ├── emFpPlugin.cpp ├── emGUIFramework.cpp ├── emGroup.cpp ├── emImage.cpp ├── emImageFile.cpp ├── emInput.cpp ├── emInstallInfo.cpp ├── emLabel.cpp ├── emLinearGroup.cpp ├── emLinearLayout.cpp ├── emList.cpp ├── emListBox.cpp ├── emLook.cpp ├── emMiniIpc.cpp ├── emModel.cpp ├── emPackGroup.cpp ├── emPackLayout.cpp ├── emPainter.cpp ├── emPainter_ScTl.cpp ├── emPainter_ScTl.h ├── emPainter_ScTlIntGra.cpp ├── emPainter_ScTlIntImg.cpp ├── emPainter_ScTlIntImg_AVX2.cpp ├── emPainter_ScTlPSCol.cpp ├── emPainter_ScTlPSCol_AVX2.cpp ├── emPainter_ScTlPSInt.cpp ├── emPainter_ScTlPSInt_AVX2.cpp ├── emPanel.cpp ├── emPriSchedAgent.cpp ├── emProcess.cpp ├── emRadioBox.cpp ├── emRadioButton.cpp ├── emRasterGroup.cpp ├── emRasterLayout.cpp ├── emRec.cpp ├── emRecFileModel.cpp ├── emRenderThreadPool.cpp ├── emRes.cpp ├── emScalarField.cpp ├── emScheduler.cpp ├── emScreen.cpp ├── emSigModel.cpp ├── emSignal.cpp ├── emSplitter.cpp ├── emStd1.cpp ├── emStd2.cpp ├── emString.cpp ├── emSubViewPanel.cpp ├── emTextField.cpp ├── emThread.cpp ├── emTiling.cpp ├── emTimer.cpp ├── emTmpFile.cpp ├── emTunnel.cpp ├── emView.cpp ├── emViewAnimator.cpp ├── emViewInputFilter.cpp ├── emViewRenderer.cpp ├── emWindow.cpp └── emWindowStateSaver.cpp ├── emFileMan ├── emDirEntry.cpp ├── emDirEntryAltPanel.cpp ├── emDirEntryPanel.cpp ├── emDirFpPlugin.cpp ├── emDirModel.cpp ├── emDirPanel.cpp ├── emDirStatFpPlugin.cpp ├── emDirStatPanel.cpp ├── emFileLinkFpPlugin.cpp ├── emFileLinkModel.cpp ├── emFileLinkPanel.cpp ├── emFileManConfig.cpp ├── emFileManControlPanel.cpp ├── emFileManModel.cpp ├── emFileManSelInfoPanel.cpp ├── emFileManTheme.cpp └── emFileManViewConfig.cpp ├── emFractal ├── emFractalFileModel.cpp ├── emFractalFilePanel.cpp └── emFractalFpPlugin.cpp ├── emGif ├── emGifFileModel.cpp ├── emGifFilePanel.cpp └── emGifFpPlugin.cpp ├── emHmiDemo ├── emHmiDemoAnalogDisplay.cpp ├── emHmiDemoButton.cpp ├── emHmiDemoCone.cpp ├── emHmiDemoControls.cpp ├── emHmiDemoConveyor.cpp ├── emHmiDemoFile.cpp ├── emHmiDemoFillIndicator.cpp ├── emHmiDemoFlowIndicator.cpp ├── emHmiDemoFpPlugin.cpp ├── emHmiDemoMixer.cpp ├── emHmiDemoMonitors.cpp ├── emHmiDemoPanel.cpp ├── emHmiDemoPiece.cpp ├── emHmiDemoPieceGroup.cpp ├── emHmiDemoPump.cpp ├── emHmiDemoStation.cpp └── emHmiDemoTank.cpp ├── emIlbm ├── emIlbmFpPlugin.cpp └── emIlbmImageFileModel.cpp ├── emJpeg ├── emJpegFpPlugin.cpp └── emJpegImageFileModel.cpp ├── emMain ├── emAutoplay.cpp ├── emBookmarks.cpp ├── emMain.cpp ├── emMainConfig.cpp ├── emMainContentPanel.cpp ├── emMainControlPanel.cpp ├── emMainPanel.cpp ├── emMainWindow.cpp ├── emStarFieldPanel.cpp └── emVirtualCosmos.cpp ├── emMines ├── emMinesControlPanel.cpp ├── emMinesFileModel.cpp ├── emMinesFpPlugin.cpp └── emMinesPanel.cpp ├── emNetwalk ├── emNetwalkControlPanel.cpp ├── emNetwalkFpPlugin.cpp ├── emNetwalkModel.cpp └── emNetwalkPanel.cpp ├── emPcx ├── emPcxFpPlugin.cpp └── emPcxImageFileModel.cpp ├── emPdf ├── emPdfControlPanel.cpp ├── emPdfFileModel.cpp ├── emPdfFilePanel.cpp ├── emPdfFpPlugin.cpp ├── emPdfPageAreasMap.cpp ├── emPdfPagePanel.cpp ├── emPdfSelection.cpp ├── emPdfServerModel.cpp ├── emPdfServerProc.c └── emPdfServerProcProtocol.README ├── emPng ├── emPngDecode.c ├── emPngFpPlugin.cpp └── emPngImageFileModel.cpp ├── emPnm ├── emPnmFpPlugin.cpp └── emPnmImageFileModel.cpp ├── emPs ├── emPsDocument.cpp ├── emPsDocumentPanel.cpp ├── emPsFileModel.cpp ├── emPsFilePanel.cpp ├── emPsFpPlugin.cpp ├── emPsPagePanel.cpp └── emPsRenderer.cpp ├── emRas ├── emRasFpPlugin.cpp └── emRasImageFileModel.cpp ├── emRgb ├── emRgbFpPlugin.cpp └── emRgbImageFileModel.cpp ├── emSendMiniIpc └── emSendMiniIpc.cpp ├── emShowStdDlg └── emShowStdDlg.cpp ├── emStocks ├── emStocksConfig.cpp ├── emStocksControlPanel.cpp ├── emStocksFetchPricesDialog.cpp ├── emStocksFileModel.cpp ├── emStocksFilePanel.cpp ├── emStocksFpPlugin.cpp ├── emStocksItemChart.cpp ├── emStocksItemPanel.cpp ├── emStocksListBox.cpp ├── emStocksPricesFetcher.cpp └── emStocksRec.cpp ├── emSvg ├── emSvgFileModel.cpp ├── emSvgFilePanel.cpp ├── emSvgFpPlugin.cpp ├── emSvgServerModel.cpp ├── emSvgServerProc.c └── emSvgServerProcProtocol.README ├── emTest ├── emTestContainers.cpp ├── emTestPackLayout.cpp ├── emTestPanel.cpp ├── emTestPanelFpPlugin.cpp └── emTestThreads.cpp ├── emText ├── emTextFileControlPanel.cpp ├── emTextFileModel.cpp ├── emTextFilePanel.cpp └── emTextFpPlugin.cpp ├── emTga ├── emTgaFpPlugin.cpp └── emTgaImageFileModel.cpp ├── emTiff ├── emTiffFpPlugin.cpp └── emTiffImageFileModel.cpp ├── emTmpConv ├── emTmpConvFpPlugin.cpp ├── emTmpConvFramePanel.cpp ├── emTmpConvModel.cpp ├── emTmpConvModelClient.cpp ├── emTmpConvPanel.cpp └── emTmpConvProc.c ├── emTreeDump ├── emTreeDumpControlPanel.cpp ├── emTreeDumpFileModel.cpp ├── emTreeDumpFilePanel.cpp ├── emTreeDumpFpPlugin.cpp ├── emTreeDumpRec.cpp ├── emTreeDumpRecPanel.cpp └── emTreeDumpUtil.cpp ├── emWebp ├── emWebpFpPlugin.cpp └── emWebpImageFileModel.cpp ├── emWnds ├── emWndsAdapterProc.c ├── emWndsClipboard.cpp ├── emWndsGUIFramework.cpp ├── emWndsScheduler.cpp ├── emWndsScreen.cpp ├── emWndsViewRenderer.cpp └── emWndsWindowPort.cpp ├── emX11 ├── cursors │ └── emCursorInvisible.xbm ├── emX11Clipboard.cpp ├── emX11ExtDynamic.cpp ├── emX11GUIFramework.cpp ├── emX11Screen.cpp ├── emX11ViewRenderer.cpp └── emX11WindowPort.cpp ├── emXbm ├── emXbmFpPlugin.cpp └── emXbmImageFileModel.cpp ├── emXpm ├── emXpmFpPlugin.cpp └── emXpmImageFileModel.cpp └── font2em └── font2em.c /README: -------------------------------------------------------------------------------- 1 | The documentation on this project is in the subdirectory "doc". 2 | Best is to open the file "doc/html/index.html" in a web browser. 3 | -------------------------------------------------------------------------------- /doc/examples/CppApiExamples/PluginExample/etc/emCore/FpPlugins/PlEx.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".PlEx" } 4 | Priority = 1.0 5 | Library = "PlEx" 6 | Function = "PlExFpPluginFunc" 7 | -------------------------------------------------------------------------------- /doc/examples/CppApiExamples/PluginExample/etc/emMain/VcItemFiles/PlEx1.PlEx: -------------------------------------------------------------------------------- 1 | #%rec:PlEx%# 2 | 3 | CurrentColor = {0 0 0} 4 | Lines = { 5 | { 6 | X1 = 0.1 7 | Y1 = 0.6 8 | X2 = 0.9 9 | Y2 = 0.1 10 | Thickness = 0.02 11 | Color = {0 0 255} 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /doc/examples/CppApiExamples/PluginExample/etc/emMain/VcItems/PlEx1.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Plugin Example (PlEx)" 4 | PosX = 0.3 5 | PosY = 0.28 6 | Width = 0.05 7 | ContentTallness = 0.7 8 | BorderScaling = 2.0 9 | BackgroundColor = "#fff" 10 | BorderColor = "#c0a" 11 | TitleColor = "#ff0" 12 | FileName = "PlEx1.PlEx" 13 | CopyToUser = true 14 | -------------------------------------------------------------------------------- /doc/examples/CppApiExamples/PluginExample/etcw/emCore/FpPlugins/PlEx.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".PlEx" } 4 | Priority = 1.0 5 | Library = "PlEx" 6 | Function = "PlExFpPluginFunc" 7 | -------------------------------------------------------------------------------- /doc/examples/CppApiExamples/PluginExample/etcw/emMain/VcItemFiles/PlEx1.PlEx: -------------------------------------------------------------------------------- 1 | #%rec:PlEx%# 2 | 3 | CurrentColor = {0 0 0} 4 | Lines = { 5 | { 6 | X1 = 0.1 7 | Y1 = 0.6 8 | X2 = 0.9 9 | Y2 = 0.1 10 | Thickness = 0.02 11 | Color = {0 0 255} 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /doc/examples/CppApiExamples/PluginExample/etcw/emMain/VcItems/PlEx1.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Plugin Example (PlEx)" 4 | PosX = 0.3 5 | PosY = 0.28 6 | Width = 0.05 7 | ContentTallness = 0.7 8 | BorderScaling = 2.0 9 | BackgroundColor = "#fff" 10 | BorderColor = "#c0a" 11 | TitleColor = "#ff0" 12 | FileName = "PlEx1.PlEx" 13 | CopyToUser = true 14 | -------------------------------------------------------------------------------- /doc/examples/CppApiExamples/README: -------------------------------------------------------------------------------- 1 | This directory contains the example programs from the C++ API Tutorial. Except 2 | for the PluginExample, you can run the examples easily with the help of 3 | run-example.pl. For example: 4 | 5 | perl run-example.pl HelloWorldExample.cpp 6 | 7 | If you want to run the PluginExample, then you would have to copy all the files 8 | from the PluginExample directory tree into the Eagle Mode source directory tree 9 | (see that they have the same directory structure), and then you could compile, 10 | install and run Eagle Mode as usual. 11 | -------------------------------------------------------------------------------- /doc/html/CppApiRef/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Eagle Mode - C++ API Reference 4 | 11 | 12 | 13 | 14 | 15 | This page requires a browser that can show frames. 16 | 17 | 18 | -------------------------------------------------------------------------------- /doc/html/images/ControlAndContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/html/images/ControlAndContent.png -------------------------------------------------------------------------------- /doc/html/images/EngineClasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/html/images/EngineClasses.png -------------------------------------------------------------------------------- /doc/html/images/ModelClassesAndMore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/html/images/ModelClassesAndMore.png -------------------------------------------------------------------------------- /doc/html/images/MouseFunc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/html/images/MouseFunc1.png -------------------------------------------------------------------------------- /doc/html/images/MouseFunc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/html/images/MouseFunc2.png -------------------------------------------------------------------------------- /doc/html/images/MouseFunc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/html/images/MouseFunc3.png -------------------------------------------------------------------------------- /doc/html/images/MouseFunc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/html/images/MouseFunc4.png -------------------------------------------------------------------------------- /doc/html/images/ToolkitClasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/html/images/ToolkitClasses.png -------------------------------------------------------------------------------- /doc/html/images/emFileManOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/html/images/emFileManOverview.png -------------------------------------------------------------------------------- /doc/pdf/AdvancedConfiguration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/pdf/AdvancedConfiguration.pdf -------------------------------------------------------------------------------- /doc/pdf/ChangeLog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/pdf/ChangeLog.pdf -------------------------------------------------------------------------------- /doc/pdf/GeneralUserGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/pdf/GeneralUserGuide.pdf -------------------------------------------------------------------------------- /doc/pdf/InstallAndStart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/pdf/InstallAndStart.pdf -------------------------------------------------------------------------------- /doc/pdf/License.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/pdf/License.pdf -------------------------------------------------------------------------------- /doc/pdf/SystemRequirements.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/pdf/SystemRequirements.pdf -------------------------------------------------------------------------------- /doc/pdf/emFileManCustomization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/pdf/emFileManCustomization.pdf -------------------------------------------------------------------------------- /doc/pdf/emFileManUserGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/pdf/emFileManUserGuide.pdf -------------------------------------------------------------------------------- /doc/pdf/index.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/doc/pdf/index.pdf -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/SilChess.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".silchess" } 4 | Priority = 1.0 5 | Library = "SilChess" 6 | Function = "SilChessFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emAv_vlc.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { 4 | # Audio: 5 | ".aac" 6 | ".au" 7 | ".flac" 8 | ".it" 9 | ".mod" 10 | ".mp3" 11 | ".ogg" 12 | ".ra" 13 | ".s3m" 14 | ".stm" 15 | ".wav" 16 | ".wma" 17 | ".xm" 18 | # Video: 19 | ".asf" 20 | ".avi" 21 | ".fli" 22 | ".flv" 23 | ".m2t" 24 | ".m2v" 25 | ".mkv" 26 | ".mov" 27 | ".mp4" 28 | ".mpeg" 29 | ".mpg" 30 | ".mpv" 31 | ".ogv" 32 | ".rm" 33 | ".ts" 34 | ".vob" 35 | ".wmv" 36 | } 37 | Priority = 1.0 38 | Library = "emAv" 39 | Function = "emAvFpPluginFunc" 40 | Properties = { { Name="ServerProc" Value="emAvServerProc_vlc" } } 41 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emBmp.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".bmp" ".cur" ".dib" ".ico" } 4 | Priority = 1.0 5 | Library = "emBmp" 6 | Function = "emBmpFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emClock.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emClock" } 4 | Priority = 1.0 5 | Library = "emClock" 6 | Function = "emClockFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emDir.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { "directory" } 4 | Priority = 1.0 5 | Library = "emFileMan" 6 | Function = "emDirFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emDirStat.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { "directory" } 4 | Priority = 0.1 5 | Library = "emFileMan" 6 | Function = "emDirStatFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emFileLink.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emFileLink" } 4 | Priority = 1.0 5 | Library = "emFileMan" 6 | Function = "emFileLinkFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emFractal.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emFractal" } 4 | Priority = 1.0 5 | Library = "emFractal" 6 | Function = "emFractalFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emGif.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".gif" } 4 | Priority = 1.0 5 | Library = "emGif" 6 | Function = "emGifFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emHmiDemo.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emHmiDemo" } 4 | Priority = 1.0 5 | Library = "emHmiDemo" 6 | Function = "emHmiDemoFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emIlbm.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".ilbm" ".lbm" } 4 | Priority = 1.0 5 | Library = "emIlbm" 6 | Function = "emIlbmFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emJpeg.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".jpeg" ".jpg" } 4 | Priority = 1.0 5 | Library = "emJpeg" 6 | Function = "emJpegFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emMines.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emMines" } 4 | Priority = 1.0 5 | Library = "emMines" 6 | Function = "emMinesFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emNetwalk.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emNetwalk" } 4 | Priority = 1.0 5 | Library = "emNetwalk" 6 | Function = "emNetwalkFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emPcx.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".pcx" } 4 | Priority = 1.0 5 | Library = "emPcx" 6 | Function = "emPcxFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emPdf.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".pdf" } 4 | Priority = 1.0 5 | Library = "emPdf" 6 | Function = "emPdfFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emPng.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".png" } 4 | Priority = 1.0 5 | Library = "emPng" 6 | Function = "emPngFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emPnm.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".pnm" ".pbm" ".pgm" ".ppm" } 4 | Priority = 1.0 5 | Library = "emPnm" 6 | Function = "emPnmFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emPs.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".ps" } 4 | Priority = 1.0 5 | Library = "emPs" 6 | Function = "emPsFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emRas.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".ras" } 4 | Priority = 1.0 5 | Library = "emRas" 6 | Function = "emRasFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emRgb.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".rgb" } 4 | Priority = 1.0 5 | Library = "emRgb" 6 | Function = "emRgbFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emStocks.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emStocks" } 4 | Priority = 1.0 5 | Library = "emStocks" 6 | Function = "emStocksFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emSvg.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".svg" ".svgz" ".svg.gz" } 4 | Priority = 1.0 5 | Library = "emSvg" 6 | Function = "emSvgFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTestPanel.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emTestPanel" } 4 | Priority = 1.0 5 | Library = "emTestPanel" 6 | Function = "emTestPanelFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emText.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { "file" } 4 | Priority = 0.1 5 | Library = "emText" 6 | Function = "emTextFpPluginFunc" 7 | Properties = { { Name="AlternativeView" Value="no" } } 8 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emText_Alt.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { "file" } 4 | Priority = 0.0 5 | Library = "emText" 6 | Function = "emTextFpPluginFunc" 7 | Properties = { { Name="AlternativeView" Value="yes" } } 8 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTga.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".tga" } 4 | Priority = 1.0 5 | Library = "emTga" 6 | Function = "emTgaFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTiff.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".tiff" ".tif" } 4 | Priority = 1.0 5 | Library = "emTiff" 6 | Function = "emTiffFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTmpConv_archives.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { 4 | ".7z" 5 | ".ar" ".a" ".deb" ".ipk" 6 | ".bz2" ".bz" 7 | ".gz" ".z" 8 | ".lzma" 9 | ".lzo" 10 | ".tar" 11 | ".tar.bz2" ".tbz2" ".tgj" ".tar.bz" ".tbz" 12 | ".tar.gz" ".tgz" ".tar.z" ".taz" 13 | ".tar.lzma" ".tlz" 14 | ".tar.lzo" ".tzo" 15 | ".tar.xz" ".txz" 16 | ".xz" 17 | ".zip" ".jar" 18 | } 19 | Priority = 0.5 20 | Library = "emTmpConv" 21 | Function = "emTmpConvFpPluginFunc" 22 | Properties = { 23 | { 24 | Name="OutFileEnding" 25 | Value=".dir" 26 | } 27 | { 28 | Name="Command" 29 | Value="mkdir \"$OUTFILE\" && cd \"$OUTFILE\" && exec \"$EM_DIR/res/emFileMan/scripts/emArch.sh\" unpack -- \"$INFILE\" > /dev/null" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTmpConv_dia.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".dia" } 4 | Priority = 0.5 5 | Library = "emTmpConv" 6 | Function = "emTmpConvFpPluginFunc" 7 | Properties = { 8 | { 9 | Name="OutFileEnding" 10 | Value=".svg" 11 | } 12 | { 13 | Name="Command" 14 | Value="dia \"--export=$OUTFILE\" --filter=svg \"$INFILE\" < /dev/null > /dev/null" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTmpConv_dvi.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".dvi" } 4 | Priority = 0.5 5 | Library = "emTmpConv" 6 | Function = "emTmpConvFpPluginFunc" 7 | Properties = { 8 | { 9 | Name="OutFileEnding" 10 | Value=".ps" 11 | } 12 | { 13 | Name="Command" 14 | Value="exec dvips -R -q -f < \"$INFILE\" > \"$OUTFILE\"" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTmpConv_eps.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".eps" } 4 | Priority = 0.5 5 | Library = "emTmpConv" 6 | Function = "emTmpConvFpPluginFunc" 7 | Properties = { 8 | { 9 | Name="OutFileEnding" 10 | Value=".ps" 11 | } 12 | { 13 | Name="Command" 14 | Value="exec gs -q -dNOPAUSE -dSAFER -sDEVICE=ps2write \"-sOutputFile=$OUTFILE\" - < \"$INFILE\"" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTmpConv_fig.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".fig" } 4 | Priority = 0.5 5 | Library = "emTmpConv" 6 | Function = "emTmpConvFpPluginFunc" 7 | Properties = { 8 | { 9 | Name="OutFileEnding" 10 | Value=".svg" 11 | } 12 | { 13 | Name="Command" 14 | Value="exec fig2dev -L svg < \"$INFILE\" > \"$OUTFILE\"" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTmpConv_g3.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".g3" } 4 | Priority = 0.5 5 | Library = "emTmpConv" 6 | Function = "emTmpConvFpPluginFunc" 7 | Properties = { 8 | { 9 | Name="OutFileEnding" 10 | Value=".pbm" 11 | } 12 | { 13 | Name="Command" 14 | Value="exec g3topbm < \"$INFILE\" > \"$OUTFILE\"" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTmpConv_html.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".html" ".htm" } 4 | Priority = 0.5 5 | Library = "emTmpConv" 6 | Function = "emTmpConvFpPluginFunc" 7 | Properties = { 8 | { 9 | Name="OutFileEnding" 10 | Value=".pdf" 11 | } 12 | { 13 | Name="Command" 14 | Value=" 15 | exec htmldoc --webpage --header \" \" --footer \" \" \\ 16 | --format pdf --outfile \"$OUTFILE\" \"$INFILE\" 1>&2 17 | " 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTmpConv_iso.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".iso" } 4 | Priority = 0.5 5 | Library = "emTmpConv" 6 | Function = "emTmpConvFpPluginFunc" 7 | Properties = { 8 | { 9 | Name="OutFileEnding" 10 | Value=".txt" 11 | } 12 | { 13 | Name="Command" 14 | Value=" 15 | { 16 | echo \"Info-scan on ISO file \\\"$INFILE\\\"\" 17 | echo 18 | echo 19 | echo \"General information (isoinfo -d -i )\" 20 | echo \"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\" 21 | isoinfo -d -i \"$INFILE\" || exit 1 22 | echo 23 | echo 24 | echo \"Directory tree (isoinfo -l -J -R -i )\" 25 | echo \"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\" 26 | isoinfo -l -J -R -i \"$INFILE\" || exit 1 27 | } > \"$OUTFILE\" 28 | " 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTmpConv_pov.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".pov" } 4 | Priority = 0.5 5 | Library = "emTmpConv" 6 | Function = "emTmpConvFpPluginFunc" 7 | Properties = { 8 | { 9 | Name="OutFileEnding" 10 | Value=".png" 11 | } 12 | { 13 | Name="Command" 14 | Value=" 15 | cd \"`dirname \"$INFILE\"`\" || exit 1 16 | exec povray -D -P +K0.0 +KFI1 +KFF1 +W160 +H120\\ 17 | \"+I$INFILE\" \"+O$OUTFILE\" > /dev/null 18 | " 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTmpConv_wmf.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { 4 | ".wmf" 5 | } 6 | Priority = 0.5 7 | Library = "emTmpConv" 8 | Function = "emTmpConvFpPluginFunc" 9 | Properties = { 10 | { 11 | Name="OutFileEnding" 12 | Value=".svg" 13 | } 14 | { 15 | Name="Command" 16 | Value="exec wmf2svg -o \"$OUTFILE\" \"$INFILE\"" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTmpConv_xwd.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".xwd" } 4 | Priority = 0.5 5 | Library = "emTmpConv" 6 | Function = "emTmpConvFpPluginFunc" 7 | Properties = { 8 | { 9 | Name="OutFileEnding" 10 | Value=".pnm" 11 | } 12 | { 13 | Name="Command" 14 | Value="exec xwdtopnm < \"$INFILE\" > \"$OUTFILE\"" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emTreeDump.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emTreeDump" } 4 | Priority = 1.0 5 | Library = "emTreeDump" 6 | Function = "emTreeDumpFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emWebp.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".webp" } 4 | Priority = 1.0 5 | Library = "emWebp" 6 | Function = "emWebpFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emXbm.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".xbm" } 4 | Priority = 1.0 5 | Library = "emXbm" 6 | Function = "emXbmFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/emXpm.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".xpm" } 4 | Priority = 1.0 5 | Library = "emXpm" 6 | Function = "emXpmFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etc/emCore/FpPlugins/version: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/Advanced.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 14.0 4 | # Directory = Advanced 5 | # Caption = Advanced 6 | # Descr =Advanced commands 7 | #[[END PROPERTIES]] 8 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/Advanced/grp1.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 4.0 4 | # Directory = grp1 5 | # BorderScaling = 0.0 6 | #[[END PROPERTIES]] 7 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/AudioVideo.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 24.0 4 | # Directory = AudioVideo 5 | # Caption = Audio & Video 6 | # Descr =Commands for audio and video files 7 | #[[END PROPERTIES]] 8 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/AudioVideo/VLC.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 3.0 5 | # Interpreter = perl 6 | # DefaultFor = .aac:.asf:.au:.avi:.flac:.fli:.flv:.it:.m2t:.m2v:.mkv:.mod:.mov:.mp3:.mp4:.mpeg:.mpg:.mpv:.ogg:.ogv:.ra:.rm:.s3m:.stm:.ts:.wav:.vob:.wma:.wmv:.xm 7 | # Caption = VLC media player 8 | # Descr =Open audio or video files in the VLC media palyer. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: Ignored. 13 | # Descr = 14 | # Descr = Target: The files to be opened. 15 | # Icon = thirdparty/vlc.tga 16 | #[[END PROPERTIES]] 17 | 18 | use strict; 19 | use warnings; 20 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 21 | 22 | OpenTargetFilesWith('vlc'); 23 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/AudioVideo/xine.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 4.0 5 | # Interpreter = perl 6 | # DefaultFor = .aac:.asf:.au:.avi:.flac:.fli:.flv:.it:.m2t:.m2v:.mkv:.mod:.mov:.mp3:.mp4:.mpeg:.mpg:.mpv:.ogg:.ogv:.ra:.rm:.s3m:.stm:.ts:.wav:.vob:.wma:.wmv:.xm 7 | # Caption = xine 8 | # Descr =Open an audio or video file in xine. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: Ignored. 13 | # Descr = 14 | # Descr = Target: The file to be opened. 15 | # Icon = thirdparty/xine.tga 16 | #[[END PROPERTIES]] 17 | 18 | use strict; 19 | use warnings; 20 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 21 | 22 | OpenSingleTargetFileWith('xine'); 23 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/Graphics.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 23.0 4 | # Directory = Graphics 5 | # Caption = Graphics 6 | # Descr =Commands for bitmap and vector graphic files 7 | #[[END PROPERTIES]] 8 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/Graphics/Dia.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 1.0 5 | # Interpreter = perl 6 | # DefaultFor = .dia 7 | # Caption = Dia 8 | # Descr =Open dia files in Dia. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: Ignored. 13 | # Descr = 14 | # Descr = Target: The dia file to be opened. 15 | # Icon = thirdparty/dia.tga 16 | #[[END PROPERTIES]] 17 | 18 | use strict; 19 | use warnings; 20 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 21 | 22 | OpenSingleTargetFileWith('dia'); 23 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/Graphics/Inkscape.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 2.0 5 | # Interpreter = perl 6 | # DefaultFor = .svg:.svgz:.svg.gz:.ai:.wmf 7 | # Caption = Inkscape 8 | # Descr =Open vector graphic files in Inkscape. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: Ignored. 13 | # Descr = 14 | # Descr = Target: The files to be opened. 15 | # Icon = thirdparty/inkscape.tga 16 | #[[END PROPERTIES]] 17 | 18 | use strict; 19 | use warnings; 20 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 21 | 22 | OpenTargetFilesWith('inkscape'); 23 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/Graphics/Xfig.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 4.0 5 | # Interpreter = perl 6 | # DefaultFor = .fig 7 | # Caption = Xfig 8 | # Descr =Open an xfig file in Xfig. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: Ignored. 13 | # Descr = 14 | # Descr = Target: The xfig file to be opened. 15 | # Icon = thirdparty/xfig.tga 16 | #[[END PROPERTIES]] 17 | 18 | #??? Do not add fig.gz to the DefaultFor list, because xfig would unpack 19 | #??? such a file in place. 20 | 21 | use strict; 22 | use warnings; 23 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 24 | 25 | OpenSingleTargetFileWith('xfig'); 26 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/MorePackUnpack.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 20.0 4 | # Directory = MorePackUnpack 5 | # BorderScaling = 0.0 6 | #[[END PROPERTIES]] 7 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/MorePackUnpack/MorePackCommands.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 30.0 4 | # Directory = MorePackCommands 5 | # BorderScaling = 0.0 6 | #[[END PROPERTIES]] 7 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/MorePackUnpack/MorePackCommands/Pack7z.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 10.0 5 | # Interpreter = perl 6 | # Caption = Pack 7z 7 | # Descr =Create a 7-Zip archive from files and directories. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The files and directories to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_7z.tga 17 | #[[END PROPERTIES]] 18 | 19 | use strict; 20 | use warnings; 21 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 22 | 23 | PackType('7z'); 24 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/MorePackUnpack/MorePackCommands/PackAr.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 10.0 5 | # Interpreter = perl 6 | # Caption = Pack ar 7 | # Descr =Create an AR archive from files. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The files to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_ar.tga 17 | #[[END PROPERTIES]] 18 | 19 | use strict; 20 | use warnings; 21 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 22 | 23 | PackType('ar'); 24 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/MorePackUnpack/MorePackCommands/PackBz2.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 10.0 5 | # Interpreter = perl 6 | # Caption = Pack bz2 7 | # Descr =Create a bz2 archive from a file. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The file to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_bz2.tga 17 | #[[END PROPERTIES]] 18 | 19 | use strict; 20 | use warnings; 21 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 22 | 23 | PackType('bz2'); 24 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/MorePackUnpack/MorePackCommands/PackGz.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 10.0 5 | # Interpreter = perl 6 | # Caption = Pack gz 7 | # Descr =Create a gz archive from a file. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The file to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_gz.tga 17 | #[[END PROPERTIES]] 18 | 19 | use strict; 20 | use warnings; 21 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 22 | 23 | PackType('gz'); 24 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/MorePackUnpack/MorePackCommands/PackLzma.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 10.0 5 | # Interpreter = perl 6 | # Caption = Pack lzma 7 | # Descr =Create an lzma archive from a file. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The file to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_lzma.tga 17 | #[[END PROPERTIES]] 18 | 19 | use strict; 20 | use warnings; 21 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 22 | 23 | PackType('lzma'); 24 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/MorePackUnpack/MorePackCommands/PackLzo.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 10.0 5 | # Interpreter = perl 6 | # Caption = Pack lzo 7 | # Descr =Create an LZO archive from a file. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The file to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_lzo.tga 17 | #[[END PROPERTIES]] 18 | 19 | use strict; 20 | use warnings; 21 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 22 | 23 | PackType('lzo'); 24 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/MorePackUnpack/MorePackCommands/PackTar.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 10.0 5 | # Interpreter = perl 6 | # Caption = Pack tar 7 | # Descr =Create a Tar archive from files and directories. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The files and directories to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_tar.tga 17 | #[[END PROPERTIES]] 18 | 19 | use strict; 20 | use warnings; 21 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 22 | 23 | PackType('tar'); 24 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/MorePackUnpack/MorePackCommands/PackTarLzma.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 10.0 5 | # Interpreter = perl 6 | # Caption = Pack tar.lzma 7 | # Descr =Create a tar.lzma archive from files and directories. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The files and directories to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_tar_lzma.tga 17 | #[[END PROPERTIES]] 18 | 19 | use strict; 20 | use warnings; 21 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 22 | 23 | PackType('tar.lzma'); 24 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/MorePackUnpack/MorePackCommands/PackTarLzo.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 10.0 5 | # Interpreter = perl 6 | # Caption = Pack tar.lzo 7 | # Descr =Create a tar.lzo archive from files and directories. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The files and directories to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_tar_lzo.tga 17 | #[[END PROPERTIES]] 18 | 19 | use strict; 20 | use warnings; 21 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 22 | 23 | PackType('tar.lzo'); 24 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/MorePackUnpack/MorePackCommands/PackXz.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 10.0 5 | # Interpreter = perl 6 | # Caption = Pack xz 7 | # Descr =Create an xz archive from a file. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The file to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_xz.tga 17 | #[[END PROPERTIES]] 18 | 19 | use strict; 20 | use warnings; 21 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 22 | 23 | PackType('xz'); 24 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/PackTarBz2.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 17.0 5 | # Interpreter = perl 6 | # Caption = Pack tar.bz2 7 | # Descr =Create a tar.bz2 archive from files and directories. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The files and directories to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_tar_bz2.tga 17 | # Hotkey = Ctrl+P 18 | #[[END PROPERTIES]] 19 | 20 | use strict; 21 | use warnings; 22 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 23 | 24 | PackType('tar.bz2'); 25 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/PackTarGz.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 16.0 5 | # Interpreter = perl 6 | # Caption = Pack tar.gz 7 | # Descr =Create a tar.gz archive from files and directories. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The files and directories to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_tar_gz.tga 17 | # Hotkey = Shift+Ctrl+P 18 | #[[END PROPERTIES]] 19 | 20 | use strict; 21 | use warnings; 22 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 23 | 24 | PackType('tar.gz'); 25 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/PackTarXz.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 18.0 5 | # Interpreter = perl 6 | # Caption = Pack tar.xz 7 | # Descr =Create a tar.xz archive from files and directories. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The files and directories to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_tar_xz.tga 17 | #[[END PROPERTIES]] 18 | 19 | use strict; 20 | use warnings; 21 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 22 | 23 | PackType('tar.xz'); 24 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/PackZip.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 15.0 5 | # Interpreter = perl 6 | # Caption = Pack zip 7 | # Descr =Create a ZIP archive from files and directories. 8 | # Descr =The name of the archive file is asked. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: The files and directories to be packed. 13 | # Descr = 14 | # Descr = Target: The directory in which the archive file 15 | # Descr = shall be created. 16 | # Icon = pack_file_zip.tga 17 | # Hotkey = Meta+P 18 | #[[END PROPERTIES]] 19 | 20 | use strict; 21 | use warnings; 22 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 23 | 24 | PackType('zip'); 25 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/PlainText.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 21.0 4 | # Directory = PlainText 5 | # Caption = Plain Text 6 | # Descr =Commands for plain text files 7 | #[[END PROPERTIES]] 8 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/PlainText/Kate.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 2.0 5 | # Interpreter = perl 6 | # DefaultFor = file 7 | # Caption = Kate 8 | # Descr =Open plain text files in the KDE text editor Kate. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: Ignored. 13 | # Descr = 14 | # Descr = Target: The plain text files to be opened. 15 | # Icon = thirdparty/kate.tga 16 | #[[END PROPERTIES]] 17 | 18 | use strict; 19 | use warnings; 20 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 21 | 22 | OpenTargetFilesWith('kate'); 23 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/PlainText/gedit.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 1.0 5 | # Interpreter = perl 6 | # DefaultFor = file 7 | # Caption = gedit 8 | # Descr =Open plain text files in the GNOME text editor gedit. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: Ignored. 13 | # Descr = 14 | # Descr = Target: The plain text files to be opened. 15 | # Icon = thirdparty/gedit.tga 16 | #[[END PROPERTIES]] 17 | 18 | use strict; 19 | use warnings; 20 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 21 | 22 | OpenTargetFilesWith('gedit'); 23 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/PlainText/grp1.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 50.0 4 | # Directory = grp1 5 | # BorderScaling = 0.0 6 | #[[END PROPERTIES]] 7 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/PlainText/grp1/wc.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 50.0 5 | # Interpreter = perl 6 | # Caption = wc 7 | # Descr =Show the number of lines, words and bytes in files. 8 | # Descr = 9 | # Descr =Selection details: 10 | # Descr = 11 | # Descr = Source: Ignored. 12 | # Descr = 13 | # Descr = Target: The files to be inspected. 14 | # Icon = wc.tga 15 | #[[END PROPERTIES]] 16 | 17 | use strict; 18 | use warnings; 19 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 20 | 21 | if (IsFirstPass()) { 22 | 23 | ErrorIfNoTargets(); 24 | ErrorIfTargetsNotFiles(); 25 | 26 | SecondPassInTerminal("wc"); 27 | } 28 | 29 | my $e=TermRun( 30 | "wc", 31 | GetTgt() 32 | ); 33 | 34 | TermEndByUser($e); 35 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/Run.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 13.0 4 | # Directory = Run 5 | # Caption = Run 6 | # Descr =Commands for execution of files 7 | #[[END PROPERTIES]] 8 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/StructuredText.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 22.0 4 | # Directory = StructuredText 5 | # Caption = Structured Text 6 | # Descr =Commands for structured text files like HTML, PDF, 7 | # Descr =PostScript, office documents and so on 8 | #[[END PROPERTIES]] 9 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/StructuredText/AbiWord.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 1.0 5 | # Interpreter = perl 6 | # DefaultFor = .abw:.aw:.awt:.bzabw:.cwk:.dbk:.doc:.docx:.dot:.fo:.hwp:.ics:.icsii:.kwd:.mif:.pdb:.rtf:.wml:.wpd:.wri:.zabw 7 | # Caption = AbiWord 8 | # Descr =Open files in AbiWord. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: Ignored. 13 | # Descr = 14 | # Descr = Target: The files to be opened. 15 | # Icon = thirdparty/abiword.tga 16 | #[[END PROPERTIES]] 17 | 18 | use strict; 19 | use warnings; 20 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 21 | 22 | OpenTargetFilesWith('abiword'); 23 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/StructuredText/Evince.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 2.0 5 | # Interpreter = perl 6 | # DefaultFor = .dvi:.pdf:.ps:.eps 7 | # Caption = Evince 8 | # Descr =Open PostScript or PDF files in Evince. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: Ignored. 13 | # Descr = 14 | # Descr = Target: The files to be opened. 15 | # Icon = thirdparty/evince.tga 16 | #[[END PROPERTIES]] 17 | 18 | use strict; 19 | use warnings; 20 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 21 | 22 | OpenTargetFilesWith('evince'); 23 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/StructuredText/Firefox.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 3.0 5 | # Interpreter = perl 6 | # DefaultFor = .htm:.html 7 | # Caption = Firefox 8 | # Descr =Open files and/or directories in Firefox. 9 | # Descr = 10 | # Descr =Selection details: 11 | # Descr = 12 | # Descr = Source: Ignored. 13 | # Descr = 14 | # Descr = Target: The files and directories to be opened. 15 | # Icon = thirdparty/firefox.tga 16 | #[[END PROPERTIES]] 17 | 18 | use strict; 19 | use warnings; 20 | BEGIN { require "$ENV{'EM_DIR'}/res/emFileMan/scripts/cmd-util.pl"; } 21 | 22 | OpenTargetsWith('firefox'); 23 | -------------------------------------------------------------------------------- /etc/emFileMan/Commands/version: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/AboutEagleMode.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emCore" 5 | Path="index.pdf" 6 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/AdvancedConfiguration.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emCore" 5 | Path="AdvancedConfiguration.pdf" 6 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/ChangeLog.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emCore" 5 | Path="ChangeLog.pdf" 6 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/Chess1.silchess: -------------------------------------------------------------------------------- 1 | _SilChess_ 2 | search depth: 2 3 | human side: white 4 | moves: 5 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/DebugTreeDump.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=Tmp 4 | BasePathProject="emCore" 5 | Path="debug.emTreeDump" 6 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/DebugTreeDump.txt: -------------------------------------------------------------------------------- 1 | About emTreeDump 2 | ################ 3 | 4 | (This is for computer experts and developers only) 5 | 6 | emTreeDump is a file format and a plugin application for viewing a data dump 7 | which has tree structure. It is possible to create a dump of the top-level C++ 8 | objects of a running emCore-based program. If you want to create such a dump in 9 | Eagle Mode, please navigate to any desired place and enter the following cheat 10 | code: 11 | 12 | chEat:td! 13 | 14 | This creates a file named "debug.emTreeDump" in the temporary directory. But you 15 | do not need to navigate there, just click on "Reload Files" and see the dump in 16 | the panel below: 17 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/FS.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | Path="/" 4 | HaveDirEntry=yes 5 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/GeneralUserGuide.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emMain" 5 | Path="GeneralUserGuide.pdf" 6 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/InstallAndStart.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emCore" 5 | Path="InstallAndStart.pdf" 6 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/Julia1.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = 0.78 5 | julia_y = 0.127 6 | depth = 2040 7 | colors = { 8 | { color = "#000000" fade = 50 } 9 | { color = "#80ffe8" fade = 10 } 10 | { color = "#ffffdd" fade = 20 } 11 | { color = "#ff1810" fade = 50 } 12 | } 13 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/Julia2.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = -0.28 5 | julia_y = 0.0 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 0 } 9 | { color = "black" fade = 5 } 10 | { color = "green" fade = 6 } 11 | { color = "yellow" fade = 6 } 12 | { color = "white" fade = 15 } 13 | { color = "black" fade = 12 } 14 | { color = "red" fade = 30 } 15 | { color = "yellow" fade = 20 } 16 | { color = "blue" fade = 20 } 17 | } 18 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/Julia4.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = -0.282940 5 | julia_y = 0.009535 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 14 } 9 | { color = "white" } 10 | { color = "red" fade = 3 } 11 | { color = "yellow" fade = 3 } 12 | { color = "green" fade = 7 } 13 | { color = "blue" fade = 3 } 14 | { color = "#f0f" fade = 7 } 15 | { color = "black" fade = 62 } 16 | { color = {255 240 0} fade = 62 } 17 | } 18 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/Julia5.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = 0.081754 5 | julia_y = -0.649195 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 14 } 9 | { color = "white" } 10 | { color = "red" fade = 3 } 11 | { color = "yellow" fade = 3 } 12 | { color = "green" fade = 7 } 13 | { color = "blue" fade = 3 } 14 | { color = "#f0f" fade = 7 } 15 | { color = "black" fade = 62 } 16 | { color = {255 240 0} fade = 62 } 17 | } 18 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/Julia6.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = 0.063837 5 | julia_y = -0.654262 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 14 } 9 | { color = "white" } 10 | { color = "red" fade = 3 } 11 | { color = "yellow" fade = 3 } 12 | { color = "green" fade = 7 } 13 | { color = "blue" fade = 3 } 14 | { color = "#f0f" fade = 7 } 15 | { color = "black" fade = 62 } 16 | { color = {255 240 0} fade = 62 } 17 | } 18 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/Julia7.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = 0.461609 5 | julia_y = -0.561627 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 14 } 9 | { color = "white" } 10 | { color = "red" fade = 3 } 11 | { color = "yellow" fade = 3 } 12 | { color = "green" fade = 7 } 13 | { color = "blue" fade = 3 } 14 | { color = "#f0f" fade = 7 } 15 | { color = "black" fade = 62 } 16 | { color = {255 240 0} fade = 62 } 17 | } 18 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/Julia8.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = 0.750432 5 | julia_y = -0.029976 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 14 } 9 | { color = "white" } 10 | { color = "red" fade = 3 } 11 | { color = "yellow" fade = 3 } 12 | { color = "green" fade = 7 } 13 | { color = "blue" fade = 3 } 14 | { color = "#f0f" fade = 7 } 15 | { color = "black" fade = 62 } 16 | { color = {255 240 0} fade = 62 } 17 | } 18 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/Julia9.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = 0.758023 5 | julia_y = 0.117900 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 14 } 9 | { color = "white" } 10 | { color = "red" fade = 3 } 11 | { color = "yellow" fade = 3 } 12 | { color = "green" fade = 7 } 13 | { color = "blue" fade = 3 } 14 | { color = "#f0f" fade = 7 } 15 | { color = "black" fade = 62 } 16 | { color = {255 240 0} fade = 62 } 17 | } 18 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/License.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emCore" 5 | Path="License.pdf" 6 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/Mandelbrot.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = mandelbrot 4 | depth = 2040 5 | colors = { 6 | { color = "black" fade = 14 } 7 | { color = "white" } 8 | { color = "red" fade = 3 } 9 | { color = "yellow" fade = 3 } 10 | { color = "green" fade = 7 } 11 | { color = "blue" fade = 3 } 12 | { color = "#f0f" fade = 7 } 13 | { color = "black" fade = 62 } 14 | { color = {255 240 0} fade = 62 } 15 | } 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/MultiJulia.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = multi_julia 4 | depth = 2040 5 | colors = { 6 | { color = "black" fade = 14 } 7 | { color = "white" } 8 | { color = "red" fade = 3 } 9 | { color = "yellow" fade = 3 } 10 | { color = "green" fade = 7 } 11 | { color = "blue" fade = 3 } 12 | { color = "#f0f" fade = 7 } 13 | { color = "black" fade = 62 } 14 | { color = {255 240 0} fade = 62 } 15 | } 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/Netwalk1.emNetwalk: -------------------------------------------------------------------------------- 1 | #%rec:emNetwalk%# 2 | 3 | Width = 5 4 | Height = 5 5 | Borderless = no 6 | NoFourWayJunctions = no 7 | Complexity = 1 8 | Finished = no 9 | PenaltyPoints = 0 10 | CurrentPiece = -1 11 | Raster = { 12 | 3 13 | 33 14 | 6 15 | 5 16 | 6 17 | 14 18 | 5 19 | 15 20 | 6 21 | 10 22 | 10 23 | 88 24 | 10 25 | 5 26 | 34 27 | 5 28 | 5 29 | 10 30 | 36 31 | 40 32 | 9 33 | 6 34 | 12 35 | 10 36 | 12 37 | } 38 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/SystemRequirements.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emCore" 5 | Path="SystemRequirements.pdf" 6 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/TestPanel.emTestPanel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/etc/emMain/VcItemFiles/TestPanel.emTestPanel -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/emFileManCustomization.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emFileMan" 5 | Path="emFileManCustomization.pdf" 6 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/emFileManUserGuide.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emFileMan" 5 | Path="emFileManUserGuide.pdf" 6 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/emHmiDemo.emHmiDemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/etc/emMain/VcItemFiles/emHmiDemo.emHmiDemo -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/emLKC.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=Res 4 | BasePathProject="emLKC" 5 | Path="" 6 | HaveDirEntry=no 7 | -------------------------------------------------------------------------------- /etc/emMain/VcItemFiles/version: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/AboutEagleMode.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "About Eagle Mode" 4 | 5 | PosX = 0.090 6 | PosY = 0.100 7 | Width = 0.00434 8 | ContentTallness = 1.2 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "AboutEagleMode.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/AdvancedConfiguration.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Advanced Configuration" 4 | 5 | PosX = 0.090 6 | PosY = 0.147 7 | Width = 0.045 8 | ContentTallness = 0.116 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "AdvancedConfiguration.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/ChangeLog.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Change Log" 4 | 5 | PosX = 0.09717 6 | PosY = 0.100 7 | Width = 0.00434 8 | ContentTallness = 1.2 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "ChangeLog.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Chess1.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "SilChess" 4 | 5 | PosX = 0.22 6 | PosY = 0.33 7 | Width = 0.04 8 | ContentTallness = 0.7 9 | 10 | BackgroundColor = "#975" 11 | 12 | FileName = "Chess1.silchess" 13 | CopyToUser = true 14 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Clock1.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Clock" 4 | 5 | PosX = 0.67 6 | PosY = 0.23 7 | Width = 0.04 8 | ContentTallness = 1.0 9 | 10 | BorderScaling = 0.0 11 | 12 | BackgroundColor = { 0 0 0 0 } 13 | BorderColor = { 0 0 0 0 } 14 | 15 | FileName = "Clock1.emClock" 16 | CopyToUser = true 17 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Clock2.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Clock" 4 | 5 | PosX = 0.41 6 | PosY = 0.63 7 | Width = 0.005 8 | ContentTallness = 1.0 9 | 10 | BorderScaling = 0.0 11 | 12 | BackgroundColor = { 0 0 0 0 } 13 | BorderColor = { 0 0 0 0 } 14 | 15 | FileName = "Clock2.emClock" 16 | CopyToUser = true 17 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/DebugTreeDump.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "debug.emTreeDump" 4 | 5 | PosX = 0.893 6 | PosY = 0.884 7 | Width = 0.025 8 | ContentTallness = 0.6666666666666667 9 | 10 | FileName = "DebugTreeDump.emFileLink" 11 | CopyToUser = false 12 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/DebugTreeDumpText.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "About emTreeDump" 4 | 5 | PosX = 0.898 6 | PosY = 0.878 7 | Width = 0.015 8 | ContentTallness = 0.35 9 | 10 | FileName = "DebugTreeDump.txt" 11 | CopyToUser = false 12 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/FS.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "File System" 4 | 5 | PosX = 0.38 6 | PosY = 0.447 7 | Width = 0.24 8 | ContentTallness = 0.375 9 | 10 | BorderScaling = 2.9 11 | 12 | BackgroundColor = "#BBB" 13 | BorderColor = "#333" 14 | TitleColor = "#BBB" 15 | 16 | FileName = "FS.emFileLink" 17 | CopyToUser = false 18 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/GeneralUserGuide.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "General User Guide" 4 | 5 | PosX = 0.090 6 | PosY = 0.110 7 | Width = 0.045 8 | ContentTallness = 0.7 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "GeneralUserGuide.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/InstallAndStart.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Install And Start" 4 | 5 | PosX = 0.125 6 | PosY = 0.100 7 | Width = 0.010 8 | ContentTallness = 0.5 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "InstallAndStart.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Julia1.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#1)" 4 | 5 | PosX = 0.408 6 | PosY = 0.188 7 | Width = 0.015 8 | ContentTallness = 0.8 9 | 10 | BackgroundColor = "#333" 11 | BorderColor = "#500" 12 | TitleColor = "#777" 13 | 14 | FileName = "Julia1.emFractal" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Julia2.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#2)" 4 | 5 | PosX = 0.909 6 | PosY = 0.493 7 | Width = 0.003 8 | ContentTallness = 1.05 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Julia2.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Julia3.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#3)" 4 | 5 | PosX = 0.790 6 | PosY = 0.693 7 | Width = 0.003 8 | ContentTallness = 1.05 9 | 10 | BackgroundColor = "#333" 11 | BorderColor = "#12C" 12 | TitleColor = "#FB5" 13 | 14 | FileName = "Julia3.emFractal" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Julia4.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#4)" 4 | 5 | PosX = 0.798 6 | PosY = 0.544 7 | Width = 0.021 8 | ContentTallness = 1.08 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Julia4.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Julia5.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#5)" 4 | 5 | PosX = 0.800 6 | PosY = 0.430 7 | Width = 0.002 8 | ContentTallness = 0.95 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Julia5.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Julia6.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#6)" 4 | 5 | PosX = 0.149 6 | PosY = 0.498 7 | Width = 0.010 8 | ContentTallness = 0.96 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Julia6.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Julia7.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#7)" 4 | 5 | PosX = 0.831 6 | PosY = 0.124 7 | Width = 0.011 8 | ContentTallness = 0.9 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Julia7.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Julia8.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#8)" 4 | 5 | PosX = 0.734 6 | PosY = 0.346 7 | Width = 0.004 8 | ContentTallness = 0.8 9 | 10 | BackgroundColor = "#333" 11 | BorderColor = "#EE2" 12 | TitleColor = "#404" 13 | 14 | FileName = "Julia8.emFractal" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Julia9.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#9)" 4 | 5 | PosX = 0.252 6 | PosY = 0.856 7 | Width = 0.020 8 | ContentTallness = 0.85 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Julia9.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/License.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "License" 4 | 5 | PosX = 0.10434 6 | PosY = 0.100 7 | Width = 0.010 8 | ContentTallness = 0.5 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "License.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Mandelbrot.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Mandelbrot Fractal" 4 | 5 | PosX = 0.536 6 | PosY = 0.777 7 | Width = 0.04 8 | ContentTallness = 1.0 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Mandelbrot.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Mines1.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "emMines" 4 | 5 | PosX = 0.204 6 | PosY = 0.696 7 | Width = 0.057 8 | ContentTallness = 0.66 9 | 10 | BackgroundColor = "#222" 11 | 12 | FileName = "Mines1.emMines" 13 | CopyToUser = true 14 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/MultiJulia.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Multi-Julia" 4 | 5 | PosX = 0.567 6 | PosY = 0.926 7 | Width = 0.002 8 | ContentTallness = 1.0 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "MultiJulia.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Netwalk1.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "emNetwalk" 4 | 5 | PosX = 0.12 6 | PosY = 0.60 7 | Width = 0.04 8 | ContentTallness = 0.66 9 | 10 | BackgroundColor = "#000" 11 | BorderColor = "#269" 12 | TitleColor = "#EEE" 13 | 14 | FileName = "Netwalk1.emNetwalk" 15 | CopyToUser = true 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/Stocks.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "emStocks" 4 | 5 | PosX = 0.84 6 | PosY = 0.37 7 | Width = 0.05 8 | ContentTallness = 0.473 9 | 10 | BorderScaling = 1.6 11 | 12 | BackgroundColor = "#272d40" 13 | BorderColor = "#3A3F43" 14 | TitleColor = "#EEC" 15 | 16 | FileName = "Stocks.emStocks" 17 | CopyToUser = true 18 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/SystemRequirements.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "System Requirements" 4 | 5 | PosX = 0.11717 6 | PosY = 0.100 7 | Width = 0.005 8 | ContentTallness = 1.033 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "SystemRequirements.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/TestPanel.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Test Panel" 4 | 5 | PosX = 0.952 6 | PosY = 0.790 7 | Width = 0.01 8 | ContentTallness = 1.0 9 | 10 | BorderScaling = 3.0 11 | 12 | BackgroundColor = { 0 0 0 0 } 13 | BorderColor = { 68 136 255 32 } 14 | TitleColor = { 255 204 204 128 } 15 | 16 | FileName = "TestPanel.emTestPanel" 17 | CopyToUser = false 18 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/emFileManCustomization.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "emFileMan Customization" 4 | 5 | PosX = 0.143 6 | PosY = 0.134 7 | Width = 0.040 8 | ContentTallness = 0.2 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "emFileManCustomization.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/emFileManUserGuide.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "emFileMan User Guide" 4 | 5 | PosX = 0.143 6 | PosY = 0.100 7 | Width = 0.040 8 | ContentTallness = 0.7 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "emFileManUserGuide.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/emHmiDemo.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "HMI Demo" 4 | 5 | PosX = 0.925 6 | PosY = 0.835 7 | Width = 0.015 8 | ContentTallness = 0.5625 9 | 10 | BorderScaling = 1.2 11 | 12 | BackgroundColor = { 255 255 255 255 } 13 | BorderColor = { 160 160 80 255 } 14 | TitleColor = { 255 255 255 255 } 15 | 16 | FileName = "emHmiDemo.emHmiDemo" 17 | CopyToUser = false 18 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/emLKC.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "emLKC - The Eagle Mode Linux Kernel Configurator" 4 | 5 | PosX = 0.855 6 | PosY = 0.817 7 | Width = 0.024 8 | ContentTallness = 0.3333333333333333 9 | 10 | BorderScaling = 3.5 11 | 12 | BackgroundColor = "#BBB" 13 | BorderColor = "#223" 14 | TitleColor = "#FFC" 15 | 16 | FileName = "emLKC.emFileLink" 17 | CopyToUser = false 18 | -------------------------------------------------------------------------------- /etc/emMain/VcItems/version: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/SilChess.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".silchess" } 4 | Priority = 1.0 5 | Library = "SilChess" 6 | Function = "SilChessFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emAv_vlc.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { 4 | # Audio: 5 | ".aac" 6 | ".au" 7 | ".flac" 8 | ".it" 9 | ".mod" 10 | ".mp3" 11 | ".ogg" 12 | ".ra" 13 | ".s3m" 14 | ".stm" 15 | ".wav" 16 | ".wma" 17 | ".xm" 18 | # Video: 19 | ".asf" 20 | ".avi" 21 | ".fli" 22 | ".flv" 23 | ".m2t" 24 | ".m2v" 25 | ".mkv" 26 | ".mov" 27 | ".mp4" 28 | ".mpeg" 29 | ".mpg" 30 | ".mpv" 31 | ".ogv" 32 | ".rm" 33 | ".ts" 34 | ".vob" 35 | ".wmv" 36 | } 37 | Priority = 1.0 38 | Library = "emAv" 39 | Function = "emAvFpPluginFunc" 40 | Properties = { { Name="ServerProc" Value="emAvServerProc_vlc" } } 41 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emBmp.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".bmp" ".cur" ".dib" ".ico" } 4 | Priority = 1.0 5 | Library = "emBmp" 6 | Function = "emBmpFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emClock.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emClock" } 4 | Priority = 1.0 5 | Library = "emClock" 6 | Function = "emClockFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emDir.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { "directory" } 4 | Priority = 1.0 5 | Library = "emFileMan" 6 | Function = "emDirFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emDirStat.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { "directory" } 4 | Priority = 0.1 5 | Library = "emFileMan" 6 | Function = "emDirStatFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emDiskDrives.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emDiskDrives" } 4 | Priority = 1.0 5 | Library = "emFileMan" 6 | Function = "emDiskDrivesFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emFileLink.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emFileLink" } 4 | Priority = 1.0 5 | Library = "emFileMan" 6 | Function = "emFileLinkFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emFractal.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emFractal" } 4 | Priority = 1.0 5 | Library = "emFractal" 6 | Function = "emFractalFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emGif.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".gif" } 4 | Priority = 1.0 5 | Library = "emGif" 6 | Function = "emGifFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emHmiDemo.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emHmiDemo" } 4 | Priority = 1.0 5 | Library = "emHmiDemo" 6 | Function = "emHmiDemoFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emIlbm.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".ilbm" ".lbm" } 4 | Priority = 1.0 5 | Library = "emIlbm" 6 | Function = "emIlbmFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emJpeg.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".jpeg" ".jpg" } 4 | Priority = 1.0 5 | Library = "emJpeg" 6 | Function = "emJpegFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emMines.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emMines" } 4 | Priority = 1.0 5 | Library = "emMines" 6 | Function = "emMinesFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emNetwalk.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emNetwalk" } 4 | Priority = 1.0 5 | Library = "emNetwalk" 6 | Function = "emNetwalkFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emPcx.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".pcx" } 4 | Priority = 1.0 5 | Library = "emPcx" 6 | Function = "emPcxFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emPdf.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".pdf" } 4 | Priority = 1.0 5 | Library = "emPdf" 6 | Function = "emPdfFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emPng.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".png" } 4 | Priority = 1.0 5 | Library = "emPng" 6 | Function = "emPngFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emPnm.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".pnm" ".pbm" ".pgm" ".ppm" } 4 | Priority = 1.0 5 | Library = "emPnm" 6 | Function = "emPnmFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emPs.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".ps" } 4 | Priority = 1.0 5 | Library = "emPs" 6 | Function = "emPsFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emRas.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".ras" } 4 | Priority = 1.0 5 | Library = "emRas" 6 | Function = "emRasFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emRgb.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".rgb" } 4 | Priority = 1.0 5 | Library = "emRgb" 6 | Function = "emRgbFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emStocks.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emStocks" } 4 | Priority = 1.0 5 | Library = "emStocks" 6 | Function = "emStocksFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emSvg.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".svg" ".svgz" ".svg.gz" } 4 | Priority = 1.0 5 | Library = "emSvg" 6 | Function = "emSvgFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emTestPanel.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emTestPanel" } 4 | Priority = 1.0 5 | Library = "emTestPanel" 6 | Function = "emTestPanelFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emText.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { "file" } 4 | Priority = 0.1 5 | Library = "emText" 6 | Function = "emTextFpPluginFunc" 7 | Properties = { { Name="AlternativeView" Value="no" } } 8 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emText_Alt.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { "file" } 4 | Priority = 0.0 5 | Library = "emText" 6 | Function = "emTextFpPluginFunc" 7 | Properties = { { Name="AlternativeView" Value="yes" } } 8 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emTga.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".tga" } 4 | Priority = 1.0 5 | Library = "emTga" 6 | Function = "emTgaFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emTiff.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".tiff" ".tif" } 4 | Priority = 1.0 5 | Library = "emTiff" 6 | Function = "emTiffFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emTreeDump.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".emTreeDump" } 4 | Priority = 1.0 5 | Library = "emTreeDump" 6 | Function = "emTreeDumpFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emWebp.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".webp" } 4 | Priority = 1.0 5 | Library = "emWebp" 6 | Function = "emWebpFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emXbm.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".xbm" } 4 | Priority = 1.0 5 | Library = "emXbm" 6 | Function = "emXbmFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/emXpm.emFpPlugin: -------------------------------------------------------------------------------- 1 | #%rec:emFpPlugin%# 2 | 3 | FileTypes = { ".xpm" } 4 | Priority = 1.0 5 | Library = "emXpm" 6 | Function = "emXpmFpPluginFunc" 7 | -------------------------------------------------------------------------------- /etcw/emCore/FpPlugins/version: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /etcw/emFileMan/Commands/MorePackUnpack.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 20.0 4 | # Directory = MorePackUnpack 5 | # BorderScaling = 0.0 6 | #[[END PROPERTIES]] 7 | -------------------------------------------------------------------------------- /etcw/emFileMan/Commands/MorePackUnpack/MorePackCommands.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 30.0 4 | # Directory = MorePackCommands 5 | # BorderScaling = 0.0 6 | #[[END PROPERTIES]] 7 | -------------------------------------------------------------------------------- /etcw/emFileMan/Commands/PlainText.props: -------------------------------------------------------------------------------- 1 | #[[BEGIN PROPERTIES]] 2 | # Type = Group 3 | # Order = 21.0 4 | # Directory = PlainText 5 | # Caption = Plain Text 6 | # Descr =Commands for plain text files 7 | #[[END PROPERTIES]] 8 | -------------------------------------------------------------------------------- /etcw/emFileMan/Commands/PlainText/Notepad.js: -------------------------------------------------------------------------------- 1 | /* 2 | #[[BEGIN PROPERTIES]] 3 | # Type = Command 4 | # Order = 1.0 5 | # Interpreter = wscript 6 | # Caption = Notepad 7 | # Descr =Open a plain text file in the Notepad text editor. 8 | # Descr = 9 | # Descr =Selection details: 10 | # Descr = 11 | # Descr = Source: Ignored. 12 | # Descr = 13 | # Descr = Target: The plain text file to be opened. 14 | # Icon = text_editor.tga 15 | #[[END PROPERTIES]] 16 | */ 17 | 18 | var FileSys=WScript.CreateObject("Scripting.FileSystemObject"); 19 | var WshShell=WScript.CreateObject("WScript.Shell"); 20 | var incFile=FileSys.OpenTextFile(WshShell.ExpandEnvironmentStrings( 21 | "%EM_DIR%\\res\\emFileMan\\scripts\\cmd-util.js" 22 | )); 23 | eval(incFile.ReadAll()); 24 | incFile.Close(); 25 | 26 | OpenSingleTargetFileWith(['notepad']); 27 | -------------------------------------------------------------------------------- /etcw/emFileMan/Commands/version: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/AboutEagleMode.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emCore" 5 | Path="index.pdf" 6 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/AdvancedConfiguration.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emCore" 5 | Path="AdvancedConfiguration.pdf" 6 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/ChangeLog.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emCore" 5 | Path="ChangeLog.pdf" 6 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/Chess1.silchess: -------------------------------------------------------------------------------- 1 | _SilChess_ 2 | search depth: 2 3 | human side: white 4 | moves: 5 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/DebugTreeDump.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=Tmp 4 | BasePathProject="emCore" 5 | Path="debug.emTreeDump" 6 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/DebugTreeDump.txt: -------------------------------------------------------------------------------- 1 | About emTreeDump 2 | ################ 3 | 4 | (This is for computer experts and developers only) 5 | 6 | emTreeDump is a file format and a plugin application for viewing a data dump 7 | which has tree structure. It is possible to create a dump of the top-level C++ 8 | objects of a running emCore-based program. If you want to create such a dump in 9 | Eagle Mode, please navigate to any desired place and enter the following cheat 10 | code: 11 | 12 | chEat:td! 13 | 14 | This creates a file named "debug.emTreeDump" in the temporary directory. But you 15 | do not need to navigate there, just click on "Reload Files" and see the dump in 16 | the panel below: 17 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/FS.emDiskDrives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/etcw/emMain/VcItemFiles/FS.emDiskDrives -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/GeneralUserGuide.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emMain" 5 | Path="GeneralUserGuide.pdf" 6 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/InstallAndStart.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emCore" 5 | Path="InstallAndStart.pdf" 6 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/Julia1.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = 0.78 5 | julia_y = 0.127 6 | depth = 2040 7 | colors = { 8 | { color = "#000000" fade = 50 } 9 | { color = "#80ffe8" fade = 10 } 10 | { color = "#ffffdd" fade = 20 } 11 | { color = "#ff1810" fade = 50 } 12 | } 13 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/Julia2.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = -0.28 5 | julia_y = 0.0 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 0 } 9 | { color = "black" fade = 5 } 10 | { color = "green" fade = 6 } 11 | { color = "yellow" fade = 6 } 12 | { color = "white" fade = 15 } 13 | { color = "black" fade = 12 } 14 | { color = "red" fade = 30 } 15 | { color = "yellow" fade = 20 } 16 | { color = "blue" fade = 20 } 17 | } 18 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/Julia4.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = -0.282940 5 | julia_y = 0.009535 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 14 } 9 | { color = "white" } 10 | { color = "red" fade = 3 } 11 | { color = "yellow" fade = 3 } 12 | { color = "green" fade = 7 } 13 | { color = "blue" fade = 3 } 14 | { color = "#f0f" fade = 7 } 15 | { color = "black" fade = 62 } 16 | { color = {255 240 0} fade = 62 } 17 | } 18 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/Julia5.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = 0.081754 5 | julia_y = -0.649195 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 14 } 9 | { color = "white" } 10 | { color = "red" fade = 3 } 11 | { color = "yellow" fade = 3 } 12 | { color = "green" fade = 7 } 13 | { color = "blue" fade = 3 } 14 | { color = "#f0f" fade = 7 } 15 | { color = "black" fade = 62 } 16 | { color = {255 240 0} fade = 62 } 17 | } 18 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/Julia6.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = 0.063837 5 | julia_y = -0.654262 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 14 } 9 | { color = "white" } 10 | { color = "red" fade = 3 } 11 | { color = "yellow" fade = 3 } 12 | { color = "green" fade = 7 } 13 | { color = "blue" fade = 3 } 14 | { color = "#f0f" fade = 7 } 15 | { color = "black" fade = 62 } 16 | { color = {255 240 0} fade = 62 } 17 | } 18 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/Julia7.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = 0.461609 5 | julia_y = -0.561627 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 14 } 9 | { color = "white" } 10 | { color = "red" fade = 3 } 11 | { color = "yellow" fade = 3 } 12 | { color = "green" fade = 7 } 13 | { color = "blue" fade = 3 } 14 | { color = "#f0f" fade = 7 } 15 | { color = "black" fade = 62 } 16 | { color = {255 240 0} fade = 62 } 17 | } 18 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/Julia8.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = 0.750432 5 | julia_y = -0.029976 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 14 } 9 | { color = "white" } 10 | { color = "red" fade = 3 } 11 | { color = "yellow" fade = 3 } 12 | { color = "green" fade = 7 } 13 | { color = "blue" fade = 3 } 14 | { color = "#f0f" fade = 7 } 15 | { color = "black" fade = 62 } 16 | { color = {255 240 0} fade = 62 } 17 | } 18 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/Julia9.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = julia 4 | julia_x = 0.758023 5 | julia_y = 0.117900 6 | depth = 2040 7 | colors = { 8 | { color = "black" fade = 14 } 9 | { color = "white" } 10 | { color = "red" fade = 3 } 11 | { color = "yellow" fade = 3 } 12 | { color = "green" fade = 7 } 13 | { color = "blue" fade = 3 } 14 | { color = "#f0f" fade = 7 } 15 | { color = "black" fade = 62 } 16 | { color = {255 240 0} fade = 62 } 17 | } 18 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/License.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emCore" 5 | Path="License.pdf" 6 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/Mandelbrot.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = mandelbrot 4 | depth = 2040 5 | colors = { 6 | { color = "black" fade = 14 } 7 | { color = "white" } 8 | { color = "red" fade = 3 } 9 | { color = "yellow" fade = 3 } 10 | { color = "green" fade = 7 } 11 | { color = "blue" fade = 3 } 12 | { color = "#f0f" fade = 7 } 13 | { color = "black" fade = 62 } 14 | { color = {255 240 0} fade = 62 } 15 | } 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/MultiJulia.emFractal: -------------------------------------------------------------------------------- 1 | #%rec:emFractal%# 2 | 3 | type = multi_julia 4 | depth = 2040 5 | colors = { 6 | { color = "black" fade = 14 } 7 | { color = "white" } 8 | { color = "red" fade = 3 } 9 | { color = "yellow" fade = 3 } 10 | { color = "green" fade = 7 } 11 | { color = "blue" fade = 3 } 12 | { color = "#f0f" fade = 7 } 13 | { color = "black" fade = 62 } 14 | { color = {255 240 0} fade = 62 } 15 | } 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/Netwalk1.emNetwalk: -------------------------------------------------------------------------------- 1 | #%rec:emNetwalk%# 2 | 3 | Width = 5 4 | Height = 5 5 | Borderless = no 6 | NoFourWayJunctions = no 7 | Complexity = 1 8 | Finished = no 9 | PenaltyPoints = 0 10 | CurrentPiece = -1 11 | Raster = { 12 | 3 13 | 33 14 | 6 15 | 5 16 | 6 17 | 14 18 | 5 19 | 15 20 | 6 21 | 10 22 | 10 23 | 88 24 | 10 25 | 5 26 | 34 27 | 5 28 | 5 29 | 10 30 | 36 31 | 40 32 | 9 33 | 6 34 | 12 35 | 10 36 | 12 37 | } 38 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/SystemRequirements.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emCore" 5 | Path="SystemRequirements.pdf" 6 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/TestPanel.emTestPanel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/etcw/emMain/VcItemFiles/TestPanel.emTestPanel -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/emFileManCustomization.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emFileMan" 5 | Path="emFileManCustomization.pdf" 6 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/emFileManUserGuide.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=PdfDoc 4 | BasePathProject="emFileMan" 5 | Path="emFileManUserGuide.pdf" 6 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/emHmiDemo.emHmiDemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/etcw/emMain/VcItemFiles/emHmiDemo.emHmiDemo -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/emLKC.emFileLink: -------------------------------------------------------------------------------- 1 | #%rec:emFileLink%# 2 | 3 | BasePathType=Res 4 | BasePathProject="emLKC" 5 | Path="" 6 | HaveDirEntry=no 7 | -------------------------------------------------------------------------------- /etcw/emMain/VcItemFiles/version: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/AboutEagleMode.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "About Eagle Mode" 4 | 5 | PosX = 0.090 6 | PosY = 0.100 7 | Width = 0.00434 8 | ContentTallness = 1.2 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "AboutEagleMode.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/AdvancedConfiguration.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Advanced Configuration" 4 | 5 | PosX = 0.090 6 | PosY = 0.147 7 | Width = 0.045 8 | ContentTallness = 0.116 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "AdvancedConfiguration.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/ChangeLog.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Change Log" 4 | 5 | PosX = 0.09717 6 | PosY = 0.100 7 | Width = 0.00434 8 | ContentTallness = 1.2 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "ChangeLog.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Chess1.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "SilChess" 4 | 5 | PosX = 0.22 6 | PosY = 0.33 7 | Width = 0.04 8 | ContentTallness = 0.7 9 | 10 | BackgroundColor = "#975" 11 | 12 | FileName = "Chess1.silchess" 13 | CopyToUser = true 14 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Clock1.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Clock" 4 | 5 | PosX = 0.67 6 | PosY = 0.23 7 | Width = 0.04 8 | ContentTallness = 1.0 9 | 10 | BorderScaling = 0.0 11 | 12 | BackgroundColor = { 0 0 0 0 } 13 | BorderColor = { 0 0 0 0 } 14 | 15 | FileName = "Clock1.emClock" 16 | CopyToUser = true 17 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Clock2.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Clock" 4 | 5 | PosX = 0.41 6 | PosY = 0.63 7 | Width = 0.005 8 | ContentTallness = 1.0 9 | 10 | BorderScaling = 0.0 11 | 12 | BackgroundColor = { 0 0 0 0 } 13 | BorderColor = { 0 0 0 0 } 14 | 15 | FileName = "Clock2.emClock" 16 | CopyToUser = true 17 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/DebugTreeDump.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "debug.emTreeDump" 4 | 5 | PosX = 0.893 6 | PosY = 0.884 7 | Width = 0.025 8 | ContentTallness = 0.6666666666666667 9 | 10 | FileName = "DebugTreeDump.emFileLink" 11 | CopyToUser = false 12 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/DebugTreeDumpText.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "About emTreeDump" 4 | 5 | PosX = 0.898 6 | PosY = 0.878 7 | Width = 0.015 8 | ContentTallness = 0.35 9 | 10 | FileName = "DebugTreeDump.txt" 11 | CopyToUser = false 12 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/FS.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "File System" 4 | 5 | PosX = 0.38 6 | PosY = 0.447 7 | Width = 0.24 8 | ContentTallness = 0.375 9 | 10 | BorderScaling = 2.9 11 | 12 | BackgroundColor = "#BBB" 13 | BorderColor = "#333" 14 | TitleColor = "#BBB" 15 | 16 | FileName = "FS.emDiskDrives" 17 | CopyToUser = false 18 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/GeneralUserGuide.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "General User Guide" 4 | 5 | PosX = 0.090 6 | PosY = 0.110 7 | Width = 0.045 8 | ContentTallness = 0.7 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "GeneralUserGuide.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/InstallAndStart.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Install And Start" 4 | 5 | PosX = 0.125 6 | PosY = 0.100 7 | Width = 0.010 8 | ContentTallness = 0.5 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "InstallAndStart.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Julia1.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#1)" 4 | 5 | PosX = 0.408 6 | PosY = 0.188 7 | Width = 0.015 8 | ContentTallness = 0.8 9 | 10 | BackgroundColor = "#333" 11 | BorderColor = "#500" 12 | TitleColor = "#777" 13 | 14 | FileName = "Julia1.emFractal" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Julia2.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#2)" 4 | 5 | PosX = 0.909 6 | PosY = 0.493 7 | Width = 0.003 8 | ContentTallness = 1.05 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Julia2.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Julia3.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#3)" 4 | 5 | PosX = 0.790 6 | PosY = 0.693 7 | Width = 0.003 8 | ContentTallness = 1.05 9 | 10 | BackgroundColor = "#333" 11 | BorderColor = "#12C" 12 | TitleColor = "#FB5" 13 | 14 | FileName = "Julia3.emFractal" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Julia4.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#4)" 4 | 5 | PosX = 0.798 6 | PosY = 0.544 7 | Width = 0.021 8 | ContentTallness = 1.08 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Julia4.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Julia5.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#5)" 4 | 5 | PosX = 0.800 6 | PosY = 0.430 7 | Width = 0.002 8 | ContentTallness = 0.95 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Julia5.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Julia6.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#6)" 4 | 5 | PosX = 0.149 6 | PosY = 0.498 7 | Width = 0.010 8 | ContentTallness = 0.96 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Julia6.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Julia7.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#7)" 4 | 5 | PosX = 0.831 6 | PosY = 0.124 7 | Width = 0.011 8 | ContentTallness = 0.9 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Julia7.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Julia8.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#8)" 4 | 5 | PosX = 0.734 6 | PosY = 0.346 7 | Width = 0.004 8 | ContentTallness = 0.8 9 | 10 | BackgroundColor = "#333" 11 | BorderColor = "#EE2" 12 | TitleColor = "#404" 13 | 14 | FileName = "Julia8.emFractal" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Julia9.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Julia Fractal (#9)" 4 | 5 | PosX = 0.252 6 | PosY = 0.856 7 | Width = 0.020 8 | ContentTallness = 0.85 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Julia9.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/License.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "License" 4 | 5 | PosX = 0.10434 6 | PosY = 0.100 7 | Width = 0.010 8 | ContentTallness = 0.5 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "License.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Mandelbrot.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Mandelbrot Fractal" 4 | 5 | PosX = 0.536 6 | PosY = 0.777 7 | Width = 0.04 8 | ContentTallness = 1.0 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "Mandelbrot.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Mines1.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "emMines" 4 | 5 | PosX = 0.204 6 | PosY = 0.696 7 | Width = 0.057 8 | ContentTallness = 0.66 9 | 10 | BackgroundColor = "#222" 11 | 12 | FileName = "Mines1.emMines" 13 | CopyToUser = true 14 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/MultiJulia.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Multi-Julia" 4 | 5 | PosX = 0.567 6 | PosY = 0.926 7 | Width = 0.002 8 | ContentTallness = 1.0 9 | 10 | BackgroundColor = "#333" 11 | 12 | FileName = "MultiJulia.emFractal" 13 | CopyToUser = false 14 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Netwalk1.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "emNetwalk" 4 | 5 | PosX = 0.12 6 | PosY = 0.60 7 | Width = 0.04 8 | ContentTallness = 0.66 9 | 10 | BackgroundColor = "#000" 11 | BorderColor = "#269" 12 | TitleColor = "#EEE" 13 | 14 | FileName = "Netwalk1.emNetwalk" 15 | CopyToUser = true 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/Stocks.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "emStocks" 4 | 5 | PosX = 0.84 6 | PosY = 0.37 7 | Width = 0.05 8 | ContentTallness = 0.473 9 | 10 | BorderScaling = 1.6 11 | 12 | BackgroundColor = "#272d40" 13 | BorderColor = "#3A3F43" 14 | TitleColor = "#EEC" 15 | 16 | FileName = "Stocks.emStocks" 17 | CopyToUser = true 18 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/SystemRequirements.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "System Requirements" 4 | 5 | PosX = 0.11717 6 | PosY = 0.100 7 | Width = 0.005 8 | ContentTallness = 1.033 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "SystemRequirements.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/TestPanel.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "Test Panel" 4 | 5 | PosX = 0.952 6 | PosY = 0.790 7 | Width = 0.01 8 | ContentTallness = 1.0 9 | 10 | BorderScaling = 3.0 11 | 12 | BackgroundColor = { 0 0 0 0 } 13 | BorderColor = { 68 136 255 32 } 14 | TitleColor = { 255 204 204 128 } 15 | 16 | FileName = "TestPanel.emTestPanel" 17 | CopyToUser = false 18 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/emFileManCustomization.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "emFileMan Customization" 4 | 5 | PosX = 0.143 6 | PosY = 0.134 7 | Width = 0.040 8 | ContentTallness = 0.2 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "emFileManCustomization.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/emFileManUserGuide.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "emFileMan User Guide" 4 | 5 | PosX = 0.143 6 | PosY = 0.100 7 | Width = 0.040 8 | ContentTallness = 0.7 9 | 10 | BackgroundColor = "#998" 11 | BorderColor = "#666" 12 | TitleColor = "#EEF" 13 | 14 | FileName = "emFileManUserGuide.emFileLink" 15 | CopyToUser = false 16 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/emHmiDemo.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "HMI Demo" 4 | 5 | PosX = 0.925 6 | PosY = 0.835 7 | Width = 0.015 8 | ContentTallness = 0.5625 9 | 10 | BorderScaling = 1.2 11 | 12 | BackgroundColor = { 255 255 255 255 } 13 | BorderColor = { 160 160 80 255 } 14 | TitleColor = { 255 255 255 255 } 15 | 16 | FileName = "emHmiDemo.emHmiDemo" 17 | CopyToUser = false 18 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/emLKC.emVcItem: -------------------------------------------------------------------------------- 1 | #%rec:emVirtualCosmosItem%# 2 | 3 | Title = "emLKC - The Eagle Mode Linux Kernel Configurator" 4 | 5 | PosX = 0.855 6 | PosY = 0.817 7 | Width = 0.024 8 | ContentTallness = 0.3333333333333333 9 | 10 | BorderScaling = 3.5 11 | 12 | BackgroundColor = "#BBB" 13 | BorderColor = "#223" 14 | TitleColor = "#FFC" 15 | 16 | FileName = "emLKC.emFileLink" 17 | CopyToUser = false 18 | -------------------------------------------------------------------------------- /etcw/emMain/VcItems/version: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /res/emAv/Masks.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emAv/Masks.tga -------------------------------------------------------------------------------- /res/emAv/Notes.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emAv/Notes.tga -------------------------------------------------------------------------------- /res/emAv/Pause.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emAv/Pause.tga -------------------------------------------------------------------------------- /res/emAv/Play.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emAv/Play.tga -------------------------------------------------------------------------------- /res/emAv/PlayFast.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emAv/PlayFast.tga -------------------------------------------------------------------------------- /res/emAv/PlaySlow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emAv/PlaySlow.tga -------------------------------------------------------------------------------- /res/emAv/Stop.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emAv/Stop.tga -------------------------------------------------------------------------------- /res/emAv/src/Notes.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 2 | Landscape 3 | Center 4 | Metric 5 | A4 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 6 2655 135 10215 9270 11 | 1 2 0 1 0 0 50 -1 20 0.000 1 0.0000 4050 6345 1350 990 2700 5355 5400 7335 12 | 1 2 0 1 0 0 50 -1 20 0.000 1 0.0000 8820 8235 1350 990 7470 7245 10170 9225 13 | 2 3 0 1 0 0 50 -1 20 0.000 0 0 7 0 0 5 14 | 5040 135 10170 2295 10170 3195 5040 945 5040 135 15 | 2 2 0 1 0 0 50 -1 20 0.000 0 0 7 0 0 5 16 | 5400 6300 5040 6300 5040 315 5400 315 5400 6300 17 | 2 2 0 1 0 0 50 -1 20 0.000 0 0 7 0 0 5 18 | 10170 8280 9810 8280 9810 2295 10170 2295 10170 8280 19 | 2 3 0 1 0 0 50 -1 20 0.000 0 0 7 0 0 5 20 | 5032 1503 10162 3663 10162 4563 5032 2313 5032 1503 21 | -6 22 | -------------------------------------------------------------------------------- /res/emCore/font/00000-0001F_128x224_C0Controls_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/00000-0001F_128x224_C0Controls_original.tga -------------------------------------------------------------------------------- /res/emCore/font/00020-0007F_128x224_BasicLatin_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/00020-0007F_128x224_BasicLatin_original.tga -------------------------------------------------------------------------------- /res/emCore/font/000A0-000FF_128x224_Latin1Supplement_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/000A0-000FF_128x224_Latin1Supplement_original.tga -------------------------------------------------------------------------------- /res/emCore/font/00100-0017F_128x224_LatinExtendedA_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/00100-0017F_128x224_LatinExtendedA_original.tga -------------------------------------------------------------------------------- /res/emCore/font/00180-0024F_128x224_LatinExtendedB_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/00180-0024F_128x224_LatinExtendedB_original.tga -------------------------------------------------------------------------------- /res/emCore/font/00370-003FF_128x224_GreekAndCoptic_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/00370-003FF_128x224_GreekAndCoptic_original.tga -------------------------------------------------------------------------------- /res/emCore/font/00400-004FF_128x224_Cyrillic_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/00400-004FF_128x224_Cyrillic_original.tga -------------------------------------------------------------------------------- /res/emCore/font/00500-0052F_128x224_CyrillicSupplement_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/00500-0052F_128x224_CyrillicSupplement_original.tga -------------------------------------------------------------------------------- /res/emCore/font/01E00-01EF9_128x224_LatinExtendedAdditional_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/01E00-01EF9_128x224_LatinExtendedAdditional_original.tga -------------------------------------------------------------------------------- /res/emCore/font/02010-0205F_128x224_GeneralPunctuation_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/02010-0205F_128x224_GeneralPunctuation_original.tga -------------------------------------------------------------------------------- /res/emCore/font/020A0-020B5_128x224_CurrencySymbols_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/020A0-020B5_128x224_CurrencySymbols_original.tga -------------------------------------------------------------------------------- /res/emCore/font/02500-0257F_128x224_BoxDrawing_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/02500-0257F_128x224_BoxDrawing_original.tga -------------------------------------------------------------------------------- /res/emCore/font/02580-0259F_128x224_BlockElements_original.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/02580-0259F_128x224_BlockElements_original.tga -------------------------------------------------------------------------------- /res/emCore/font/CostlyChar.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/CostlyChar.tga -------------------------------------------------------------------------------- /res/emCore/font/UnknownChar.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/font/UnknownChar.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/Button.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/Button.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/ButtonBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/ButtonBorder.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/ButtonChecked.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/ButtonChecked.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/ButtonPressed.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/ButtonPressed.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/CheckBox.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/CheckBox.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/CheckBoxPressed.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/CheckBoxPressed.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/CustomRectBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/CustomRectBorder.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/Dir.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/Dir.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/DirUp.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/DirUp.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/GroupBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/GroupBorder.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/GroupInnerBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/GroupInnerBorder.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/IOField.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/IOField.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/PopupBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/PopupBorder.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/RadioBox.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/RadioBox.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/RadioBoxPressed.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/RadioBoxPressed.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/Splitter.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/Splitter.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/SplitterPressed.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/SplitterPressed.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/Tunnel.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/Tunnel.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/src/Dir-devel.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/src/Dir-devel.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/src/DirUp-devel.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/src/DirUp-devel.tga -------------------------------------------------------------------------------- /res/emCore/toolkit/src/toolkit.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emCore/toolkit/src/toolkit.blend -------------------------------------------------------------------------------- /res/emFileMan/icons/aspect_ratio_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/aspect_ratio_1.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/aspect_ratio_2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/aspect_ratio_2.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/aspect_ratio_3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/aspect_ratio_3.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/clear_selection.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/clear_selection.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/copy_names.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/copy_names.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/copy_paths.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/copy_paths.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/directories_first.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/directories_first.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/select_all.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/select_all.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/show_hidden_files.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/show_hidden_files.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/sort_by_class.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/sort_by_class.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/sort_by_date.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/sort_by_date.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/sort_by_ending.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/sort_by_ending.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/sort_by_name.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/sort_by_name.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/sort_by_size.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/sort_by_size.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/sort_by_version.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/sort_by_version.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/swap_selection.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/swap_selection.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/theme_CardBlue.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/theme_CardBlue.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/theme_CardGreen.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/theme_CardGreen.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/theme_CardPink.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/theme_CardPink.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/theme_CardSandy.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/theme_CardSandy.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/theme_Glass.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/theme_Glass.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/theme_Metal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/theme_Metal.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/theme_Night.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/theme_Night.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/theme_Paper.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/theme_Paper.tga -------------------------------------------------------------------------------- /res/emFileMan/icons/theme_Simple.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/icons/theme_Simple.tga -------------------------------------------------------------------------------- /res/emFileMan/scripts/msleep.js: -------------------------------------------------------------------------------- 1 | WScript.Sleep(parseInt(WScript.Arguments(0))); 2 | -------------------------------------------------------------------------------- /res/emFileMan/themes/CardInnerBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/themes/CardInnerBorder.tga -------------------------------------------------------------------------------- /res/emFileMan/themes/CardOuterBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/themes/CardOuterBorder.tga -------------------------------------------------------------------------------- /res/emFileMan/themes/GlassInnerBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/themes/GlassInnerBorder.tga -------------------------------------------------------------------------------- /res/emFileMan/themes/GlassOuterBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/themes/GlassOuterBorder.tga -------------------------------------------------------------------------------- /res/emFileMan/themes/MetalInnerBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/themes/MetalInnerBorder.tga -------------------------------------------------------------------------------- /res/emFileMan/themes/MetalOuterBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/themes/MetalOuterBorder.tga -------------------------------------------------------------------------------- /res/emFileMan/themes/NightInnerBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/themes/NightInnerBorder.tga -------------------------------------------------------------------------------- /res/emFileMan/themes/NightOuterBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/themes/NightOuterBorder.tga -------------------------------------------------------------------------------- /res/emFileMan/themes/PaperBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/themes/PaperBorder.tga -------------------------------------------------------------------------------- /res/emFileMan/themes/src/themes.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emFileMan/themes/src/themes.blend -------------------------------------------------------------------------------- /res/emHmiDemo/Button/light.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Button/light.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Button/off.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Button/off.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Button/on.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Button/on.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Button/src/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Button/src/Button.png -------------------------------------------------------------------------------- /res/emHmiDemo/Button/src/light.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Button/src/light.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Button/src/off.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Button/src/off.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Button/src/on.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Button/src/on.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Button/src/step4.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Button/src/step4.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Media/circuit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Media/circuit.pdf -------------------------------------------------------------------------------- /res/emHmiDemo/Media/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Media/document.pdf -------------------------------------------------------------------------------- /res/emHmiDemo/Media/graph1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Media/graph1.pdf -------------------------------------------------------------------------------- /res/emHmiDemo/Media/graph2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Media/graph2.pdf -------------------------------------------------------------------------------- /res/emHmiDemo/Media/src/circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Media/src/circuit.png -------------------------------------------------------------------------------- /res/emHmiDemo/Media/src/document.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Media/src/document.odt -------------------------------------------------------------------------------- /res/emHmiDemo/Media/src/table.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Media/src/table.ods -------------------------------------------------------------------------------- /res/emHmiDemo/Media/table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Media/table.pdf -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/noise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/noise.gif -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/off.gif -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/pies.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/pies.gif -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/src/noise/00.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/src/noise/00.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/src/noise/01.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/src/noise/01.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/src/noise/02.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/src/noise/02.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/src/noise/03.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/src/noise/03.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/src/noise/04.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/src/noise/04.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/src/noise/05.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/src/noise/05.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/src/noise/06.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/src/noise/06.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/src/noise/07.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/src/noise/07.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/src/noise/08.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/src/noise/08.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/src/noise/09.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Monitor/src/noise/09.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Monitor/src/pies/render-animation.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | povray +KI1.0 +KF100.0 +KFI1 +KFF80 +W240 +H180 +Oanim.png pies.pov 4 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/00.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/00.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/00mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/00mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/01.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/01.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/01mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/01mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/02.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/02.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/02mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/02mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/03.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/03.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/03mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/03mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/04.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/04.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/04mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/04mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/05.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/05.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/05mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/05mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/06.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/06.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/06mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/06mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/07.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/07.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/07mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/07mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/08.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/08.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/08mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/08mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/09.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/09.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/09mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/09mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/10.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/10.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/10mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/10mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/11.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/11.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/11mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/11mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/12.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/12.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/12mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/12mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/13.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/13.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/13mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/13mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/14.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/14.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/14mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/14mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/15.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/15.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/15mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/15mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/16.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/16.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/16mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/16mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/17.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/17.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/17mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/17mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/18.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/18.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/18mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/18mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/19.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/19.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/19mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/19mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/20.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/20.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/20mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/20mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/layout.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/src/layout.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/circle100.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | merge { 6 | ElliBorder2C(100,100,100,1,30,0) 7 | } 8 | texture { obj_texture } 9 | interior { obj_interior } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/circle200.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | merge { 6 | ElliBorder2C(200,200,100,1,30,0) 7 | } 8 | texture { obj_texture } 9 | interior { obj_interior } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/circle300.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | merge { 6 | ElliBorder2C(300,300,100,1,30,0) 7 | } 8 | texture { obj_texture } 9 | interior { obj_interior } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/circle400.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | merge { 6 | ElliBorder2C(400,400,100,1,30,0) 7 | } 8 | texture { obj_texture } 9 | interior { obj_interior } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/circle500.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | merge { 6 | ElliBorder2C(500,500,100,1,30,0) 7 | } 8 | texture { obj_texture } 9 | interior { obj_interior } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/circle600.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | merge { 6 | ElliBorder2C(600,600,100,1,30,0) 7 | } 8 | texture { obj_texture } 9 | interior { obj_interior } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/circle700.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | merge { 6 | ElliBorder2C(700,700,100,1,30,0) 7 | } 8 | texture { obj_texture } 9 | interior { obj_interior } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/corner.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | merge { 6 | ElliBorder2C(100,100,100,1,30,100) 7 | } 8 | texture { obj_texture } 9 | interior { obj_interior } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/pipe.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | merge { 6 | ElliBorder2C(600,600,100,1,30,540) 7 | ElliBorder2(600,200,100,1,30) 8 | ElliBorder2(200,600,100,1,30) 9 | } 10 | texture { obj_texture } 11 | interior { obj_interior } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/rect.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | ElliBorder2(200,200,100,1,30) 6 | texture { obj_texture } 7 | interior { obj_interior } 8 | } 9 | 10 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/rect30.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | ElliBorder2(200,200,100,1,30) 6 | rotate <0,0,30> 7 | texture { obj_texture } 8 | interior { obj_interior } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/rect45.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | ElliBorder2(200,200,100,1,30) 6 | rotate <0,0,45> 7 | texture { obj_texture } 8 | interior { obj_interior } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/rect60.pov: -------------------------------------------------------------------------------- 1 | #include "common.inc" 2 | 3 | 4 | object { 5 | ElliBorder2(200,200,100,1,30) 6 | rotate <0,0,60> 7 | texture { obj_texture } 8 | interior { obj_interior } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/pov/render.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | povray -D -P +W3200 +H2400 circle100.pov 4 | povray -D -P +W3200 +H2400 circle200.pov 5 | povray -D -P +W3200 +H2400 circle300.pov 6 | povray -D -P +W3200 +H2400 circle400.pov 7 | povray -D -P +W3200 +H2400 circle500.pov 8 | povray -D -P +W3200 +H2400 circle600.pov 9 | povray -D -P +W3200 +H2400 circle700.pov 10 | povray -D -P +W3200 +H2400 corner.pov 11 | povray -D -P +W3200 +H2400 pipe.pov 12 | povray -D -P +W3200 +H2400 rect.pov 13 | povray -D -P +W3200 +H2400 rect30.pov 14 | povray -D -P +W3200 +H2400 rect45.pov 15 | povray -D -P +W3200 +H2400 rect60.pov 16 | -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/step1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/src/step1.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/step1shadow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/src/step1shadow.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/step2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/src/step2.tga -------------------------------------------------------------------------------- /res/emHmiDemo/Pieces/src/step2mask.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/Pieces/src/step2mask.tga -------------------------------------------------------------------------------- /res/emHmiDemo/RoundBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/RoundBorder.tga -------------------------------------------------------------------------------- /res/emHmiDemo/TickMark.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emHmiDemo/TickMark.tga -------------------------------------------------------------------------------- /res/emLKC/emLKC.patch.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emLKC/emLKC.patch.bz2 -------------------------------------------------------------------------------- /res/emLKC/screenshot-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emLKC/screenshot-1.jpg -------------------------------------------------------------------------------- /res/emLKC/screenshot-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emLKC/screenshot-2.jpg -------------------------------------------------------------------------------- /res/emLKC/screenshot-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emLKC/screenshot-3.jpg -------------------------------------------------------------------------------- /res/emMain/Autoplay.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/Autoplay.tga -------------------------------------------------------------------------------- /res/emMain/CloseWindow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/CloseWindow.tga -------------------------------------------------------------------------------- /res/emMain/ContinueLastAutoplay.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/ContinueLastAutoplay.tga -------------------------------------------------------------------------------- /res/emMain/ControlEdges.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/ControlEdges.tga -------------------------------------------------------------------------------- /res/emMain/Fullscreen.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/Fullscreen.tga -------------------------------------------------------------------------------- /res/emMain/NewWindow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/NewWindow.tga -------------------------------------------------------------------------------- /res/emMain/Quit.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/Quit.tga -------------------------------------------------------------------------------- /res/emMain/ReloadFiles.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/ReloadFiles.tga -------------------------------------------------------------------------------- /res/emMain/SkipToNext.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/SkipToNext.tga -------------------------------------------------------------------------------- /res/emMain/SkipToPrev.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/SkipToPrev.tga -------------------------------------------------------------------------------- /res/emMain/Slider.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/Slider.tga -------------------------------------------------------------------------------- /res/emMain/Star.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/Star.tga -------------------------------------------------------------------------------- /res/emMain/VcItemInnerBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/VcItemInnerBorder.tga -------------------------------------------------------------------------------- /res/emMain/VcItemOuterBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emMain/VcItemOuterBorder.tga -------------------------------------------------------------------------------- /res/emNetwalk/Background.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emNetwalk/Background.tga -------------------------------------------------------------------------------- /res/emNetwalk/Border.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emNetwalk/Border.tga -------------------------------------------------------------------------------- /res/emNetwalk/Lights.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emNetwalk/Lights.tga -------------------------------------------------------------------------------- /res/emNetwalk/Marks.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emNetwalk/Marks.tga -------------------------------------------------------------------------------- /res/emNetwalk/NoBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emNetwalk/NoBorder.tga -------------------------------------------------------------------------------- /res/emNetwalk/Pipes.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emNetwalk/Pipes.tga -------------------------------------------------------------------------------- /res/emNetwalk/Symbols.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emNetwalk/Symbols.tga -------------------------------------------------------------------------------- /res/emPs/page_shadow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emPs/page_shadow.tga -------------------------------------------------------------------------------- /res/emPs/rendering.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emPs/rendering.tga -------------------------------------------------------------------------------- /res/emPs/waiting.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/emPs/waiting.tga -------------------------------------------------------------------------------- /res/icons/3d_model.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/3d_model.tga -------------------------------------------------------------------------------- /res/icons/anchor.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/anchor.tga -------------------------------------------------------------------------------- /res/icons/archive.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/archive.tga -------------------------------------------------------------------------------- /res/icons/audio.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/audio.tga -------------------------------------------------------------------------------- /res/icons/back_up.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/back_up.tga -------------------------------------------------------------------------------- /res/icons/back_up_as.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/back_up_as.tga -------------------------------------------------------------------------------- /res/icons/ball.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/ball.tga -------------------------------------------------------------------------------- /res/icons/bench_vice.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/bench_vice.tga -------------------------------------------------------------------------------- /res/icons/book.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/book.tga -------------------------------------------------------------------------------- /res/icons/books.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/books.tga -------------------------------------------------------------------------------- /res/icons/books2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/books2.tga -------------------------------------------------------------------------------- /res/icons/burn_cd.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/burn_cd.tga -------------------------------------------------------------------------------- /res/icons/camera.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/camera.tga -------------------------------------------------------------------------------- /res/icons/castle.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/castle.tga -------------------------------------------------------------------------------- /res/icons/cd-rom.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/cd-rom.tga -------------------------------------------------------------------------------- /res/icons/chain.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/chain.tga -------------------------------------------------------------------------------- /res/icons/cherry.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/cherry.tga -------------------------------------------------------------------------------- /res/icons/clock.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/clock.tga -------------------------------------------------------------------------------- /res/icons/clone_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/clone_file.tga -------------------------------------------------------------------------------- /res/icons/cloud.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/cloud.tga -------------------------------------------------------------------------------- /res/icons/copy_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/copy_file.tga -------------------------------------------------------------------------------- /res/icons/copy_file_as.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/copy_file_as.tga -------------------------------------------------------------------------------- /res/icons/create_iso_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/create_iso_file.tga -------------------------------------------------------------------------------- /res/icons/decrypt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/decrypt.tga -------------------------------------------------------------------------------- /res/icons/decrypt_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/decrypt_file.tga -------------------------------------------------------------------------------- /res/icons/delete_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/delete_file.tga -------------------------------------------------------------------------------- /res/icons/diff.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/diff.tga -------------------------------------------------------------------------------- /res/icons/diff_to_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/diff_to_file.tga -------------------------------------------------------------------------------- /res/icons/directory.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/directory.tga -------------------------------------------------------------------------------- /res/icons/disk_free.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/disk_free.tga -------------------------------------------------------------------------------- /res/icons/dna.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/dna.tga -------------------------------------------------------------------------------- /res/icons/document.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/document.tga -------------------------------------------------------------------------------- /res/icons/documents.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/documents.tga -------------------------------------------------------------------------------- /res/icons/download.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/download.tga -------------------------------------------------------------------------------- /res/icons/drawing.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/drawing.tga -------------------------------------------------------------------------------- /res/icons/eaglemode.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/eaglemode.ico -------------------------------------------------------------------------------- /res/icons/eaglemode.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/eaglemode.tga -------------------------------------------------------------------------------- /res/icons/eaglemode32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/eaglemode32.png -------------------------------------------------------------------------------- /res/icons/eaglemode48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/eaglemode48.png -------------------------------------------------------------------------------- /res/icons/eaglemode48.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/eaglemode48.tga -------------------------------------------------------------------------------- /res/icons/eaglemode96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/eaglemode96.png -------------------------------------------------------------------------------- /res/icons/earth.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/earth.tga -------------------------------------------------------------------------------- /res/icons/edit_encrypted.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/edit_encrypted.tga -------------------------------------------------------------------------------- /res/icons/em-dialog48.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/em-dialog48.tga -------------------------------------------------------------------------------- /res/icons/encrypt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/encrypt.tga -------------------------------------------------------------------------------- /res/icons/encrypt_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/encrypt_file.tga -------------------------------------------------------------------------------- /res/icons/error_unknown_icon.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/error_unknown_icon.tga -------------------------------------------------------------------------------- /res/icons/exchange_files.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/exchange_files.tga -------------------------------------------------------------------------------- /res/icons/file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/file.tga -------------------------------------------------------------------------------- /res/icons/file_attributes.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/file_attributes.tga -------------------------------------------------------------------------------- /res/icons/file_info.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/file_info.tga -------------------------------------------------------------------------------- /res/icons/file_owner.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/file_owner.tga -------------------------------------------------------------------------------- /res/icons/file_permissions.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/file_permissions.tga -------------------------------------------------------------------------------- /res/icons/file_time.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/file_time.tga -------------------------------------------------------------------------------- /res/icons/flower.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/flower.tga -------------------------------------------------------------------------------- /res/icons/fractal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/fractal.tga -------------------------------------------------------------------------------- /res/icons/grep.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/grep.tga -------------------------------------------------------------------------------- /res/icons/grepi.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/grepi.tga -------------------------------------------------------------------------------- /res/icons/hard_disk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/hard_disk.tga -------------------------------------------------------------------------------- /res/icons/heart.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/heart.tga -------------------------------------------------------------------------------- /res/icons/help.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/help.tga -------------------------------------------------------------------------------- /res/icons/home.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/home.tga -------------------------------------------------------------------------------- /res/icons/iso_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/iso_file.tga -------------------------------------------------------------------------------- /res/icons/mines.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/mines.tga -------------------------------------------------------------------------------- /res/icons/move_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/move_file.tga -------------------------------------------------------------------------------- /res/icons/move_file_as.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/move_file_as.tga -------------------------------------------------------------------------------- /res/icons/netwalk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/netwalk.tga -------------------------------------------------------------------------------- /res/icons/new_dir.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/new_dir.tga -------------------------------------------------------------------------------- /res/icons/new_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/new_file.tga -------------------------------------------------------------------------------- /res/icons/notepad.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/notepad.tga -------------------------------------------------------------------------------- /res/icons/open_or_run.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/open_or_run.tga -------------------------------------------------------------------------------- /res/icons/pack_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file.tga -------------------------------------------------------------------------------- /res/icons/pack_file_7z.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_7z.tga -------------------------------------------------------------------------------- /res/icons/pack_file_ar.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_ar.tga -------------------------------------------------------------------------------- /res/icons/pack_file_bz2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_bz2.tga -------------------------------------------------------------------------------- /res/icons/pack_file_gz.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_gz.tga -------------------------------------------------------------------------------- /res/icons/pack_file_lzma.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_lzma.tga -------------------------------------------------------------------------------- /res/icons/pack_file_lzo.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_lzo.tga -------------------------------------------------------------------------------- /res/icons/pack_file_tar.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_tar.tga -------------------------------------------------------------------------------- /res/icons/pack_file_tar_bz2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_tar_bz2.tga -------------------------------------------------------------------------------- /res/icons/pack_file_tar_gz.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_tar_gz.tga -------------------------------------------------------------------------------- /res/icons/pack_file_tar_lzma.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_tar_lzma.tga -------------------------------------------------------------------------------- /res/icons/pack_file_tar_lzo.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_tar_lzo.tga -------------------------------------------------------------------------------- /res/icons/pack_file_tar_xz.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_tar_xz.tga -------------------------------------------------------------------------------- /res/icons/pack_file_xz.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_xz.tga -------------------------------------------------------------------------------- /res/icons/pack_file_zip.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/pack_file_zip.tga -------------------------------------------------------------------------------- /res/icons/package.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/package.tga -------------------------------------------------------------------------------- /res/icons/patch_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/patch_file.tga -------------------------------------------------------------------------------- /res/icons/picture.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/picture.tga -------------------------------------------------------------------------------- /res/icons/piggy_bank.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/piggy_bank.tga -------------------------------------------------------------------------------- /res/icons/plain_text.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/plain_text.tga -------------------------------------------------------------------------------- /res/icons/rename_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/rename_file.tga -------------------------------------------------------------------------------- /res/icons/root.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/root.tga -------------------------------------------------------------------------------- /res/icons/rotate_left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/rotate_left.tga -------------------------------------------------------------------------------- /res/icons/rotate_right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/rotate_right.tga -------------------------------------------------------------------------------- /res/icons/run.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/run.tga -------------------------------------------------------------------------------- /res/icons/run_in_terminal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/run_in_terminal.tga -------------------------------------------------------------------------------- /res/icons/run_on_source.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/run_on_source.tga -------------------------------------------------------------------------------- /res/icons/run_on_source_in_terminal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/run_on_source_in_terminal.tga -------------------------------------------------------------------------------- /res/icons/saturn.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/saturn.tga -------------------------------------------------------------------------------- /res/icons/select_files_recursively.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/select_files_recursively.tga -------------------------------------------------------------------------------- /res/icons/silchess.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/silchess.tga -------------------------------------------------------------------------------- /res/icons/src/icons.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/src/icons.blend -------------------------------------------------------------------------------- /res/icons/src/tx_drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/src/tx_drawing.png -------------------------------------------------------------------------------- /res/icons/src/tx_earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/src/tx_earth.png -------------------------------------------------------------------------------- /res/icons/src/tx_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/src/tx_picture.png -------------------------------------------------------------------------------- /res/icons/ssd.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/ssd.tga -------------------------------------------------------------------------------- /res/icons/star.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/star.tga -------------------------------------------------------------------------------- /res/icons/storage.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/storage.tga -------------------------------------------------------------------------------- /res/icons/sym_link.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/sym_link.tga -------------------------------------------------------------------------------- /res/icons/teddy.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/teddy.tga -------------------------------------------------------------------------------- /res/icons/terminal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/terminal.tga -------------------------------------------------------------------------------- /res/icons/text_editor.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/text_editor.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/abiword.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/abiword.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/dia.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/dia.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/evince.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/evince.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/firefox.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/firefox.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/gedit.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/gedit.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/gimp.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/gimp.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/inkscape.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/inkscape.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/kaffeine.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/kaffeine.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/kate.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/kate.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/libreoffice.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/libreoffice.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/meld.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/meld.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/totem.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/totem.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/vlc.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/vlc.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/xfig.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/xfig.tga -------------------------------------------------------------------------------- /res/icons/thirdparty/xine.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/thirdparty/xine.tga -------------------------------------------------------------------------------- /res/icons/treasure_chest.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/treasure_chest.tga -------------------------------------------------------------------------------- /res/icons/unpack_file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/unpack_file.tga -------------------------------------------------------------------------------- /res/icons/unpack_file_in_new_dir.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/unpack_file_in_new_dir.tga -------------------------------------------------------------------------------- /res/icons/unpack_file_in_place.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/unpack_file_in_place.tga -------------------------------------------------------------------------------- /res/icons/upload.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/upload.tga -------------------------------------------------------------------------------- /res/icons/usb_flash_drive.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/usb_flash_drive.tga -------------------------------------------------------------------------------- /res/icons/version_add.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_add.tga -------------------------------------------------------------------------------- /res/icons/version_cancel.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_cancel.tga -------------------------------------------------------------------------------- /res/icons/version_checkout.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_checkout.tga -------------------------------------------------------------------------------- /res/icons/version_commit.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_commit.tga -------------------------------------------------------------------------------- /res/icons/version_copy.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_copy.tga -------------------------------------------------------------------------------- /res/icons/version_delete.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_delete.tga -------------------------------------------------------------------------------- /res/icons/version_diff.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_diff.tga -------------------------------------------------------------------------------- /res/icons/version_info.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_info.tga -------------------------------------------------------------------------------- /res/icons/version_list.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_list.tga -------------------------------------------------------------------------------- /res/icons/version_merge.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_merge.tga -------------------------------------------------------------------------------- /res/icons/version_move.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_move.tga -------------------------------------------------------------------------------- /res/icons/version_props.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_props.tga -------------------------------------------------------------------------------- /res/icons/version_pull.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_pull.tga -------------------------------------------------------------------------------- /res/icons/version_push.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_push.tga -------------------------------------------------------------------------------- /res/icons/version_rename.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_rename.tga -------------------------------------------------------------------------------- /res/icons/version_search.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_search.tga -------------------------------------------------------------------------------- /res/icons/version_time.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_time.tga -------------------------------------------------------------------------------- /res/icons/version_update.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/version_update.tga -------------------------------------------------------------------------------- /res/icons/video.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/video.tga -------------------------------------------------------------------------------- /res/icons/virtual_cosmos.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/virtual_cosmos.tga -------------------------------------------------------------------------------- /res/icons/wc.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/wc.tga -------------------------------------------------------------------------------- /res/icons/wrench.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/res/icons/wrench.tga -------------------------------------------------------------------------------- /src/SilChess/graphics/board.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Osndok/eaglemode/4861c04dcbd4f00cc2b144e31d77f9306d20467d/src/SilChess/graphics/board.bmp -------------------------------------------------------------------------------- /src/emSvg/emSvgServerProcProtocol.README: -------------------------------------------------------------------------------- 1 | emSvg Server Process Protocol 2 | ############################# 3 | 4 | client: attachshm 5 | client: open 6 | server: opened: "" "<desc>" 7 | or : error: <message> 8 | client: render <instance> <src x> <src y> <src width> <src height> \ 9 | <shm offset> <shm width> <shm height> 10 | server: rendered 11 | or : error: <message> 12 | client: close <instance> 13 | -------------------------------------------------------------------------------- /src/emX11/cursors/emCursorInvisible.xbm: -------------------------------------------------------------------------------- 1 | #define emCursorInvisible_width 16 2 | #define emCursorInvisible_height 16 3 | #define emCursorInvisible_x_hot 0 4 | #define emCursorInvisible_y_hot 0 5 | static unsigned char emCursorInvisible_bits[] = { 6 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 9 | --------------------------------------------------------------------------------