texts
stringlengths
0
1.24M
names
stringlengths
13
33
DevAlienTool DEFINITION DevAlienTool; PROCEDURE Analyze; END DevAlienTool. Alien views are views which, for some reason, cannot be loaded correctly. The reason may be a programming error, e.g. a different number of bytes is read than was written, or it may be a version problem (an unknown version was detected). U...
Dev/Docu/AlienTool.odc
DevAnalyzer Overview DevAnalyzer can be applied just like the normal Component Pascal compiler for checking a program's syntactic and semantic correctness (it even uses the base modules of the Component Pascal compiler). In the examples below you can, for instance, remove a semicolon somewhere and DevAnalyzer will r...
Dev/Docu/Analyzer.odc
DevBrowser DEFINITION DevBrowser; PROCEDURE ImportSymFile (f: Files.File; OUT s: Stores.Store); PROCEDURE ShowInterface (opts: ARRAY OF CHAR); PROCEDURE ImportCodeFile (f: Files.File; OUT s: Stores.Store); PROCEDURE ShowCodeFile; END DevBrowser. The browser shows the interface of a module or of an item in a mo...
Dev/Docu/Browser.odc
DevCmds DEFINITION DevCmds; IMPORT Dialog; PROCEDURE FlushResources; PROCEDURE OpenModuleList; PROCEDURE OpenFileList; PROCEDURE RevalidateViewGuard (VAR par: Dialog.Par); PROCEDURE RevalidateView; PROCEDURE SetCancelButton; PROCEDURE SetDefaultButton; PROCEDURE ShowControlList; END DevCmds. Possible men...
Dev/Docu/Cmds.odc
DevCommanders DEFINITION DevCommanders; TYPE Par = POINTER TO RECORD text: TextModels.Model; beg, end: INTEGER END; VAR par: Par; PROCEDURE Deposit; PROCEDURE DepositEnd; ... plus some private items ... END DevCommanders. A commander is a view which interprets and executes the command or comman...
Dev/Docu/Commanders.odc
DevCompiler DEFINITION DevCompiler; PROCEDURE Compile; PROCEDURE CompileAndUnload; PROCEDURE CompileModuleList; PROCEDURE CompileSelection; PROCEDURE CompileThis; PROCEDURE CompileSubs; PROCEDURE MakeList; ... plus some private commands ... END DevCompiler. Command package for the Component Pascal compiler...
Dev/Docu/Compiler.odc
DevCPB This module has a private interface, it is only used internally.
Dev/Docu/CPB.odc
DevCPC486 This module has a private interface, it is only used internally.
Dev/Docu/CPC486.odc
DevCPE This module has a private interface, it is only used internally.
Dev/Docu/CPE.odc
DevCPH This module has a private interface, it is only used internally.
Dev/Docu/CPH.odc
DevCPL486 This module has a private interface, it is only used internally.
Dev/Docu/CPL486.odc
DevCPM This module has a private interface, it is only used internally.
Dev/Docu/CPM.odc
DevCPP This module has a private interface, it is only used internally.
Dev/Docu/CPP.odc
DevCPS This module has a private interface, it is only used internally.
Dev/Docu/CPS.odc
DevCPT This module has a private interface, it is only used internally.
Dev/Docu/CPT.odc
DevCPV486 This module has a private interface, it is only used internally.
Dev/Docu/CPV486.odc
DevDebug DEFINITION DevDebug; IMPORT Views, Kernel; PROCEDURE Execute; PROCEDURE ShowGlobalVariables; PROCEDURE ShowLoadedModules; PROCEDURE ShowViewState; PROCEDURE Unload; PROCEDURE UnloadModuleList; PROCEDURE UnloadThis; PROCEDURE HeapRefView (adr: INTEGER; name: ARRAY OF CHAR): Views.View; PROCEDURE Sh...
Dev/Docu/Debug.odc
DevDecoder386 Module DevDecoder386 contains a decoder for Intel i386/387 code. This module has a private interface, it is only used internally.
Dev/Docu/Decoder386.odc
DevDependencies DEFINITION DevDependencies; IMPORT Dialog; PROCEDURE ArrangeClick; PROCEDURE CollapseAllClick; PROCEDURE CollapseClick; PROCEDURE CreateTool; PROCEDURE CreateToolClick; PROCEDURE Deposit; PROCEDURE ExpandAllClick; PROCEDURE ExpandClick; PROCEDURE HideClick; PROCEDURE ModsGuard (VAR par: Di...
Dev/Docu/Dependencies.odc
DevHeapSpy DEFINITION DevHeapSpy; VAR par-: RECORD allocated-, clusters-, heapsize-: INTEGER END; PROCEDURE GetAnchor (adr: INTEGER; OUT anchor: ARRAY OF CHAR); PROCEDURE ShowAnchor (adr: INTEGER); PROCEDURE ShowHeap; END DevHeapSpy. DevHeapSpy is a tool that visualizes the contents of heap memory. Th...
Dev/Docu/HeapSpy.odc
DevInspector DEFINITION DevInspector; IMPORT Dialog; VAR inspect: RECORD control-: Dialog.String; label: ARRAY 40 OF CHAR; link, guard, notifier: Dialog.String; level: INTEGER; opt0, opt1, opt2, opt3, opt4: BOOLEAN END; PROCEDURE GetNext; PROCEDURE Set; PROCEDURE InitDialog; PROCEDURE Contr...
Dev/Docu/Inspector.odc
DevLinkChk DEFINITION DevLinkChk; IMPORT Dialog; CONST oneSubsystem = 0; globalSubsystem = 1; allSubsystems = 2; VAR par: RECORD scope: INTEGER; subsystem: ARRAY 9 OF CHAR END; PROCEDURE Check (subsystem: ARRAY OF CHAR; scope: INTEGER; check: BOOLEAN); PROCEDURE CheckLinks; PROCEDURE ListLinks; P...
Dev/Docu/LinkChk.odc
DevLinker DevLinker is the BlackBox linker. It is used to pack several BlackBox code files together into one executable file (.dll or .exe). It can be used to make independent versions of applications based on the BlackBox Component Framework. It can also be used to produce executables written in Component Pascal whic...
Dev/Docu/Linker.odc
DevMarkers DEFINITION DevMarkers; PROCEDURE NextError; PROCEDURE ToggleCurrent; PROCEDURE UnmarkErrors; ... plus some private items ... END DevMarkers. Error markers indicate compiler errors in-place in the compiled text. This module contains several other items which are used internally. Possible menu: MENU...
Dev/Docu/Markers.odc
DevMsgSpy A tool that allows to inspect the messages which are sent to a view. About the message spy Message Spy is a tool that logs the messages which are sent to a view through one of the methods HandleCtrlMsg, HandleModelMsg, HandlePropMsg, or HandleViewMsg. The message spy displays the type of all messages which...
Dev/Docu/MsgSpy.odc
DevPacker DEFINITION DevPacker; PROCEDURE ListFromSub (sdir: ARRAY OF CHAR); PROCEDURE ListLoadedModules; PROCEDURE PackThis; END DevPacker. Module DevPacker is used to pack any kind of files into an existing exe-file. These files can be read with the help of HostPackedFiles. There is no explicit dependency bet...
Dev/Docu/Packer.odc
Platform-Specific Issues 1: Cross-plarform 1 ModuleSYSTEM 2 StartupofBlackBox 3 Using NEW and garbage collection in your applications 4 Component Pascal compiler options 5 Runtime range checks 6 Stack Size 10: Windows 10 Command line parametersofBlackBox 11 UsingDLLsinBlackBoxmodules 12 UsingCOMwithoutDirect-To-COM...
Dev/Docu/Platform-Specific.odc
DevProfiler DEFINITION DevProfiler; PROCEDURE SetProfileList; PROCEDURE SetModuleList (list: ARRAY OF CHAR); PROCEDURE Start; PROCEDURE Stop; PROCEDURE ShowProfile; PROCEDURE Reset; PROCEDURE Execute; PROCEDURE StartGuard (VAR par: Dialog.Par); PROCEDURE StopGuard (VAR par: Dialog.Par); END DevProfiler....
Dev/Docu/Profiler.odc
DevRBrowser DEFINITION DevRBrowser; PROCEDURE ShowRepository; PROCEDURE Update; PROCEDURE OpenFile (path, name: ARRAY OF CHAR); PROCEDURE ShowFiles (path: ARRAY OF CHAR); END DevRBrowser. This tool module allows to list all subsystems as folds (-> StdFolds). A fold contains links to its subsystem's symbol, cod...
Dev/Docu/RBrowser.odc
DevReferences DEFINITION DevReferences; IMPORT TextMappers, Files; PROCEDURE ResolveImportAlias (VAR mod: TextMappers.String; t: TextModels.Model); PROCEDURE ShowDocu; PROCEDURE ShowSource; PROCEDURE ShowText (module, ident: TextMappers.String; category: Files.Name); END DevReferences. This module provides t...
Dev/Docu/References.odc
DevSearch DEFINITION DevSearch; PROCEDURE Compare; PROCEDURE SearchInDocu (opts: ARRAY OF CHAR); PROCEDURE SearchInSources; PROCEDURE SelectCaseInSens (pat: ARRAY OF CHAR); PROCEDURE SelectCaseSens (pat: ARRAY OF CHAR); END DevSearch. This tool provides global search facilities (in all subsystems' Docu or Mod...
Dev/Docu/Search.odc
DevSelectors DEFINITION DevSelectors; IMPORT TextModels, Models, Stores, Views; CONST left = 1; middle = 2; right = 3; TYPE Directory = POINTER TO ABSTRACT RECORD (d: Directory) New (position: INTEGER): Selector, NEW, ABSTRACT END; Selector = POINTER TO RECORD (Views.View) position-: INTEGER;...
Dev/Docu/Selectors.odc
DevSubTool DEFINITION DevSubTool; CONST textCmds = 0; formCmds = 1; otherCmds = 2; simpleView = 3; standardView = 4; complexView = 5; wrapper = 6; specialContainer = 7; generalContainer = 8; VAR create: RECORD subsystem: ARRAY 9 OF CHAR; kind: INTEGER; Create: PROCEDURE END; END DevSubTool. ...
Dev/Docu/SubTool.odc
Map to the Dev Subsystem UserManual DevAlienTool display infos on aliens DevAnalyzer source code analyzer DevBrowser symbol file browser DevCmds miscellaneous commands DevCommanders command interpreters DevCompiler Component Pascal compiler DevDebug symbolic post mortem debugger DevDebugCmds attaching a run-time deb...
Dev/Docu/Sys-Map.odc
Dev Subsystem User Manual Contents 1 CompilingComponentPascalmodules 2 Browsingtools 3 Loadingandunloadingmodules 4 Executingcommands 5 Debugging 6 Deployment 1 Compiling ComponentPascal modules Besides consuming stored text documents, the Component Pascal compiler can compile modules from anywhere in any displaye...
Dev/Docu/User-Man.odc
MODULE DevAlienTool; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - YYYYMMDD, nn, ... " issues = " - ... " **) IMPORT Services, Ports, Stores, Models, Vi...
Dev/Mod/AlienTool.odc
MODULE DevAnalyzer; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - 20070123, bh, NewString call changed (Unicode support) - 20140929, center #16, bug fix in SetO...
Dev/Mod/Analyzer.odc
MODULE DevBrowser; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - 20070123, bh, StringConst changed to show Unicode strings - 20070123, bh, ProcSysFlag call in S...
Dev/Mod/Browser.odc
MODULE DevChmod__Fbsd; IMPORT Libc := FbsdLibc, Files, DevLnkBase, Utf; TYPE ChmodHook = POINTER TO RECORD (DevLnkBase.ChmodHook) END; VAR hook: ChmodHook; PROCEDURE (hook: ChmodHook) Chmod* (name0: Files.Name; mode: SET); VAR name: ARRAY LEN(Files.Name) OF SHORTCHAR; res_: INTEGER; BEGIN IF DevLnkBase....
Dev/Mod/Chmod__Fbsd.odc
MODULE DevChmod__Lin; IMPORT Libc := LinLibc, Files, DevLnkBase, Utf; TYPE ChmodHook = POINTER TO RECORD (DevLnkBase.ChmodHook) END; VAR hook: ChmodHook; PROCEDURE (hook: ChmodHook) Chmod* (name0: Files.Name; mode: SET); VAR name: ARRAY LEN(Files.Name) OF SHORTCHAR; res_: INTEGER; BEGIN IF DevLnkBase.ou...
Dev/Mod/Chmod__Lin.odc
MODULE DevChmod__Obsd; IMPORT Libc := ObsdLibc, Files, DevLnkBase, Utf; TYPE ChmodHook = POINTER TO RECORD (DevLnkBase.ChmodHook) END; VAR hook: ChmodHook; PROCEDURE (hook: ChmodHook) Chmod* (name0: Files.Name; mode: SET); VAR name: ARRAY LEN(Files.Name) OF SHORTCHAR; res_: INTEGER; BEGIN IF DevLnkBase....
Dev/Mod/Chmod__Obsd.odc
MODULE DevCmds; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - 20161216, center #144, inconsistent docu and usage of Files.Locator error codes " issues = " - ...
Dev/Mod/Cmds.odc
MODULE DevCommanders; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems, Alexander Iljin" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - 20061112, ai, fixed EndView.Restore for partial updates - 20141027, center ...
Dev/Mod/Commanders.odc
MODULE DevCompiler; (** project = "BlackBox 2.0, diffs vs 1.7.2 are marked by green" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Oberon microsystems, A.A. Dmitriev, I.A. Denisov" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD Licen...
Dev/Mod/Compiler.odc
MODULE DevCPB; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems, Robert Campbell" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" references = "http://e-collection.library.ethz.ch/eserv/eth:39386/eth-39386-02.pdf" changes = " ...
Dev/Mod/CPB.odc
MODULE DevCPC486; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" references = "http://e-collection.library.ethz.ch/eserv/eth:39386/eth-39386-02.pdf" changes = " - 20070123, bh...
Dev/Mod/CPC486.odc
MODULE DevCPE; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems, Robert Campbell" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" references = "http://e-collection.library.ethz.ch/eserv/eth:39386/eth-39386-02.pdf" changes = " ...
Dev/Mod/CPE.odc
MODULE DevCPH; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" references = "http://e-collection.library.ethz.ch/eserv/eth:39386/eth-39386-02.pdf" changes = " - 20170612, cente...
Dev/Mod/CPH.odc
MODULE DevCPL486; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" references = "http://e-collection.library.ethz.ch/eserv/eth:39386/eth-39386-02.pdf" changes = " - 20160324, ce...
Dev/Mod/CPL486.odc
MODULE DevCPM; (** project = "BlackBox 2.0, diffs vs 1.7.2 are marked by green" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Oberon microsystems, A.A. Dmitriev, I.A. Denisov" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" ...
Dev/Mod/CPM.odc
MODULE DevCPP; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" references = "http://e-collection.library.ethz.ch/eserv/eth:39386/eth-39386-02.pdf" changes = " - 20070123, bh, N...
Dev/Mod/CPP.odc
MODULE DevCPS; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" references = "http://e-collection.library.ethz.ch/eserv/eth:39386/eth-39386-02.pdf" changes = " - 20070123, bh, l...
Dev/Mod/CPS.odc
MODULE DevCPT; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" references = "http://e-collection.library.ethz.ch/eserv/eth:39386/eth-39386-02.pdf" changes = " - 20070123, bh, s...
Dev/Mod/CPT.odc
MODULE DevCPV486; (** project = "BlackBox 2.0, diffs vs 1.7.2 are marked by green" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Oberon microsystems, luowy" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" references = "http://e-colle...
Dev/Mod/CPV486.odc
MODULE DevDebug; (** project = "BlackBox 2.0, new module" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - 20070123, bh, WriteString, ShowArray, & ShowV...
Dev/Mod/Debug.odc
MODULE DevDecoder386; (** project = "BlackBox" organization = "BlackBox Framework Center" contributors = "Niklaus Mannhart, ETH Zurich, 1992/93" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" references = "" changes = " - 20161104, center #142, adding a disassembler ...
Dev/Mod/Decoder386.odc
MODULE DevDependencies; (* Eliminate HostMenus import *) (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - 20141027, center #19, full Unicode support for Component P...
Dev/Mod/Dependencies.odc
MODULE DevHeapSpy; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - 20141027, center #19, full Unicode support for Component Pascal identifiers added - 20160324, c...
Dev/Mod/HeapSpy.odc
MODULE DevInspector; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - 20151027, center #80, bug fix in GetTypeName/MapLabel for System resources - 20160129, center...
Dev/Mod/Inspector.odc
MODULE DevLinkChk; (** project = "BlackBox 2.0" organization = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " - 20150226, center #29, inconsistent checks for v...
Dev/Mod/LinkChk.odc
MODULE DevLinker; (** project = "BlackBox 2.0, diffs vs 1.7.2 are marked by green" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " - 20070123, b...
Dev/Mod/Linker.odc
MODULE DevLinker1; (** project = "BlackBox 2.0" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Contributors, Igor Dehtyarenko, Alexander Shiryaev" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " - ... " issues =...
Dev/Mod/Linker1.odc
MODULE DevLnkBase; (** project = "BlackBox 2.0, new module" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Contributors, Igor Dehtyarenko" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " - 2016.11 initial version ...
Dev/Mod/LnkBase.odc
MODULE DevLnkLoad; (** project = "BlackBox 2.0" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Contributors, Igor Dehtyarenko" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " - 2016.11 initial version by Igor Deht...
Dev/Mod/LnkLoad.odc
MODULE DevLnkWriteElf; (** project = "BlackBox 2.0" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Contributors, Igor Dehtyarenko" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " - 2016.11 initial version by Igor ...
Dev/Mod/LnkWriteElf.odc
MODULE DevLnkWriteElfStatic; (** project = "BlackBox 2.0" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Contributors, Igor Dehtyarenko" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " - 2016.11 initial version by...
Dev/Mod/LnkWriteElfStatic.odc
MODULE DevLnkWritePe; (** project = "BlackBox 2.0" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Contributors, Igor Dehtyarenko" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " - 2016.11 initial version by Igor D...
Dev/Mod/LnkWritePe.odc
MODULE DevMarkers; (** project = "BlackBox 2.0, diffs vs 1.7.2 are marked by green" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Oberon microsystems, A.A. Dmitriev, I.A. Denisov, Ketmar Dark" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clau...
Dev/Mod/Markers.odc
MODULE DevMsgSpy; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - 20141027, center #19, full Unicode support for Component Pascal identifiers added " issues = " ...
Dev/Mod/MsgSpy.odc
MODULE DevPacker; (** project = "BlackBox 2.0, diffs vs 1.7.2 are marked by green" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Oberon microsystems, I.A. Denisov" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " ...
Dev/Mod/Packer.odc
MODULE DevProfiler; (** project = "BlackBox 2.0" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Contributors, Ilya E. Ermakov, Ivan Denisov" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " - 20070523, ie, ShowPro...
Dev/Mod/Profiler.odc
MODULE DevProfiler__Win; (** project = "BlackBox 2.0" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Contributors, Ilya E. Ermakov, Ivan Denisov" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " - 20070523, ie, Sh...
Dev/Mod/Profiler__Win.odc
MODULE DevRBrowser; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - 20070205, bh, Win32s handling removed - 20141027, center #19, full Unicode support for Compone...
Dev/Mod/RBrowser.odc
MODULE DevReferences; (** project = "BlackBox 2.0, diffs vs 1.7.2 are marked by green" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " - 2014102...
Dev/Mod/References.odc
MODULE DevSearch; (** project = "BlackBox 2.0, diffs vs 1.7.2 are marked by green" organizations = "Oberon microsystems, BBWFC, OberonCore, BBCP Team" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "The 2-Clause BSD License" changes = " - 20070307, b...
Dev/Mod/Search.odc
MODULE DevSelectors; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - 20120530, Oleg-N-Cher, Fixed error hat occurs when saving a document after copying of a select...
Dev/Mod/Selectors.odc
MODULE DevSubTool; (** project = "BlackBox" organization = "www.oberon.ch" contributors = "Oberon microsystems" version = "System/Rsrc/About" copyright = "System/Rsrc/About" license = "Docu/BB-License" changes = " - 20141027, center #19, full Unicode support for Component Pascal identifiers added - 20150226, c...
Dev/Mod/SubTool.odc
Dev/Rsrc/Analyzer.odc
Dev/Rsrc/Browser.odc
Dev/Rsrc/Create.odc
List of Oberon Error Numbers Oberon microsystems 28. 2. 2003 1. Incorrect use of language Oberon 0 undeclared identifier 1 multiply defined identifier 2 illegal character in number 3 illegal character in string 4 identifier does not match procedure name 5 comment not closed 6 7 8 9 "=" expect...
Dev/Rsrc/Errors.odc
Dev/Rsrc/HeapSpy.odc
Dev/Rsrc/Inspect.odc
Dev/Rsrc/LinkChk.odc
MENU "#Dev:&Info" "#Dev:&Open Log" "" "StdLog.Open" "" "#Dev:&Clear Log" "" "StdLog.Clear" "" SEPARATOR "#Dev:&Loaded Modules" "" "DevDebug.ShowLoadedModules" "" "#Dev:&Global Variables" "" "DevDebug.ShowGlobalVariables" "TextCmds.SelectionGuard" "#Dev:&View State" "" "DevDebug.ShowViewState" "StdCmds.SingletonGu...
Dev/Rsrc/Menus.odc
Dev/Rsrc/MsgSpy.odc
Dev/Rsrc/RTDebug.odc
STRINGS &Info &Info &Open Log &Open Log &Clear Log &Clear Log &Loaded Modules &Loaded Modules &Global Variables &Global Variables &View State &View State &About Alien About &Alien &Heap Spy... &Heap Spy... &Message Spy... Message Spy... &Control List Control List &Source &Source &Client Interface Client Interface &Exte...
Dev/Rsrc/Strings.odc
BlackBox Object File Format bh 25.01.2007 procedure signatures added bj 19.04.2001 updated file header with correct file tag and added processor field. Added semantic part of this docu. bh 12.12.95 Syntax: ObjFile = HeaderBlk MetaBlk DescBlk CodeBlk FixBlk UseBlk. HeaderBlk = OFTag processor4 headsize4 metasize4 d...
Dev/Spec/ObjFile.odc
HostPackedFiles DEFINITION HostPackedFiles; CONST magicnum = 4711; PROCEDURE IsInstalled; PROCEDURE RestoreFilesDir; PROCEDURE SetFilesDir; END HostPackedFiles. Module HostPackedFiles is an implementation of Files.Directory. The implementation is basically a wrapper around the HostFiles implementation with on...
Dev/Spec/PackedFiles.odc
Stores File Format Stream = { Byte | Structure }. Structure = Nil | Link | Object. Nil = nil Comment Next. Link = (link | newlink) ObjectId Comment Next. (* newlink and link have same meaning in new format, but newlink causes assertion trap in old *) (* if Next = 0 & Comment = 0 indecates end of link chain, where...
Dev/Spec/StoresFileFormat.odc
Oberon/F Symbol File Format bh 漜 SymFile = tag4 processor version Module { Object } . Module = 0 | negmno | [ LIB name ] MNAME name . Object = [ SYS value ] [ LIB name ] [ ENTRY name ] ( Constant name | TYPE Struct | ALIAS Struct name | (RVAR | VAR) Struct name | (XPRO | IPRO) Signature name | C...
Dev/Spec/SymFile.odc
Character Set Contents Charactersetlisting ControlcodesusedinBlackBox The character set for the Component Pascal SHORTCHAR data type is an 8-bit character set based on the ISO 8859-1 standard. It includes the ASCII (American Standard Code for Information Interchange) and the so-called Latin-1 extension to ASCII. ...
Docu/BB-Chars.odc
Documentation Conventions Documentation has two major purposes: to communicate how a program's service can be used interactively (user manual) and how the program's service can be used programmatically (developer manual). In BlackBox, services are arranged in subsystems. A subsystem typically consists of several poss...
Docu/BB-Docu.odc
Roadmap Contents 1 Twokindsofcomponents 2 Commands 3 Views 4 Overview 5 Tableofcontents 1 Two kinds of components BlackBox contains a component framework, which is a new concept for most programmers. This document gives a quick overview over which kinds of BlackBox components there are, when you need which, and wh...
Docu/BB-Road.odc
Programming Conventions Contents 1 Essentials 2 Oberon 3 Basictypes 4 Fontattributes 5 Comments 6 Semicolons 7 Dereferencing 8 Case 9 Names 10 Whitespace 11 Example 12 OpenSourceHeader This text describes the programming guidelines and source code formatting conventions which have been used for the Black...
Docu/BB-Rules.odc
BlackBox Contributors BlackBox is based on the foundation laid at ETH Zrich by the professors Niklaus Wirth and Jrg Gutknecht (Oberon language and system), Hanspeter Mssenbck (Oberon-2 extensions) and several former research assistants, e.g., Rgis Crelier, Josef Templ and Stefan Ludwig. At Oberon microsystems, the fol...
Docu/Contributors.odc
Component Pascal Language Report Copyright 1994-2013 by Oberon microsystems, Inc., Switzerland. All rights reserved. No part of this publication may be reproduced in any form or by any means, without prior written permission by Oberon microsystems except for the free electronic distribution of the unmodified documen...
Docu/CP-Lang.odc
What's New iыыыn Coывыыыmponent Pascal? Except for some minor points, Componeыыnt Pascal is a superset of Oberon-2. Compared to Oberon-2, it provides several clarifications and improvements. This text summarizes the differences. The language revision was driven by the experience with the BlackBox Component Framework...
Docu/CP-New.odc
Map to the BlackBox Component Builder Documentation GuidedTour Roadmap OverviewbyExample Tutorial: Component-based Software Development with BlackBox Table of Contents Part I Part II Part III UserInteraction Forms ViewConstruction CompoundDocuments Texts DesignPractices Appendices A:BriefHistoryofPas...
Docu/Help.odc