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:
6c4f81f
)
Added warning about API change
author
espen
<espen>
Thu, 12 Jul 2007 13:55:59 +0000
(13:55 +0000)
committer
espen
<espen>
Thu, 12 Jul 2007 13:55:59 +0000
(13:55 +0000)
gtk/gtk.lisp
patch
|
blob
|
blame
|
history
diff --git
a/gtk/gtk.lisp
b/gtk/gtk.lisp
index 0ea17ab3c5ab3b41184c86a864d3692a0c743242..7d98710c41a8b086bfcac2c7bbd4b4e320d3a4e2 100644
(file)
--- a/
gtk/gtk.lisp
+++ b/
gtk/gtk.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: gtk.lisp,v 1.8
0 2007-07-12 13:13:34
espen Exp $
+;; $Id: gtk.lisp,v 1.8
1 2007-07-12 13:55:59
espen Exp $
(in-package "GTK")
(in-package "GTK")
@@
-1322,7
+1322,7
@@
(defmethod allocate-foreign ((dialog message-dialog) &key (message-type :info)
(defmethod shared-initialize ((dialog message-dialog) names &rest initargs
(defmethod shared-initialize ((dialog message-dialog) names &rest initargs
- &key
buttons
text
+ &key
message-type buttons button
text
#?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
secondary-text)
(declare (ignore names))
#?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
secondary-text)
(declare (ignore names))
@@
-1331,6
+1331,13
@@
(defmethod shared-initialize ((dialog message-dialog) names &rest initargs
#?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
(when secondary-text
(message-dialog-format-secondary-markup dialog secondary-text))
#?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
(when secondary-text
(message-dialog-format-secondary-markup dialog secondary-text))
+ (when (and (not buttons) (not button))
+ (loop
+ for (key value) on initargs by #'cddr
+ when (and (eq key :signal) (eq (first value) :close))
+ do (warn "Default button configuration changed from ~A to ~A" :close
+ (if (eq message-type :question) :yes-no :ok))
+ (loop-finish)))
(if (typep buttons 'buttons-type)
(apply #'call-next-method dialog names (plist-remove :buttons initargs))
(call-next-method)))
(if (typep buttons 'buttons-type)
(apply #'call-next-method dialog names (plist-remove :buttons initargs))
(call-next-method)))