chiark / gitweb /
Converted deprecated widgets option-menu and combo to combo-box and combo-box-entry
[clg] / gdk / gdk.lisp
index 305b2f4599bf08e414fc86d8b483f2ab6f518021..497b985f4ba9073aa07a99635c4f1a4e271eed60 100644 (file)
 ;; License along with this library; if not, write to the Free Software
 ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
-;; $Id: gdk.lisp,v 1.8 2004-10-28 09:28:25 espen Exp $
+;; $Id: gdk.lisp,v 1.11 2004-11-06 21:39:58 espen Exp $
 
 
 (in-package "GDK")
 
+;;; Initialization
+(defbinding (gdk-init "gdk_parse_args") () nil
+  "Initializes the library without opening the display."
+  (nil null)
+  (nil null))
 
-;;; Events
 
-(defbinding connection-number () int)
+;;; Display
+
+(defbinding (display-manager "gdk_display_manager_get") () display-manager)
+
+
+(defbinding (display-set-default "gdk_display_manager_set_default_display")
+    (display) nil
+  ((display-manager) display-manager)
+  (display display))
+
+(defbinding display-get-default () display)
+
+(defbinding %display-open () display
+  (display-name (or null string)))
+
+(defun display-open (&optional display-name)
+  (let ((display (%display-open display-name)))
+    (unless (display-get-default)
+      (display-set-default display))
+    display))
+
+(defbinding (display-connection-number "clg_gdk_connection_number")
+    (&optional (display (display-get-default))) int
+  (display display))
+
+
+;;; Events
 
 (defbinding (events-pending-p "gdk_events_pending") () boolean)
 
@@ -273,7 +304,7 @@ (defbinding window-get-pointer () window
 
 (defbinding %get-default-root-window () window)
 
-(defun get-root-window (%optional display)
+(defun get-root-window (&optional display)
   (if display
       (error "Not implemented")
     (%get-default-root-window)))
@@ -288,15 +319,6 @@ (defbinding rgb-init () nil)
 
 ;;; Cursor
 
-(deftype-method alien-ref cursor (type-spec)
-  (declare (ignore type-spec))
-  '%cursor-ref)
-
-(deftype-method alien-unref cursor (type-spec)
-  (declare (ignore type-spec))
-  '%cursor-unref)
-
-
 (defbinding cursor-new () cursor
   (cursor-type cursor-type))
 
@@ -308,10 +330,19 @@ (defbinding cursor-new-from-pixmap () cursor
   (x int) (y int))
 
 (defbinding %cursor-ref () pointer
-  (cursor (or cursor pointer)))
+  (location pointer))
 
 (defbinding %cursor-unref () nil
-  (cursor (or cursor pointer)))
+  (location pointer))
+
+(defmethod reference-foreign ((class (eql (find-class 'cursor))) location)
+  (declare (ignore class))
+  (%cursor-ref location))
+
+(defmethod unreference-foreign ((class (eql (find-class 'cursor))) location)
+  (declare (ignore class))
+  (%cursor-unref location))
+