Skip to content
Snippets Groups Projects
Commit 035b49cb authored by Andreas Fuchs's avatar Andreas Fuchs
Browse files

Move the SIZE_* definitions to a place where they will be picked up while compiling.

parent d96aec35
No related branches found
No related tags found
No related merge requests found
......@@ -16,12 +16,12 @@ user visible.
2009-06-29 Andreas Fuchs <afuchs@franz.com>
* pre-silica/wheader.lisp: define WM_SIZE message constants. (spr35138)
* silica/layout.lisp: Define sheet-flags / (setf sheet-flags).
* silica/layout.lisp: Define sheet-flags / (setf sheet-flags). (spr35138)
* aclpc/acl-mirror.lisp: Add maximized-p/minimized-p slots to
acl-top-level-sheet.
* aclpc/acl-class.lisp: Add implementations for sheet-flags accessors, listen
for minimized/maximized events and set top-level sheet flags accordingly.
* aclpc/acl-class.lisp: define WM_SIZE message constants,
add implementations for sheet-flags accessors, listen for
minimized/maximized events and set top-level sheet flags accordingly.
2009-06-29 Andreas Fuchs <afuchs@franz.com>
......
......@@ -463,6 +463,12 @@
(setf (win-result *acl-port*) (win:DefWindowProc window msg wparam lparam)))
(win-result *acl-port*)))
#| WM_SIZE message constants |#
(defconstant SIZE_MAXIMIZED 2)
(defconstant SIZE_MINIMIZED 1)
(defconstant SIZE_RESTORED 0)
;; Process WM_SIZE
(defun onsize (window msg wparam lparam)
(let* ((sheet (mirror->sheet *acl-port* window)))
......@@ -477,8 +483,8 @@
(clear-winproc-result (win-result *acl-port*)))
(setf (win-result *acl-port*) (win:DefWindowProc window msg wparam lparam)))
(when (typep sheet 'acl-top-level-sheet)
(setf (maximized-p sheet) (= wparam win::SIZE_MAXIMIZED))
(setf (minimized-p sheet) (= wparam win::SIZE_MINIMIZED)))
(setf (maximized-p sheet) (= wparam SIZE_MAXIMIZED))
(setf (minimized-p sheet) (= wparam SIZE_MINIMIZED)))
(win-result *acl-port*)))
;; Process WM_GETMINMAXINFO
......
......@@ -77,12 +77,6 @@
(defconstant SW_SHOWMINNOACTIVE 7)
(defconstant SW_SHOWNA 8)
#| WM_SIZE message constants |#
(defconstant SIZE_MAXIMIZED 2)
(defconstant SIZE_MINIMIZED 1)
(defconstant SIZE_RESTORED 0)
#||
#| Old showwindow commands |#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment