initial commit

This commit is contained in:
root
2023-06-12 09:14:09 +02:00
commit b4912f303e
2545 changed files with 209350 additions and 0 deletions

69
devtools/orcs218/README Normal file
View File

@@ -0,0 +1,69 @@
OOOO RRRRR CCCC SSSS
O O R R C C S S
O O R R C S
O O RRRRR C SSSS
O O R R C S
O O R R C C S S
OOOO R R CCCC SSSS
Otto's Resource Construction Set
Version 2.18
12.08.2020
Copyright (c) by Th. Otto
This program is freeware. Anyone may copy it privately and
pass on to whomever he wants, as long as the archive is complete and
remains unchanged and no fee is charged.
This archive should contain at least:
- ORCS.PRG
The program.
- ORCS.RSC
The resource, english and german version.
- ORCSCF.PRG
The program compiled by GNU-C, for a ColdFire V4e processor.
Mostly untested.
- ORCSEN.{HYP,REF}
HyperText help file, english version.
- ORCSDE.{HYP,REF}
HyperText help file, german version.
- EXTRA
A folder containing some example code.
- MODULES
External modules that can be used by ORCS.
These include modules to display extended object types,
as well as the export modules from ResourceMaster.
They are only included for completeness, almost all
of their functionality is also builtin into the program,
so if you are short on memory, or experience problems
using them, it is safe to rename or remove this folder.
- TEMPLATE
Template files that are used to generate the several
output source files.
- README
this file
Of course I can not assume any liability for any direct or
indirect damage - including but not limited to
material or financial - arising by the use of
ORCS or the unsuitability of ORCS for a particular purpose.
Criticism, suggestions, bug reports etc. can be send to
Thorsten Otto
Katharinenstr. 14
45131 Essen
admin@tho-otto.de

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,84 @@
/*****************************************************************************/
/* */
/* Modul: XRSRC.H */
/* Datum: 18.02.92 */
/* */
/*****************************************************************************/
#ifndef __XRSRC__
#define __XRSRC__
#include <portab.h>
#ifndef _WORD
#define _WORD WORD
#endif
#ifndef _UWORD
#define _UWORD UWORD
#endif
#ifndef _LONG
#define _LONG LONG
#endif
#ifndef _ULONG
#define _ULONG ULONG
#endif
#ifndef _BOOL
#define _BOOL int
#endif
typedef struct
{
/* 0x00 */ _UWORD rsh_vrsn; /* should be 3; bit 2 is used to indicate extended resource format */
/* 0x02 */ _UWORD rsh_extvrsn; /* informational only:
'IN' for Interface
'RM' for ResourceMaster
'OR' for ORCS
*/
/* 0x04 */ _ULONG rsh_object; /* offset to first object */
/* 0x08 */ _ULONG rsh_tedinfo; /* offset to TEDINFO structures */
/* 0x0c */ _ULONG rsh_iconblk; /* offset to ICONBLK structures */
/* 0x10 */ _ULONG rsh_bitblk; /* offset to BITBLK structures */
/* 0x14 */ _ULONG rsh_frstr; /* offset to free strings (alert box texts) */
/* 0x18 */ _ULONG rsh_string; /* offset to string pool */
/* 0x1c */ _ULONG rsh_imdata; /* offset to image data */
/* 0x20 */ _ULONG rsh_frimg; /* offset to free images */
/* 0x24 */ _ULONG rsh_trindex; /* offset to tree addresses */
/* 0x28 */ _ULONG rsh_nobs; /* number of objects */
/* 0x2c */ _ULONG rsh_ntree; /* number of trees */
/* 0x30 */ _ULONG rsh_nted; /* number of TEDINFOs */
/* 0x34 */ _ULONG rsh_nib; /* number of ICONBLKs */
/* 0x38 */ _ULONG rsh_nbb; /* number of BITBLKs */
/* 0x3c */ _ULONG rsh_nstring; /* number of free strings */
/* 0x40 */ _ULONG rsh_nimages; /* number of free images */
/* 0x44 */ _ULONG rsh_rssize; /* total bytes in standard resource part */
} RSXHDR;
#define RSC_EXT_FILESIZE 0
#define RSC_EXT_CICONBLK 1
#define RSC_EXT_PALETTE 2
#define RSC_EXT_ENDMARK 3
#define RSC_EXT_SIZE 4 /* number of known extension slots */
#define RSC_VERSION_MASK 0x03
#define RSC_EXT_FLAG 0x04
#define XRSC_VRSN_INTERFACE 0x494e
#define XRSC_VRSN_ORCS 0x4F52
#define XRSC_VRSN_RSM 0x524d
#define IS_XRSC_HEADER(handle) ((((RSXHDR *)(handle))->rsh_vrsn & RSC_VERSION_MASK) == 0x03)
void *hfix_objs(RSHDR *hdr, OBJECT *objects, _WORD num_objs);
RSHDR *xrsrc_load(const char *re_lpfname);
_WORD xrsrc_free(RSHDR *hdr);
_BOOL xrsrc_gaddr(RSHDR *handle, _WORD type, _WORD idx, void *gaddr);
_BOOL xrsrc_saddr(RSHDR *handle, _WORD type, _WORD idx, void *saddr);
_WORD xrsrc_obfix(OBJECT *re_otree, _WORD re_oobject);
_BOOL init_xrsrc(void);
void term_xrsrc(void);
#endif /* __XRSRC__ */

View File

@@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Verwerfen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_HEAD" href="saveas.html"><img src="udo_lf.gif" alt="Sichern als" title="Sichern als" border="0" width="24" height="24">Sichern als</a>
<a name="UDO_nav_rg_HEAD" href="merge.html"><img src="udo_rg.gif" alt="Hinzuf&uuml;gen" title="Hinzuf&uuml;gen" border="0" width="24" height="24">Hinzuf&uuml;gen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">Datei</a>
<hr>
<h1><a name="Verwerfen">3.1.5 Verwerfen</a></h1>
<p>Die aktuelle Resourcedatei wird verworfen, und die letzte
Version neu geladen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_FOOT" href="saveas.html"><img src="udo_lf.gif" alt="Sichern als" title="Sichern als" border="0" width="24" height="24">Sichern als</a>
<a name="UDO_nav_rg_FOOT" href="merge.html"><img src="udo_rg.gif" alt="Hinzuf&uuml;gen" title="Hinzuf&uuml;gen" border="0" width="24" height="24">Hinzuf&uuml;gen</a>
</body>
</html>

View File

@@ -0,0 +1,57 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Alarm-Box &auml;ndern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_HEAD" href="menued.html"><img src="udo_lf.gif" alt="Men&uuml;editor" title="Men&uuml;editor" border="0" width="24" height="24">Men&uuml;editor</a>
<a name="UDO_nav_rg_HEAD" href="frstr.html"><img src="udo_rg.gif" alt="Freie Texte &auml;ndern" title="Freie Texte &auml;ndern" border="0" width="24" height="24">Freie Texte &auml;ndern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<hr>
<h1><a name="Alarm-Box_20_26auml_3Bndern">4.4 Alarm-Box &auml;ndern</a></h1>
<p>Der Alert-Editor bietet Platz f&uuml;r 5 Zeilen zu je 40 Zeichen
und f&uuml;r 3 Buttons zu je 10 Zeichen (dies sind die
Einschr&auml;nkungen die das AES vorgibt; will man diese umgehen muss
der String als Freier Text bearbeitet werden). Au&szlig;erdem kann man
das Icon f&uuml;r die Alert-Box ausw&auml;hlen. Au&szlig;erdem steht
eine Testfunktion f&uuml;r Alert-Boxen zur Verf&uuml;gung. Werden die
Alert-Limits nicht erweitert, keine erweiterten Objekt-Typen verwendet
und sind die AES-Alert-Limits nicht &uuml;berschritten, dann wird
form_alert(...) f&uuml;r den Test verwendet. Ansonsten wird die eigene
Alert-Routine verwendet.
</p>
<p>Im Programm kann der Text wie folgt verwendet werden:
</p>
<pre> char** Text;
rsrc_gaddr(15, StringIndex, &amp;Text);
</pre>
<p>Zu beachten ist hierbei, da&szlig; die Funktion rsrc_gaddr einen
Zeiger auf einen Zeiger, der dann auf den Text zeigt, liefert.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_FOOT" href="menued.html"><img src="udo_lf.gif" alt="Men&uuml;editor" title="Men&uuml;editor" border="0" width="24" height="24">Men&uuml;editor</a>
<a name="UDO_nav_rg_FOOT" href="frstr.html"><img src="udo_rg.gif" alt="Freie Texte &auml;ndern" title="Freie Texte &auml;ndern" border="0" width="24" height="24">Freie Texte &auml;ndern</a>
</body>
</html>

View File

@@ -0,0 +1,53 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Automatische Gr&ouml;&szlig;e
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_HEAD" href="snapy.html"><img src="udo_lf.gif" alt="Y-Raster" title="Y-Raster" border="0" width="24" height="24">Y-Raster</a>
<a name="UDO_nav_rg_HEAD" href="editi.html"><img src="udo_rg.gif" alt="Sofort bearbeiten" title="Sofort bearbeiten" border="0" width="24" height="24">Sofort bearbeiten</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="options.html">Optionen</a>
<hr>
<h1><a name="Automatische_20Gr_26ouml_3B_26szlig_3Be">3.3.3 Automatische Gr&ouml;&szlig;e</a></h1>
<p>Wenn dieser Men&uuml;punkt aktiviert ist, werden <a href="objects.html">Objekte</a>
automatisch wieder auf die Mindestgr&ouml;sse verkleinert, wenn z.B.
der Text ge&auml;ndert wurde.
</p>
<p>ORCS &uuml;berpr&uuml;ft nach &Auml;nderungen der
Objekt-Gr&ouml;&szlig;e auch z.B. ob der Button-Text noch in den
Button pa&szlig;t. W&uuml;rde der Text nicht mehr passen, dann wird
der Button einfach vergr&ouml;&szlig;ert. Pa&szlig;t dann der Button
nicht mehr in sein Mutter-Objekt, dann wird auch dieses
vergr&ouml;&szlig;ert usw. usf. Will man aber im Button-Text
zus&auml;tzliche Informationen (z.B. f&uuml;r Userdefinierte <a href="objects.html">Objekte</a>)
unterbringen, dann st&ouml;rt dieses Feature nur. Darum
l&auml;&szlig;t es sich hier auch abschalten.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_FOOT" href="snapy.html"><img src="udo_lf.gif" alt="Y-Raster" title="Y-Raster" border="0" width="24" height="24">Y-Raster</a>
<a name="UDO_nav_rg_FOOT" href="editi.html"><img src="udo_rg.gif" alt="Sofort bearbeiten" title="Sofort bearbeiten" border="0" width="24" height="24">Sofort bearbeiten</a>
</body>
</html>

View File

@@ -0,0 +1,48 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: BubbleGEM Editor
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_HEAD" href="frimg.html"><img src="udo_lf.gif" alt="Freies Bild &auml;ndern" title="Freies Bild &auml;ndern" border="0" width="24" height="24">Freies Bild &auml;ndern</a>
<a name="UDO_nav_rg_HEAD" href="iconed.html"><img src="udo_rg.gif" alt="Iconeditor" title="Iconeditor" border="0" width="24" height="24">Iconeditor</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<hr>
<h1><a name="BubbleGEM_20Editor">4.7 BubbleGEM Editor</a></h1>
<p>Der Bubble-Editor stellt eine Besonderheit dar. Denn hier wird
etwas bearbeitet, was mit der Resource nur indirekt etwas zu tun hat.
ORCS unterst&uuml;tzt den Export von BGH-Dateien. BGH-Dateien
enthalten Texte f&uuml;r die Sprechblasen-Hilfe &quot;BubbleGEM&quot;.
Weitere Informationen zu BGH sind im BGH-Ordner zu finden.
</p>
<p>Im Bubble-Editor k&ouml;nnen die User-Sektionen und die
More-Sektion bearbeitet werden. Neue Eintr&auml;ge werden durch
dr&uuml;cken der Insert-Taste angelegt.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_FOOT" href="frimg.html"><img src="udo_lf.gif" alt="Freies Bild &auml;ndern" title="Freies Bild &auml;ndern" border="0" width="24" height="24">Freies Bild &auml;ndern</a>
<a name="UDO_nav_rg_FOOT" href="iconed.html"><img src="udo_rg.gif" alt="Iconeditor" title="Iconeditor" border="0" width="24" height="24">Iconeditor</a>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Hintergrund
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="protect.html"><img src="udo_lf.gif" alt="Bearbeitungs-Modus" title="Bearbeitungs-Modus" border="0" width="24" height="24">Bearbeitungs-Modus</a>
<a name="UDO_nav_rg_HEAD" href="extens.html"><img src="udo_rg.gif" alt="Dateinamen" title="Dateinamen" border="0" width="24" height="24">Dateinamen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="Hintergrund">3.4.2 Hintergrund</a></h1>
<p>Hier l&auml;&szlig;t sich die Hintergrundfarbe und -muster des
Desktops (<a href="desktop.html">Desktop</a>-<a href="window.html">Fenster</a>) und sonstiger <a href="window.html">Fenster</a> einstellen. Ein
&Auml;nderung wirkt sich unmittelbar aus.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="protect.html"><img src="udo_lf.gif" alt="Bearbeitungs-Modus" title="Bearbeitungs-Modus" border="0" width="24" height="24">Bearbeitungs-Modus</a>
<a name="UDO_nav_rg_FOOT" href="extens.html"><img src="udo_rg.gif" alt="Dateinamen" title="Dateinamen" border="0" width="24" height="24">Dateinamen</a>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Abbruch
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_HEAD" href="extended.html"><img src="udo_lf.gif" alt="Erweiterte Typen" title="Erweiterte Typen" border="0" width="24" height="24">Erweiterte Typen</a>
<a name="UDO_nav_rg_HEAD" href="quit.html"><img src="udo_rg.gif" alt="Ende" title="Ende" border="0" width="24" height="24">Ende</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">Datei</a>
<hr>
<h1><a name="Abbruch">3.1.11 Abbruch</a></h1>
<p>Mit diesem Men&uuml;punkt kann das Programm beendet werden, ohne
da&szlig; die aktuellen <a href="prefs.html">Einstellungen</a> gesichert werden. Sind noch
ge&auml;nderte Dateien im Speicher, erfolgt vorher jedoch eine Abfrage
ob diese gesichert oder verworfen werden sollen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_FOOT" href="extended.html"><img src="udo_lf.gif" alt="Erweiterte Typen" title="Erweiterte Typen" border="0" width="24" height="24">Erweiterte Typen</a>
<a name="UDO_nav_rg_FOOT" href="quit.html"><img src="udo_rg.gif" alt="Ende" title="Ende" border="0" width="24" height="24">Ende</a>
</body>
</html>

View File

@@ -0,0 +1,41 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: &Uuml;berlappend
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_HEAD" href="tilev.html"><img src="udo_lf.gif" alt="Nebeneinander" title="Nebeneinander" border="0" width="24" height="24">Nebeneinander</a>
<a name="UDO_nav_rg_HEAD" href="trees.html"><img src="udo_rg.gif" alt="B&auml;ume" title="B&auml;ume" border="0" width="24" height="24">B&auml;ume</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="window.html">Fenster</a>
<hr>
<h1><a name="UDO__26Uuml_3Bberlappend">3.2.6 &Uuml;berlappend</a></h1>
<p>Ordnet die ge&ouml;ffneten <a href="window.html">Fenster</a> &uuml;berlappend neu an.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_FOOT" href="tilev.html"><img src="udo_lf.gif" alt="Nebeneinander" title="Nebeneinander" border="0" width="24" height="24">Nebeneinander</a>
<a name="UDO_nav_rg_FOOT" href="trees.html"><img src="udo_rg.gif" alt="B&auml;ume" title="B&auml;ume" border="0" width="24" height="24">B&auml;ume</a>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Schliessen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_HEAD" href="window.html"><img src="udo_lf.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_rg_HEAD" href="closew.html"><img src="udo_rg.gif" alt="Fenster schliessen" title="Fenster schliessen" border="0" width="24" height="24">Fenster schliessen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="window.html">Fenster</a>
<hr>
<h1><a name="Schliessen">3.2.1 Schliessen</a></h1>
<p>Bewirkt das gleiche wie das bet&auml;tigen des Closer-Symbols
des Fensters. Wenn in dem <a href="window.html">Fenster</a> ein Dialog oder Men&uuml;
dargestellt wurde, werden wieder die <a href="trees.html">B&auml;ume</a> angezeigt.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_FOOT" href="window.html"><img src="udo_lf.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_rg_FOOT" href="closew.html"><img src="udo_rg.gif" alt="Fenster schliessen" title="Fenster schliessen" border="0" width="24" height="24">Fenster schliessen</a>
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Fenster schliessen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_HEAD" href="close.html"><img src="udo_lf.gif" alt="Schliessen" title="Schliessen" border="0" width="24" height="24">Schliessen</a>
<a name="UDO_nav_rg_HEAD" href="cycle.html"><img src="udo_rg.gif" alt="Fenster wechseln" title="Fenster wechseln" border="0" width="24" height="24">Fenster wechseln</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="window.html">Fenster</a>
<hr>
<h1><a name="Fenster_20schliessen">3.2.2 Fenster schliessen</a></h1>
<p>Schliesst das <a href="window.html">Fenster</a> und l&auml;sst es vom Bildschirm
verschwinden.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_FOOT" href="close.html"><img src="udo_lf.gif" alt="Schliessen" title="Schliessen" border="0" width="24" height="24">Schliessen</a>
<a name="UDO_nav_rg_FOOT" href="cycle.html"><img src="udo_rg.gif" alt="Fenster wechseln" title="Fenster wechseln" border="0" width="24" height="24">Fenster wechseln</a>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Kommentare
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_HEAD" href="size.html"><img src="udo_lf.gif" alt="Gr&ouml;&szlig;e und Position &auml;ndern" title="Gr&ouml;&szlig;e und Position &auml;ndern" border="0" width="24" height="24">Gr&ouml;&szlig;e und Position &auml;ndern</a>
<a name="UDO_nav_rg_HEAD" href="menued.html"><img src="udo_rg.gif" alt="Men&uuml;editor" title="Men&uuml;editor" border="0" width="24" height="24">Men&uuml;editor</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialog.html">Dialogeditor</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialogs.html">Dialoge f&uuml;r Objekte</a>
<hr>
<h1><a name="Kommentare">4.2.1.9 Kommentare</a></h1>
<p>Allen B&auml;umen und Objekten k&ouml;nnen Kommentare zugeordnet
werden. Diese werden z.B. in der Textanzeige dargestellt, und in
einige <a href="output.html">Ausgabedateien</a> geschrieben.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_FOOT" href="size.html"><img src="udo_lf.gif" alt="Gr&ouml;&szlig;e und Position &auml;ndern" title="Gr&ouml;&szlig;e und Position &auml;ndern" border="0" width="24" height="24">Gr&ouml;&szlig;e und Position &auml;ndern</a>
<a name="UDO_nav_rg_FOOT" href="menued.html"><img src="udo_rg.gif" alt="Men&uuml;editor" title="Men&uuml;editor" border="0" width="24" height="24">Men&uuml;editor</a>
</body>
</html>

View File

@@ -0,0 +1,59 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Rechtliches
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="general.html"><img src="udo_up.gif" alt="Allgemeines" title="Allgemeines" border="0" width="24" height="24">Allgemeines</a>
<a name="UDO_nav_lf_HEAD" href="intro.html"><img src="udo_lf.gif" alt="Einleitung" title="Einleitung" border="0" width="24" height="24">Einleitung</a>
<a name="UDO_nav_rg_HEAD" href="overview.html"><img src="udo_rg.gif" alt="Funktions&uuml;bersicht" title="Funktions&uuml;bersicht" border="0" width="24" height="24">Funktions&uuml;bersicht</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="general.html">Allgemeines</a>
<hr>
<h1><a name="Rechtliches">1.2 Rechtliches</a></h1>
<p>Dieses Programm ist &copy; by Thorsten Otto.
<br>Alle Rechte am Programm liegen beim <a href="intro.html#Autor">Autor</a>.
</p>
<p>Dieses Programm ist Freeware. Jeder darf es privat so oft
kopieren und weitergeben an wen er will, solange das Archiv stets
vollst&auml;ndig und unver&auml;ndert bleibt und die Weitergabe
kostenlos ist.
</p>
<p>Der Upload in Mailboxen u.&auml;. ist ausdr&uuml;cklich
erw&uuml;nscht, solange f&uuml;r den Download der Archive keinerlei
Geb&uuml;hren ausser den normalen Telefongeb&uuml;hren anfallen. Der
Vertrieb &uuml;ber PD-Versande, Zeitschriften, Verlage, CDs und alle
sonstigen denkbaren kommerziellen Vertriebswege ist nur mit
ausdr&uuml;cklicher Genehmigung des Autors gestattet.
</p>
<p>Nat&uuml;rlich kann ich keine Haftung f&uuml;r irgendwelche
direkten oder indirekten Sch&auml;den - einschliesslich aber nicht
beschr&auml;nkt auf materielle oder finanzielle - &uuml;bernehmen, die
durch die Benutzung von ORCS oder dessen Untauglichkeit f&uuml;r einen
bestimmten Zweck entstehen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="general.html"><img src="udo_up.gif" alt="Allgemeines" title="Allgemeines" border="0" width="24" height="24">Allgemeines</a>
<a name="UDO_nav_lf_FOOT" href="intro.html"><img src="udo_lf.gif" alt="Einleitung" title="Einleitung" border="0" width="24" height="24">Einleitung</a>
<a name="UDO_nav_rg_FOOT" href="overview.html"><img src="udo_rg.gif" alt="Funktions&uuml;bersicht" title="Funktions&uuml;bersicht" border="0" width="24" height="24">Funktions&uuml;bersicht</a>
</body>
</html>

