X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/6c4f81fca353b408974a409bf086dd33cde4905a..a5bc508ce57fe5adc42a1b874f1d08166abeabc0:/gtk/gtk.lisp diff --git a/gtk/gtk.lisp b/gtk/gtk.lisp index 0ea17ab..209fdb2 100644 --- 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. -;; $Id: gtk.lisp,v 1.80 2007-07-12 13:13:34 espen Exp $ +;; $Id: gtk.lisp,v 1.82 2007-08-20 10:54:38 espen Exp $ (in-package "GTK") @@ -552,7 +552,7 @@ (define-callback-marshal %assistant-page-func-callback int ((current-page int))) - (defbinding assistant-set-forward-func (assistant function) nil + (defbinding assistant-set-forward-page-func (assistant function) nil (assistant assistant) (%assistant-page-func-callback callback) ((register-callback-function function) pointer-data) @@ -1322,7 +1322,7 @@ (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)) @@ -1331,6 +1331,13 @@ #?(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)))