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:
af5eb95
)
Paned widget updated
author
espen
<espen>
Mon, 20 Dec 2004 20:00:07 +0000
(20:00 +0000)
committer
espen
<espen>
Mon, 20 Dec 2004 20:00:07 +0000
(20:00 +0000)
gtk/gtk.lisp
patch
|
blob
|
blame
|
history
gtk/gtktypes.lisp
patch
|
blob
|
blame
|
history
diff --git
a/gtk/gtk.lisp
b/gtk/gtk.lisp
index 6e0ed0e4c2d68d2d85b3139b407d6d7a0574e942..52d71a748c5a82fd93925b88248688a3a487c585 100644
(file)
--- a/
gtk/gtk.lisp
+++ b/
gtk/gtk.lisp
@@
-15,7
+15,7
@@
;; License along with this library; if not, write to the Free Software
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
;; 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: gtk.lisp,v 1.2
2 2004/12/20 00:51:38
espen Exp $
+;; $Id: gtk.lisp,v 1.2
3 2004/12/20 20:00:07
espen Exp $
(in-package "GTK")
(in-package "GTK")
@@
-1043,27
+1043,6
@@
(defbinding paned-pack2 () nil
(resize boolean)
(shrink boolean))
(resize boolean)
(shrink boolean))
-(defun (setf paned-child1) (child paned)
- (paned-pack1 paned child nil t)
- child)
-
-(defun (setf paned-child2) (child paned)
- (paned-pack2 paned child t t)
- child)
-
-;; Defined in gtkglue.c
-(defbinding paned-child1 () widget
- (paned paned)
- (resize boolean :out)
- (shrink boolean :out))
-
-;; Defined in gtkglue.c
-(defbinding paned-child2 () widget
- (paned paned)
- (resize boolean :out)
- (shrink boolean :out))
-
-
;;; Layout
;;; Layout
diff --git
a/gtk/gtktypes.lisp
b/gtk/gtktypes.lisp
index 42f32b615fe12f4b4f5fc77ba1b06c4c4e63b7e8..0d0093eb7d8ecc94fca612f4a891efad88037aff 100644
(file)
--- a/
gtk/gtktypes.lisp
+++ b/
gtk/gtktypes.lisp
@@
-15,7
+15,7
@@
;; License along with this library; if not, write to the Free Software
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
;; 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: gtktypes.lisp,v 1.2
2 2004/12/17 00:42:55
espen Exp $
+;; $Id: gtktypes.lisp,v 1.2
3 2004/12/20 20:00:07
espen Exp $
(in-package "GTK")
(in-package "GTK")
@@
-400,14
+400,16
@@
(default-widget
:slots
((child1
:allocation :virtual
:slots
((child1
:allocation :virtual
- :getter paned-child1
- :setter (setf paned-child1)
+ :getter "gtk_paned_get_child1"
+ :setter "gtk_paned_add1"
+ :accessor paned-child1
:initarg :child1
:type widget)
(child2
:allocation :virtual
:initarg :child1
:type widget)
(child2
:allocation :virtual
- :getter paned-child2
- :setter (setf paned-child2)
+ :getter "gtk_paned_get_child2"
+ :setter "gtk_paned_add2"
+ :accessor paned-child2
:initarg :child2
:type widget)))
:initarg :child2
:type widget)))