View File

@@ -0,0 +1,70 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: CRC-String
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="miscext.html"><img src="udo_up.gif" alt="Sonstige Erweiterungen" title="Sonstige Erweiterungen" border="0" width="24" height="24">Sonstige Erweiterungen</a>
<a name="UDO_nav_lf_HEAD" href="miscext.html"><img src="udo_lf.gif" alt="Sonstige Erweiterungen" title="Sonstige Erweiterungen" border="0" width="24" height="24">Sonstige Erweiterungen</a>
<img src="udo_norg.gif" alt="" title="" border="0" width="24" height="24">
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="miscext.html">Sonstige Erweiterungen</a>
<hr>
<h1><a name="CRC-String">C.1 CRC-String</a></h1>
<p>Damit ein Programm feststellen kann, ob es auch die richtige
Version seiner Resource-<a href="file.html">Datei</a> geladen hat, kann ORCS eine
Pr&uuml;fsumme &uuml;ber die Resource sowohl in der Resource selbst
(als Freier String) als auch in der Header-<a href="file.html">Datei</a> schreiben.
</p>
<p>Ob ein CRC-String gespeichert wird, kann man &uuml;ber <a href="output.html">Datei/Ausgabedateien</a>
mit der Option <b>CRC-String</b> einstellen.
</p>
<p>F&uuml;r den Export werden folgende Variablen verwendet:
</p>
<table class="UDO_env_xlist">
<tr><td nowrap="nowrap" valign="top">_RSM_CRC_:</td>
<td valign="top"> Index des FreeStrings mit dem Pr&uuml;fsummen-String
</td></tr>
<tr><td nowrap="nowrap" valign="top">_RSM_CRC_STRING_:</td>
<td valign="top"> Pr&uuml;fsummen-String (sollte mit dem aus der Resource
&uuml;bereinstimmen)
</td></tr>
</table>
<p>Anmerkung: Mit der Pr&uuml;fsumme kann festgestellt werden, ob
die Resource in inkompatibler Weise ver&auml;ndert wurde. Zur
Berechnung der Pr&uuml;fsumme werden Objekt-Typen, Objekt-Nummern und
deren Verkettung herangezogen, nicht jedoch Texte und Positionierung.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="miscext.html"><img src="udo_up.gif" alt="Sonstige Erweiterungen" title="Sonstige Erweiterungen" border="0" width="24" height="24">Sonstige Erweiterungen</a>
<a name="UDO_nav_lf_FOOT" href="miscext.html"><img src="udo_lf.gif" alt="Sonstige Erweiterungen" title="Sonstige Erweiterungen" border="0" width="24" height="24">Sonstige Erweiterungen</a>
<img src="udo_norg.gif" alt="" title="" border="0" width="24" height="24">
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Fenster wechseln
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_HEAD" href="closew.html"><img src="udo_lf.gif" alt="Fenster schliessen" title="Fenster schliessen" border="0" width="24" height="24">Fenster schliessen</a>
<a name="UDO_nav_rg_HEAD" href="tileh.html"><img src="udo_rg.gif" alt="Untereinander" title="Untereinander" border="0" width="24" height="24">Untereinander</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="window.html">Fenster</a>
<hr>
<h1><a name="Fenster_20wechseln">3.2.3 Fenster wechseln</a></h1>
<p>Holt das unterste <a href="window.html">Fenster</a> nach oben und ordnet die anderen
<a href="window.html">Fenster</a> entsprechend um.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_FOOT" href="closew.html"><img src="udo_lf.gif" alt="Fenster schliessen" title="Fenster schliessen" border="0" width="24" height="24">Fenster schliessen</a>
<a name="UDO_nav_rg_FOOT" href="tileh.html"><img src="udo_rg.gif" alt="Untereinander" title="Untereinander" border="0" width="24" height="24">Untereinander</a>
</body>
</html>

View File

@@ -0,0 +1,50 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Desktop
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_HEAD" href="overview.html"><img src="udo_lf.gif" alt="Funktions&uuml;bersicht" title="Funktions&uuml;bersicht" border="0" width="24" height="24">Funktions&uuml;bersicht</a>
<a name="UDO_nav_rg_HEAD" href="trashcan.html"><img src="udo_rg.gif" alt="Papierkorb" title="Papierkorb" border="0" width="24" height="24">Papierkorb</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<hr>
<h1><a name="Desktop">2 Desktop</a></h1>
<p>Auf dem Desktop liegen die Symbole f&uuml;r die geladenen
Dateien, Bilder, Programme sowie f&uuml;r die <a href="disks.html">Laufwerke</a> und den
<a href="trashcan.html">Papierkorb</a>. Am unteren Rand wird eine Funktionsleiste dargestellt, die
&uuml;ber <a href="settings.html">Einstellungen/Sonstiges</a> jedoch auch abgestellt werden kann. Der Desktop wird
normalerweise auf dem <a href="bground.html">Hintergrund</a> dargestellt, kann aber auch in ein
<a href="window.html">Fenster</a> gelegt oder ganz abgeschaltet werden.
</p>
<ul class="content">
<li> 2.1 <a href="trashcan.html">Papierkorb</a>
<li> 2.2 <a href="disks.html">Laufwerke</a>
</li>
</ul>
<br>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_FOOT" href="overview.html"><img src="udo_lf.gif" alt="Funktions&uuml;bersicht" title="Funktions&uuml;bersicht" border="0" width="24" height="24">Funktions&uuml;bersicht</a>
<a name="UDO_nav_rg_FOOT" href="trashcan.html"><img src="udo_rg.gif" alt="Papierkorb" title="Papierkorb" border="0" width="24" height="24">Papierkorb</a>
</body>
</html>

View File

@@ -0,0 +1,88 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Dialogeditor
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_HEAD" href="nametype.html"><img src="udo_lf.gif" alt="Name und Typ" title="Name und Typ" border="0" width="24" height="24">Name und Typ</a>
<a name="UDO_nav_rg_HEAD" href="dialogs.html"><img src="udo_rg.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<hr>
<h1><a name="Dialogeditor">4.2 Dialogeditor</a></h1>
<p>Im Dialog-Editor k&ouml;nnen <a href="trees.html">B&auml;ume</a> vom Typ Dialog
bearbeitet werden. Das aktuelle Objekt wird dabei jeweils durch einen
kleinen schwarzen Kasten in der rechten unteren Ecke markiert,
ausserdem werden einige Daten in der Infozeile des Fensters
dargestellt (was dort dargestellt wird kann unter <a href="objectd.html">Einstellungen/Objektdaten</a> festgelegt
werden). Durch dr&uuml;cken und festhalten der linken Maustaste kann
man <a href="objects.html">Objekte</a> verschieben oder vergr&ouml;ssern (indem man in eine der
Ecken des Objekts klickt). Wird ein Objekt in ein anderes <a href="window.html">Fenster</a>
verschoben, kann man durch dr&uuml;cken einer Shifttaste festlegen ob
es verschoben oder kopiert werden soll. Ein einfacher Klick l&auml;sst
ein Popup-Men&uuml; erscheinen, ein Doppelklick f&uuml;hrt zum Dialog
zum bearbeiten des Objektes.
</p>
<p>Im Dialog-<a href="window.html">Fenster</a> sind ausserdem folgende Tasten belegt:
</p>
<table class="UDO_env_xlist">
<tr><td nowrap="nowrap" valign="top">Esc</td>
<td valign="top"> Zeichnet das <a href="window.html">Fenster</a> neu.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Ctrl-Cursor-Links</td>
<td valign="top"> Zeigt den vorherigen Baum im selben <a href="window.html">Fenster</a> an.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Ctrl-Cursor-Rechts</td>
<td valign="top"> Zeigt den n&auml;chsten Baum im selben <a href="window.html">Fenster</a> an.
<br>&nbsp;
</td></tr>
</table>
<ul class="content">
<li> 4.2.1 <a href="dialogs.html">Dialoge f&uuml;r Objekte</a>
<ul class="content">
<li> 4.2.1.1 <a href="g_box.html">Box Objekt &auml;ndern</a>
<li> 4.2.1.2 <a href="g_text.html">Text Objekt &auml;ndern</a>
<li> 4.2.1.3 <a href="g_string.html">String Objekt &auml;ndern</a>
<li> 4.2.1.4 <a href="g_user.html">Benutzer-Objekt &auml;ndern</a>
<li> 4.2.1.5 <a href="g_icon.html">Icon &auml;ndern</a>
<li> 4.2.1.6 <a href="g_image.html">Bild &auml;ndern</a>
<li> 4.2.1.7 <a href="g_cicon.html">Color Icon &auml;ndern</a>
<li> 4.2.1.8 <a href="size.html">Gr&ouml;&szlig;e und Position &auml;ndern</a>
<li> 4.2.1.9 <a href="comment.html">Kommentare</a>
</li>
</ul>
</li>
</ul>
<br>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_FOOT" href="nametype.html"><img src="udo_lf.gif" alt="Name und Typ" title="Name und Typ" border="0" width="24" height="24">Name und Typ</a>
<a name="UDO_nav_rg_FOOT" href="dialogs.html"><img src="udo_rg.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
</body>
</html>

View File

