Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/refactor-options-architecture'
Browse files Browse the repository at this point in the history
  • Loading branch information
aadcg committed May 28, 2024
2 parents bc11600 + 538f74b commit c6babcf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
16 changes: 14 additions & 2 deletions source/renderer/electron.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,13 @@
;; (defmethod ffi-display-url ((browser electron-browser) text))

(define-class electron-buffer (electron:browser-view)
()
((electron:options
""
:export t
:reader t
:writer nil
:type string
:documentation "A string that specifies the buffer's behavior."))
(:export-class-name-p t)
(:export-accessor-names-p t)
(:metaclass user-class)
Expand Down Expand Up @@ -277,7 +283,13 @@
;; (defmethod ffi-preferred-languages ((buffer electron-buffer)))

(define-class electron-window (electron:browser-window)
()
((electron:options
"{autoHideMenuBar: true}"
:export t
:reader t
:writer nil
:type string
:documentation "A string that specifies the window's behavior."))
(:export-class-name-p t)
(:export-accessor-names-p t)
(:metaclass user-class)
Expand Down

0 comments on commit c6babcf

Please sign in to comment.