mirror of
https://github.com/cc65/cc65.git
synced 2025-02-05 20:31:53 +00:00
Adjusted language and TABs.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5315 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
d810ed97d2
commit
b9b6657c29
@ -1,11 +1,11 @@
|
|||||||
|
; This is the proposed syntax of a general GEOS resource file for the upcoming resource compiler.
|
||||||
|
|
||||||
;This is proposed syntax of general GEOS resource file for upcoming resource compiler.
|
; token MENU, topname (will be escaped with _), x,y of top-left corner, bottom-right will be
|
||||||
|
; counted according to BSW font table (in x) and a multiply 15 (14?) in y
|
||||||
|
|
||||||
;(token MENU, topname (will be escaped with _), x,y of top-left corner, bottom-right will be
|
; Note that MENU is either MENU and SUBMENU
|
||||||
; counted according to BSW font table (in x) and a multiply 15 (14?) in y)
|
; Note that if you want to use any C operators (like '|', '&' etc.) do it WITHOUT spaces
|
||||||
;Note that MENU is either MENU and SUBMENU
|
; between arguments (parser is simple and weak)
|
||||||
;Note that if you want to use any C operators (like '|', '&' etc.) do it WITHOUT spaces
|
|
||||||
;between arguments (parser is simple and weak)
|
|
||||||
|
|
||||||
; format: MENU "name" left,top ALIGN { "itemname" TYPE pointer ... }
|
; format: MENU "name" left,top ALIGN { "itemname" TYPE pointer ... }
|
||||||
|
|
||||||
@ -18,8 +18,8 @@ MENU subMenu1 15,0 VERTICAL
|
|||||||
|
|
||||||
MENU mainMenu 0,0 HORIZONTAL
|
MENU mainMenu 0,0 HORIZONTAL
|
||||||
{
|
{
|
||||||
"sub menu1" SUB_MENU subMenu1 ; goes for _subMenu1
|
"sub menu1" SUB_MENU subMenu1 ; goes for _subMenu1
|
||||||
"quit" MENU_ACTION EnterDeskTop ; goes for _EnterDeskTop
|
"quit" MENU_ACTION EnterDeskTop ; goes for _EnterDeskTop
|
||||||
}
|
}
|
||||||
|
|
||||||
; format: HEADER GEOS_TYPE "dosname" "classname" "version"
|
; format: HEADER GEOS_TYPE "dosname" "classname" "version"
|
||||||
@ -27,9 +27,9 @@ MENU mainMenu 0,0 HORIZONTAL
|
|||||||
HEADER APPLICATION "123456789 1234567" "Class Name" "V1.0.0"
|
HEADER APPLICATION "123456789 1234567" "Class Name" "V1.0.0"
|
||||||
{
|
{
|
||||||
; not all fields are required, default and current values will be used
|
; not all fields are required, default and current values will be used
|
||||||
author "Maciej Witkowiak" ; always in quotes!
|
author "Maciej Witkowiak" ; always in quotes!
|
||||||
info "Information text" ; always in quotes!
|
info "Information text" ; always in quotes!
|
||||||
; date yy mm dd hh ss ; always 5 fields!
|
; date yy mm dd hh ss ; always 5 fields!
|
||||||
; dostype seq ; can be PRG, SEQ, USR
|
; dostype seq ; can be PRG, SEQ, USR
|
||||||
mode c64only ; can be any, 40only, 80only, c64only
|
mode c64only ; can be any, 40only, 80only, c64only
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user