mirror of
https://github.com/blondie7575/WeeGUI.git
synced 2024-12-14 06:31:06 +00:00
update MDBasic header with new/changed ampersand commands.
This commit is contained in:
parent
5d1f41bd48
commit
be2999ee81
20
WeeGUI.h
20
WeeGUI.h
@ -22,10 +22,13 @@
|
|||||||
' View Routines
|
' View Routines
|
||||||
#define WGCreateView &WINDW
|
#define WGCreateView &WINDW
|
||||||
#define WGCreateCheckbox &CHKBX
|
#define WGCreateCheckbox &CHKBX
|
||||||
|
#define WGCreateRadio &RADIO
|
||||||
|
#define WGCreateProgress &PROG
|
||||||
'#define WGCreateButton &BUTTN
|
'#define WGCreateButton &BUTTN
|
||||||
#define WGCreateButton(p1,p2,p3,p4,p5,p6) &BUTTN(p1,p2,p3,p4,gosub p5,p6)
|
#define WGCreateButton(p1,p2,p3,p4,p5,p6) &BUTTN(p1,p2,p3,p4,gosub p5,p6)
|
||||||
#define WGDeleteView &KILL
|
#define WGDeleteView &KILL
|
||||||
#define WGSelectView &SEL
|
#define WGSelectView &SEL
|
||||||
|
#define WGGetSel >SEL
|
||||||
#define WGPendingViewAction &PDACT
|
#define WGPendingViewAction &PDACT
|
||||||
#define WGViewFocus &FOC
|
#define WGViewFocus &FOC
|
||||||
#define WGViewFocusNext &FOCN
|
#define WGViewFocusNext &FOCN
|
||||||
@ -33,13 +36,13 @@
|
|||||||
#define WGViewFocusAction &ACT
|
#define WGViewFocusAction &ACT
|
||||||
#define WGPaintView &PNT
|
#define WGPaintView &PNT
|
||||||
#define WGViewPaintAll &PNTA
|
#define WGViewPaintAll &PNTA
|
||||||
#define WGEraseViewContents &ERASE
|
#define WGEraseViewContents &ERASE(0)
|
||||||
#define WGEraseView &WIPE
|
#define WGEraseView &ERASE(1)
|
||||||
#define WGViewSetTitle &TITLE
|
#define WGViewSetTitle &TITLE
|
||||||
'#define WGViewSetAction &STACT
|
'#define WGViewSetAction &STACT
|
||||||
#define WGViewSetAction(p1) &STACT(gosub p1)
|
#define WGViewSetAction(p1) &STACT(gosub p1)
|
||||||
#define WGCreateProgress &PROG
|
#define WGSetState &SETV
|
||||||
#define WGSetValue &SETV
|
#define WGViewSetRawTitle &STRW
|
||||||
|
|
||||||
' Cursor Routines
|
' Cursor Routines
|
||||||
#define WGSetCursor &CURSR
|
#define WGSetCursor &CURSR
|
||||||
@ -47,12 +50,13 @@
|
|||||||
' Scrolling Routines
|
' Scrolling Routines
|
||||||
#define WGScroll &SCR
|
#define WGScroll &SCR
|
||||||
#define WGScrollBy &SCRBY
|
#define WGScrollBy &SCRBY
|
||||||
#define WGScrollByX(x) WGScrollBy(x, 0)
|
#define WGScrollXBy(x) WGScrollBy(x, 0)
|
||||||
#define WGScrollByY(y) WGScrollBy(0, y)
|
#define WGScrollYBy(y) WGScrollBy(0, y)
|
||||||
|
|
||||||
|
|
||||||
' Drawing Routines
|
' Drawing Routines
|
||||||
#define WGClearScreen &HOME
|
#define WGClearScreen &HOME(0)
|
||||||
#define WGDesktop &DESK
|
#define WGDesktop &HOME(1)
|
||||||
#define WGPlot &PLOT
|
#define WGPlot &PLOT
|
||||||
#define WGPrint &PRINT
|
#define WGPrint &PRINT
|
||||||
#define WGStrokeRect &DRAW
|
#define WGStrokeRect &DRAW
|
||||||
|
Loading…
Reference in New Issue
Block a user