@@ -0,0 +1,61 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Dialoge f&uuml;r Objekte
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="dialog.html"><img src="udo_up.gif" alt="Dialogeditor" title="Dialogeditor" border="0" width="24" height="24">Dialogeditor</a>
<a name="UDO_nav_lf_HEAD" href="dialog.html"><img src="udo_lf.gif" alt="Dialogeditor" title="Dialogeditor" border="0" width="24" height="24">Dialogeditor</a>
<a name="UDO_nav_rg_HEAD" href="g_box.html"><img src="udo_rg.gif" alt="Box Objekt &auml;ndern" title="Box Objekt &auml;ndern" border="0" width="24" height="24">Box Objekt &auml;ndern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialog.html">Dialogeditor</a>
<hr>
<h1><a name="Dialoge_20f_26uuml_3Br_20Objekte">4.2.1 Dialoge f&uuml;r Objekte</a></h1>
<p>In allen Bearbeitungsdialogen f&uuml;r <a href="objects.html">Objekte</a> k&ouml;nnen die
Objekt-Flags und -States ge&auml;ndert sowie ein Name vergeben werden.
Im Feld 'Erweiterter Typ' kann ausserdem ein Wert zwischen 0 und 255
angegeben werden, der in das h&ouml;herwertige Byte des Felds ob_type
in die Struktur geschrieben wird (siehe <a href="obextend.html">Erweiterte Objekttypen</a>.
</p>
<p>Zus&auml;tzlich k&ouml;nnen noch <a href="comment.html">Kommentare</a> vergeben werden, die
mit in die entsprechenden <a href="output.html">Ausgabedateien</a> geschrieben werden.
</p>
<ul class="content">
<li> 4.2.1.1 <a href="g_box.html">Box Objekt &auml;ndern</a>
<li> 4.2.1.2 <a href="g_text.html">Text Objekt &auml;ndern</a>
<li> 4.2.1.3 <a href="g_string.html">String Objekt &auml;ndern</a>
<li> 4.2.1.4 <a href="g_user.html">Benutzer-Objekt &auml;ndern</a>
<li> 4.2.1.5 <a href="g_icon.html">Icon &auml;ndern</a>
<li> 4.2.1.6 <a href="g_image.html">Bild &auml;ndern</a>
<li> 4.2.1.7 <a href="g_cicon.html">Color Icon &auml;ndern</a>
<li> 4.2.1.8 <a href="size.html">Gr&ouml;&szlig;e und Position &auml;ndern</a>
<li> 4.2.1.9 <a href="comment.html">Kommentare</a>
</li>
</ul>
<br>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="dialog.html"><img src="udo_up.gif" alt="Dialogeditor" title="Dialogeditor" border="0" width="24" height="24">Dialogeditor</a>
<a name="UDO_nav_lf_FOOT" href="dialog.html"><img src="udo_lf.gif" alt="Dialogeditor" title="Dialogeditor" border="0" width="24" height="24">Dialogeditor</a>
<a name="UDO_nav_rg_FOOT" href="g_box.html"><img src="udo_rg.gif" alt="Box Objekt &auml;ndern" title="Box Objekt &auml;ndern" border="0" width="24" height="24">Box Objekt &auml;ndern</a>
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Laufwerke
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="desktop.html"><img src="udo_up.gif" alt="Desktop" title="Desktop" border="0" width="24" height="24">Desktop</a>
<a name="UDO_nav_lf_HEAD" href="trashcan.html"><img src="udo_lf.gif" alt="Papierkorb" title="Papierkorb" border="0" width="24" height="24">Papierkorb</a>
<a name="UDO_nav_rg_HEAD" href="menu.html"><img src="udo_rg.gif" alt="Das Men&uuml;" title="Das Men&uuml;" border="0" width="24" height="24">Das Men&uuml;</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="desktop.html">Desktop</a>
<hr>
<h1><a name="Laufwerke">2.2 Laufwerke</a></h1>
<p>Ein Doppelklick auf eines der Laufwerk-Symbole &ouml;ffnet ein
<a href="window.html">Fenster</a>, in dem die auf diesem Datentr&auml;ger befindlichen
Resource-Dateien angezeigt werden.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="desktop.html"><img src="udo_up.gif" alt="Desktop" title="Desktop" border="0" width="24" height="24">Desktop</a>
<a name="UDO_nav_lf_FOOT" href="trashcan.html"><img src="udo_lf.gif" alt="Papierkorb" title="Papierkorb" border="0" width="24" height="24">Papierkorb</a>
<a name="UDO_nav_rg_FOOT" href="menu.html"><img src="udo_rg.gif" alt="Das Men&uuml;" title="Das Men&uuml;" border="0" width="24" height="24">Das Men&uuml;</a>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Sofort bearbeiten
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_HEAD" href="autosize.html"><img src="udo_lf.gif" alt="Automatische Gr&ouml;&szlig;e" title="Automatische Gr&ouml;&szlig;e" border="0" width="24" height="24">Automatische Gr&ouml;&szlig;e</a>
<a name="UDO_nav_rg_HEAD" href="showp.html"><img src="udo_rg.gif" alt="Werkzeuge anzeigen" title="Werkzeuge anzeigen" border="0" width="24" height="24">Werkzeuge anzeigen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="options.html">Optionen</a>
<hr>
<h1><a name="Sofort_20bearbeiten">3.3.4 Sofort bearbeiten</a></h1>
<p>Wenn neue <a href="objects.html">Objekte</a> angelegt werden, erscheint danach sofort der
entsprechende Dialog zum bearbeiten, wenn dieser Men&uuml;punkt aktiv
ist.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_FOOT" href="autosize.html"><img src="udo_lf.gif" alt="Automatische Gr&ouml;&szlig;e" title="Automatische Gr&ouml;&szlig;e" border="0" width="24" height="24">Automatische Gr&ouml;&szlig;e</a>
<a name="UDO_nav_rg_FOOT" href="showp.html"><img src="udo_rg.gif" alt="Werkzeuge anzeigen" title="Werkzeuge anzeigen" border="0" width="24" height="24">Werkzeuge anzeigen</a>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Programm starten
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="loadprog.html"><img src="udo_lf.gif" alt="Programm laden" title="Programm laden" border="0" width="24" height="24">Programm laden</a>
<a name="UDO_nav_rg_HEAD" href="newdesk.html"><img src="udo_rg.gif" alt="Desktop neu" title="Desktop neu" border="0" width="24" height="24">Desktop neu</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="Programm_20starten">3.4.10 Programm starten</a></h1>
<p>Dieser Men&uuml;punkt l&auml;sst einen Fileselektor erscheinen,
mit dem man ein Programm ausw&auml;hlen kann das gestartet werden
soll. H&auml;ufig benutzte Programme k&ouml;nnen auch per <a href="loadprog.html">Programm laden</a> als
Icon auf dem <a href="desktop.html">Desktop</a> abgelegt und von dort gestartet werden.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="loadprog.html"><img src="udo_lf.gif" alt="Programm laden" title="Programm laden" border="0" width="24" height="24">Programm laden</a>
<a name="UDO_nav_rg_FOOT" href="newdesk.html"><img src="udo_rg.gif" alt="Desktop neu" title="Desktop neu" border="0" width="24" height="24">Desktop neu</a>
</body>
</html>

View File

@@ -0,0 +1,45 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Standard Erweiterte Typen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="nameruld.html"><img src="udo_lf.gif" alt="Standard Namensregeln" title="Standard Namensregeln" border="0" width="24" height="24">Standard Namensregeln</a>
<a name="UDO_nav_rg_HEAD" href="objectd.html"><img src="udo_rg.gif" alt="Objektdaten" title="Objektdaten" border="0" width="24" height="24">Objektdaten</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="Standard_20Erweiterte_20Typen">3.4.6 Standard Erweiterte Typen</a></h1>
<p>Hier kann man festlegen welche erweiterten Objekttypen ORCS
f&uuml;r neu angelegte Dateien darstellen soll (die Anzeige f&uuml;r
bereits geladene Dateien kann man unter <a href="extended.html">Datei/Erweiterte Typen</a> festlegen). Neben den
normalen AES-Objekten benutzen viele Bibliotheken <a href="obextend.html">zus&auml;tzliche Objekttypen</a>, um
Radiobuttons, Checkboxen etc. darzustellen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="nameruld.html"><img src="udo_lf.gif" alt="Standard Namensregeln" title="Standard Namensregeln" border="0" width="24" height="24">Standard Namensregeln</a>
<a name="UDO_nav_rg_FOOT" href="objectd.html"><img src="udo_rg.gif" alt="Objektdaten" title="Objektdaten" border="0" width="24" height="24">Objektdaten</a>
</body>
</html>

View File

@@ -0,0 +1,46 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Erweiterte Typen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_HEAD" href="namerule.html"><img src="udo_lf.gif" alt="Namensregeln" title="Namensregeln" border="0" width="24" height="24">Namensregeln</a>
<a name="UDO_nav_rg_HEAD" href="cancel.html"><img src="udo_rg.gif" alt="Abbruch" title="Abbruch" border="0" width="24" height="24">Abbruch</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">Datei</a>
<hr>
<h1><a name="Erweiterte_20Typen">3.1.10 Erweiterte Typen</a></h1>
<p>Hier kann man festlegen welche erweiterten Objekttypen ORCS
f&uuml;r bereits geladene Dateien darstellen soll (die Voreinstellung
f&uuml;r neue Dateien kann man unter <a href="extendd.html">Einstellungen/Standard Erweiterte Typen</a> festlegen).
</p>
<p>Neben den normalen AES-Objekten benutzen viele Bibliotheken
<a href="obextend.html">zus&auml;tzliche Objekttypen</a>, um Radiobuttons, Checkboxen etc. darzustellen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_FOOT" href="namerule.html"><img src="udo_lf.gif" alt="Namensregeln" title="Namensregeln" border="0" width="24" height="24">Namensregeln</a>
<a name="UDO_nav_rg_FOOT" href="cancel.html"><img src="udo_rg.gif" alt="Abbruch" title="Abbruch" border="0" width="24" height="24">Abbruch</a>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Dateinamen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="bground.html"><img src="udo_lf.gif" alt="Hintergrund" title="Hintergrund" border="0" width="24" height="24">Hintergrund</a>
<a name="UDO_nav_rg_HEAD" href="outputd.html"><img src="udo_rg.gif" alt="Standard Ausgabedateien" title="Standard Ausgabedateien" border="0" width="24" height="24">Standard Ausgabedateien</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="Dateinamen">3.4.3 Dateinamen</a></h1>
<p>Hier lassen sich die Dateierweiterungen einstellen, die f&uuml;r
die verschiedenen <a href="outputd.html">Ausgabeformate</a> verwendet werden. Diese <a href="prefs.html">Einstellungen</a> gelten
global und werden nicht pro Resource-<a href="file.html">Datei</a> verwaltet.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="bground.html"><img src="udo_lf.gif" alt="Hintergrund" title="Hintergrund" border="0" width="24" height="24">Hintergrund</a>
<a name="UDO_nav_rg_FOOT" href="outputd.html"><img src="udo_rg.gif" alt="Standard Ausgabedateien" title="Standard Ausgabedateien" border="0" width="24" height="24">Standard Ausgabedateien</a>
</body>
</html>

View File

@@ -0,0 +1,54 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Datei
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="menu.html"><img src="udo_up.gif" alt="Das Men&uuml;" title="Das Men&uuml;" border="0" width="24" height="24">Das Men&uuml;</a>
<a name="UDO_nav_lf_HEAD" href="menu.html"><img src="udo_lf.gif" alt="Das Men&uuml;" title="Das Men&uuml;" border="0" width="24" height="24">Das Men&uuml;</a>
<a name="UDO_nav_rg_HEAD" href="open.html"><img src="udo_rg.gif" alt="&Ouml;ffnen" title="&Ouml;ffnen" border="0" width="24" height="24">&Ouml;ffnen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<hr>
<h1><a name="Datei">3.1 Datei</a></h1>
<ul class="content">
<li> 3.1.1 <a href="open.html">&Ouml;ffnen</a>
<li> 3.1.2 <a href="new.html">Neue Datei</a>
<li> 3.1.3 <a href="save.html">Sichern</a>
<li> 3.1.4 <a href="saveas.html">Sichern als</a>
<li> 3.1.5 <a href="abandon.html">Verwerfen</a>
<li> 3.1.6 <a href="merge.html">Hinzuf&uuml;gen</a>
<li> 3.1.7 <a href="info.html">Information</a>
<li> 3.1.8 <a href="output.html">Ausgabedateien</a>
<li> 3.1.9 <a href="namerule.html">Namensregeln</a>
<li> 3.1.10 <a href="extended.html">Erweiterte Typen</a>
<li> 3.1.11 <a href="cancel.html">Abbruch</a>
<li> 3.1.12 <a href="quit.html">Ende</a>
</li>
</ul>
<br>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="menu.html"><img src="udo_up.gif" alt="Das Men&uuml;" title="Das Men&uuml;" border="0" width="24" height="24">Das Men&uuml;</a>
<a name="UDO_nav_lf_FOOT" href="menu.html"><img src="udo_lf.gif" alt="Das Men&uuml;" title="Das Men&uuml;" border="0" width="24" height="24">Das Men&uuml;</a>
<a name="UDO_nav_rg_FOOT" href="open.html"><img src="udo_rg.gif" alt="&Ouml;ffnen" title="&Ouml;ffnen" border="0" width="24" height="24">&Ouml;ffnen</a>
</body>
</html>

View File

@@ -0,0 +1,158 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Dateitypen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_HEAD" href="obextend.html"><img src="udo_lf.gif" alt="Erweiterte Objekttypen" title="Erweiterte Objekttypen" border="0" width="24" height="24">Erweiterte Objekttypen</a>
<a name="UDO_nav_rg_HEAD" href="miscext.html"><img src="udo_rg.gif" alt="Sonstige Erweiterungen" title="Sonstige Erweiterungen" border="0" width="24" height="24">Sonstige Erweiterungen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<hr>
<h1><a name="Dateitypen">B Dateitypen</a></h1>
<p>Folgende Dateitypen werden im Zusammenhang mit ORCS verwendet:
</p>
<table class="UDO_env_xlist">
<tr><td nowrap="nowrap" valign="top">ORCS.INF</td>
<td valign="top"> Diese <a href="file.html">Datei</a> wird von ORCS angelegt, wenn man die aktuellen
<a href="prefs.html">Einstellungen</a> abspeichert. In dieser <a href="file.html">Datei</a> werden s&auml;mtliche
<a href="prefs.html">Einstellungen</a> gespeichert, die man &uuml;ber die Dialoge vornehmen
kann, sowie Position und Gr&ouml;sse der Icons auf dem <a href="desktop.html">Desktop</a> und
aller offenen <a href="window.html">Fenster</a>. Die <a href="prefs.html">Einstellungen</a> werden automatisch beim
n&auml;chsten Programmstart wieder geladen.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.RSC</td>
<td valign="top"> Die Resource-Dateien selber.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.RSO</td>
<td valign="top"> Die Definitions-<a href="file.html">Datei</a> mit den Namen und Bemerkungen der
<a href="trees.html">B&auml;ume</a> und <a href="objects.html">Objekte</a> zur jeweiligen Resource-<a href="file.html">Datei</a>.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.H</td>
<td valign="top"> Include-<a href="file.html">Datei</a> f&uuml;r C.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.RSH</td>
<td valign="top"> Source-Code f&uuml;r C.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.S</td>
<td valign="top"> Include-<a href="file.html">Datei</a> (und/oder Sourcecode) f&uuml;r Assembler.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.I</td>
<td valign="top"> Include-<a href="file.html">Datei</a> f&uuml;r Pascal.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.RSI</td>
<td valign="top"> Source-Code f&uuml;r Pascal.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.MOD</td>
<td valign="top"> Include-<a href="file.html">Datei</a> f&uuml;r Modula (Implementation Module).
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.DEF</td>
<td valign="top"> Include-<a href="file.html">Datei</a> f&uuml;r Modula (Definition Module).
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.LST</td>
<td valign="top"> Include-<a href="file.html">Datei</a> f&uuml;r Basic.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.INC</td>
<td valign="top"> Include-<a href="file.html">Datei</a> f&uuml;r Fortran.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.FOR</td>
<td valign="top"> Include-<a href="file.html">Datei</a> f&uuml;r Forth.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.BH</td>
<td valign="top"> Include-<a href="file.html">Datei</a> f&uuml;r GFA-Basic 4.0 (wenn's denn mal kommt).
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.RSD</td>
<td valign="top"> Definitions-<a href="file.html">Datei</a> f&uuml;r Kuma-Resource (NRSC).
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.DEF</td>
<td valign="top"> Definitions-<a href="file.html">Datei</a> f&uuml;r Ataris RCS (&lt;= V1.4)
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.DFN</td>
<td valign="top"> Definitions-<a href="file.html">Datei</a> f&uuml;r Ataris RCS2 (&gt;= V2.0)
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.HRD</td>
<td valign="top"> Definitions-<a href="file.html">Datei</a> f&uuml;r WERCS und Interface.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.RSM</td>
<td valign="top"> Definitions-<a href="file.html">Datei</a> f&uuml;r ResourceMaster.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.DUP</td>
<td valign="top"> Backup von Resource-Dateien.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">*.RSB</td>
<td valign="top"> Backup von Definitions-Dateien.
<br>&nbsp;
</td></tr>
</table>
<p>S&auml;mtliche Namen sind nur Vorgaben und k&ouml;nnen jederzeit
ge&auml;ndert werden.
</p>
<p>Durch Module k&ouml;nnen noch weitere Dateien erzeugt werden.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_FOOT" href="obextend.html"><img src="udo_lf.gif" alt="Erweiterte Objekttypen" title="Erweiterte Objekttypen" border="0" width="24" height="24">Erweiterte Objekttypen</a>
<a name="UDO_nav_rg_FOOT" href="miscext.html"><img src="udo_rg.gif" alt="Sonstige Erweiterungen" title="Sonstige Erweiterungen" border="0" width="24" height="24">Sonstige Erweiterungen</a>
</body>
</html>

View File

@@ -0,0 +1,47 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Objekte Suchen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="Suchen"></a>
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_HEAD" href="showm.html"><img src="udo_lf.gif" alt="Men&uuml; anzeigen" title="Men&uuml; anzeigen" border="0" width="24" height="24">Men&uuml; anzeigen</a>
<a name="UDO_nav_rg_HEAD" href="findnext.html"><img src="udo_rg.gif" alt="Weitersuchen" title="Weitersuchen" border="0" width="24" height="24">Weitersuchen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="options.html">Optionen</a>
<hr>
<h1><a name="Objekte_20Suchen">3.3.7 Objekte Suchen</a></h1>
<a name="Suchfunktion"></a>
<p>Mit der Suchfunktion kann man nach einem Objekt-Typ, einem Text
oder einem Namen suchen. Die Suchfunktion funktioniert auch mit
Wildcards. Dabei steht das Sternchen '*' f&uuml;r eine beliebige
Anzahl von Zeichen und das Fragezeichen '?' steht f&uuml;r ein
beliebiges Zeichen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_FOOT" href="showm.html"><img src="udo_lf.gif" alt="Men&uuml; anzeigen" title="Men&uuml; anzeigen" border="0" width="24" height="24">Men&uuml; anzeigen</a>
<a name="UDO_nav_rg_FOOT" href="findnext.html"><img src="udo_rg.gif" alt="Weitersuchen" title="Weitersuchen" border="0" width="24" height="24">Weitersuchen</a>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Weitersuchen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_HEAD" href="find.html"><img src="udo_lf.gif" alt="Objekte Suchen" title="Objekte Suchen" border="0" width="24" height="24">Objekte Suchen</a>
<a name="UDO_nav_rg_HEAD" href="rcompare.html"><img src="udo_rg.gif" alt="Resource-Vergleich" title="Resource-Vergleich" border="0" width="24" height="24">Resource-Vergleich</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="options.html">Optionen</a>
<hr>
<h1><a name="Weitersuchen">3.3.8 Weitersuchen</a></h1>
<p>Die unter <a href="find.html">Suchen</a> spezifierte Operation wird erneut
durchgef&uuml;hrt. Die Funktion arbeitet ab dem zuletzt gefundenen
Objekt.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_FOOT" href="find.html"><img src="udo_lf.gif" alt="Objekte Suchen" title="Objekte Suchen" border="0" width="24" height="24">Objekte Suchen</a>
<a name="UDO_nav_rg_FOOT" href="rcompare.html"><img src="udo_rg.gif" alt="Resource-Vergleich" title="Resource-Vergleich" border="0" width="24" height="24">Resource-Vergleich</a>
</body>
</html>

View File

@@ -0,0 +1,54 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Freies Bild &auml;ndern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_HEAD" href="frstr.html"><img src="udo_lf.gif" alt="Freie Texte &auml;ndern" title="Freie Texte &auml;ndern" border="0" width="24" height="24">Freie Texte &auml;ndern</a>
<a name="UDO_nav_rg_HEAD" href="bgh.html"><img src="udo_rg.gif" alt="BubbleGEM Editor" title="BubbleGEM Editor" border="0" width="24" height="24">BubbleGEM Editor</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<hr>
<h1><a name="Freies_20Bild_20_26auml_3Bndern">4.6 Freies Bild &auml;ndern</a></h1>
<p>In einer Resource k&ouml;nnen neben Objektb&auml;umen und freien
Strings auch freie Images abgelegt werden. Dabei handelt es sich um
einfarbige Bildchen, die z.B. f&uuml;r Mauszeiger o.&auml;. verwendet
werden k&ouml;nnen. Man trifft sie allerdings eher selten an. Im
Free-Image-Editor wird lediglich die Bildfarbe eingestellt. Mit
&quot;&Auml;ndern&quot; kommt man in den <a href="iconed.html">Bild-Editor</a>.
</p>
<p>Im Programm kann das Bild wie folgt verwendet werden:
</p>
<pre> BITBLK **bitblk;
rsrc_gaddr(16, ImageIndex, &amp;bitblk);
</pre>
<p>Zu beachten ist hierbei, da&szlig; die Funktion rsrc_gaddr einen
Zeiger auf einen Zeiger, der dann auf die Bildinformation zeigt,
liefert.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_FOOT" href="frstr.html"><img src="udo_lf.gif" alt="Freie Texte &auml;ndern" title="Freie Texte &auml;ndern" border="0" width="24" height="24">Freie Texte &auml;ndern</a>
<a name="UDO_nav_rg_FOOT" href="bgh.html"><img src="udo_rg.gif" alt="BubbleGEM Editor" title="BubbleGEM Editor" border="0" width="24" height="24">BubbleGEM Editor</a>
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Freie Texte &auml;ndern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_HEAD" href="alert.html"><img src="udo_lf.gif" alt="Alarm-Box &auml;ndern" title="Alarm-Box &auml;ndern" border="0" width="24" height="24">Alarm-Box &auml;ndern</a>
<a name="UDO_nav_rg_HEAD" href="frimg.html"><img src="udo_rg.gif" alt="Freies Bild &auml;ndern" title="Freies Bild &auml;ndern" border="0" width="24" height="24">Freies Bild &auml;ndern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<hr>
<h1><a name="Freie_20Texte_20_26auml_3Bndern">4.5 Freie Texte &auml;ndern</a></h1>
<p>Mit dem String-Editor kann man einen Text mit bis zu 255 Zeichen
bearbeiten. Wenn der Text so formatiert ist, wie ihn form_alert(...)
erwartet, kann der Text auch in einen Alert-Text umgewandelt werden.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_FOOT" href="alert.html"><img src="udo_lf.gif" alt="Alarm-Box &auml;ndern" title="Alarm-Box &auml;ndern" border="0" width="24" height="24">Alarm-Box &auml;ndern</a>
<a name="UDO_nav_rg_FOOT" href="frimg.html"><img src="udo_rg.gif" alt="Freies Bild &auml;ndern" title="Freies Bild &auml;ndern" border="0" width="24" height="24">Freies Bild &auml;ndern</a>
</body>
</html>

View File

@@ -0,0 +1,51 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Box Objekt &auml;ndern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_HEAD" href="dialogs.html"><img src="udo_lf.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_rg_HEAD" href="g_text.html"><img src="udo_rg.gif" alt="Text Objekt &auml;ndern" title="Text Objekt &auml;ndern" border="0" width="24" height="24">Text Objekt &auml;ndern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialog.html">Dialogeditor</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialogs.html">Dialoge f&uuml;r Objekte</a>
<hr>
<h1><a name="Box_20Objekt_20_26auml_3Bndern">4.2.1.1 Box Objekt &auml;ndern</a></h1>
<p>In diesem Dialog werden <a href="objects.html">Objekte</a> vom Typ BOX, I-BOX und BOXCHAR
ge&auml;ndert.
</p>
<p>Neben den <a href="dialogs.html">Standard-Objekt-Editor-Funktionen</a> bietet der Box-Editor eine Rahmen-Einstellung.
Sie besteht aus 2 Popups. Das erste Popup dient der Farbauswahl und
das zweite zur Auswahl der Rahmenst&auml;rke. Desweiteren besteht die
M&ouml;glichkeit bei G_BOX- und G_BOXCHAR-Objekten das F&uuml;llmuster
und die F&uuml;llfarbe ebenfalls mit 2 Popups einzustellen. Bei
G_BOXCHAR-Objekten kann zus&auml;tzlich das Zeichen, dessen Farbe und
dessen Schreibmodus (transparent/deckend) angegeben werden.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_FOOT" href="dialogs.html"><img src="udo_lf.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_rg_FOOT" href="g_text.html"><img src="udo_rg.gif" alt="Text Objekt &auml;ndern" title="Text Objekt &auml;ndern" border="0" width="24" height="24">Text Objekt &auml;ndern</a>
</body>
</html>

View File

@@ -0,0 +1,50 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Color Icon &auml;ndern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_HEAD" href="g_image.html"><img src="udo_lf.gif" alt="Bild &auml;ndern" title="Bild &auml;ndern" border="0" width="24" height="24">Bild &auml;ndern</a>
<a name="UDO_nav_rg_HEAD" href="size.html"><img src="udo_rg.gif" alt="Gr&ouml;&szlig;e und Position &auml;ndern" title="Gr&ouml;&szlig;e und Position &auml;ndern" border="0" width="24" height="24">Gr&ouml;&szlig;e und Position &auml;ndern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialog.html">Dialogeditor</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialogs.html">Dialoge f&uuml;r Objekte</a>
<hr>
<h1><a name="Color_20Icon_20_26auml_3Bndern">4.2.1.7 Color Icon &auml;ndern</a></h1>
<p>Neben den <a href="dialogs.html">Standard-Objekt-Editor-Funktionen</a> bietet der Icon-Editor die M&ouml;glichkeit die
Maskenfarbe und Datenfarbe per Popup einzustellen. Weiterhin ist die
Eingabe des Icontextes und des Iconbuchstabens m&ouml;glich. Mit dem
Button &quot;&Auml;ndern&quot; wird das Icon an den <a href="iconed.html">Bild-Editor</a>
&uuml;bergeben.
</p>
<p>Die Buttons 1-8 zeigen an, welche Aufl&ouml;sungen bereits
vorhanden sind. Ein Klick auf einen dieser Buttons &ouml;ffnet den
<a href="iconed.html">Iconeditor</a> mit der entsprechenden Aufl&ouml;sung.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_FOOT" href="g_image.html"><img src="udo_lf.gif" alt="Bild &auml;ndern" title="Bild &auml;ndern" border="0" width="24" height="24">Bild &auml;ndern</a>
<a name="UDO_nav_rg_FOOT" href="size.html"><img src="udo_rg.gif" alt="Gr&ouml;&szlig;e und Position &auml;ndern" title="Gr&ouml;&szlig;e und Position &auml;ndern" border="0" width="24" height="24">Gr&ouml;&szlig;e und Position &auml;ndern</a>
</body>
</html>

View File

@@ -0,0 +1,46 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Icon &auml;ndern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_HEAD" href="g_user.html"><img src="udo_lf.gif" alt="Benutzer-Objekt &auml;ndern" title="Benutzer-Objekt &auml;ndern" border="0" width="24" height="24">Benutzer-Objekt &auml;ndern</a>
<a name="UDO_nav_rg_HEAD" href="g_image.html"><img src="udo_rg.gif" alt="Bild &auml;ndern" title="Bild &auml;ndern" border="0" width="24" height="24">Bild &auml;ndern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialog.html">Dialogeditor</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialogs.html">Dialoge f&uuml;r Objekte</a>
<hr>
<h1><a name="Icon_20_26auml_3Bndern">4.2.1.5 Icon &auml;ndern</a></h1>
<p>Neben den <a href="dialogs.html">Standard-Objekt-Editor-Funktionen</a> bietet der Icon-Editor die M&ouml;glichkeit die
Maskenfarbe und Datenfarbe per Popup einzustellen. Weiterhin ist die
Eingabe des Icontextes und des Iconbuchstabens m&ouml;glich. Mit dem
Button &quot;&Auml;ndern&quot; wird das Icon an den <a href="iconed.html">Bild-Editor</a>
&uuml;bergeben.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_FOOT" href="g_user.html"><img src="udo_lf.gif" alt="Benutzer-Objekt &auml;ndern" title="Benutzer-Objekt &auml;ndern" border="0" width="24" height="24">Benutzer-Objekt &auml;ndern</a>
<a name="UDO_nav_rg_FOOT" href="g_image.html"><img src="udo_rg.gif" alt="Bild &auml;ndern" title="Bild &auml;ndern" border="0" width="24" height="24">Bild &auml;ndern</a>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Bild &auml;ndern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_HEAD" href="g_icon.html"><img src="udo_lf.gif" alt="Icon &auml;ndern" title="Icon &auml;ndern" border="0" width="24" height="24">Icon &auml;ndern</a>
<a name="UDO_nav_rg_HEAD" href="g_cicon.html"><img src="udo_rg.gif" alt="Color Icon &auml;ndern" title="Color Icon &auml;ndern" border="0" width="24" height="24">Color Icon &auml;ndern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialog.html">Dialogeditor</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialogs.html">Dialoge f&uuml;r Objekte</a>
<hr>
<h1><a name="Bild_20_26auml_3Bndern">4.2.1.6 Bild &auml;ndern</a></h1>
<p>Neben den <a href="dialogs.html">Standard-Objekt-Editor-Funktionen</a> kann im Image-Editor die Image-Farbe per Popup
eingestellt werden. Mit den Button &quot;&Auml;ndern&quot; wird das
Image an den <a href="iconed.html">Bild-Editor</a> &uuml;bergeben.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_FOOT" href="g_icon.html"><img src="udo_lf.gif" alt="Icon &auml;ndern" title="Icon &auml;ndern" border="0" width="24" height="24">Icon &auml;ndern</a>
<a name="UDO_nav_rg_FOOT" href="g_cicon.html"><img src="udo_rg.gif" alt="Color Icon &auml;ndern" title="Color Icon &auml;ndern" border="0" width="24" height="24">Color Icon &auml;ndern</a>
</body>
</html>

View File

@@ -0,0 +1,45 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: String Objekt &auml;ndern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_HEAD" href="g_text.html"><img src="udo_lf.gif" alt="Text Objekt &auml;ndern" title="Text Objekt &auml;ndern" border="0" width="24" height="24">Text Objekt &auml;ndern</a>
<a name="UDO_nav_rg_HEAD" href="g_user.html"><img src="udo_rg.gif" alt="Benutzer-Objekt &auml;ndern" title="Benutzer-Objekt &auml;ndern" border="0" width="24" height="24">Benutzer-Objekt &auml;ndern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialog.html">Dialogeditor</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialogs.html">Dialoge f&uuml;r Objekte</a>
<hr>
<h1><a name="String_20Objekt_20_26auml_3Bndern">4.2.1.3 String Objekt &auml;ndern</a></h1>
<p>Neben den <a href="dialogs.html">Standard-Objekt-Editor-Funktionen</a> bietet der Button-Editor lediglich die
M&ouml;glichkeit einen Text eingeben zu k&ouml;nnen. Es k&ouml;nnen
maximal 255 Zeichen eingegeben werden. Wird das Zeilenende erreicht,
wird gescrollt.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_FOOT" href="g_text.html"><img src="udo_lf.gif" alt="Text Objekt &auml;ndern" title="Text Objekt &auml;ndern" border="0" width="24" height="24">Text Objekt &auml;ndern</a>
<a name="UDO_nav_rg_FOOT" href="g_user.html"><img src="udo_rg.gif" alt="Benutzer-Objekt &auml;ndern" title="Benutzer-Objekt &auml;ndern" border="0" width="24" height="24">Benutzer-Objekt &auml;ndern</a>
</body>
</html>

View File

@@ -0,0 +1,101 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Text Objekt &auml;ndern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_HEAD" href="g_box.html"><img src="udo_lf.gif" alt="Box Objekt &auml;ndern" title="Box Objekt &auml;ndern" border="0" width="24" height="24">Box Objekt &auml;ndern</a>
<a name="UDO_nav_rg_HEAD" href="g_string.html"><img src="udo_rg.gif" alt="String Objekt &auml;ndern" title="String Objekt &auml;ndern" border="0" width="24" height="24">String Objekt &auml;ndern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialog.html">Dialogeditor</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialogs.html">Dialoge f&uuml;r Objekte</a>
<hr>
<h1><a name="Text_20Objekt_20_26auml_3Bndern">4.2.1.2 Text Objekt &auml;ndern</a></h1>
<p>In diesem Dialog werden <a href="objects.html">Objekte</a> vom Typ TEXT, BOXTEXT, FTEXT und
FBOXTEXT ge&auml;ndert. TEXT und BOXTEXT <a href="objects.html">Objekte</a> haben gegen&uuml;ber
STRING-Objekten einige zus&auml;tzliche Darstellungsoptionen, so z.B.
den Rand, die Zentrierung und ein Hintergrundmuster. FTEXT und
FBOXTEXT-<a href="objects.html">Objekte</a> k&ouml;nnen f&uuml;r Eingabefelder benutzt werden.
Daf&uuml;r m&uuml;ssen zwei Texte angegeben werden: eine Maske und ein
Text, der an den Eingabepositionen erscheint. Eingabepositionen werden
dadurch gekennzeichnet, da&szlig; man in dem Feld 'Schablone'
w&auml;hrend der Eingabe die Alternate-Taste gedr&uuml;ckt h&auml;lt.
Das eingegebene Zeichen entscheided dann dar&uuml;ber welche Zeichen
hinterher an dieser Stelle eingegeben werden k&ouml;nnen. Die AES
sehen dazu folgende Zeichen vor:
</p>
<table class="UDO_env_xlist">
<tr><td nowrap="nowrap" valign="top">9</td>
<td valign="top"> Ziffern (0-9)
</td></tr>
<tr><td nowrap="nowrap" valign="top">A</td>
<td valign="top"> Gro&szlig;buchstaben (A-Z) und Leerzeichen
</td></tr>
<tr><td nowrap="nowrap" valign="top">a</td>
<td valign="top"> Buchstaben (A-Z, a-z) und Leerzeichen
</td></tr>
<tr><td nowrap="nowrap" valign="top">N</td>
<td valign="top"> Gro&szlig;buchstaben (A-Z) und Ziffern (0-9)
</td></tr>
<tr><td nowrap="nowrap" valign="top">n</td>
<td valign="top"> Buchstaben (A-Z, a-z) und Ziffern (0-9)
</td></tr>
<tr><td nowrap="nowrap" valign="top">F</td>
<td valign="top"> Zeichen, die in einem <a href="extens.html">Dateinamen</a> erlaubt sind, ausserdem '?',
'*' und ':'
</td></tr>
<tr><td nowrap="nowrap" valign="top">f</td>
<td valign="top"> Zeichen, die in einem <a href="extens.html">Dateinamen</a> erlaubt sind
</td></tr>
<tr><td nowrap="nowrap" valign="top">P</td>
<td valign="top"> Zeichen, die in einem Pfadnamen erlaubt sind, ausserdem '?' und
'*'
</td></tr>
<tr><td nowrap="nowrap" valign="top">p</td>
<td valign="top"> Zeichen, die in einem Pfadnamen erlaubt sind
</td></tr>
<tr><td nowrap="nowrap" valign="top">X</td>
<td valign="top"> alle Zeichen
</td></tr>
</table>
<p>Einige AES-Versionen und insbesondere GEM-Librarys k&ouml;nnen
noch weitere M&ouml;glichkeiten bieten.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_FOOT" href="g_box.html"><img src="udo_lf.gif" alt="Box Objekt &auml;ndern" title="Box Objekt &auml;ndern" border="0" width="24" height="24">Box Objekt &auml;ndern</a>
<a name="UDO_nav_rg_FOOT" href="g_string.html"><img src="udo_rg.gif" alt="String Objekt &auml;ndern" title="String Objekt &auml;ndern" border="0" width="24" height="24">String Objekt &auml;ndern</a>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Benutzer-Objekt &auml;ndern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_HEAD" href="g_string.html"><img src="udo_lf.gif" alt="String Objekt &auml;ndern" title="String Objekt &auml;ndern" border="0" width="24" height="24">String Objekt &auml;ndern</a>
<a name="UDO_nav_rg_HEAD" href="g_icon.html"><img src="udo_rg.gif" alt="Icon &auml;ndern" title="Icon &auml;ndern" border="0" width="24" height="24">Icon &auml;ndern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialog.html">Dialogeditor</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialogs.html">Dialoge f&uuml;r Objekte</a>
<hr>
<h1><a name="Benutzer-Objekt_20_26auml_3Bndern">4.2.1.4 Benutzer-Objekt &auml;ndern</a></h1>
<p>Neben den <a href="dialogs.html">Standard-Objekt-Editor-Funktionen</a> k&ouml;nnen im Userdef-Editor die beiden
Elemente der USERDEF-Struktur &quot;ub_code&quot; und
&quot;ub_parm&quot; mit einem Wert (ganze Zahl) belegt werden.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_FOOT" href="g_string.html"><img src="udo_lf.gif" alt="String Objekt &auml;ndern" title="String Objekt &auml;ndern" border="0" width="24" height="24">String Objekt &auml;ndern</a>
<a name="UDO_nav_rg_FOOT" href="g_icon.html"><img src="udo_rg.gif" alt="Icon &auml;ndern" title="Icon &auml;ndern" border="0" width="24" height="24">Icon &auml;ndern</a>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Allgemeines
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_HEAD" href="orcs.html"><img src="udo_lf.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_rg_HEAD" href="intro.html"><img src="udo_rg.gif" alt="Einleitung" title="Einleitung" border="0" width="24" height="24">Einleitung</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<hr>
<h1><a name="Allgemeines">1 Allgemeines</a></h1>
<ul class="content">
<li> 1.1 <a href="intro.html">Einleitung</a>
<li> 1.2 <a href="copyrght.html">Rechtliches</a>
<li> 1.3 <a href="overview.html">Funktions&uuml;bersicht</a>
</li>
</ul>
<br>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_FOOT" href="orcs.html"><img src="udo_lf.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_rg_FOOT" href="intro.html"><img src="udo_rg.gif" alt="Einleitung" title="Einleitung" border="0" width="24" height="24">Einleitung</a>
</body>
</html>

View File

@@ -0,0 +1,45 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Load Windows ICO
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="iconed.html"><img src="udo_up.gif" alt="Iconeditor" title="Iconeditor" border="0" width="24" height="24">Iconeditor</a>
<a name="UDO_nav_lf_HEAD" href="imgload.html"><img src="udo_lf.gif" alt="Bild laden" title="Bild laden" border="0" width="24" height="24">Bild laden</a>
<a name="UDO_nav_rg_HEAD" href="obextend.html"><img src="udo_rg.gif" alt="Erweiterte Objekttypen" title="Erweiterte Objekttypen" border="0" width="24" height="24">Erweiterte Objekttypen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="iconed.html">Iconeditor</a>
<hr>
<h1><a name="Load_20Windows_20ICO">4.8.4 Load Windows ICO</a></h1>
<p>Hiermit kann eine Windows-Icon-<a href="file.html">Datei</a> direkt in den Editor
geladen werden, einschliesslich Maske. Bei Dateien mit mehr als einem
Icon wird nur das erste ber&uuml;cksichtigt. Die Aufl&ouml;sung dieses
Icons muss mit der aktuell bearbeiteten &uuml;bereinstimmen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="iconed.html"><img src="udo_up.gif" alt="Iconeditor" title="Iconeditor" border="0" width="24" height="24">Iconeditor</a>
<a name="UDO_nav_lf_FOOT" href="imgload.html"><img src="udo_lf.gif" alt="Bild laden" title="Bild laden" border="0" width="24" height="24">Bild laden</a>
<a name="UDO_nav_rg_FOOT" href="obextend.html"><img src="udo_rg.gif" alt="Erweiterte Objekttypen" title="Erweiterte Objekttypen" border="0" width="24" height="24">Erweiterte Objekttypen</a>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Iconeditor
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_HEAD" href="bgh.html"><img src="udo_lf.gif" alt="BubbleGEM Editor" title="BubbleGEM Editor" border="0" width="24" height="24">BubbleGEM Editor</a>
<a name="UDO_nav_rg_HEAD" href="iconsave.html"><img src="udo_rg.gif" alt="Icon laden/speichern" title="Icon laden/speichern" border="0" width="24" height="24">Icon laden/speichern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<hr>
<h1><a name="Iconeditor">4.8 Iconeditor</a></h1>
<p>Im Iconeditor k&ouml;nnen die Bilder der Icons selber bearbeitet
werden. Dazu stehen vielf&auml;ltige M&ouml;glichkeiten zur
Verf&uuml;gung.
</p>
<ul>
<li><p> Im Zeichenmodus k&ouml;nnen einzelne Punkte, Linien, Rechtecke
und Kreise gezeichnet werden. Je nach ausgew&auml;hltem Farbstift
werden die Punkte entsprechend gesetzt oder gel&ouml;scht. Ausserdem
kann man festlegen ob die Operationen nur auf die Daten, nur auf die
Maske oder auf beides angewendet werden.
<br>&nbsp;
</p></li>
<li><p> Im Modus 'Text' k&ouml;nnen die Zeichenkette und das einzelne
Zeichen f&uuml;r Icons positioniert werden.
<br>&nbsp;
</p></li>
<li><p> Im Modus 'Box' kann die Position des Icons relativ zum Objekt
festgelegt werden. Dazu kann man irgendwo in den Bereich des Icons
klicken und die Box dann verschieben. Wenn man in die rechte untere
Ecke klickt, kann man ausserdem das Icon vergr&ouml;ssern und
verkleinern (in X-Richtung kann die Gr&ouml;sse nur in Schritten von
16 Pixel ver&auml;ndert werden).
<br>&nbsp;
</p></li>
</ul>
<p>Ausserdem gibt es noch Befehle zum verschieben, invertieren,
vergr&ouml;ssern, verkleinern und spiegeln des Icons.
</p>
<p>Bei Farbicons gibt es ausserdem noch die M&ouml;glichkeit <a href="iconnew.html">neue Aufl&ouml;sungen</a>
hinzuzuf&uuml;gen oder alte zu entfernen. Die momentan verwendete
Aufl&ouml;sung wird unten rechts in der Toolbox angezeigt und kann
dort auch gewechselt werden. Der Button darunter zeigt an ob gerade
das normale oder das selektierte Icon bearbeitet wird. Farbicons
k&ouml;nnen auch in Aufl&ouml;sungen bearbeitet werden, die nicht der
Aufl&ouml;sung des Icons entsprechen, jedoch k&ouml;nnen dann
nat&uuml;rlich die Farben nicht entsprechend dargestellt werden.
</p>
<ul class="content">
<li> 4.8.1 <a href="iconsave.html">Icon laden/speichern</a>
<li> 4.8.2 <a href="iconnew.html">Neue Aufl&ouml;sung</a>
<li> 4.8.3 <a href="imgload.html">Bild laden</a>
<li> 4.8.4 <a href="icoload.html">Load Windows ICO</a>
</li>
</ul>
<br>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_FOOT" href="bgh.html"><img src="udo_lf.gif" alt="BubbleGEM Editor" title="BubbleGEM Editor" border="0" width="24" height="24">BubbleGEM Editor</a>
<a name="UDO_nav_rg_FOOT" href="iconsave.html"><img src="udo_rg.gif" alt="Icon laden/speichern" title="Icon laden/speichern" border="0" width="24" height="24">Icon laden/speichern</a>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Neue Aufl&ouml;sung
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="iconed.html"><img src="udo_up.gif" alt="Iconeditor" title="Iconeditor" border="0" width="24" height="24">Iconeditor</a>
<a name="UDO_nav_lf_HEAD" href="iconsave.html"><img src="udo_lf.gif" alt="Icon laden/speichern" title="Icon laden/speichern" border="0" width="24" height="24">Icon laden/speichern</a>
<a name="UDO_nav_rg_HEAD" href="imgload.html"><img src="udo_rg.gif" alt="Bild laden" title="Bild laden" border="0" width="24" height="24">Bild laden</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="iconed.html">Iconeditor</a>
<hr>
<h1><a name="Neue_20Aufl_26ouml_3Bsung">4.8.2 Neue Aufl&ouml;sung</a></h1>
<p>Mit diesem Men&uuml;punkt k&ouml;nnen neue Aufl&ouml;sungen
f&uuml;r Farbicons erzeugt werden, die noch nicht vorhanden sind. Wird
ein &quot;normales&quot; Icon erzeugt, dann wird es mit den Daten des
n&auml;chsten Icons mit weniger Farben gef&uuml;llt.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="iconed.html"><img src="udo_up.gif" alt="Iconeditor" title="Iconeditor" border="0" width="24" height="24">Iconeditor</a>
<a name="UDO_nav_lf_FOOT" href="iconsave.html"><img src="udo_lf.gif" alt="Icon laden/speichern" title="Icon laden/speichern" border="0" width="24" height="24">Icon laden/speichern</a>
<a name="UDO_nav_rg_FOOT" href="imgload.html"><img src="udo_rg.gif" alt="Bild laden" title="Bild laden" border="0" width="24" height="24">Bild laden</a>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Icon laden/speichern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="iconed.html"><img src="udo_up.gif" alt="Iconeditor" title="Iconeditor" border="0" width="24" height="24">Iconeditor</a>
<a name="UDO_nav_lf_HEAD" href="iconed.html"><img src="udo_lf.gif" alt="Iconeditor" title="Iconeditor" border="0" width="24" height="24">Iconeditor</a>
<a name="UDO_nav_rg_HEAD" href="iconnew.html"><img src="udo_rg.gif" alt="Neue Aufl&ouml;sung" title="Neue Aufl&ouml;sung" border="0" width="24" height="24">Neue Aufl&ouml;sung</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="iconed.html">Iconeditor</a>
<hr>
<h1><a name="Icon_20laden_2Fspeichern">4.8.1 Icon laden/speichern</a></h1>
<p>&Uuml;ber diesen Men&uuml;punkt k&ouml;nnen ICN-Dateien
geladen/gespeichert werden. ICN-Dateien sind Ascii-Dateien, wie sie
auch vom Atari RCS erzeugt werden, und k&ouml;nnen sowohl Daten als
auch Maske des Icons enthalten.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="iconed.html"><img src="udo_up.gif" alt="Iconeditor" title="Iconeditor" border="0" width="24" height="24">Iconeditor</a>
<a name="UDO_nav_lf_FOOT" href="iconed.html"><img src="udo_lf.gif" alt="Iconeditor" title="Iconeditor" border="0" width="24" height="24">Iconeditor</a>
<a name="UDO_nav_rg_FOOT" href="iconnew.html"><img src="udo_rg.gif" alt="Neue Aufl&ouml;sung" title="Neue Aufl&ouml;sung" border="0" width="24" height="24">Neue Aufl&ouml;sung</a>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Bild laden
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="iconed.html"><img src="udo_up.gif" alt="Iconeditor" title="Iconeditor" border="0" width="24" height="24">Iconeditor</a>
<a name="UDO_nav_lf_HEAD" href="iconnew.html"><img src="udo_lf.gif" alt="Neue Aufl&ouml;sung" title="Neue Aufl&ouml;sung" border="0" width="24" height="24">Neue Aufl&ouml;sung</a>
<a name="UDO_nav_rg_HEAD" href="icoload.html"><img src="udo_rg.gif" alt="Load Windows ICO" title="Load Windows ICO" border="0" width="24" height="24">Load Windows ICO</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="iconed.html">Iconeditor</a>
<hr>
<h1><a name="Bild_20laden">4.8.3 Bild laden</a></h1>
<p>&Uuml;ber diesen Men&uuml;punkt k&ouml;nnen Bilder im (X)IMG-,
Degas-, Stad-, Neo-, ColorStar-, Imagic-, BMP- oder GIF-Format geladen
werden. Durch markieren eines Ausschnitts und verschieben in ein
<a href="iconed.html">Iconeditor</a>-<a href="window.html">Fenster</a> wird der Ausschnitt dort eingef&uuml;gt.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="iconed.html"><img src="udo_up.gif" alt="Iconeditor" title="Iconeditor" border="0" width="24" height="24">Iconeditor</a>
<a name="UDO_nav_lf_FOOT" href="iconnew.html"><img src="udo_lf.gif" alt="Neue Aufl&ouml;sung" title="Neue Aufl&ouml;sung" border="0" width="24" height="24">Neue Aufl&ouml;sung</a>
<a name="UDO_nav_rg_FOOT" href="icoload.html"><img src="udo_rg.gif" alt="Load Windows ICO" title="Load Windows ICO" border="0" width="24" height="24">Load Windows ICO</a>
</body>
</html>

View File

@@ -0,0 +1,67 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Information
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="Datei-Information"></a>
<a name="Ordner_20Information"></a>
<a name="Disk_20Information"></a>
<a name="Resource_20Information"></a>
<a name="Resource_20Baum_20Information"></a>
<a name="Bild_20Information"></a>
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_HEAD" href="merge.html"><img src="udo_lf.gif" alt="Hinzuf&uuml;gen" title="Hinzuf&uuml;gen" border="0" width="24" height="24">Hinzuf&uuml;gen</a>
<a name="UDO_nav_rg_HEAD" href="output.html"><img src="udo_rg.gif" alt="Ausgabedateien" title="Ausgabedateien" border="0" width="24" height="24">Ausgabedateien</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">Datei</a>
<hr>
<h1><a name="Information">3.1.7 Information</a></h1>
<p>Dieser Men&uuml;punkt kann (wie &quot;<a href="open.html">&Ouml;ffnen</a>&quot;) verschiedene
Aktionen ausl&ouml;sen.
</p>
<ol class="UDO_env_enumerate">
<li><p> Sind auf dem <a href="desktop.html">Desktop</a> ein oder mehrere Icons selektiert, wird
die Information zu den entsprechenden Objekten angezeigt.
<br>&nbsp;
</p></li>
<li><p> Ist in dem obersten <a href="window.html">Fenster</a> ein Objekt selektiert, wird die
Information dar&uuml;ber angezeigt.
<br>&nbsp;
</p></li>
<li><p> Ist ein <a href="window.html">Fenster</a> offen, wird die Information zum
zugeh&ouml;rigen Inhalt angezeigt.
<br>&nbsp;
</p></li>
<li><p> Ansonsten wird die Programminformation angezeigt.
<br>&nbsp;
</p></li>
</ol>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_FOOT" href="merge.html"><img src="udo_lf.gif" alt="Hinzuf&uuml;gen" title="Hinzuf&uuml;gen" border="0" width="24" height="24">Hinzuf&uuml;gen</a>
<a name="UDO_nav_rg_FOOT" href="output.html"><img src="udo_rg.gif" alt="Ausgabedateien" title="Ausgabedateien" border="0" width="24" height="24">Ausgabedateien</a>
</body>
</html>

View File

@@ -0,0 +1,78 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Einleitung
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="general.html"><img src="udo_up.gif" alt="Allgemeines" title="Allgemeines" border="0" width="24" height="24">Allgemeines</a>
<a name="UDO_nav_lf_HEAD" href="general.html"><img src="udo_lf.gif" alt="Allgemeines" title="Allgemeines" border="0" width="24" height="24">Allgemeines</a>
<a name="UDO_nav_rg_HEAD" href="copyrght.html"><img src="udo_rg.gif" alt="Rechtliches" title="Rechtliches" border="0" width="24" height="24">Rechtliches</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="general.html">Allgemeines</a>
<hr>
<h1><a name="Einleitung">1.1 Einleitung</a></h1>
<p>ORCS ist ein Resource-Editor, der nunmehr schon einige Jahre an
Entwicklung auf dem Buckel hat. Angefangen habe ich damit bereits
1989, als ich nach einem vern&uuml;nftigen Editor suchte und keinen
fand. Damals entschloss ich mich dann irgendwann dazu selber einen zu
schreiben. Nat&uuml;rlich hat es eine ganze Zeit gedauert, bis er
einigermassen stabil lief und die n&ouml;tige Funktionalit&auml;t
hatte. Mindestens genauso lange hat es dann nochmal gedauert bis ich
der Meinung war da&szlig; auch andere Leute ihn ben&uuml;tzen
k&ouml;nnten. Dann kamen im Laufe der Zeit immer neue Funktionen
hinzu, und einige male wurde er dann komplett umgestellt, bis er sein
heutiges Erscheinungsbild hatte. Mittlerweile d&uuml;rfte er wohl kaum
noch was zu w&uuml;nschen &uuml;brig lassen, aber die Beurteilung
&uuml;berlasse ich lieber euch ;-)
</p>
<p>&Uuml;ber Kritik oder Anregungen w&uuml;rde ich mich sehr
freuen. Also schreibt mir!
</p>
<a name="Autor"></a>
<p>Der Autor ist zu erreichen als:
</p>
<table class="UDO_env_xlist">
<tr><td nowrap="nowrap" valign="top">SnailMail:</td>
<td valign="top"> Thorsten Otto &nbsp;
<br>Katharinenstr. 14 &nbsp;
<br>45131 Essen &nbsp;
<br>
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Email:</td>
<td valign="top"> admin@tho-otto.de
<br>&nbsp;
</td></tr>
</table>
<p>Auf Anfrage sind auch Programmversionen f&uuml;r Windows und
Linux erh&auml;ltlich (ja richtig, native Versionen, keine
GEM-Programme die einen Emulator ben&ouml;tigen).
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="general.html"><img src="udo_up.gif" alt="Allgemeines" title="Allgemeines" border="0" width="24" height="24">Allgemeines</a>
<a name="UDO_nav_lf_FOOT" href="general.html"><img src="udo_lf.gif" alt="Allgemeines" title="Allgemeines" border="0" width="24" height="24">Allgemeines</a>
<a name="UDO_nav_rg_FOOT" href="copyrght.html"><img src="udo_rg.gif" alt="Rechtliches" title="Rechtliches" border="0" width="24" height="24">Rechtliches</a>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: INF-Datei laden
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="saveconf.html"><img src="udo_lf.gif" alt="Arbeit sichern" title="Arbeit sichern" border="0" width="24" height="24">Arbeit sichern</a>
<a name="UDO_nav_rg_HEAD" href="rtrees.html"><img src="udo_rg.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="INF-Datei_20laden">3.4.13 INF-Datei laden</a></h1>
<p>Mit diesem Men&uuml;punkt k&ouml;nnen die zuletzt gespeicherten
<a href="prefs.html">Einstellungen</a> erneut geladen werden. Bereits gemachte <a href="prefs.html">Einstellungen</a>
gehen dabei verloren.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="saveconf.html"><img src="udo_lf.gif" alt="Arbeit sichern" title="Arbeit sichern" border="0" width="24" height="24">Arbeit sichern</a>
<a name="UDO_nav_rg_FOOT" href="rtrees.html"><img src="udo_rg.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Programm laden
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="settings.html"><img src="udo_lf.gif" alt="Sonstiges" title="Sonstiges" border="0" width="24" height="24">Sonstiges</a>
<a name="UDO_nav_rg_HEAD" href="execprog.html"><img src="udo_rg.gif" alt="Programm starten" title="Programm starten" border="0" width="24" height="24">Programm starten</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="Programm_20laden">3.4.9 Programm laden</a></h1>
<p>Mit diesem Men&uuml;punkt kann ein Programm ausgew&auml;hlt
werden, dessen Icon auf dem <a href="desktop.html">Desktop</a> abgelegt wird, um es von dort
leicht starten zu k&ouml;nnen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="settings.html"><img src="udo_lf.gif" alt="Sonstiges" title="Sonstiges" border="0" width="24" height="24">Sonstiges</a>
<a name="UDO_nav_rg_FOOT" href="execprog.html"><img src="udo_rg.gif" alt="Programm starten" title="Programm starten" border="0" width="24" height="24">Programm starten</a>
</body>
</html>

View File

@@ -0,0 +1,103 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Das Men&uuml;
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_HEAD" href="disks.html"><img src="udo_lf.gif" alt="Laufwerke" title="Laufwerke" border="0" width="24" height="24">Laufwerke</a>
<a name="UDO_nav_rg_HEAD" href="file.html"><img src="udo_rg.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<hr>
<h1><a name="Das_20Men_26uuml_3B">3 Das Men&uuml;</a></h1>
<ul class="content">
<li> 3.1 <a href="file.html">Datei</a>
<ul class="content">
<li> 3.1.1 <a href="open.html">&Ouml;ffnen</a>
<li> 3.1.2 <a href="new.html">Neue Datei</a>
<li> 3.1.3 <a href="save.html">Sichern</a>
<li> 3.1.4 <a href="saveas.html">Sichern als</a>
<li> 3.1.5 <a href="abandon.html">Verwerfen</a>
<li> 3.1.6 <a href="merge.html">Hinzuf&uuml;gen</a>
<li> 3.1.7 <a href="info.html">Information</a>
<li> 3.1.8 <a href="output.html">Ausgabedateien</a>
<li> 3.1.9 <a href="namerule.html">Namensregeln</a>
<li> 3.1.10 <a href="extended.html">Erweiterte Typen</a>
<li> 3.1.11 <a href="cancel.html">Abbruch</a>
<li> 3.1.12 <a href="quit.html">Ende</a>
</li>
</ul>
</li>
<li> 3.2 <a href="window.html">Fenster</a>
<ul class="content">
<li> 3.2.1 <a href="close.html">Schliessen</a>
<li> 3.2.2 <a href="closew.html">Fenster schliessen</a>
<li> 3.2.3 <a href="cycle.html">Fenster wechseln</a>
<li> 3.2.4 <a href="tileh.html">Untereinander</a>
<li> 3.2.5 <a href="tilev.html">Nebeneinander</a>
<li> 3.2.6 <a href="cascade.html">&Uuml;berlappend</a>
<li> 3.2.7 <a href="trees.html">B&auml;ume</a>
<li> 3.2.8 <a href="objects.html">Objekte</a>
<li> 3.2.9 <a href="othere.html">Weitere Eintr&auml;ge</a>
</li>
</ul>
</li>
<li> 3.3 <a href="options.html">Optionen</a>
<ul class="content">
<li> 3.3.1 <a href="snapx.html">X-Raster</a>
<li> 3.3.2 <a href="snapy.html">Y-Raster</a>
<li> 3.3.3 <a href="autosize.html">Automatische Gr&ouml;&szlig;e</a>
<li> 3.3.4 <a href="editi.html">Sofort bearbeiten</a>
<li> 3.3.5 <a href="showp.html">Werkzeuge anzeigen</a>
<li> 3.3.6 <a href="showm.html">Men&uuml; anzeigen</a>
<li> 3.3.7 <a href="find.html">Objekte Suchen</a>
<li> 3.3.8 <a href="findnext.html">Weitersuchen</a>
<li> 3.3.9 <a href="rcompare.html">Resource-Vergleich</a>
</li>
</ul>
</li>
<li> 3.4 <a href="prefs.html">Einstellungen</a>
<ul class="content">
<li> 3.4.1 <a href="protect.html">Bearbeitungs-Modus</a>
<li> 3.4.2 <a href="bground.html">Hintergrund</a>
<li> 3.4.3 <a href="extens.html">Dateinamen</a>
<li> 3.4.4 <a href="outputd.html">Standard Ausgabedateien</a>
<li> 3.4.5 <a href="nameruld.html">Standard Namensregeln</a>
<li> 3.4.6 <a href="extendd.html">Standard Erweiterte Typen</a>
<li> 3.4.7 <a href="objectd.html">Objektdaten</a>
<li> 3.4.8 <a href="settings.html">Sonstiges</a>
<li> 3.4.9 <a href="loadprog.html">Programm laden</a>
<li> 3.4.10 <a href="execprog.html">Programm starten</a>
<li> 3.4.11 <a href="newdesk.html">Desktop neu</a>
<li> 3.4.12 <a href="saveconf.html">Arbeit sichern</a>
<li> 3.4.13 <a href="loadconf.html">INF-Datei laden</a>
</li>
</ul>
</li>
</ul>
<br>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_FOOT" href="disks.html"><img src="udo_lf.gif" alt="Laufwerke" title="Laufwerke" border="0" width="24" height="24">Laufwerke</a>
<a name="UDO_nav_rg_FOOT" href="file.html"><img src="udo_rg.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
</body>
</html>

View File

@@ -0,0 +1,54 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Men&uuml;editor
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_HEAD" href="comment.html"><img src="udo_lf.gif" alt="Kommentare" title="Kommentare" border="0" width="24" height="24">Kommentare</a>
<a name="UDO_nav_rg_HEAD" href="alert.html"><img src="udo_rg.gif" alt="Alarm-Box &auml;ndern" title="Alarm-Box &auml;ndern" border="0" width="24" height="24">Alarm-Box &auml;ndern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<hr>
<h1><a name="Men_26uuml_3Beditor">4.3 Men&uuml;editor</a></h1>
<p>Der Men&uuml;-Editor funktioniert zum gr&ouml;&szlig;ten Teil
wie der <a href="dialog.html">Dialog-Editor</a>. Ein einfacher Links-Klick auf einen Men&uuml;titel
l&auml;sst dessen Men&uuml;eintr&auml;ge herunterklappen.
</p>
<p>Wird ein Men&uuml;titel kopiert, gel&ouml;scht oder verschoben,
dann werden auch die dazugeh&ouml;rigen Eintr&auml;ge kopiert,
gel&ouml;scht oder verschoben.
</p>
<p>Zu beachten ist, da&szlig; der Men&uuml;editor bei jeglicher
&Auml;nderung eines Eintrags normalerweise immer das komplette
Men&uuml; neu berechnet, und bei allen Eintr&auml;gen eines
Untermen&uuml;s die gleiche Breite setzt, und evtl. Shortcuts neu
ausrichtet. Diese Automatik funktioniert nat&uuml;rlich nur, wenn es
sich um ein &quot;normales&quot; Men&uuml; handelt, das lediglich aus
untereinanderliegenden Strings besteht.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_FOOT" href="comment.html"><img src="udo_lf.gif" alt="Kommentare" title="Kommentare" border="0" width="24" height="24">Kommentare</a>
<a name="UDO_nav_rg_FOOT" href="alert.html"><img src="udo_rg.gif" alt="Alarm-Box &auml;ndern" title="Alarm-Box &auml;ndern" border="0" width="24" height="24">Alarm-Box &auml;ndern</a>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Hinzuf&uuml;gen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_HEAD" href="abandon.html"><img src="udo_lf.gif" alt="Verwerfen" title="Verwerfen" border="0" width="24" height="24">Verwerfen</a>
<a name="UDO_nav_rg_HEAD" href="info.html"><img src="udo_rg.gif" alt="Information" title="Information" border="0" width="24" height="24">Information</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">Datei</a>
<hr>
<h1><a name="Hinzuf_26uuml_3Bgen">3.1.6 Hinzuf&uuml;gen</a></h1>
<p>Es erscheint ein Fileselector, in dem eine <a href="file.html">Datei</a> ausgew&auml;hlt
werden kann, deren <a href="objects.html">Objekte</a> zu der aktuellen <a href="file.html">Datei</a> hinzugef&uuml;gt
werden. Damit ist es m&ouml;glich mehrere Dateien zu einer
zusammenzufassen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_FOOT" href="abandon.html"><img src="udo_lf.gif" alt="Verwerfen" title="Verwerfen" border="0" width="24" height="24">Verwerfen</a>
<a name="UDO_nav_rg_FOOT" href="info.html"><img src="udo_rg.gif" alt="Information" title="Information" border="0" width="24" height="24">Information</a>
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Sonstige Erweiterungen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_HEAD" href="filetyp.html"><img src="udo_lf.gif" alt="Dateitypen" title="Dateitypen" border="0" width="24" height="24">Dateitypen</a>
<a name="UDO_nav_rg_HEAD" href="crcstr.html"><img src="udo_rg.gif" alt="CRC-String" title="CRC-String" border="0" width="24" height="24">CRC-String</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<hr>
<h1><a name="Sonstige_20Erweiterungen">C Sonstige Erweiterungen</a></h1>
<ul class="content">
<li> C.1 <a href="crcstr.html">CRC-String</a>
</li>
</ul>
<br>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_FOOT" href="filetyp.html"><img src="udo_lf.gif" alt="Dateitypen" title="Dateitypen" border="0" width="24" height="24">Dateitypen</a>
<a name="UDO_nav_rg_FOOT" href="crcstr.html"><img src="udo_rg.gif" alt="CRC-String" title="CRC-String" border="0" width="24" height="24">CRC-String</a>
</body>
</html>

View File

@@ -0,0 +1,59 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Standard Namensregeln
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="outputd.html"><img src="udo_lf.gif" alt="Standard Ausgabedateien" title="Standard Ausgabedateien" border="0" width="24" height="24">Standard Ausgabedateien</a>
<a name="UDO_nav_rg_HEAD" href="extendd.html"><img src="udo_rg.gif" alt="Standard Erweiterte Typen" title="Standard Erweiterte Typen" border="0" width="24" height="24">Standard Erweiterte Typen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="Standard_20Namensregeln">3.4.5 Standard Namensregeln</a></h1>
<p>Hier kann man die Attribute der selbst vergebenen Namen f&uuml;r
neu angelegte Dateien festlegen (die <a href="prefs.html">Einstellungen</a> f&uuml;r bereits
geladene Resourcen kann man unter <a href="namerule.html">Datei/Namensregeln</a> &auml;ndern).
</p>
<p>Die erste Box beeinflusst hierbei ob bei der
&Uuml;berpr&uuml;fung auf doppelte Namen Gross/Kleinschreibung
ber&uuml;cksichtigt werden soll oder nicht. Die n&auml;chsten beiden
Boxen legen fest welche Zeichen an erster Stelle und an weiteren
Stellen im Namen g&uuml;ltig sein sollen. Ist dabei 'Grossbuchstaben'
bzw. 'Kleinbuchstaben' angew&auml;hlt, werden Buchstaben schon bei der
Eingabe entsprechend umgewandelt. In den Eingabefeldern k&ouml;nnen
Zeichen angegeben werden, die zus&auml;tzlich erlaubt bzw.
ausgeschlossen sind.
</p>
<p>&Uuml;ber die maximale L&auml;nge legt man die Eingabel&auml;nge
fest. ORCS erlaubt Namen bis zu 32 Zeichen. Zu beachten ist jedoch,
da&szlig; Definitions-Dateien anderer Formate andere
Beschr&auml;nkungen haben. Interface-Dateien (*.HRD) erlauben z.B. nur
Namen bis zu 16 Zeichen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="outputd.html"><img src="udo_lf.gif" alt="Standard Ausgabedateien" title="Standard Ausgabedateien" border="0" width="24" height="24">Standard Ausgabedateien</a>
<a name="UDO_nav_rg_FOOT" href="extendd.html"><img src="udo_rg.gif" alt="Standard Erweiterte Typen" title="Standard Erweiterte Typen" border="0" width="24" height="24">Standard Erweiterte Typen</a>
</body>
</html>

View File

@@ -0,0 +1,63 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Namensregeln
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_HEAD" href="output.html"><img src="udo_lf.gif" alt="Ausgabedateien" title="Ausgabedateien" border="0" width="24" height="24">Ausgabedateien</a>
<a name="UDO_nav_rg_HEAD" href="extended.html"><img src="udo_rg.gif" alt="Erweiterte Typen" title="Erweiterte Typen" border="0" width="24" height="24">Erweiterte Typen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">Datei</a>
<hr>
<h1><a name="Namensregeln">3.1.9 Namensregeln</a></h1>
<p>Hier kann man die Attribute der selbst vergebenen Namen f&uuml;r
bereits geladene Dateien festlegen (die Voreinstellungen f&uuml;r neue
Resourcen kann man unter <a href="nameruld.html">Einstellungen/Standard Namensregeln</a> &auml;ndern).
</p>
<p>Die erste Box beeinflusst hierbei ob bei der
&Uuml;berpr&uuml;fung auf doppelte Namen Gross/Kleinschreibung
ber&uuml;cksichtigt werden soll oder nicht. Die n&auml;chsten beiden
Boxen legen fest welche Zeichen an erster Stelle und an weiteren
Stellen im Namen g&uuml;ltig sein sollen. Ist dabei 'Grossbuchstaben'
bzw. 'Kleinbuchstaben' angew&auml;hlt, werden Buchstaben schon bei der
Eingabe entsprechend umgewandelt. In den Eingabefeldern k&ouml;nnen
Zeichen angegeben werden, die zus&auml;tzlich erlaubt bzw.
ausgeschlossen sind.
</p>
<p>&Uuml;ber die maximale L&auml;nge legt man die Eingabel&auml;nge
fest. ORCS erlaubt Namen bis zu 32 Zeichen. Zu beachten ist jedoch,
da&szlig; Definitions-Dateien anderer Formate andere
Beschr&auml;nkungen haben. Interface-Dateien (*.HRD) erlauben z.B. nur
Namen bis zu 16 Zeichen.
</p>
<p>Die hier vorgenommenen <a href="prefs.html">Einstellungen</a> beeinflussen nicht die
Namen die man bereits vergeben hat. Lediglich neu eingegebene Namen
werden auf diese Weise &uuml;berpr&uuml;ft.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_FOOT" href="output.html"><img src="udo_lf.gif" alt="Ausgabedateien" title="Ausgabedateien" border="0" width="24" height="24">Ausgabedateien</a>
<a name="UDO_nav_rg_FOOT" href="extended.html"><img src="udo_rg.gif" alt="Erweiterte Typen" title="Erweiterte Typen" border="0" width="24" height="24">Erweiterte Typen</a>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Name und Typ
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_HEAD" href="rtrees.html"><img src="udo_lf.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_rg_HEAD" href="dialog.html"><img src="udo_rg.gif" alt="Dialogeditor" title="Dialogeditor" border="0" width="24" height="24">Dialogeditor</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<hr>
<h1><a name="Name_20und_20Typ">4.1 Name und Typ</a></h1>
<p>Hier kann der Name, und evtl. der Typ von Objektb&auml;umen
ge&auml;ndert werden. Bei Typ &quot;Men&uuml;&quot; wird der Baum auch
als solches behandelt, die anderen Typen dienen lediglich zur
optischen Unterscheidung und haben ansonsten keinen Einfluss.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="rtrees.html"><img src="udo_up.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_lf_FOOT" href="rtrees.html"><img src="udo_lf.gif" alt="Resource B&auml;ume" title="Resource B&auml;ume" border="0" width="24" height="24">Resource B&auml;ume</a>
<a name="UDO_nav_rg_FOOT" href="dialog.html"><img src="udo_rg.gif" alt="Dialogeditor" title="Dialogeditor" border="0" width="24" height="24">Dialogeditor</a>
</body>
</html>

View File

@@ -0,0 +1,46 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Neue Datei
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="Neu"></a>
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_HEAD" href="open.html"><img src="udo_lf.gif" alt="&Ouml;ffnen" title="&Ouml;ffnen" border="0" width="24" height="24">&Ouml;ffnen</a>
<a name="UDO_nav_rg_HEAD" href="save.html"><img src="udo_rg.gif" alt="Sichern" title="Sichern" border="0" width="24" height="24">Sichern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">Datei</a>
<hr>
<h1><a name="Neue_20Datei">3.1.2 Neue Datei</a></h1>
<p>Dieser Men&uuml;punkt erzeugt (wie k&ouml;nnte es anders sein)
eine neue leere Resourcedatei ohne Namen. Beim sichern einer solchen
<a href="file.html">Datei</a> wird dann gefragt wohin sie geschrieben werden soll. Eine neue
<a href="file.html">Datei</a> erh&auml;lt die Eigenschaften die unter dem Men&uuml;punkt
<a href="prefs.html">Einstellungen</a> eingestellt wurden.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_FOOT" href="open.html"><img src="udo_lf.gif" alt="&Ouml;ffnen" title="&Ouml;ffnen" border="0" width="24" height="24">&Ouml;ffnen</a>
<a name="UDO_nav_rg_FOOT" href="save.html"><img src="udo_rg.gif" alt="Sichern" title="Sichern" border="0" width="24" height="24">Sichern</a>
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Desktop neu
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="execprog.html"><img src="udo_lf.gif" alt="Programm starten" title="Programm starten" border="0" width="24" height="24">Programm starten</a>
<a name="UDO_nav_rg_HEAD" href="saveconf.html"><img src="udo_rg.gif" alt="Arbeit sichern" title="Arbeit sichern" border="0" width="24" height="24">Arbeit sichern</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="Desktop_20neu">3.4.11 Desktop neu</a></h1>
<p>Aktualisiert den <a href="desktop.html">Desktop</a> und liest die <a href="info.html">Information</a> &uuml;ber die
Position von Laufwerkssymbolen etc. von der Shell.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="execprog.html"><img src="udo_lf.gif" alt="Programm starten" title="Programm starten" border="0" width="24" height="24">Programm starten</a>
<a name="UDO_nav_rg_FOOT" href="saveconf.html"><img src="udo_rg.gif" alt="Arbeit sichern" title="Arbeit sichern" border="0" width="24" height="24">Arbeit sichern</a>
</body>
</html>

View File

@@ -0,0 +1,217 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Erweiterte Objekttypen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_HEAD" href="icoload.html"><img src="udo_lf.gif" alt="Load Windows ICO" title="Load Windows ICO" border="0" width="24" height="24">Load Windows ICO</a>
<a name="UDO_nav_rg_HEAD" href="filetyp.html"><img src="udo_rg.gif" alt="Dateitypen" title="Dateitypen" border="0" width="24" height="24">Dateitypen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<hr>
<h1><a name="Erweiterte_20Objekttypen">A Erweiterte Objekttypen</a></h1>
<p>In ORCS werden je nach Einstellung diverse erweiterte Typen
dargestellt, die auch von vielen anderen Bibliotheken (Flydial, MyDial
etc.) genutzt werden. Diese werden i.d.R. durch einen speziellen Wert
unter 'Erweiterter Typ' sowie durch bestimmte Flags gekennzeichnet.
Die unterst&uuml;tzten Typen sind:
</p>
<table class="UDO_env_xlist">
<tr><td nowrap="nowrap" valign="top">FlyDial-Ecke</td>
<td valign="top">
<br>&nbsp;
<ul>
<li> Typ: I-Box
</li>
<li> Erweiterter Typ: 17
</li>
<li> Flags: TOUCHEXIT, OUTLINED, CROSSED
</li>
</ul>
<br>Das 'Eselsohr' in der rechten oberen Ecke von Dialogen zum
Verschieben der Dialoge.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Radiobutton</td>
<td valign="top">
<br>&nbsp;
<ul>
<li> Typ: BUTTON oder STRING
</li>
<li> Erweiterter Typ: 18
</li>
<li> Flags: RBUTTON, ~EXIT
</li>
</ul>
<br>Ein runder Button, neben dem der Text steht.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Checkbox</td>
<td valign="top">
<br>&nbsp;
<ul>
<li> Typ: BUTTON
</li>
<li> Erweiterter Typ: 18
</li>
<li> Flags: ~RBUTTON, ~EXIT
</li>
</ul>
<br>Eine quadratische kleine Box, neben der der Text steht.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Exitbutton</td>
<td valign="top">
<br>&nbsp;
<ul>
<li> Typ: BUTTON oder STRING
</li>
<li> Erweiterter Typ: 18
</li>
<li> Flags: ~RBUTTON, EXIT
</li>
</ul>
<br>Ein tastaturbedienbarer Button. Der Buchstabe hinter einem '['
wird unterstrichen dargestellt, ausserdem ist der Button ein bisschen
gr&ouml;sser als normal.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Undo-Button (1)</td>
<td valign="top">
<br>&nbsp;
<ul>
<li> Typ: BUTTON
</li>
<li> Erweiterter Typ: 18
</li>
<li> Flags: Flag 11
</li>
</ul>
<br>Ein Button, der auf die UNDO-Taste reagieren soll.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Undo-Button (2)</td>
<td valign="top">
<br>&nbsp;
<ul>
<li> Typ: BUTTON
</li>
<li> Erweiterter Typ: 31
</li>
<li> Flags: ~DEFAULT
</li>
</ul>
<br>Ein Button, der auf die UNDO-Taste reagieren soll.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Unterstrichener Text</td>
<td valign="top">
<br>&nbsp;
<ul>
<li> Typ: BUTTON oder STRING
</li>
<li> Erweiterter Typ: 19
</li>
<li> Flags: -
</li>
</ul>
<br>Ein Text der in der Breite des Objektes unterstrichen
dargestellt wird. Wird in vielen Programmen als &Uuml;berschrift
f&uuml;r den Dialog verwendet.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Gruppenrahmen</td>
<td valign="top">
<br>&nbsp;
<ul>
<li> Typ: BUTTON
</li>
<li> Erweiterter Typ: 20
</li>
<li> Flags: -
</li>
</ul>
<br>Ein grosser Rahmen, in dem der Text links oben als
&Uuml;berschrift steht. Ist CHECKED zus&auml;tzlich gesetzt, wird der
Text in Kleinschrift ausgegeben.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Help-Button</td>
<td valign="top">
<br>&nbsp;
<ul>
<li> Typ: BUTTON oder BOXTEXT
</li>
<li> Erweiterter Typ: 21
</li>
<li> Flags: EXIT
</li>
</ul>
<br>Ein Button, der auf die HELP-Taste reagieren soll. Der Typ ist
eigentlich egal, es ist jedoch &uuml;blich einen BOXTEXT mit den Flags
EXIT, OUTLINED und SHADOWED daf&uuml;r zu nehmen. Der Text sollte in
Kleinschrift und zentriert sein.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Circlebutton</td>
<td valign="top">
<br>&nbsp;
<ul>
<li> Typ: BOXCHAR
</li>
<li> Erweiterter Typ: 22
</li>
<li> Flags: -
</li>
</ul>
<br>Ein Kreis der normalerweise neben einem Popupmen&uuml;
auftaucht.
<br>&nbsp;
</td></tr>
</table>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_FOOT" href="icoload.html"><img src="udo_lf.gif" alt="Load Windows ICO" title="Load Windows ICO" border="0" width="24" height="24">Load Windows ICO</a>
<a name="UDO_nav_rg_FOOT" href="filetyp.html"><img src="udo_rg.gif" alt="Dateitypen" title="Dateitypen" border="0" width="24" height="24">Dateitypen</a>
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Objektdaten
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="extendd.html"><img src="udo_lf.gif" alt="Standard Erweiterte Typen" title="Standard Erweiterte Typen" border="0" width="24" height="24">Standard Erweiterte Typen</a>
<a name="UDO_nav_rg_HEAD" href="settings.html"><img src="udo_rg.gif" alt="Sonstiges" title="Sonstiges" border="0" width="24" height="24">Sonstiges</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="Objektdaten">3.4.7 Objektdaten</a></h1>
<p>Hier kann man einstellen, welche Informationen in der Infozeile
im <a href="dialog.html">Dialogeditor</a> angezeigt werden.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="extendd.html"><img src="udo_lf.gif" alt="Standard Erweiterte Typen" title="Standard Erweiterte Typen" border="0" width="24" height="24">Standard Erweiterte Typen</a>
<a name="UDO_nav_rg_FOOT" href="settings.html"><img src="udo_rg.gif" alt="Sonstiges" title="Sonstiges" border="0" width="24" height="24">Sonstiges</a>
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Objekte
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_HEAD" href="trees.html"><img src="udo_lf.gif" alt="B&auml;ume" title="B&auml;ume" border="0" width="24" height="24">B&auml;ume</a>
<a name="UDO_nav_rg_HEAD" href="othere.html"><img src="udo_rg.gif" alt="Weitere Eintr&auml;ge" title="Weitere Eintr&auml;ge" border="0" width="24" height="24">Weitere Eintr&auml;ge</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="window.html">Fenster</a>
<hr>
<h1><a name="Objekte">3.2.8 Objekte</a></h1>
<p>&Ouml;ffnet das Tool-<a href="window.html">Fenster</a> mit den Objekten f&uuml;r den
!(link [Dialog-Editor] [<a href="dialog.html">Dialogeditor</a>]).
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_FOOT" href="trees.html"><img src="udo_lf.gif" alt="B&auml;ume" title="B&auml;ume" border="0" width="24" height="24">B&auml;ume</a>
<a name="UDO_nav_rg_FOOT" href="othere.html"><img src="udo_rg.gif" alt="Weitere Eintr&auml;ge" title="Weitere Eintr&auml;ge" border="0" width="24" height="24">Weitere Eintr&auml;ge</a>
</body>
</html>

View File

@@ -0,0 +1,60 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: &Ouml;ffnen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_HEAD" href="file.html"><img src="udo_lf.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_rg_HEAD" href="new.html"><img src="udo_rg.gif" alt="Neue Datei" title="Neue Datei" border="0" width="24" height="24">Neue Datei</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">Datei</a>
<hr>
<h1><a name="UDO__26Ouml_3Bffnen">3.1.1 &Ouml;ffnen</a></h1>
<p>Dieser Men&uuml;punkt kann verschiedene Aktionen ausl&ouml;sen.
</p>
<ol class="UDO_env_enumerate">
<li><p> Sind auf dem <a href="desktop.html">Desktop</a> ein oder mehrere Icons selektiert, werden
sie ge&ouml;ffnet als ob man einen Doppelklick darauf gemacht
h&auml;tte.
<br>&nbsp;
</p></li>
<li><p> Ist in dem obersten <a href="window.html">Fenster</a> ein Objekt selektiert, wird es
ge&ouml;ffnet als ob ein Doppelklick darauf gemacht worden w&auml;r.
<br>&nbsp;
</p></li>
<li><p> Trifft keine dieser Bedingungen zu, wird der Fileselector
aufgerufen um eine Resource-<a href="file.html">Datei</a> zu laden (Selectric, Boxkite,
Freedom und alle anderen Fileselectoren die einen entsprechenden
Cookie anlegen werden unterst&uuml;tzt).
<br>&nbsp;
</p></li>
</ol>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_FOOT" href="file.html"><img src="udo_lf.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_rg_FOOT" href="new.html"><img src="udo_rg.gif" alt="Neue Datei" title="Neue Datei" border="0" width="24" height="24">Neue Datei</a>
</body>
</html>

View File

@@ -0,0 +1,51 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Optionen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="menu.html"><img src="udo_up.gif" alt="Das Men&uuml;" title="Das Men&uuml;" border="0" width="24" height="24">Das Men&uuml;</a>
<a name="UDO_nav_lf_HEAD" href="othere.html"><img src="udo_lf.gif" alt="Weitere Eintr&auml;ge" title="Weitere Eintr&auml;ge" border="0" width="24" height="24">Weitere Eintr&auml;ge</a>
<a name="UDO_nav_rg_HEAD" href="snapx.html"><img src="udo_rg.gif" alt="X-Raster" title="X-Raster" border="0" width="24" height="24">X-Raster</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<hr>
<h1><a name="Optionen">3.3 Optionen</a></h1>
<ul class="content">
<li> 3.3.1 <a href="snapx.html">X-Raster</a>
<li> 3.3.2 <a href="snapy.html">Y-Raster</a>
<li> 3.3.3 <a href="autosize.html">Automatische Gr&ouml;&szlig;e</a>
<li> 3.3.4 <a href="editi.html">Sofort bearbeiten</a>
<li> 3.3.5 <a href="showp.html">Werkzeuge anzeigen</a>
<li> 3.3.6 <a href="showm.html">Men&uuml; anzeigen</a>
<li> 3.3.7 <a href="find.html">Objekte Suchen</a>
<li> 3.3.8 <a href="findnext.html">Weitersuchen</a>
<li> 3.3.9 <a href="rcompare.html">Resource-Vergleich</a>
</li>
</ul>
<br>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="menu.html"><img src="udo_up.gif" alt="Das Men&uuml;" title="Das Men&uuml;" border="0" width="24" height="24">Das Men&uuml;</a>
<a name="UDO_nav_lf_FOOT" href="othere.html"><img src="udo_lf.gif" alt="Weitere Eintr&auml;ge" title="Weitere Eintr&auml;ge" border="0" width="24" height="24">Weitere Eintr&auml;ge</a>
<a name="UDO_nav_rg_FOOT" href="snapx.html"><img src="udo_rg.gif" alt="X-Raster" title="X-Raster" border="0" width="24" height="24">X-Raster</a>
</body>
</html>

View File

@@ -0,0 +1,189 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<img src="udo_nohm.gif" alt="Home" title="Home" border="0" width="24" height="24">
<img src="udo_noup.gif" alt="" title="" border="0" width="24" height="24">
<img src="udo_nolf.gif" alt="" title="" border="0" width="24" height="24">
<a name="UDO_nav_rg_HEAD" href="general.html"><img src="udo_rg.gif" alt="Allgemeines" title="Allgemeines" border="0" width="24" height="24">Allgemeines</a>
<hr>
<div id="udo_titlepage">
<h2 align="center">Die Anleitung zu</h2>
<h1 align="center">ORCS</h1>
<p align="center">
2.18<br>
2020-08-20<br>
<br>von<br>
Thorsten Otto<br>
Katharinenstr. 14<br>
D-45131 Essen<br>
<a href="mailto:admin@tho-otto.de">admin@tho-otto.de</a><br>
<p>
<hr>
</div>
<h1><a name="UDOTOC">Inhaltsverzeichnis</a></h1>
<ul class="content">
<li> 1 <b><a href="general.html">Allgemeines</a></b>
<ul class="content">
<li> 1.1 <a href="intro.html">Einleitung</a>
<li> 1.2 <a href="copyrght.html">Rechtliches</a>
<li> 1.3 <a href="overview.html">Funktions&uuml;bersicht</a>
<br>&nbsp;
</li>
</ul>
</li>
<li> 2 <b><a href="desktop.html">Desktop</a></b>
<ul class="content">
<li> 2.1 <a href="trashcan.html">Papierkorb</a>
<li> 2.2 <a href="disks.html">Laufwerke</a>
<br>&nbsp;
</li>
</ul>
</li>
<li> 3 <b><a href="menu.html">Das Men&uuml;</a></b>
<ul class="content">
<li> 3.1 <a href="file.html">Datei</a>
<ul class="content">
<li> 3.1.1 <a href="open.html">&Ouml;ffnen</a>
<li> 3.1.2 <a href="new.html">Neue Datei</a>
<li> 3.1.3 <a href="save.html">Sichern</a>
<li> 3.1.4 <a href="saveas.html">Sichern als</a>
<li> 3.1.5 <a href="abandon.html">Verwerfen</a>
<li> 3.1.6 <a href="merge.html">Hinzuf&uuml;gen</a>
<li> 3.1.7 <a href="info.html">Information</a>
<li> 3.1.8 <a href="output.html">Ausgabedateien</a>
<li> 3.1.9 <a href="namerule.html">Namensregeln</a>
<li> 3.1.10 <a href="extended.html">Erweiterte Typen</a>
<li> 3.1.11 <a href="cancel.html">Abbruch</a>
<li> 3.1.12 <a href="quit.html">Ende</a>
</li>
</ul>
</li>
<li> 3.2 <a href="window.html">Fenster</a>
<ul class="content">
<li> 3.2.1 <a href="close.html">Schliessen</a>
<li> 3.2.2 <a href="closew.html">Fenster schliessen</a>
<li> 3.2.3 <a href="cycle.html">Fenster wechseln</a>
<li> 3.2.4 <a href="tileh.html">Untereinander</a>
<li> 3.2.5 <a href="tilev.html">Nebeneinander</a>
<li> 3.2.6 <a href="cascade.html">&Uuml;berlappend</a>
<li> 3.2.7 <a href="trees.html">B&auml;ume</a>
<li> 3.2.8 <a href="objects.html">Objekte</a>
<li> 3.2.9 <a href="othere.html">Weitere Eintr&auml;ge</a>
</li>
</ul>
</li>
<li> 3.3 <a href="options.html">Optionen</a>
<ul class="content">
<li> 3.3.1 <a href="snapx.html">X-Raster</a>
<li> 3.3.2 <a href="snapy.html">Y-Raster</a>
<li> 3.3.3 <a href="autosize.html">Automatische Gr&ouml;&szlig;e</a>
<li> 3.3.4 <a href="editi.html">Sofort bearbeiten</a>
<li> 3.3.5 <a href="showp.html">Werkzeuge anzeigen</a>
<li> 3.3.6 <a href="showm.html">Men&uuml; anzeigen</a>
<li> 3.3.7 <a href="find.html">Objekte Suchen</a>
<li> 3.3.8 <a href="findnext.html">Weitersuchen</a>
<li> 3.3.9 <a href="rcompare.html">Resource-Vergleich</a>
</li>
</ul>
</li>
<li> 3.4 <a href="prefs.html">Einstellungen</a>
<ul class="content">
<li> 3.4.1 <a href="protect.html">Bearbeitungs-Modus</a>
<li> 3.4.2 <a href="bground.html">Hintergrund</a>
<li> 3.4.3 <a href="extens.html">Dateinamen</a>
<li> 3.4.4 <a href="outputd.html">Standard Ausgabedateien</a>
<li> 3.4.5 <a href="nameruld.html">Standard Namensregeln</a>
<li> 3.4.6 <a href="extendd.html">Standard Erweiterte Typen</a>
<li> 3.4.7 <a href="objectd.html">Objektdaten</a>
<li> 3.4.8 <a href="settings.html">Sonstiges</a>
<li> 3.4.9 <a href="loadprog.html">Programm laden</a>
<li> 3.4.10 <a href="execprog.html">Programm starten</a>
<li> 3.4.11 <a href="newdesk.html">Desktop neu</a>
<li> 3.4.12 <a href="saveconf.html">Arbeit sichern</a>
<li> 3.4.13 <a href="loadconf.html">INF-Datei laden</a>
<br>&nbsp;
</li>
</ul>
</li>
</ul>
</li>
<li> 4 <b><a href="rtrees.html">Resource B&auml;ume</a></b>
<ul class="content">
<li> 4.1 <a href="nametype.html">Name und Typ</a>
<li> 4.2 <a href="dialog.html">Dialogeditor</a>
<ul class="content">
<li> 4.2.1 <a href="dialogs.html">Dialoge f&uuml;r Objekte</a>
<ul class="content">
<li> 4.2.1.1 <a href="g_box.html">Box Objekt &auml;ndern</a>
<li> 4.2.1.2 <a href="g_text.html">Text Objekt &auml;ndern</a>
<li> 4.2.1.3 <a href="g_string.html">String Objekt &auml;ndern</a>
<li> 4.2.1.4 <a href="g_user.html">Benutzer-Objekt &auml;ndern</a>
<li> 4.2.1.5 <a href="g_icon.html">Icon &auml;ndern</a>
<li> 4.2.1.6 <a href="g_image.html">Bild &auml;ndern</a>
<li> 4.2.1.7 <a href="g_cicon.html">Color Icon &auml;ndern</a>
<li> 4.2.1.8 <a href="size.html">Gr&ouml;&szlig;e und Position &auml;ndern</a>
<li> 4.2.1.9 <a href="comment.html">Kommentare</a>
</li>
</ul>
</li>
</ul>
</li>
<li> 4.3 <a href="menued.html">Men&uuml;editor</a>
<li> 4.4 <a href="alert.html">Alarm-Box &auml;ndern</a>
<li> 4.5 <a href="frstr.html">Freie Texte &auml;ndern</a>
<li> 4.6 <a href="frimg.html">Freies Bild &auml;ndern</a>
<li> 4.7 <a href="bgh.html">BubbleGEM Editor</a>
<li> 4.8 <a href="iconed.html">Iconeditor</a>
<ul class="content">
<li> 4.8.1 <a href="iconsave.html">Icon laden/speichern</a>
<li> 4.8.2 <a href="iconnew.html">Neue Aufl&ouml;sung</a>
<li> 4.8.3 <a href="imgload.html">Bild laden</a>
<li> 4.8.4 <a href="icoload.html">Load Windows ICO</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<br>
<h1>Anhang</h1>
<ul class="content">
<li> A <b><a href="obextend.html">Erweiterte Objekttypen</a></b>
<br>&nbsp;
<li> B <b><a href="filetyp.html">Dateitypen</a></b>
<br>&nbsp;
<li> C <b><a href="miscext.html">Sonstige Erweiterungen</a></b>
<ul class="content">
<li> C.1 <a href="crcstr.html">CRC-String</a>
</li>
</ul>
</li>
</ul>
<br>
<br>
<hr>
<img src="udo_nohm.gif" alt="Home" title="Home" border="0" width="24" height="24">
<img src="udo_noup.gif" alt="" title="" border="0" width="24" height="24">
<img src="udo_nolf.gif" alt="" title="" border="0" width="24" height="24">
<a name="UDO_nav_rg_FOOT" href="general.html"><img src="udo_rg.gif" alt="Allgemeines" title="Allgemeines" border="0" width="24" height="24">Allgemeines</a>
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Weitere Eintr&auml;ge
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_HEAD" href="objects.html"><img src="udo_lf.gif" alt="Objekte" title="Objekte" border="0" width="24" height="24">Objekte</a>
<a name="UDO_nav_rg_HEAD" href="options.html"><img src="udo_rg.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="window.html">Fenster</a>
<hr>
<h1><a name="Weitere_20Eintr_26auml_3Bge">3.2.9 Weitere Eintr&auml;ge</a></h1>
<p>Bis zu zehn weitere Eintr&auml;ge im <a href="window.html">Fenster</a>-Men&uuml;
repr&auml;sentieren die ersten zehn geladenen RSC-Dateien.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_FOOT" href="objects.html"><img src="udo_lf.gif" alt="Objekte" title="Objekte" border="0" width="24" height="24">Objekte</a>
<a name="UDO_nav_rg_FOOT" href="options.html"><img src="udo_rg.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
</body>
</html>

View File

@@ -0,0 +1,63 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Ausgabedateien
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_HEAD" href="info.html"><img src="udo_lf.gif" alt="Information" title="Information" border="0" width="24" height="24">Information</a>
<a name="UDO_nav_rg_HEAD" href="namerule.html"><img src="udo_rg.gif" alt="Namensregeln" title="Namensregeln" border="0" width="24" height="24">Namensregeln</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">Datei</a>
<hr>
<h1><a name="Ausgabedateien">3.1.8 Ausgabedateien</a></h1>
<p>&Uuml;ber diese Dialogbox wird festgelegt, welche Formate beim
<a href="save.html">Sichern</a> einer <a href="file.html">Datei</a> geschrieben werden (die Voreinstellungen f&uuml;r
neue Dateien kann man unter <a href="outputd.html">Einstellungen/Standard Ausgabedateien</a> festlegen).
</p>
<p>Auf der linken Seite befinden sich die Ausgabeformate f&uuml;r
verschiedene Programmiersprachen, auf der rechten Seite die Formate
f&uuml;r verschiedene andere RSC-Editoren. RSD ist das Format f&uuml;r
das Kuma NRSC, DEF f&uuml;r &auml;ltere Atari Programme, DFN das
Format f&uuml;r neuere Atari-Programme (RCS2) und HRD wird z.B. von
WERCS und Interface verwendet. RSM wird von ResourceMaster verwendet.
RSO ist das Format das ORCS selber immer benutzt und kann nicht
abgeschaltet werden. Alle diese Formate k&ouml;nnen sowohl gelesen als
auch geschrieben werden.
</p>
<table class="UDO_env_xlist">
<tr><td nowrap="nowrap" valign="top"><a href="crcstr.html">CRC-String</a> anlegen:</td>
<td valign="top"> Damit ein Programm feststellen kann, ob es auch die richtige
Resourcedatei geladen hat, wird bei Aktivierung dieser Option eine
Pr&uuml;fsumme &uuml;ber die Resource sowohl in der Resource selbst
als auch in der Header-<a href="file.html">Datei</a> geschrieben (siehe <a href="crcstr.html">CRC-String</a>).
</td></tr>
</table>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_FOOT" href="info.html"><img src="udo_lf.gif" alt="Information" title="Information" border="0" width="24" height="24">Information</a>
<a name="UDO_nav_rg_FOOT" href="namerule.html"><img src="udo_rg.gif" alt="Namensregeln" title="Namensregeln" border="0" width="24" height="24">Namensregeln</a>
</body>
</html>

View File

@@ -0,0 +1,53 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Standard Ausgabedateien
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="extens.html"><img src="udo_lf.gif" alt="Dateinamen" title="Dateinamen" border="0" width="24" height="24">Dateinamen</a>
<a name="UDO_nav_rg_HEAD" href="nameruld.html"><img src="udo_rg.gif" alt="Standard Namensregeln" title="Standard Namensregeln" border="0" width="24" height="24">Standard Namensregeln</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="Standard_20Ausgabedateien">3.4.4 Standard Ausgabedateien</a></h1>
<p>Mit dieser Dialogbox kann man die <a href="output.html">Ausgabedateien</a> f&uuml;r neu
angelegte Resource-Dateien festlegen (die <a href="prefs.html">Einstellungen</a> f&uuml;r
bereits geladene Resourcen kann man unter <a href="output.html">Datei/Ausgabedateien</a> festlegen).
</p>
<p>Auf der linken Seite befinden sich die Ausgabeformate f&uuml;r
verschiedene Programmiersprachen, auf der rechten Seite die Formate
f&uuml;r verschiedene andere RSC-Editoren. RSD ist das Format f&uuml;r
das Kuma NRSC, DEF f&uuml;r &auml;ltere Atari Programme, DFN das
Format f&uuml;r neuere Atari-Programme (RCS2) und HRD wird z.B. von
WERCS und Interface verwendet. RSM wird von ResourceMaster verwendet.
RSO ist das Format das ORCS selber immer benutzt und kann nicht
abgeschaltet werden. Alle diese Formate k&ouml;nnen sowohl gelesen als
auch geschrieben werden.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="extens.html"><img src="udo_lf.gif" alt="Dateinamen" title="Dateinamen" border="0" width="24" height="24">Dateinamen</a>
<a name="UDO_nav_rg_FOOT" href="nameruld.html"><img src="udo_rg.gif" alt="Standard Namensregeln" title="Standard Namensregeln" border="0" width="24" height="24">Standard Namensregeln</a>
</body>
</html>

View File

@@ -0,0 +1,140 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Funktions&uuml;bersicht
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="general.html"><img src="udo_up.gif" alt="Allgemeines" title="Allgemeines" border="0" width="24" height="24">Allgemeines</a>
<a name="UDO_nav_lf_HEAD" href="copyrght.html"><img src="udo_lf.gif" alt="Rechtliches" title="Rechtliches" border="0" width="24" height="24">Rechtliches</a>
<a name="UDO_nav_rg_HEAD" href="desktop.html"><img src="udo_rg.gif" alt="Desktop" title="Desktop" border="0" width="24" height="24">Desktop</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="general.html">Allgemeines</a>
<hr>
<h1><a name="Funktions_26uuml_3Bbersicht">1.3 Funktions&uuml;bersicht</a></h1>
<p>ORCS hat folgende Leistungsmerkmale:
</p>
<ul>
<li><p> Resource-Dateien beliebiger Gr&ouml;&szlig;e, auch
gr&ouml;&szlig;er als 64K
<br>&nbsp;
</p></li>
<li><p> Laden und Speichern von Resourcen mit Color-Icons
<br>&nbsp;
</p></li>
<li><p> Laden und Speichern von Resourcen im Intel-Format
<br>&nbsp;
</p></li>
<li><p> Beliebig viele Resource-Dateien gleichzeitig ladbar (solange
der Speicher reicht)
<br>&nbsp;
</p></li>
<li><p> vollst&auml;ndig dynamische Speicherverwaltung
<br>&nbsp;
</p></li>
<li><p> <a href="trees.html">B&auml;ume</a> und <a href="objects.html">Objekte</a> wahlweise im Editorfenster oder in einem
eigenen <a href="window.html">Fenster</a>
<br>&nbsp;
</p></li>
<li><p> Namen bis zu 32 Zeichen
<br>&nbsp;
</p></li>
<li><p> Syntax der Namen (Gross-/Kleinschrift) f&uuml;r jede Resource
einzeln konfigurierbar
<br>&nbsp;
</p></li>
<li><p> Testm&ouml;glichkeit f&uuml;r alle Baumtypen (Alertboxen,
Dialoge, Men&uuml;s und Images)
<br>&nbsp;
</p></li>
<li><p> Beliebig viele <a href="objects.html">Objekte</a> gleichzeitig editierbar (solange noch
<a href="window.html">Fenster</a> zur Verf&uuml;gung stehen)
<br>&nbsp;
</p></li>
<li><p> M&ouml;glichkeit des Vergleichs zweier Resourcen
<br>&nbsp;
</p></li>
<li><p> <a href="find.html#Suchfunktion">Suchfunktion</a> f&uuml;r <a href="objects.html">Objekte</a>
<br>&nbsp;
</p></li>
<li><p> Bemerkungen zu B&auml;umen und Objekten
<br>&nbsp;
</p></li>
<li><p> Integrierter Icon-Editor (auch f&uuml;r Color-Icons)
<br>&nbsp;
</p></li>
<li><p> Ladem&ouml;glichkeit f&uuml;r verschiedene Bildformate
<br>&nbsp;
</p></li>
<li><p> Standard GEM-Oberfl&auml;che
<br>&nbsp;
</p></li>
<li><p> lauff&auml;hig auf allen Maschinen auf denen auch TOS oder
kompatible Systeme laufen
<br>&nbsp;
</p></li>
<li><p> Dialoge wahlweise in Fenstern oder modal
<br>&nbsp;
</p></li>
<li><p> Dialoge fast vollst&auml;ndig &uuml;ber die Tastatur bedienbar
<br>&nbsp;
</p></li>
<li><p> Laden und Speichern von DEF, DFN, RSD, HRD und RSM
Definitions-Dateien
<br>&nbsp;
</p></li>
<li><p> <a href="output.html">Ausgabedateien</a> f&uuml;r C, Pascal, Modula, Basic, Fortran,
Forth, Assembler etc.
<br>&nbsp;
</p></li>
<li><p> Source-Ausgabe f&uuml;r C, Assembler und Pascal
<br>&nbsp;
</p></li>
<li><p> <a href="desktop.html">Desktop</a> wahlweise auf <a href="bground.html">Hintergrund</a>, im <a href="window.html">Fenster</a> oder abgeschaltet
<br>&nbsp;
</p></li>
<li><p> S&auml;mtliche flags &amp; states von Objekten ver&auml;nderbar
<br>&nbsp;
</p></li>
<li><p> Online-Darstellung von erweiterten Objekt-Typen (Checkboxen,
Radio-Buttons usw.)
<br>&nbsp;
</p></li>
<li><p> Automatische Ausrichtung von Men&uuml;s inklusive Shortcuts
<br>&nbsp;
</p></li>
<li><p> Online-Hilfe f&uuml;r alle Dialoge
<br>&nbsp;
</p></li>
<li><p> Oberfl&auml;che wahlweise in Deutsch oder Englisch
<br>&nbsp;
</p></li>
<li><p> Darstellung wahlweise als <a href="objects.html">Objekte</a> oder als Text
<br>&nbsp;
</p></li>
</ul>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="general.html"><img src="udo_up.gif" alt="Allgemeines" title="Allgemeines" border="0" width="24" height="24">Allgemeines</a>
<a name="UDO_nav_lf_FOOT" href="copyrght.html"><img src="udo_lf.gif" alt="Rechtliches" title="Rechtliches" border="0" width="24" height="24">Rechtliches</a>
<a name="UDO_nav_rg_FOOT" href="desktop.html"><img src="udo_rg.gif" alt="Desktop" title="Desktop" border="0" width="24" height="24">Desktop</a>
</body>
</html>

View File

@@ -0,0 +1,55 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Einstellungen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="menu.html"><img src="udo_up.gif" alt="Das Men&uuml;" title="Das Men&uuml;" border="0" width="24" height="24">Das Men&uuml;</a>
<a name="UDO_nav_lf_HEAD" href="rcompare.html"><img src="udo_lf.gif" alt="Resource-Vergleich" title="Resource-Vergleich" border="0" width="24" height="24">Resource-Vergleich</a>
<a name="UDO_nav_rg_HEAD" href="protect.html"><img src="udo_rg.gif" alt="Bearbeitungs-Modus" title="Bearbeitungs-Modus" border="0" width="24" height="24">Bearbeitungs-Modus</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<hr>
<h1><a name="Einstellungen">3.4 Einstellungen</a></h1>
<ul class="content">
<li> 3.4.1 <a href="protect.html">Bearbeitungs-Modus</a>
<li> 3.4.2 <a href="bground.html">Hintergrund</a>
<li> 3.4.3 <a href="extens.html">Dateinamen</a>
<li> 3.4.4 <a href="outputd.html">Standard Ausgabedateien</a>
<li> 3.4.5 <a href="nameruld.html">Standard Namensregeln</a>
<li> 3.4.6 <a href="extendd.html">Standard Erweiterte Typen</a>
<li> 3.4.7 <a href="objectd.html">Objektdaten</a>
<li> 3.4.8 <a href="settings.html">Sonstiges</a>
<li> 3.4.9 <a href="loadprog.html">Programm laden</a>
<li> 3.4.10 <a href="execprog.html">Programm starten</a>
<li> 3.4.11 <a href="newdesk.html">Desktop neu</a>
<li> 3.4.12 <a href="saveconf.html">Arbeit sichern</a>
<li> 3.4.13 <a href="loadconf.html">INF-Datei laden</a>
</li>
</ul>
<br>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="menu.html"><img src="udo_up.gif" alt="Das Men&uuml;" title="Das Men&uuml;" border="0" width="24" height="24">Das Men&uuml;</a>
<a name="UDO_nav_lf_FOOT" href="rcompare.html"><img src="udo_lf.gif" alt="Resource-Vergleich" title="Resource-Vergleich" border="0" width="24" height="24">Resource-Vergleich</a>
<a name="UDO_nav_rg_FOOT" href="protect.html"><img src="udo_rg.gif" alt="Bearbeitungs-Modus" title="Bearbeitungs-Modus" border="0" width="24" height="24">Bearbeitungs-Modus</a>
</body>
</html>

View File

@@ -0,0 +1,78 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Bearbeitungs-Modus
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="prefs.html"><img src="udo_lf.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_rg_HEAD" href="bground.html"><img src="udo_rg.gif" alt="Hintergrund" title="Hintergrund" border="0" width="24" height="24">Hintergrund</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="Bearbeitungs-Modus">3.4.1 Bearbeitungs-Modus</a></h1>
<p>Hier lassen sich verschiedene Stufen einstellen, was in einer
Resource ge&auml;ndert werden darf.
</p>
<table class="UDO_env_xlist">
<tr><td nowrap="nowrap" valign="top">Gesch&uuml;tzt</td>
<td valign="top"> <a href="objects.html">Objekte</a> k&ouml;nnen angesehen und getestet werden, sind aber
gegen &Auml;nderungen gesch&uuml;tzt. Sinnvoll z.B., wenn man eine
<a href="file.html">Datei</a> nur mal betrachten, aber nicht versehentlich etwas &auml;ndern
will.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Gesperrt</td>
<td valign="top"> <a href="objects.html">Objekte</a> k&ouml;nnen vergr&ouml;&szlig;ert und verschoben
werden, aber die Struktur bleibt erhalten. Sinnvoll z.B., wenn man
kleinere Korrekturen vornehmen m&ouml;chte.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Anf&auml;nger</td>
<td valign="top"> Es werden Warnmeldungen vor jeder Operation ausgegeben, die die
Struktur ver&auml;ndern.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Normal</td>
<td valign="top"> Es werden nur Warnmeldungen bei einigen Operationen ausgegeben,
z.B. wenn &Auml;nderungen werden sollen. Dies ist die
Standard-Einstellung.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Experte</td>
<td valign="top"> Alle Warnmeldungen werden unterdr&uuml;ckt.
<br>&nbsp;
</td></tr>
</table>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="prefs.html"><img src="udo_lf.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_rg_FOOT" href="bground.html"><img src="udo_rg.gif" alt="Hintergrund" title="Hintergrund" border="0" width="24" height="24">Hintergrund</a>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Ende
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_HEAD" href="cancel.html"><img src="udo_lf.gif" alt="Abbruch" title="Abbruch" border="0" width="24" height="24">Abbruch</a>
<a name="UDO_nav_rg_HEAD" href="window.html"><img src="udo_rg.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">Datei</a>
<hr>
<h1><a name="Ende">3.1.12 Ende</a></h1>
<p>Mit diesem Men&uuml;punkt wird das Programm beendet. Sind noch
ge&auml;nderte Dateien im Speicher, erfolgt vorher jedoch eine Abfrage
ob diese gesichert oder verworfen werden sollen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_FOOT" href="cancel.html"><img src="udo_lf.gif" alt="Abbruch" title="Abbruch" border="0" width="24" height="24">Abbruch</a>
<a name="UDO_nav_rg_FOOT" href="window.html"><img src="udo_rg.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
</body>
</html>

View File

@@ -0,0 +1,46 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Resource-Vergleich
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_HEAD" href="findnext.html"><img src="udo_lf.gif" alt="Weitersuchen" title="Weitersuchen" border="0" width="24" height="24">Weitersuchen</a>
<a name="UDO_nav_rg_HEAD" href="prefs.html"><img src="udo_rg.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="options.html">Optionen</a>
<hr>
<h1><a name="Resource-Vergleich">3.3.9 Resource-Vergleich</a></h1>
<p>Wenn zwei <a href="window.html">Fenster</a> mit Resource-Dateien offen sind, oder zwei
Icons f&uuml;r Resource-Dateien auf dem <a href="desktop.html">Desktop</a> angew&auml;hlt sind,
kann man &uuml;ber diesen Dialog die beiden Dateien vergleichen. Dabei
kann man dann z.B. Unterschiede in der Struktur herausfinden, wenn es
zwei Resourcen f&uuml;r das gleiche Programm in unterschiedlichen
Sprachen sein sollen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_FOOT" href="findnext.html"><img src="udo_lf.gif" alt="Weitersuchen" title="Weitersuchen" border="0" width="24" height="24">Weitersuchen</a>
<a name="UDO_nav_rg_FOOT" href="prefs.html"><img src="udo_rg.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
</body>
</html>

View File

@@ -0,0 +1,83 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Resource B&auml;ume
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_HEAD" href="loadconf.html"><img src="udo_lf.gif" alt="INF-Datei laden" title="INF-Datei laden" border="0" width="24" height="24">INF-Datei laden</a>
<a name="UDO_nav_rg_HEAD" href="nametype.html"><img src="udo_rg.gif" alt="Name und Typ" title="Name und Typ" border="0" width="24" height="24">Name und Typ</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<hr>
<h1><a name="Resource_20B_26auml_3Bume">4 Resource B&auml;ume</a></h1>
<p>Wenn eine neue <a href="file.html">Datei</a> geladen wird, wird zun&auml;chst einmal
dieses <a href="window.html">Fenster</a> angezeigt, in dem alle <a href="trees.html">B&auml;ume</a> der Resource
dargestellt werden. Wird ein Symbol f&uuml;r einen Dialog oder
Men&uuml; angeklickt, erscheint ein Dialog in dem man <a href="nametype.html">Name und Typ</a>
&auml;ndern kann. Ein Doppelklick &ouml;ffnet das <a href="window.html">Fenster</a> zum
Bearbeiten des entsprechenden Baums. Wenn die Shift-Taste beim
selektieren festgehalten wird, kann man auch mehrere <a href="trees.html">B&auml;ume</a>
selektieren, die dann in andere <a href="window.html">Fenster</a> verschoben oder kopiert werden
k&ouml;nnen.
</p>
<ul class="content">
<li> 4.1 <a href="nametype.html">Name und Typ</a>
<li> 4.2 <a href="dialog.html">Dialogeditor</a>
<ul class="content">
<li> 4.2.1 <a href="dialogs.html">Dialoge f&uuml;r Objekte</a>
<ul class="content">
<li> 4.2.1.1 <a href="g_box.html">Box Objekt &auml;ndern</a>
<li> 4.2.1.2 <a href="g_text.html">Text Objekt &auml;ndern</a>
<li> 4.2.1.3 <a href="g_string.html">String Objekt &auml;ndern</a>
<li> 4.2.1.4 <a href="g_user.html">Benutzer-Objekt &auml;ndern</a>
<li> 4.2.1.5 <a href="g_icon.html">Icon &auml;ndern</a>
<li> 4.2.1.6 <a href="g_image.html">Bild &auml;ndern</a>
<li> 4.2.1.7 <a href="g_cicon.html">Color Icon &auml;ndern</a>
<li> 4.2.1.8 <a href="size.html">Gr&ouml;&szlig;e und Position &auml;ndern</a>
<li> 4.2.1.9 <a href="comment.html">Kommentare</a>
</li>
</ul>
</li>
</ul>
</li>
<li> 4.3 <a href="menued.html">Men&uuml;editor</a>
<li> 4.4 <a href="alert.html">Alarm-Box &auml;ndern</a>
<li> 4.5 <a href="frstr.html">Freie Texte &auml;ndern</a>
<li> 4.6 <a href="frimg.html">Freies Bild &auml;ndern</a>
<li> 4.7 <a href="bgh.html">BubbleGEM Editor</a>
<li> 4.8 <a href="iconed.html">Iconeditor</a>
<ul class="content">
<li> 4.8.1 <a href="iconsave.html">Icon laden/speichern</a>
<li> 4.8.2 <a href="iconnew.html">Neue Aufl&ouml;sung</a>
<li> 4.8.3 <a href="imgload.html">Bild laden</a>
<li> 4.8.4 <a href="icoload.html">Load Windows ICO</a>
</li>
</ul>
</li>
</ul>
<br>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="orcs.html#UDOTOC"><img src="udo_up.gif" alt="Inhaltsverzeichnis" title="Inhaltsverzeichnis" border="0" width="24" height="24"></a>
<a name="UDO_nav_lf_FOOT" href="loadconf.html"><img src="udo_lf.gif" alt="INF-Datei laden" title="INF-Datei laden" border="0" width="24" height="24">INF-Datei laden</a>
<a name="UDO_nav_rg_FOOT" href="nametype.html"><img src="udo_rg.gif" alt="Name und Typ" title="Name und Typ" border="0" width="24" height="24">Name und Typ</a>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Sichern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_HEAD" href="new.html"><img src="udo_lf.gif" alt="Neue Datei" title="Neue Datei" border="0" width="24" height="24">Neue Datei</a>
<a name="UDO_nav_rg_HEAD" href="saveas.html"><img src="udo_rg.gif" alt="Sichern als" title="Sichern als" border="0" width="24" height="24">Sichern als</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">Datei</a>
<hr>
<h1><a name="Sichern">3.1.3 Sichern</a></h1>
<p>Die aktuelle Resourcedatei wird gesichert, sofern sie
ge&auml;ndert wurde. Aktuell heisst in diesem Zusammenhang entweder
die selektierten Dateien auf dem <a href="desktop.html">Desktop</a> oder die <a href="file.html">Datei</a> die zum
obersten <a href="window.html">Fenster</a> geh&ouml;rt.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_FOOT" href="new.html"><img src="udo_lf.gif" alt="Neue Datei" title="Neue Datei" border="0" width="24" height="24">Neue Datei</a>
<a name="UDO_nav_rg_FOOT" href="saveas.html"><img src="udo_rg.gif" alt="Sichern als" title="Sichern als" border="0" width="24" height="24">Sichern als</a>
</body>
</html>

View File

@@ -0,0 +1,46 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Sichern als
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_HEAD" href="save.html"><img src="udo_lf.gif" alt="Sichern" title="Sichern" border="0" width="24" height="24">Sichern</a>
<a name="UDO_nav_rg_HEAD" href="abandon.html"><img src="udo_rg.gif" alt="Verwerfen" title="Verwerfen" border="0" width="24" height="24">Verwerfen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">Datei</a>
<hr>
<h1><a name="Sichern_20als">3.1.4 Sichern als</a></h1>
<p>Die aktuelle Resourcedatei wird gesichert. Aktuell heisst in
diesem Zusammenhang entweder die selektierten Dateien auf dem <a href="desktop.html">Desktop</a>
oder die <a href="file.html">Datei</a> die zum obersten <a href="window.html">Fenster</a> geh&ouml;rt. Im Gegensatz zum
Men&uuml;punkt '<a href="save.html">Sichern</a>' erscheint vorher ein Fileselector in dem ein
neuer Name gew&auml;hlt werden kann. Der neue Name wird anschliessend
f&uuml;r diese <a href="file.html">Datei</a> &uuml;bernommen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="Datei" title="Datei" border="0" width="24" height="24">Datei</a>
<a name="UDO_nav_lf_FOOT" href="save.html"><img src="udo_lf.gif" alt="Sichern" title="Sichern" border="0" width="24" height="24">Sichern</a>
<a name="UDO_nav_rg_FOOT" href="abandon.html"><img src="udo_rg.gif" alt="Verwerfen" title="Verwerfen" border="0" width="24" height="24">Verwerfen</a>
</body>
</html>

View File

@@ -0,0 +1,60 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Arbeit sichern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="newdesk.html"><img src="udo_lf.gif" alt="Desktop neu" title="Desktop neu" border="0" width="24" height="24">Desktop neu</a>
<a name="UDO_nav_rg_HEAD" href="loadconf.html"><img src="udo_rg.gif" alt="INF-Datei laden" title="INF-Datei laden" border="0" width="24" height="24">INF-Datei laden</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="Arbeit_20sichern">3.4.12 Arbeit sichern</a></h1>
<p>Es werden alle <a href="prefs.html">Einstellungen</a> in die orcs.inf <a href="file.html">Datei</a> gesichert.
Der Pfad f&uuml;r die Konfigurations-<a href="file.html">Datei</a> wird wie folgt ermittelt:
</p>
<table class="UDO_env_xlist">
<tr><td nowrap="nowrap" valign="top">$HOME\defaults\</td>
<td valign="top"> im defaults-Ordner von $HOME
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">$HOME\</td>
<td valign="top"> im $HOME-Ordner
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">.\</td>
<td valign="top"> im Startverzeichnis
<br>&nbsp;
</td></tr>
</table>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="newdesk.html"><img src="udo_lf.gif" alt="Desktop neu" title="Desktop neu" border="0" width="24" height="24">Desktop neu</a>
<a name="UDO_nav_rg_FOOT" href="loadconf.html"><img src="udo_rg.gif" alt="INF-Datei laden" title="INF-Datei laden" border="0" width="24" height="24">INF-Datei laden</a>
</body>
</html>

View File

@@ -0,0 +1,124 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Sonstiges
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_HEAD" href="objectd.html"><img src="udo_lf.gif" alt="Objektdaten" title="Objektdaten" border="0" width="24" height="24">Objektdaten</a>
<a name="UDO_nav_rg_HEAD" href="loadprog.html"><img src="udo_rg.gif" alt="Programm laden" title="Programm laden" border="0" width="24" height="24">Programm laden</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="prefs.html">Einstellungen</a>
<hr>
<h1><a name="Sonstiges">3.4.8 Sonstiges</a></h1>
<p>In diesem Dialog k&ouml;nnen diverse <a href="prefs.html">Einstellungen</a> vorgenommen
werden.
</p>
<table class="UDO_env_xlist">
<tr><td nowrap="nowrap" valign="top">Dialoge</td>
<td valign="top"> Hier kann festgelegt werden, wie Dialoge positioniert werden,
und ob Buttons etc. mit 3D-R&auml;ndern gezeichnet werden sollen.
Ausserdem kann die Darstellung in Fenstern ein-/ausgeschaltet werden.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Alerts</td>
<td valign="top"> Hier kann festgelegt werden, wie Alertboxen positioniert
werden.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Menu&uuml;eintrags-R&auml;nder</td>
<td valign="top"> F&uuml;r Men&uuml;s kann festgelegt werden, wie breit der
automatisch erzeugte linke und rechte Men&uuml;rand, sowie der Abstand
zwischen Text und Tastenk&uuml;rzel sein soll. Ein Wert von 0 f&uuml;r
die Tastenk&uuml;rzel schaltet die automatische Ausrichtung ab.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Sprache</td>
<td valign="top"> Legt die Sprache f&uuml;r die Oberfl&auml;che fest. Z.Z. sind
Deutsch und Englisch verf&uuml;gbar. Eine &Auml;nderung wirkt sich auf
Dialoge sofort aus. Aus technischen Gr&uuml;nden wird das
Hauptmen&uuml; jedoch erst nach dem n&auml;chsten Programmstart
entsprechend dargestellt.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top"><a href="desktop.html">Desktop</a></td>
<td valign="top"> Legt die <a href="prefs.html">Einstellungen</a> f&uuml;r das <a href="desktop.html">Desktop</a>-<a href="window.html">Fenster</a> fest.
<br>&nbsp;
</td></tr>
<tr><td nowrap="nowrap" valign="top">Sonstiges</td>
<td valign="top">
<br>&nbsp;
<ul>
<li> Grow/shrinkboxen: Legt fest, ob &uuml;ber die entsprechenden
AES-Funktionen Grow- bzw. Shrinkboxen gezeichnet werden wenn ein
<a href="window.html">Fenster</a> ge&ouml;ffnet bzw. geschlossen wird.
</li>
<li> Drop-down Men&uuml;s: Legt das Verhalten der Men&uuml;s fest.
Ist diese Option aktiviert, muss ein Men&uuml;titel erst angeklickt
werden, damit das Men&uuml; aufklappt. Dies beeinflusst lediglich
Men&uuml;s die von ORCS selber in Fenstern dargestellt werden, nicht
jedoch das Hauptmen&uuml;, dessen Verhalten allein vom AES festgelegt
wird.
</li>
<li> Dateien &uuml;berschreiben: Ist diese Option aktiviert, werden
bereits vorhandene Dateien beim speichern ohne vorherige Nachfrage
&uuml;berschrieben.
</li>
<li> Dialoge durchsichtig: Ist diese Option aktivert, werden Dialoge
durchsichtig wenn die Titelzeile angeklickt wird. Wirkt sich nur auf
Dialoge aus, die <i>nicht</i> in einem <a href="window.html">Fenster</a> dargestellt werden.
</li>
<li> mit Inhalt verschieben: Ist diese Option aktivert, werden
Dialoge beim verschieben komplett gezeichnet, ansonsten nur ein
Rahmen. Wirkt sich nur auf Dialoge aus, die <i>nicht</i> in einem
<a href="window.html">Fenster</a> dargestellt werden.
</li>
<li> Fragen bei IBM-Dateien: Ist diese Option aktiviert, wird noch
einmal nachgefragt, wenn ORCS der Meinung ist, da&szlig; versucht wird
eine <a href="file.html">Datei</a> im Intel-Format zu laden.
</li>
<li> System File-Selektor: Ist diese Option aktiviert, wird der
Fileselektor des Systems verwendet (Selectric, Boxkite, Freedom und
alle anderen Fileselectoren die einen entsprechenden Cookie anlegen
werden unterst&uuml;tzt), ansonsten der eingebaute.
</li>
<li> Parameter automatisch speichern: Ist diese Option aktiviert,
werden am Programmende die <a href="prefs.html">Einstellungen</a> automatisch gespeichert.
</li>
</ul>
</td></tr>
</table>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="prefs.html"><img src="udo_up.gif" alt="Einstellungen" title="Einstellungen" border="0" width="24" height="24">Einstellungen</a>
<a name="UDO_nav_lf_FOOT" href="objectd.html"><img src="udo_lf.gif" alt="Objektdaten" title="Objektdaten" border="0" width="24" height="24">Objektdaten</a>
<a name="UDO_nav_rg_FOOT" href="loadprog.html"><img src="udo_rg.gif" alt="Programm laden" title="Programm laden" border="0" width="24" height="24">Programm laden</a>
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Men&uuml; anzeigen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_HEAD" href="showp.html"><img src="udo_lf.gif" alt="Werkzeuge anzeigen" title="Werkzeuge anzeigen" border="0" width="24" height="24">Werkzeuge anzeigen</a>
<a name="UDO_nav_rg_HEAD" href="find.html"><img src="udo_rg.gif" alt="Objekte Suchen" title="Objekte Suchen" border="0" width="24" height="24">Objekte Suchen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="options.html">Optionen</a>
<hr>
<h1><a name="Men_26uuml_3B_20anzeigen">3.3.6 Men&uuml; anzeigen</a></h1>
<p>Dieser Men&uuml;punkt blendet in den Fenstern eine lokale
Men&uuml;zeile ein.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_FOOT" href="showp.html"><img src="udo_lf.gif" alt="Werkzeuge anzeigen" title="Werkzeuge anzeigen" border="0" width="24" height="24">Werkzeuge anzeigen</a>
<a name="UDO_nav_rg_FOOT" href="find.html"><img src="udo_rg.gif" alt="Objekte Suchen" title="Objekte Suchen" border="0" width="24" height="24">Objekte Suchen</a>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Werkzeuge anzeigen
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_HEAD" href="editi.html"><img src="udo_lf.gif" alt="Sofort bearbeiten" title="Sofort bearbeiten" border="0" width="24" height="24">Sofort bearbeiten</a>
<a name="UDO_nav_rg_HEAD" href="showm.html"><img src="udo_rg.gif" alt="Men&uuml; anzeigen" title="Men&uuml; anzeigen" border="0" width="24" height="24">Men&uuml; anzeigen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="options.html">Optionen</a>
<hr>
<h1><a name="Werkzeuge_20anzeigen">3.3.5 Werkzeuge anzeigen</a></h1>
<p>Dieser Men&uuml;punkt blendet in den Dialog- und
Men&uuml;fenstern eine Werkzeugleiste mit den Objekten ein. Durch
ziehen dieser <a href="objects.html">Objekte</a> in das <a href="window.html">Fenster</a> k&ouml;nnen neue <a href="objects.html">Objekte</a> angelegt
werden.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_FOOT" href="editi.html"><img src="udo_lf.gif" alt="Sofort bearbeiten" title="Sofort bearbeiten" border="0" width="24" height="24">Sofort bearbeiten</a>
<a name="UDO_nav_rg_FOOT" href="showm.html"><img src="udo_rg.gif" alt="Men&uuml; anzeigen" title="Men&uuml; anzeigen" border="0" width="24" height="24">Men&uuml; anzeigen</a>
</body>
</html>

View File

@@ -0,0 +1,47 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Gr&ouml;&szlig;e und Position &auml;ndern
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_HEAD" href="g_cicon.html"><img src="udo_lf.gif" alt="Color Icon &auml;ndern" title="Color Icon &auml;ndern" border="0" width="24" height="24">Color Icon &auml;ndern</a>
<a name="UDO_nav_rg_HEAD" href="comment.html"><img src="udo_rg.gif" alt="Kommentare" title="Kommentare" border="0" width="24" height="24">Kommentare</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource B&auml;ume</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialog.html">Dialogeditor</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="dialogs.html">Dialoge f&uuml;r Objekte</a>
<hr>
<h1><a name="Gr_26ouml_3B_26szlig_3Be_20und_20Position_20_26auml_3Bndern">4.2.1.8 Gr&ouml;&szlig;e und Position &auml;ndern</a></h1>
<p>Bei sich &uuml;berlappenden Objekten kann es manchmal schwierig
sein, die Position und Gr&ouml;&szlig;e mit der Maus festzulegen.
Dieser Dialog dient dazu, die entsprechenden Werte direkt eingeben zu
k&ouml;nnen. Ausserdem erfolgt hier <b>keine</b>
&Uuml;berpr&uuml;fung, ob z.B. die Breite kleiner als der in dem
Objekt dargestellte Text ist.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="dialogs.html"><img src="udo_up.gif" alt="Dialoge f&uuml;r Objekte" title="Dialoge f&uuml;r Objekte" border="0" width="24" height="24">Dialoge f&uuml;r Objekte</a>
<a name="UDO_nav_lf_FOOT" href="g_cicon.html"><img src="udo_lf.gif" alt="Color Icon &auml;ndern" title="Color Icon &auml;ndern" border="0" width="24" height="24">Color Icon &auml;ndern</a>
<a name="UDO_nav_rg_FOOT" href="comment.html"><img src="udo_rg.gif" alt="Kommentare" title="Kommentare" border="0" width="24" height="24">Kommentare</a>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: X-Raster
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_HEAD" href="options.html"><img src="udo_lf.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_rg_HEAD" href="snapy.html"><img src="udo_rg.gif" alt="Y-Raster" title="Y-Raster" border="0" width="24" height="24">Y-Raster</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="options.html">Optionen</a>
<hr>
<h1><a name="X-Raster">3.3.1 X-Raster</a></h1>
<p>Wenn dieser Men&uuml;punkt aktiviert ist, werden die Positionen
von neuen und verschobenen Objekten in X-Richtung immer auf
Zeichensatzgr&ouml;sse ausgerichtet.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_FOOT" href="options.html"><img src="udo_lf.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_rg_FOOT" href="snapy.html"><img src="udo_rg.gif" alt="Y-Raster" title="Y-Raster" border="0" width="24" height="24">Y-Raster</a>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Y-Raster
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_HEAD" href="snapx.html"><img src="udo_lf.gif" alt="X-Raster" title="X-Raster" border="0" width="24" height="24">X-Raster</a>
<a name="UDO_nav_rg_HEAD" href="autosize.html"><img src="udo_rg.gif" alt="Automatische Gr&ouml;&szlig;e" title="Automatische Gr&ouml;&szlig;e" border="0" width="24" height="24">Automatische Gr&ouml;&szlig;e</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="options.html">Optionen</a>
<hr>
<h1><a name="Y-Raster">3.3.2 Y-Raster</a></h1>
<p>Wenn dieser Men&uuml;punkt aktiviert ist, werden die Positionen
von neuen und verschobenen Objekten in Y-Richtung immer auf
Zeichensatzgr&ouml;sse ausgerichtet.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="options.html"><img src="udo_up.gif" alt="Optionen" title="Optionen" border="0" width="24" height="24">Optionen</a>
<a name="UDO_nav_lf_FOOT" href="snapx.html"><img src="udo_lf.gif" alt="X-Raster" title="X-Raster" border="0" width="24" height="24">X-Raster</a>
<a name="UDO_nav_rg_FOOT" href="autosize.html"><img src="udo_rg.gif" alt="Automatische Gr&ouml;&szlig;e" title="Automatische Gr&ouml;&szlig;e" border="0" width="24" height="24">Automatische Gr&ouml;&szlig;e</a>
</body>
</html>

View File

@@ -0,0 +1,10 @@
a:link, a:visited
{
text-decoration: none;
color: #0000ff;
}
a:hover
{
text-decoration: underline;
color: #0000ff;
}

View File

@@ -0,0 +1,41 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Untereinander
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_HEAD" href="cycle.html"><img src="udo_lf.gif" alt="Fenster wechseln" title="Fenster wechseln" border="0" width="24" height="24">Fenster wechseln</a>
<a name="UDO_nav_rg_HEAD" href="tilev.html"><img src="udo_rg.gif" alt="Nebeneinander" title="Nebeneinander" border="0" width="24" height="24">Nebeneinander</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="window.html">Fenster</a>
<hr>
<h1><a name="Untereinander">3.2.4 Untereinander</a></h1>
<p>Ordnet die ge&ouml;ffneten <a href="window.html">Fenster</a> untereinander neu an.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_FOOT" href="cycle.html"><img src="udo_lf.gif" alt="Fenster wechseln" title="Fenster wechseln" border="0" width="24" height="24">Fenster wechseln</a>
<a name="UDO_nav_rg_FOOT" href="tilev.html"><img src="udo_rg.gif" alt="Nebeneinander" title="Nebeneinander" border="0" width="24" height="24">Nebeneinander</a>
</body>
</html>

View File

@@ -0,0 +1,41 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Nebeneinander
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_HEAD" href="tileh.html"><img src="udo_lf.gif" alt="Untereinander" title="Untereinander" border="0" width="24" height="24">Untereinander</a>
<a name="UDO_nav_rg_HEAD" href="cascade.html"><img src="udo_rg.gif" alt="&Uuml;berlappend" title="&Uuml;berlappend" border="0" width="24" height="24">&Uuml;berlappend</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="window.html">Fenster</a>
<hr>
<h1><a name="Nebeneinander">3.2.5 Nebeneinander</a></h1>
<p>Ordnet die ge&ouml;ffneten <a href="window.html">Fenster</a> nebeneinander neu an.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_FOOT" href="tileh.html"><img src="udo_lf.gif" alt="Untereinander" title="Untereinander" border="0" width="24" height="24">Untereinander</a>
<a name="UDO_nav_rg_FOOT" href="cascade.html"><img src="udo_rg.gif" alt="&Uuml;berlappend" title="&Uuml;berlappend" border="0" width="24" height="24">&Uuml;berlappend</a>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Papierkorb
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="desktop.html"><img src="udo_up.gif" alt="Desktop" title="Desktop" border="0" width="24" height="24">Desktop</a>
<a name="UDO_nav_lf_HEAD" href="desktop.html"><img src="udo_lf.gif" alt="Desktop" title="Desktop" border="0" width="24" height="24">Desktop</a>
<a name="UDO_nav_rg_HEAD" href="disks.html"><img src="udo_rg.gif" alt="Laufwerke" title="Laufwerke" border="0" width="24" height="24">Laufwerke</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="desktop.html">Desktop</a>
<hr>
<h1><a name="Papierkorb">2.1 Papierkorb</a></h1>
<p>In den Papierkorb k&ouml;nnen <a href="objects.html">Objekte</a> geschoben werden, um sie
zu l&ouml;schen. Resource-Dateien, Bilder und Programme, die auf dem
<a href="desktop.html">Desktop</a> liegen, werden dabei lediglich aus dem Speicher entfernt, die
Dateien bleiben davon unber&uuml;hrt.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="desktop.html"><img src="udo_up.gif" alt="Desktop" title="Desktop" border="0" width="24" height="24">Desktop</a>
<a name="UDO_nav_lf_FOOT" href="desktop.html"><img src="udo_lf.gif" alt="Desktop" title="Desktop" border="0" width="24" height="24">Desktop</a>
<a name="UDO_nav_rg_FOOT" href="disks.html"><img src="udo_rg.gif" alt="Laufwerke" title="Laufwerke" border="0" width="24" height="24">Laufwerke</a>
</body>
</html>

View File

@@ -0,0 +1,41 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: B&auml;ume
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_HEAD" href="cascade.html"><img src="udo_lf.gif" alt="&Uuml;berlappend" title="&Uuml;berlappend" border="0" width="24" height="24">&Uuml;berlappend</a>
<a name="UDO_nav_rg_HEAD" href="objects.html"><img src="udo_rg.gif" alt="Objekte" title="Objekte" border="0" width="24" height="24">Objekte</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="window.html">Fenster</a>
<hr>
<h1><a name="B_26auml_3Bume">3.2.7 B&auml;ume</a></h1>
<p>&Ouml;ffnet das Tool-<a href="window.html">Fenster</a> mit den Resource-B&auml;umen.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="window.html"><img src="udo_up.gif" alt="Fenster" title="Fenster" border="0" width="24" height="24">Fenster</a>
<a name="UDO_nav_lf_FOOT" href="cascade.html"><img src="udo_lf.gif" alt="&Uuml;berlappend" title="&Uuml;berlappend" border="0" width="24" height="24">&Uuml;berlappend</a>
<a name="UDO_nav_rg_FOOT" href="objects.html"><img src="udo_rg.gif" alt="Objekte" title="Objekte" border="0" width="24" height="24">Objekte</a>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 875 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 885 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 928 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 930 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 937 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 931 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 930 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 928 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 932 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 927 B

View File

@@ -0,0 +1,51 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 13.08.2020 -->
<html lang="de">
<head>
<title>
Die Anleitung zu ORCS: Fenster
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="menu.html"><img src="udo_up.gif" alt="Das Men&uuml;" title="Das Men&uuml;" border="0" width="24" height="24">Das Men&uuml;</a>
<a name="UDO_nav_lf_HEAD" href="quit.html"><img src="udo_lf.gif" alt="Ende" title="Ende" border="0" width="24" height="24">Ende</a>
<a name="UDO_nav_rg_HEAD" href="close.html"><img src="udo_rg.gif" alt="Schliessen" title="Schliessen" border="0" width="24" height="24">Schliessen</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">Die Anleitung zu ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">Das Men&uuml;</a>
<hr>
<h1><a name="Fenster">3.2 Fenster</a></h1>
<ul class="content">
<li> 3.2.1 <a href="close.html">Schliessen</a>
<li> 3.2.2 <a href="closew.html">Fenster schliessen</a>
<li> 3.2.3 <a href="cycle.html">Fenster wechseln</a>
<li> 3.2.4 <a href="tileh.html">Untereinander</a>
<li> 3.2.5 <a href="tilev.html">Nebeneinander</a>
<li> 3.2.6 <a href="cascade.html">&Uuml;berlappend</a>
<li> 3.2.7 <a href="trees.html">B&auml;ume</a>
<li> 3.2.8 <a href="objects.html">Objekte</a>
<li> 3.2.9 <a href="othere.html">Weitere Eintr&auml;ge</a>
</li>
</ul>
<br>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="menu.html"><img src="udo_up.gif" alt="Das Men&uuml;" title="Das Men&uuml;" border="0" width="24" height="24">Das Men&uuml;</a>
<a name="UDO_nav_lf_FOOT" href="quit.html"><img src="udo_lf.gif" alt="Ende" title="Ende" border="0" width="24" height="24">Ende</a>
<a name="UDO_nav_rg_FOOT" href="close.html"><img src="udo_rg.gif" alt="Schliessen" title="Schliessen" border="0" width="24" height="24">Schliessen</a>
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 2020/08/13 -->
<html lang="en">
<head>
<title>
The Documentation for ORCS: Abandon
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="en">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="file.html"><img src="udo_up.gif" alt="File" title="File" border="0" width="24" height="24">File</a>
<a name="UDO_nav_lf_HEAD" href="saveas.html"><img src="udo_lf.gif" alt="Save As" title="Save As" border="0" width="24" height="24">Save As</a>
<a name="UDO_nav_rg_HEAD" href="merge.html"><img src="udo_rg.gif" alt="Merge" title="Merge" border="0" width="24" height="24">Merge</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">The Documentation for ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="menu.html">The Menu</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="file.html">File</a>
<hr>
<h1><a name="Abandon">3.1.5 Abandon</a></h1>
<p>The current resource file is discarded, and the latest version
is loaded.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="file.html"><img src="udo_up.gif" alt="File" title="File" border="0" width="24" height="24">File</a>
<a name="UDO_nav_lf_FOOT" href="saveas.html"><img src="udo_lf.gif" alt="Save As" title="Save As" border="0" width="24" height="24">Save As</a>
<a name="UDO_nav_rg_FOOT" href="merge.html"><img src="udo_rg.gif" alt="Merge" title="Merge" border="0" width="24" height="24">Merge</a>
</body>
</html>

View File

@@ -0,0 +1,55 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- last modified on 2020/08/13 -->
<html lang="en">
<head>
<title>
The Documentation for ORCS: Edit Alert Box
</title>
<meta http-equiv="Content-Type" content="text/html;charset=Windows-1252">
<meta http-equiv="Content-Language" content="en">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Generator" content="UDO Version 7.12 (1248) for Linux">
<meta name="Author" content="Thorsten Otto">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="position: relative;">
<a name="UDO_nav_hm_HEAD" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_HEAD" href="rtrees.html"><img src="udo_up.gif" alt="Resource Trees" title="Resource Trees" border="0" width="24" height="24">Resource Trees</a>
<a name="UDO_nav_lf_HEAD" href="menued.html"><img src="udo_lf.gif" alt="Menu-Editor" title="Menu-Editor" border="0" width="24" height="24">Menu-Editor</a>
<a name="UDO_nav_rg_HEAD" href="frstr.html"><img src="udo_rg.gif" alt="Edit Free String" title="Edit Free String" border="0" width="24" height="24">Edit Free String</a>
<hr>
<img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="orcs.html">The Documentation for ORCS</a>
<br><img src="udo_fs.gif" width="20" height="13" alt="" title="" border="0"><img src="udo_fo.gif" width="16" height="13" alt="" title="" border="0">&nbsp;<a href="rtrees.html">Resource Trees</a>
<hr>
<h1><a name="Edit_20Alert_20Box">4.4 Edit Alert Box</a></h1>
<p>The alert editor can accommodate 5 lines of 40 characters and 3
buttons of 10 characters each (these are the restrictions which the
AES pretends; if you want to bpyass these the string must be edited as
free text). You can also select the icon for the alert box. There's
also a test function for alert boxes. If the alert limits not
expanded, no extended object types are used and the AES alert limits
are not exceeded, then form_alert(...) will be used for the test.
Otherwise, the builtin alert routine is used.
</p>
<p>In the program, the text can be used as follows:
</p>
<pre> char** Text;
rsrc_gaddr(15, StringIndex, &amp;Text);
</pre>
<p>It must be noted that the function rsrc_gaddr returns a pointer
to a pointer that contains the text.
</p>
<hr>
<a name="UDO_nav_hm_FOOT" href="orcs.html"><img src="udo_hm.gif" alt="Home" title="Home" border="0" width="24" height="24"></a>
<a name="UDO_nav_up_FOOT" href="rtrees.html"><img src="udo_up.gif" alt="Resource Trees" title="Resource Trees" border="0" width="24" height="24">Resource Trees</a>
<a name="UDO_nav_lf_FOOT" href="menued.html"><img src="udo_lf.gif" alt="Menu-Editor" title="Menu-Editor" border="0" width="24" height="24">Menu-Editor</a>
<a name="UDO_nav_rg_FOOT" href="frstr.html"><img src="udo_rg.gif" alt="Edit Free String" title="Edit Free String" border="0" width="24" height="24">Edit Free String</a>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More