From thurahlaing06 at gmail.com Wed Sep 9 19:22:05 2009 From: thurahlaing06 at gmail.com (Thura) Date: Wed, 9 Sep 2009 15:22:05 -0400 Subject: [cl-gtk2-devel] Is there any plan to support glade ? Message-ID: I know cl-gtk2 is quite new project, but out of curiosity, is there any plan to support glade ? -- Yours, Thura Hlaing -------------- next part -------------- An HTML attachment was scrubbed... URL: From kalyanov.dmitry at gmail.com Thu Sep 10 04:39:16 2009 From: kalyanov.dmitry at gmail.com (Kalyanov Dmitry) Date: Thu, 10 Sep 2009 08:39:16 +0400 Subject: [cl-gtk2-devel] Is there any plan to support glade ? In-Reply-To: References: Message-ID: <200909100839.34841.Kalyanov.Dmitry@gmail.com> On Wednesday 09 September 2009 23:22:05 Thura wrote: > I know cl-gtk2 is quite new project, but out of curiosity, is there any > plan to support glade ? No. AFAIK, libglade is deprecated in favor of GtkBuilder. And current version of Glade (Glade-3) also supports saving UI definition in format supported by GtkBuilder. cl-gtk2 supports GtkBuilder (e.g., see gtk-demo:test-builder) so I don't think that there is a need to support libglade. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 198 bytes Desc: This is a digitally signed message part. URL: From kalyanov.dmitry at gmail.com Thu Sep 10 04:44:47 2009 From: kalyanov.dmitry at gmail.com (Kalyanov Dmitry) Date: Thu, 10 Sep 2009 08:44:47 +0400 Subject: [cl-gtk2-devel] Suggestion: Testing if gthread is initialized. In-Reply-To: <200908141517.n7EFHsUI000474@smtp-webmail.ivenue.com> References: <200908141517.n7EFHsUI000474@smtp-webmail.ivenue.com> Message-ID: <200909100844.51909.Kalyanov.Dmitry@gmail.com> On Friday 14 August 2009 19:17:54 Seth wrote: > If another library uses the same dlls in the same session and they both try > to initialize threads, i get > an error GThread system may only be initialized once. > I'm not using a threaded implementation, so maybe this is unique to such. > Using slime, sbcl then stops working and i have to restart the session. > > Something like using > > g_thread_get_initialized() should work > (defcfun "g_thread_get_initialized" :gboolean :void) o > Sorry for the long delay before answering. Yes, this is a good idea, I'll add this check. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 198 bytes Desc: This is a digitally signed message part. URL: From seth at tewebs.com Sat Sep 12 20:48:15 2009 From: seth at tewebs.com (Seth Burleigh) Date: Sat, 12 Sep 2009 15:48:15 -0500 Subject: [cl-gtk2-devel] Look and Feel On Windows Vista? Message-ID: <000301ca33ea$5b4dce30$11e96a90$@com> I have no clue if this question belongs here, but I'm experiencing some issues with look and feel. Looking at the Glade 3 representation of my gui, it looks great, But when I actually execute the xml file using this, it looks like something from the stone age. The menu bar most definitely does not have the gradient it has In glade 3 and neither does the scroll bar, etc. Rather is looks slightly raised and then pure flat and gray. Has anyone had problems with this? Heck, I would include a picture, but I think this mailing list doesn't allow that. -------------- next part -------------- An HTML attachment was scrubbed... URL: From seth at tewebs.com Sat Sep 12 19:04:14 2009 From: seth at tewebs.com (Seth Burleigh) Date: Sat, 12 Sep 2009 14:04:14 -0500 Subject: [cl-gtk2-devel] Dll loading patch for window Message-ID: <000001ca33db$d2e221d0$78a66570$@com> The following should be changed to allow the loading of dlls on windows. GDK Folder gdk.package.lisp (eval-when (:compile-toplevel :load-toplevel :execute) (define-foreign-library gdk (:unix (:or "libgdk-x11-2.0.so.0" "libgdk-x11-2.0.so")) (:win32 "libgdk-win32-2.0-0.dll") (t (:default "libgdk-2.0"))) #+win32 (define-foreign-library gdk-pixbuf (:win32 (:or "libgdk-pixbuf-win32-2.0-0" "libgdk-pixbuf-2.0-0.dll")))) (use-foreign-library gdk) #+win32 (use-foreign-library gdk-pixbuf) GLIB FOLDER glib.lisp (eval-when (:compile-toplevel :load-toplevel :execute) (define-foreign-library glib (:unix (:or "libglib-2.0.so.0" "libglib-2.0.so")) (:win32 "libglib-2.0-0.dll") (t (:default "libglib-2.0")))) (eval-when (:compile-toplevel :load-toplevel :execute) (define-foreign-library gthread (:unix (:or "libgthread-2.0.so.0" "libgthread-2.0.so")) (:win32 "libgthread-2.0-0.dll") (t (:default "libgthread-2.0")))) gobject.init.lisp (eval-when (:compile-toplevel :load-toplevel :execute) (cffi:define-foreign-library gobject (:unix (:or "libgobject-2.0.so.0" "libgobject-2.0.so")) (:win32 "libgobject-2.0-0.dll") (t (:default "libgobject-2.0")))) GTK FOLDER gk.package.lisp (eval-when (:compile-toplevel :load-toplevel :execute) (define-foreign-library gtk (:unix (:or "libgtk-x11-2.0.so.0" "libgtk-x11-2.0.so")) (:win32 (:or "libgtk-2.0-0.dll" "libgtk-win32-2.0-0.dll")) (t (:default "libgtk-2.0")))) GTK GLEXT FOLDER (eval-when (:compile-toplevel :load-toplevel :execute) (define-foreign-library gtkglext (:unix (:or "libgtkglext-x11-1.0.so.0" "libgtkglext-x11-1.0.so")) (:win32 "libgtkglext-win32-1.0-0.dll") (t (:default "libgtkglext-1.0"))) (define-foreign-library gdkglext (:unix (:or "libgdkglext-x11-1.0.so.0" "libgdkglext-x11-1.0.so")) (:win32 "libgtkglext-win32-1.0-0.dll") (t (:default "libgdkglext-1.0")))) -------------- next part -------------- An HTML attachment was scrubbed... URL: