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:
2ba20df
)
Updated/added bindings for label class
author
espen
<espen>
Mon, 25 Mar 2002 09:24:55 +0000
(09:24 +0000)
committer
espen
<espen>
Mon, 25 Mar 2002 09:24:55 +0000
(09:24 +0000)
gtk/gtk.lisp
patch
|
blob
|
blame
|
history
diff --git
a/gtk/gtk.lisp
b/gtk/gtk.lisp
index a5fc98f2026195fe0858b5296788af241af4c947..7d4f347a8de5cf822f68c805717a37a6daf82f03 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.1
0 2002/03/24 21:54:06
espen Exp $
+;; $Id: gtk.lisp,v 1.1
1 2002/03/25 09:24:55
espen Exp $
(in-package "GTK")
(in-package "GTK")
@@
-388,20
+388,40
@@
(defmethod (setf container-children) (children (dialog dialog))
;;; Drawing area -- no functions
;;; Drawing area -- no functions
+;;; Entry
-;;; Toggle button
+(defbinding entry-get-layout () pango:layout
+ (entry entry))
+
+(defbinding entry-get-layout-offsets () nil
+ (entry entry)
+ (x int :out)
+ (y int :out))
-(defbinding toggle-button-toggled () nil
- (toggle-button toggle-button))
;;; Label
;;; Label
+(defbinding label-get-layout-offsets () nil
+ (labe label)
+ (x int :out)
+ (y int :out))
+
(defbinding label-select-region () nil
(label label)
(start int)
(end int))
(defbinding label-select-region () nil
(label label)
(start int)
(end int))
+(defbinding label-get-text () string
+ (label label))
+
+(defbinding label-get-layout () pango:layout
+ (label label))
+
+(defbinding label-get-selection-bounds () boolean
+ (label label)
+ (start int :out)
+ (end int :out))
@@
-511,6
+531,13
@@
(defmethod initialize-instance ((item radio-menu-item)
+;;; Toggle button
+
+(defbinding toggle-button-toggled () nil
+ (toggle-button toggle-button))
+
+
+
;;; Window
(defbinding window-set-wmclass () nil
;;; Window
(defbinding window-set-wmclass () nil