Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
clim-tos
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mcclim
clim-tos
Commits
035b49cb
Commit
035b49cb
authored
15 years ago
by
Andreas Fuchs
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog.n
+4
-4
4 additions, 4 deletions
ChangeLog.n
aclpc/acl-class.lisp
+8
-2
8 additions, 2 deletions
aclpc/acl-class.lisp
pre-silica/wheader.lisp
+0
-6
0 additions, 6 deletions
pre-silica/wheader.lisp
with
12 additions
and
12 deletions
ChangeLog.n
+
4
−
4
View file @
035b49cb
...
...
@@ -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>
...
...
This diff is collapsed.
Click to expand it.
aclpc/acl-class.lisp
+
8
−
2
View file @
035b49cb
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
pre-silica/wheader.lisp
+
0
−
6
View file @
035b49cb
...
...
@@ -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 |#
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment