chiark
/
gitweb
/
~mdw
/
clg
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
bde0b90
)
Modifer-type manually defined
author
espen
<espen>
Sun, 24 Apr 2005 13:29:36 +0000
(13:29 +0000)
committer
espen
<espen>
Sun, 24 Apr 2005 13:29:36 +0000
(13:29 +0000)
gdk/gdktypes.lisp
patch
|
blob
|
blame
|
history
diff --git
a/gdk/gdktypes.lisp
b/gdk/gdktypes.lisp
index 01ddf68881f0ab77d8c1353d8a933e85ab62c38a..420c9efb701a3046a55c664cde96cdac0975f19b 100644
(file)
--- a/
gdk/gdktypes.lisp
+++ b/
gdk/gdktypes.lisp
@@
-20,7
+20,7
@@
;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-;; $Id: gdktypes.lisp,v 1.
19 2005-04-23 16:48:50
espen Exp $
+;; $Id: gdktypes.lisp,v 1.
20 2005-04-24 13:29:36
espen Exp $
(in-package "GDK")
(in-package "GDK")
@@
-83,6
+83,8
@@
(defclass rectangle (boxed)
(:metaclass boxed-class))
(:metaclass boxed-class))
+
+
(define-types-by-introspection "Gdk"
("GdkFunction" :type gc-function)
("GdkWMDecoration" :type wm-decoration)
(define-types-by-introspection "Gdk"
("GdkFunction" :type gc-function)
("GdkWMDecoration" :type wm-decoration)
@@
-100,6
+102,7
@@
(define-types-by-introspection "Gdk"
("GdkCursor" :ignore t)
("GdkFont" :ignore t) ; deprecated
("GdkEventMask" :ignore t) ; manually defined
("GdkCursor" :ignore t)
("GdkFont" :ignore t) ; deprecated
("GdkEventMask" :ignore t) ; manually defined
+ ("GdkModifierType" :ignore t) ; manually defined
("GdkDisplay"
:slots
("GdkDisplay"
:slots
@@
-266,3
+269,8
@@
(defclass geometry (struct)
:initarg :gravity
:type gravity))
(:metaclass struct-class))
:initarg :gravity
:type gravity))
(:metaclass struct-class))
+
+(define-flags-type modifier-type
+ :shift :lock :control :mod1 :mod2 :mod3 :mod4 :mod5
+ :button1 :button2 :button3 :button4 :button5
+ (:release #.(ash 1 30)))