done scaffolding cml and adding resize functionality
This commit is contained in:
@@ -1,4 +1,10 @@
|
||||
structure DrawMsg =
|
||||
signature DRAW_MSG =
|
||||
sig
|
||||
datatype t =
|
||||
REDRAW_TEXT of Real32.real vector
|
||||
end
|
||||
|
||||
structure DrawMsg :> DRAW_MSG =
|
||||
struct
|
||||
datatype t =
|
||||
REDRAW_TEXT of Real32.real vector
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
structure InputMsg =
|
||||
signature INPUT_MSG =
|
||||
sig
|
||||
datatype t =
|
||||
RESIZE_EVENT of int * int
|
||||
end
|
||||
|
||||
structure InputMsg :> INPUT_MSG =
|
||||
struct
|
||||
datatype t =
|
||||
RESIZE_EVENT of int * int
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
structure MailboxType =
|
||||
signature MAILBOX_TYPE =
|
||||
sig
|
||||
datatype t =
|
||||
DRAW of DrawMsg.t
|
||||
end
|
||||
|
||||
structure MailboxType :> MAILBOX_TYPE =
|
||||
struct
|
||||
datatype t =
|
||||
DRAW of DrawMsg.t
|
||||
|
||||
Reference in New Issue
Block a user