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
Alastair Bridgewater
clim-tos
Commits
c7c76974
Commit
c7c76974
authored
32 years ago
by
cer
Browse files
Options
Downloads
Patches
Plain Diff
Initial revision
parent
e9bcb219
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tk/xm-callbacks.lisp
+37
-0
37 additions, 0 deletions
tk/xm-callbacks.lisp
with
37 additions
and
0 deletions
tk/xm-callbacks.lisp
0 → 100644
+
37
−
0
View file @
c7c76974
;; -*- mode: common-lisp; package: xm-silica -*-
;;
;; -[]-
;;
;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved.
;; copyright (c) 1986-1992 Franz Inc, Berkeley, CA All rights reserved.
;;
;; The software, data and information contained herein are proprietary
;; to, and comprise valuable trade secrets of, Franz, Inc. They are
;; given in confidence by Franz, Inc. pursuant to a written license
;; agreement, and may be stored and used only in accordance with the terms
;; of such license.
;;
;; Restricted Rights Legend
;; ------------------------
;; Use, duplication, and disclosure of the software, data and information
;; contained herein by any agency, department or entity of the U.S.
;; Government are subject to restrictions of Restricted Rights for
;; Commercial Software developed at private expense as specified in FAR
;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as
;; applicable.
;;
;; $fiHeader$
(
in-package
:xm-silica
)
(
defmethod
spread-callback-data
(
widget
call-data
(
type
(
eql
:single-selection
)))
(
declare
(
ignore
widget
))
(
xm-list-callback-struct-item-position
call-data
))
(
defmethod
spread-callback-data
(
widget
call-data
(
type
(
eql
:multiple-selection
)))
(
declare
(
ignore
widget
))
(
let
((
si
(
xm-list-callback-struct-selected-item-positions
call-data
))
(
r
nil
))
(
dotimes
(
i
(
xm-list-callback-struct-selected-item-count
call-data
)
(
nreverse
r
))
(
push
(
xm-selected-position-array
si
i
)
r
))))
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