Re: CAPI push button borders
"John DeSoi (as john at desoi dot dev)" <[email protected]>
| Newsgroups | gmane.lisp.lispworks.general |
|---|---|
| Message-ID | <0100019c57bf64d5-29b3836c-8948-4614-899a-265494559edd-000000@email.amazonses.com> |
Thank you Martin! :no-border is exactly what I needed. John DeSoi, Ph.D. > On Feb 13, 2026, at 9:01 AM, Martin Simmons <[email protected]> wrote: > > There is an undocumented mapping from keywords to the Cocoa numbers using this > alist: > > '((:rounded . 1) > (:regular-square . 2) > (:thick-square . 3) > (:thicker-square . 4) > (:shadowless-square . 6) > (:circular . 7) > > (:disclosure . 5) > (:texture-square . 8) > (:help-button . 9) > (:small-square . 10) > (:texture-rounded . 11) > (:round-rect . 12) > (:recessed . 13) > (:rounded-Disclosure . 14) > > (:no-border . :no-border) > ) > > :no-border make it call setBordered: with false, otherwise it calls > setBezelStyle: with the number.