chiark / gitweb /
Fixed ref counting problem when reading the icon-list slot in windows
[clg] / gdk / gdktypes.lisp
index f6f29426ab6316deb8177c2cf06981ec53b45ad0..2963d94aac41df2858e9044de1e11c1e94fc2040 100644 (file)
@@ -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.
 
-;; $Id: gdktypes.lisp,v 1.19 2005/04/23 16:48:50 espen Exp $
+;; $Id: gdktypes.lisp,v 1.21 2006/01/30 15:40:16 espen Exp $
 
 (in-package "GDK")
 
@@ -42,11 +42,11 @@ (defclass color (boxed)
     :accessor color-red
     :type unsigned-short)
    (green
-    :allocation :alien
+    :allocation :alien :offset 6
     :accessor color-green
     :type unsigned-short)
    (blue
-    :allocation :alien
+    :allocation :alien  :offset 8
     :accessor color-blue
     :type unsigned-short))
   (:metaclass boxed-class))
@@ -83,6 +83,8 @@ (defclass rectangle (boxed)
   (:metaclass boxed-class))
 
 
+
+
 (define-types-by-introspection "Gdk"
   ("GdkFunction" :type gc-function)
   ("GdkWMDecoration" :type wm-decoration)
@@ -96,10 +98,11 @@ (define-types-by-introspection "Gdk"
   ("GdkGCX11" :ignore t)
   ("GdkColor" :ignore t)
   ("GdkEvent" :ignore t)
-  ("GdkRectngle" :ignore t)
+  ("GdkRectangle" :ignore t)
   ("GdkCursor" :ignore t)
   ("GdkFont" :ignore t) ; deprecated
   ("GdkEventMask" :ignore t) ; manually defined
+  ("GdkModifierType" :ignore t) ; manually defined
 
   ("GdkDisplay"
    :slots
@@ -266,3 +269,8 @@ (defclass geometry (struct)
     :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)))