From mcgaughy@cox-internet.com Sun Jul 1 05:11:27 2001 From: mcgaughy@cox-internet.com (McGaughy) Date: Sat, 30 Jun 2001 23:11:27 -0500 Subject: [Glade-users] help Message-ID: <002801c101e3$e657c400$8e48b4d0@tcac.net> This is a multi-part message in MIME format. ------=_NextPart_000_0025_01C101B9.FD4639A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable i am trying to make a front-end for mpg123 for my own personal use. i = have figured out how to make it browse the file structure, which wasn't = hard, but i need to know how to run mpg123 after an mp3 was selected. i = wouldn't mind also having help on loading the selected file into the = list widget... thanks... ------=_NextPart_000_0025_01C101B9.FD4639A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
i am trying to make a front-end for = mpg123 for my=20 own personal use. i have figured out how to make it browse the file = structure,=20 which wasn't hard, but i need to know how to run mpg123 after an mp3 was = selected. i wouldn't mind also having help on loading the selected file = into the=20 list widget...
 
thanks...
------=_NextPart_000_0025_01C101B9.FD4639A0-- From jbrite@webdsi.com Tue Jul 3 11:47:39 2001 From: jbrite@webdsi.com (jbrite) Date: Tue, 3 Jul 2001 05:47:39 -0500 Subject: [Glade-users] more clist Message-ID: <01070305473900.00482@april> Thanks for the people who responded to my last post. Is there a way to add all of the one clist items to another clist, without going through the get_test clist_append ordeal? thanks, -Jeff From alex@uxb.net Thu Jul 5 21:35:40 2001 From: alex@uxb.net (Alex Cruz) Date: Thu, 5 Jul 2001 15:35:40 -0500 Subject: [Glade-users] Newbie 2-pronged question Message-ID: <01070515354001.19171@monkeyluv.deanhealth.com> Hi All, Two Part Question: 1) Can someone point me to a tutorial URL (if one exists). 2) Does Glade have the ability to assign a mini-icon that can be displayed in the Gnome Tasklist or is that done at the window manager level? And if the wm, where can I find documentation on how to do it? Thanks. ac From decibel8@home.com Tue Jul 10 04:45:41 2001 From: decibel8@home.com (david) Date: Mon, 09 Jul 2001 22:45:41 -0500 Subject: [Glade-users] Click Button send text to List : Problem Message-ID: <3B4A7A65.1090904@home.com> I thought I could figure this out, I have a little background in C programming, but I can't figure out what to do. Seems that most tutorials I find must be using an older version of Glade (using glade-0.6.2-1mdk). I am using the Glade to build the interface, I have been able to print out text in a combo box if I open with a terminal, the text will print out. I have tried numerous examples but can't make it print to the list widget. From most stuff I read it says to edit the *CALLBACK.C* file. I have shown one part of it below, with the print part left out that I had in before. ----------------------------------------------------------------- void on_man_ok_button_clicked (GtkButton *button, gpointer user_data) { GtkWidget *combo_man_entry; gchar *man_cmd; combo_man_entry = lookup_widget(GTK_WIDGET(button), "combo_man_entry"); man_cmd = gtk_entry_get_text(GTK_ENTRY(combo_man_entry)); } ---------------------------------------------------------------- Could someone please help me on what to do next. Do I have to edit another file? Add another signal and handler for the_ Less_ (ie List) _Widget_? I so, how do I tie it back to the specific button clicked? I have several buttons that do the same thing, they take a command that I have listed in a _ComboBox Widget_, when the /specific /_OkButton Widget_ is pressed it is suppose to send it to the_ List Widget_ I created. It will never show, I have never gotten anything to show up in the _List Widget_. Help Please. Thanks. From decibel8@home.com Tue Jul 10 04:51:24 2001 From: decibel8@home.com (david) Date: Mon, 09 Jul 2001 22:51:24 -0500 Subject: [Glade-users] Click Button send text to List : Problem (Sorry sent plain text first one and it may be unreadable) Message-ID: <3B4A7BBC.5050306@home.com> This is a multi-part message in MIME format. --------------080901080106050908010805 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit I thought I could figure this out, I have a little background in C programming, but I can't figure out what to do. Seems that most tutorials I find must be using an older version of Glade (using glade-0.6.2-1mdk). I am using Glade to build the interface, I have been able to print out text in a combo box if I open with a terminal, the text will print out. I have tried numerous examples but can't make it print to the list widget. From most stuff I read it says to edit the CALLBACK.C file. I have shown one part of it below, with the print part left out that I had in before. ----------------------------------------------------------------- void on_man_ok_button_clicked (GtkButton *button, gpointer user_data) { GtkWidget *combo_man_entry; gchar *man_cmd; combo_man_entry = lookup_widget(GTK_WIDGET(button), "combo_man_entry"); man_cmd = gtk_entry_get_text(GTK_ENTRY(combo_man_entry)); } ---------------------------------------------------------------- Could someone please help me on what to do next. Do I have to edit another file? Add another signal and handler for the Less (ie List) Widget? I so, how do I tie it back to the specific button clicked? I have several buttons that do the same thing, they take a command that I have listed in a ComboBox Widget , when the specific OkButton Widget is pressed it is suppose to send it to the List Widget I created. It will never show, I have never gotten anything to show up in the List Widget. Help Please. Thanks. --------------080901080106050908010805 Content-Type: message/rfc822; name="Click Button send text to List : Problem" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Click Button send text to List : Problem" From decibel8@home.com Tue Jul 10 04:45:41 2001 From: decibel8@home.com (david) Date: Mon, 09 Jul 2001 22:45:41 -0500 Subject: Click Button send text to List : Problem Message-ID: <3B4A7A65.1090904@home.com> I thought I could figure this out, I have a little background in C programming, but I can't figure out what to do. Seems that most tutorials I find must be using an older version of Glade (using glade-0.6.2-1mdk). I am using the Glade to build the interface, I have been able to print out text in a combo box if I open with a terminal, the text will print out. I have tried numerous examples but can't make it print to the list widget. From most stuff I read it says to edit the *CALLBACK.C* file. I have shown one part of it below, with the print part left out that I had in before. ----------------------------------------------------------------- void on_man_ok_button_clicked (GtkButton *button, gpointer user_data) { GtkWidget *combo_man_entry; gchar *man_cmd; combo_man_entry = lookup_widget(GTK_WIDGET(button), "combo_man_entry"); man_cmd = gtk_entry_get_text(GTK_ENTRY(combo_man_entry)); } ---------------------------------------------------------------- Could someone please help me on what to do next. Do I have to edit another file? Add another signal and handler for the_ Less_ (ie List) _Widget_? I so, how do I tie it back to the specific button clicked? I have several buttons that do the same thing, they take a command that I have listed in a _ComboBox Widget_, when the /specific /_OkButton Widget_ is pressed it is suppose to send it to the_ List Widget_ I created. It will never show, I have never gotten anything to show up in the _List Widget_. Help Please. Thanks. --------------080901080106050908010805-- From damon@ximian.com Tue Jul 10 04:42:21 2001 From: damon@ximian.com (Damon Chaplin) Date: Mon, 09 Jul 2001 23:42:21 -0400 Subject: [Glade-users] Date Conversion Problem References: <20010629150721.2610.qmail@mailFA9.rediffmail.com> Message-ID: <3B4A799D.9EE4B159@ximian.com> Shivdeep Krishnan wrote: > > I am having problems with GDate / dateedit widget. > > 1. got date from dateedit and stored in a time_t. > 2. converted time_t to struct tm using localtime( ) > 3. passed struct tm value to a function > > In passing the struct tm to a function and then converting it to GDate and then I increment the GDate by 1 using g_date_add_days().Then I convert it back to struct tm using the g_date_to_struct_tm().But when I try to print it I get junk value for the year part. Please help me. The year field in struct tm is the year since 1900, e.g. 2001 is stored as 101. Is that the problem? Damon From damon@ximian.com Tue Jul 10 04:46:35 2001 From: damon@ximian.com (Damon Chaplin) Date: Mon, 09 Jul 2001 23:46:35 -0400 Subject: [Glade-users] Newbie 2-pronged question References: <01070515354001.19171@monkeyluv.deanhealth.com> Message-ID: <3B4A7A9B.41D6FFC9@ximian.com> Alex Cruz wrote: > > Hi All, > > Two Part Question: > > 1) Can someone point me to a tutorial URL (if one exists). There is a FAQ on http://glade.gnome.org (A tutorial is included with Glade, but only shown in the Gnome version.) > 2) Does Glade have the ability to assign a mini-icon that can be displayed in > the Gnome Tasklist or is that done at the window manager level? And if the > wm, where can I find documentation on how to do it? Glade can't do it. gdk_window_set_icon() may be what you want. Damon From casacruz@bellatlantic.net Wed Jul 11 15:11:24 2001 From: casacruz@bellatlantic.net (John J. Cruz) Date: Wed, 11 Jul 2001 10:11:24 -0400 Subject: [Glade-users] Newbie 2-pronged question References: <01070515354001.19171@monkeyluv.deanhealth.com> <3B4A7A9B.41D6FFC9@ximian.com> Message-ID: <3B4C5E8C.537BD60D@bellatlantic.net> This is a multi-part message in MIME format. --------------829C77B087CAF401D7652E82 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I'm at work so I don't have all the facts. If you add a second task bar/menu panel say on the top or use the current panel, install a blank applet, add the path to Glade, and change the icon to Glade. There is a Glade icon in /usr/share .xpm (not sure of the directories or the extension) that you can use. If you need further detail info, email and I'll get the info from home and send it to you. Good luck. jjc PS: I'm assuming you're using GNOME ver. 1.0 or greater. Damon Chaplin wrote: > Alex Cruz wrote: > > > > Hi All, > > > > Two Part Question: > > > > 1) Can someone point me to a tutorial URL (if one exists). > > There is a FAQ on http://glade.gnome.org > (A tutorial is included with Glade, but only shown in the Gnome version.) > > > > 2) Does Glade have the ability to assign a mini-icon that can be displayed in > > the Gnome Tasklist or is that done at the window manager level? And if the > > wm, where can I find documentation on how to do it? > > Glade can't do it. > > gdk_window_set_icon() may be what you want. > > Damon > > _______________________________________________ > Glade-users maillist - Glade-users@ximian.com > http://lists.ximian.com/mailman/listinfo/glade-users --------------829C77B087CAF401D7652E82 Content-Type: text/x-vcard; charset=us-ascii; name="casacruz.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for John J. Cruz Content-Disposition: attachment; filename="casacruz.vcf" begin:vcard n:Cruz;John J. x-mozilla-html:FALSE org:BAE Systems;Naval Systems/AEGIS Radar Engineer Group version:2.1 email;internet:casacruz@bellatlanatic.net title:Radar Systems Engineer adr;quoted-printable:;;2361 Jefferson Davis Highway=0D=0ACentury II Building, Suite 1014=0D=0AArlington, VA 22202 USA;;;; note;quoted-printable:August 17, 2001 BAE Systems is moving to the Washington Navy =0D=0AYards. No indoor parking, no office, no power lunches. A METRO =0D=0Acommuter, brown bag lunches, and an office that fits in my cat's =0D=0Apoop box.=0D=0A=0D=0ALinux user since Red Hat 5.2 (1998), currently using rh 6.2, and =0D=0Awill upgrade to rh 7.2 when it is released.=0D=0A=0D=0ARed Hat Linux -- so dependable, your server might get a little bored. fn:John J. Cruz end:vcard --------------829C77B087CAF401D7652E82-- From jbrite@webdsi.com Wed Jul 11 21:48:57 2001 From: jbrite@webdsi.com (jbrite) Date: Wed, 11 Jul 2001 15:48:57 -0500 Subject: [Glade-users] Click Button send text to List : Problem (Sorry sent plain text first one and it may be unreadable) In-Reply-To: <3B4A7BBC.5050306@home.com> References: <3B4A7BBC.5050306@home.com> Message-ID: <01071115485700.00470@april> Hi Dave, I'm a rookie my self, but I'll tell you what I've figured out, I'm using GLADE 0.5.11 The only file I'm edited in my programs is the callbacks.c. I had to modify the main window once because it opened all the dialog boxes at the wrong start of the program, but that's the only time. (though I haven't compleated a progject yet. I haven't messed with the GtkCombo box yet, but here is what my book says the code should be... gchar * selectedvalue; selectedvalue = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(combo) -> entry)); I think you were missing the ' ->entry' part. If this doesn't help you, I try getting it to work on my end and help you out. I'm been able to get all the other widgets to work for me for the most part. My book that I'm using, which is really good for my level is titled Beginning GTK+/Gnome Programming, by Peter Wright it has a glade tutor which shows you how to make a simple calculater. There is a bunch of sample code, which you can get online, www.wrox.com. Another useful resorce is the the GTK+ resference web page, http://developer.gnome.org/doc/API/gtk/index.html Hope that helps, -jeff On Monday 09 July 2001 22:51, you wrote: > > I thought I could figure this out, I have a little background in C > programming, but I can't figure out what to do. Seems that most > tutorials I find must be using an older version of Glade (using > glade-0.6.2-1mdk). > > I am using Glade to build the interface, I have been able to print out > text in a combo box if I open with a terminal, the text will print > out. I have tried numerous examples but can't make it print to the > list widget. From most stuff I read it says to edit the CALLBACK.C > file. I have shown one part of it below, with the print part left out > that I had in before. > ----------------------------------------------------------------- > > void > on_man_ok_button_clicked (GtkButton *button, > gpointer > user_data) > { > GtkWidget *combo_man_entry; > gchar *man_cmd; > combo_man_entry = lookup_widget(GTK_WIDGET(button), "combo_man_entry"); > man_cmd = gtk_entry_get_text(GTK_ENTRY(combo_man_entry)); > > > } > > ---------------------------------------------------------------- > > Could someone please help me on what to do next. Do I have to edit > another file? Add another signal and handler for the Less (ie List) > Widget? I so, how do I tie it back to the specific button clicked? > > I have several buttons that do the same thing, they take a command that > I have listed in a ComboBox Widget , when the specific OkButton Widget > is pressed it is suppose to send it to the List Widget I created. It > will never show, I have never gotten anything to show up in the List > Widget. > > Help Please. Thanks. ---------------------------------------- Content-Type: message/rfc822; charset="us-ascii"; name="Click Button send text to List : Problem" Content-Transfer-Encoding: 7bit Content-Description: ---------------------------------------- From maldonado@ibiquity.com Thu Jul 12 12:46:45 2001 From: maldonado@ibiquity.com (Lourdes Maldonado) Date: Thu, 12 Jul 2001 07:46:45 -0400 Subject: [Glade-users] GtkFileSelection Message-ID: <6AC325EB1D98F84B986D83F985121C1F16FD18@radioflyer.ibocradio.com> How can I detected when the user starts typing in the selection field of a GtkFileSelection widget? I added a button_press_event and a key_press_event to my GtkFileSelection widget but this doesn't seem to work (I get a button_press_event when the Create Dir, Rename File and Delete File buttons in the GtkFileSelection widget are pressed but not when I click on the Selection field). Thanks for any help. Lourdes T. Maldonado From jbloodworth@sc.rr.com Fri Jul 13 08:05:08 2001 From: jbloodworth@sc.rr.com (Jay Bloodworth) Date: 13 Jul 2001 03:05:08 -0400 Subject: [Glade-users] Spinbutton Max Value/GtkToolbars Message-ID: <995007908.1204.3.camel@cae88-126-210.sc.rr.com> The max value entry on the GtkSpinButton properties dialog does not seem to want to hold a value different from 100. I can enter a greater value, but it is not saved, and if I go to another widget and return, the value changed back to 100. Is this a known bug, or am making a silly mistake? Another problem I'm having is that setting a toolbar to ICONS_ONLY (in properties) does not seem to be being honored. It is written correctly to the xml file, so I suppose the proble actually belongs to either libglade or gtk, but I thought I'd check here. Finally, how do you insert a space/seperator into a toolbar? Thanks in advance, Jay From jbrite@webdsi.com Fri Jul 13 11:02:08 2001 From: jbrite@webdsi.com (jbrite) Date: Fri, 13 Jul 2001 05:02:08 -0500 Subject: [Glade-users] Spinbutton Max Value/GtkToolbars In-Reply-To: <995007908.1204.3.camel@cae88-126-210.sc.rr.com> References: <995007908.1204.3.camel@cae88-126-210.sc.rr.com> Message-ID: <01071305020800.00485@april> The program I'm working on now using spin buttons. I have 4 one is set to 27 and the others are set to max out at 20. The only silly misake, if that is it could be if after you change you don't save, build afer the changes. I guess you might need to revert to saved on any files you weere editing after and had opened like the callback.c, but I don't think that would effect it. You got me, I don't have any answers, but I do know you can set the spin values lower than 100. I'm using Glade 5.11. -Jeff On Friday 13 July 2001 02:05, you wrote: > The max value entry on the GtkSpinButton properties dialog does not seem > to want to hold a value different from 100. I can enter a greater > value, but it is not saved, and if I go to another widget and return, > the value changed back to 100. Is this a known bug, or am making a > silly mistake? > > Another problem I'm having is that setting a toolbar to ICONS_ONLY (in > properties) does not seem to be being honored. It is written correctly > to the xml file, so I suppose the proble actually belongs to either > libglade or gtk, but I thought I'd check here. > > Finally, how do you insert a space/seperator into a toolbar? > > Thanks in advance, > Jay > > > _______________________________________________ > Glade-users maillist - Glade-users@ximian.com > http://lists.ximian.com/mailman/listinfo/glade-users From friends@openxxx.net Sun Jul 15 02:34:32 2001 From: friends@openxxx.net (friends@openxxx.net) Date: 14 Jul 2001 18:34:32 -0700 Subject: [Glade-users] Hello, your friend recommended openxxx to you Message-ID: You have been invited to check out this adult site by one of your friends who visited us. our URL is http://www.openxxx.net/ enjoy, OpenXXX TEAM 2001 From bje@apnic.net Mon Jul 16 04:19:05 2001 From: bje@apnic.net (Byron Ellacott) Date: Mon, 16 Jul 2001 13:19:05 +1000 (EST) Subject: [Glade-users] Spinbutton Max Value/GtkToolbars In-Reply-To: <995007908.1204.3.camel@cae88-126-210.sc.rr.com> Message-ID: On 13 Jul 2001, Jay Bloodworth wrote: > The max value entry on the GtkSpinButton properties dialog does not seem > to want to hold a value different from 100. I can enter a greater > value, but it is not saved, and if I go to another widget and return, > the value changed back to 100. Is this a known bug, or am making a > silly mistake? This appears to be functioning correctly for me with glade 0.5.11. > Another problem I'm having is that setting a toolbar to ICONS_ONLY (in > properties) does not seem to be being honored. It is written correctly > to the xml file, so I suppose the proble actually belongs to either > libglade or gtk, but I thought I'd check here. Are you generating source or using libglade to load an xml file? Which version of glade/libglade are you using? > Finally, how do you insert a space/seperator into a toolbar? Select the tool you wish a separator to be before, and click Yes for "New Group" in the Place tab of its properties. -- bje From chavez@us.ibm.com Mon Jul 16 16:30:33 2001 From: chavez@us.ibm.com (Luciano Chavez) Date: 16 Jul 2001 10:30:33 -0500 Subject: [Glade-users] how to reorganize interface.c and callbacks.c Message-ID: <995297433.9669.31.camel@localhost.localdomain> I am using Glade 0.6.2. The callback.c and interface.c files are getting very large now. I have decided to reorganize the code into something more logical and manageable. All the callbacks and dialog creation functions that go together are placed in their own source file with its own header.I changed the Makefile.am file and Potfiles.in accordingly. My situation is this now...to make a small change to a dialog regenerates the large interfaces.c file where I then have to update the new source file from the generated dialog code and remove the interface.c and interface.h files. This is tedious, is there a better and easier way? regards, Luciano Chavez From jimedwards@altavista.com Mon Jul 16 18:34:19 2001 From: jimedwards@altavista.com (Jim Edwards) Date: Mon, 16 Jul 2001 17:34:19 +0000 Subject: [Glade-users] glade2perl: Attempt to free unreferenced scalar during global destruction. Message-ID: <3B53259B.8F00FFDE@inmet.gov.br> Hi, I am getting an error message on exit of my glade2perl generated program "Attempt to free unreferenced scalar during global destruction." In my attempt to get rid of it I�ve traced its existence to a call to my $widget = new OpenGridFile where the new subroutine is glade2perl generated. Does anyone else get this message and/or know how to get rid of it? (using perl 5.6.0, cvs gnome-perl ) Thanks, Jim From huvarela@alumnos.ubiobio.cl Sun Jul 15 19:57:29 2001 From: huvarela@alumnos.ubiobio.cl (huvarela@alumnos.ubiobio.cl) Date: Sun, 15 Jul 2001 14:57:29 -0400 (CLT) Subject: [Glade-users] how to reorganize interface.c and callbacks.c In-Reply-To: <995297433.9669.31.camel@localhost.localdomain> References: <995297433.9669.31.camel@localhost.localdomain> Message-ID: <995223449.3b51e799b9431@alumnos.ubiobio.cl> Mensaje citado por: Luciano Chavez : > I am using Glade 0.6.2. The callback.c and interface.c files are > getting > very large now. I have decided to reorganize the code into something > more logical and manageable. All the callbacks and dialog creation > functions that go together are placed in their own source file with > its > own header.I changed the Makefile.am file and Potfiles.in accordingly. > > My situation is this now...to make a small change to a dialog > regenerates the large interfaces.c file where I then have to update > the > new source file from the generated dialog code and remove the > interface.c and interface.h files. This is tedious, is there a better > and easier way? > > regards, > > Luciano Chavez > > First See about libglade for load the screen dinamically email : huvarela@alumnos.ubiobio.cl URL : http://cronos.dci.ubiobio.cl/~huvarela From f.parzefall@multitest.de Tue Jul 17 06:41:44 2001 From: f.parzefall@multitest.de (f.parzefall@multitest.de) Date: Tue, 17 Jul 2001 07:41:44 +0200 Subject: [Glade-users] how to display images? Message-ID: Hello, I'm quite new to glade and this may be a stupid question, but I searched anything I could find and did�t find an answer: I have a picture from a frame grabber and want to display it. How do I do this? I tried quite a lot but the only thing I managed to do was displaying a gdk-bitmap generated with gdk_image_new_bitmap() with gtk_set_image() in a GtkImage widget. But since a bitmap is just black and white this was not quite what I wanted. All the other things I tried like the draw and rgb functions required a Gdk-graphics-context I didn't know where to get from. Can anyone tell me how to solve this or point me where I find a solution? Thanks, Franz ------------------------------------------------------------------ Franz Parzefall Multitest elektronische Systeme GmbH & Co. KG Aeussere Oberaustr. 4 83026 Rosenheim Germany Tel: +49 (0)8031 406 473 Fax: +49 (0)8031 406 420 Email: f.parzefall@multitest.de Web: www.multitest.de ------------------------------------------------------------------ From maldonado@ibiquity.com Tue Jul 17 20:19:43 2001 From: maldonado@ibiquity.com (Lourdes Maldonado) Date: Tue, 17 Jul 2001 15:19:43 -0400 Subject: [Glade-users] Trying to user gtk_toggle_button_set_active Message-ID: <6AC325EB1D98F84B986D83F985121C1F13C50B@radioflyer.ibocradio.com> I am issuing a gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widgetPtr), FALSE) to deselect a toggle button that is presently selected but the button stills looks selected. Thanks for any help. Lourdes T. Maldonado From jimedwards@altavista.com Tue Jul 17 21:08:30 2001 From: jimedwards@altavista.com (Jim Edwards) Date: Tue, 17 Jul 2001 20:08:30 +0000 Subject: [Glade-users] MenuBar and callback data field Message-ID: <3B549B3E.BC1BDFB8@inmet.gov.br> Hi, I�m trying to add a data field to the signals in my GtkMenuItem widgets. I can�t find a place to do that in the Menu Editor (am I missing it?) so I do it by finding the MenuItem widget in the Widget Tree and modifying it there. This works until the next time I modify something in the Menu Editor (for the same MenuBar) - this clobbers all the mods i made to signal handlers for everything in the MenuBar. Is this a bug? Why doesn�t the Menu Editor allow you to add a data item or object to the signal callback? Thanks, Jim From jbrite@webdsi.com Tue Jul 17 22:22:50 2001 From: jbrite@webdsi.com (jbrite) Date: Tue, 17 Jul 2001 16:22:50 -0500 Subject: [Glade-users] how to display images? In-Reply-To: References: Message-ID: <01071716225003.00501@april> Hi Franz, I a rookie too, but here's my input anyway. I've successfully have gotten GtkPixmap to work and GnomePixmapEntry. The GnomePixmapEntry was the easies, i.e. worked as expected, but the GtkPixmap gave me some problems. I used a XMP file by-the-way. Anyway, I told Glade where the XMP was and it showed up in glade just fine. After compiling and running the program, the image wasn't there. I ran the prgram from a command line and it showed an error, couldn't find the file in some location. This wasn't the location I told Glade I wanted it to look. I never could get it to look were I wanted it to. Y\You know waht they say, if you cannot beat'em join'em. I moved the file to where it was looking and it worked. Don't know if that helps you, but good luck, -Jeff On Tuesday 17 July 2001 00:41, f.parzefall@multitest.de wrote: > Hello, > I'm quite new to glade and this may be a stupid question, but I searched > anything I could find and did�t find an answer: > > I have a picture from a frame grabber and want to display it. How do > I do this? > I tried quite a lot but the only thing I managed to do was displaying > a gdk-bitmap generated with gdk_image_new_bitmap() with gtk_set_image() > in a GtkImage widget. But since a bitmap is just black and white this > was not quite what I wanted. All the other things I tried like the > draw and rgb functions required a Gdk-graphics-context I didn't know > where to get from. > Can anyone tell me how to solve this or point me where I find a solution? > > Thanks, > Franz > ------------------------------------------------------------------ > Franz Parzefall > > Multitest elektronische Systeme GmbH & Co. KG > Aeussere Oberaustr. 4 > 83026 Rosenheim > Germany > Tel: +49 (0)8031 406 473 > Fax: +49 (0)8031 406 420 > Email: f.parzefall@multitest.de > Web: www.multitest.de > ------------------------------------------------------------------ > > > _______________________________________________ > Glade-users maillist - Glade-users@ximian.com > http://lists.ximian.com/mailman/listinfo/glade-users From james.cameron@compaq.com Tue Jul 17 23:41:23 2001 From: james.cameron@compaq.com (James Cameron) Date: Wed, 18 Jul 2001 08:41:23 +1000 Subject: [Glade-users] Trying to user gtk_toggle_button_set_active References: <6AC325EB1D98F84B986D83F985121C1F13C50B@radioflyer.ibocradio.com> Message-ID: <3B54BF13.93D6E7F3@stl.dec.com> Lourdes Maldonado wrote: > I am issuing a > gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widgetPtr), FALSE) to > deselect a toggle button that is presently selected but the button > stills looks selected. Use gtk_toggle_button_set_state to set the selected state. The active state is whether the user can touch it. -- James Cameron (james.cameron@compaq.com) http://quozl.linux.org.au/ (or) http://quozl.netrek.org/ From f.parzefall@multitest.de Wed Jul 18 06:20:35 2001 From: f.parzefall@multitest.de (f.parzefall@multitest.de) Date: Wed, 18 Jul 2001 07:20:35 +0200 Subject: Antwort: Re: [Glade-users] how to display images? Message-ID: Hi Jeff, > I've successfully have gotten GtkPixmap to work and GnomePixmapEntry. Thanks for the input, but that not quite what I wanted to do. GtkPixmap put a pixmap at startup. But according to the manual it not possible to use it during runtime because the image is stored on the X-server. Anyway, I already tried this functions and had the same effect as you describe. Seems to be a bug... cu. Franz ------------------------------------------------------------------ Franz Parzefall Multitest elektronische Systeme GmbH & Co. KG Aeussere Oberaustr. 4 83026 Rosenheim Germany Tel: +49 (0)8031 406 473 Fax: +49 (0)8031 406 420 Email: f.parzefall@multitest.de Web: www.multitest.de ------------------------------------------------------------------ From bje@apnic.net Wed Jul 18 07:51:28 2001 From: bje@apnic.net (Byron Ellacott) Date: Wed, 18 Jul 2001 16:51:28 +1000 (EST) Subject: Antwort: Re: [Glade-users] how to display images? In-Reply-To: Message-ID: On Wed, 18 Jul 2001 f.parzefall@multitest.de wrote: > Thanks for the input, but that not quite what I wanted to do. GtkPixmap > put a pixmap at startup. But according to the manual it not possible > to use it during runtime because the image is stored on the X-server. > Anyway, I already tried this functions and had the same effect as you > describe. Seems to be a bug... I do not quite understand what it is you want to do. First, you might be wanting to display a static image, that is, you load it once, and it stays that way for all the time it is on the screen. To do this, a GtkPixmap will work well, by "stored on the X server" the manual means that when the X server goes to display the image, it uses a local copy. Second, you may mean you want to update an image regularly. There are several ways to do this, the way I would recommend most of the time is to use a GtkDrawingArea. See http://users.bigpond.net.au/mlm/planner/ for an example of an application using a GtkDrawingArea (and also a GtkPixmap). You may prefer to use a GtkImage, which displays a GdkImage that you can update. See http://users.bigpond.net.au/mlm/libglade/ for a tutorial I once wrote on using libglade. It covers building a simple GtkDrawingArea application and may be clearer than the (largely uncommented) source code for the above application. I have some code using a GdkImage to display a scrolling text animation, if you wish to see that. -- bje From grigoriy.vovk@linustech.com.cy Fri Jul 20 10:40:27 2001 From: grigoriy.vovk@linustech.com.cy (Grigoriy G. Vovk) Date: Fri, 20 Jul 2001 12:40:27 +0300 (EEST) Subject: [Glade-users] Make problem Message-ID: <20010720122336.T9285-100000@callisto.internal.linustech.com.cy> Hello everyone! I use glade 0.6.2, gtk-1.2.10_2, autoconf-2.13_1, automake-1.4 on FreeBSD 4.3-STABLE. Everything (exept OS :)) compiled from ports. I try to create a very simple project, like "Hello, world!". After biuld the project I do ./autogen.sh and then make. And i've got errors: vovk@callisto [/home/vovk/Projects/project1] > make cd . && autoheader cd . && CONFIG_FILES= CONFIG_HEADERS=config.h /bin/sh ./config.status creating config.h config.h is unchanged make all-recursive Making all in src "Makefile", line 214: Need an operator make: fatal errors encountered -- cannot continue *** Error code 1 Stop in /home/vovk/Projects/project1. *** Error code 1 Stop in /home/vovk/Projects/project1. Ok, I go to src/ and do make - the same result. This line (214 in project1/Makefile) has - distclean-tags: But in project1/src/Makefile this line (214) has - -include $(DEP_FILES) I comment this line and do make again -- vovk@callisto [/home/vovk/Projects/project1/src] > make gcc -g -O2 -Wall -c main.c main.c:10: gtk/gtk.h: No such file or directory In file included from main.c:13: support.h:9: gtk/gtk.h: No such file or directory *** Error code 1 Stop in /home/vovk/Projects/project1/src. So, I don't understand, what should I do? my best regards, ---------------- Grigoriy G. Vovk From z..jy@163.net Mon Jul 23 12:37:14 2001 From: z..jy@163.net (z..jy) Date: Mon, 23 Jul 2001 19:37:14 +0800 Subject: [Glade-users] Is there any way to send multi user-datas to a singal handle? Message-ID: <3B5C0C6A.9F966284@163.net> for example : guint gtk_signal_connect( GtkObject *object, const gchar *name, GtkSignalFunc func, gpointer func_data ); there is only one user-data send to GtkSignalFunc, Is there any way to send multi user-datas to it? From jbrite@webdsi.com Fri Jul 20 06:50:54 2001 From: jbrite@webdsi.com (jbrite) Date: Fri, 20 Jul 2001 00:50:54 -0500 Subject: [Glade-users] gtk_object_unref? Message-ID: <01072000505400.29859@april> My program is crashing and giving me this error message Gtk-CRITICAL **: file gtkobject.c: line 1179 (gtk_object_unref): assertion `object->ref_count > 0' failed. The background. I'm working on this program which has 2 clist in the main window (clist_1 and clist_2), with a button over each. When the button is clicked, it pops up a dialog box with another 2 clist(clist_1a and clist_2b). One clist is a list of things the user can pick (clist_1a). The one on the right is a list of thing the uses has picked (clist_2a). When the user is done, he hits 'okay' and the picked items move to the clist on the main window(clist_1). Same story with (clist_2) but with different options. The problem I'm having right now is that in clist_2, if I open the dialog, hit okay, open again and hit okay, the clist_2 is gone. The scroll bars on the sides are there, but the clist is gone. I used the same basic code to build both boxes, just with different names and information, but this doesn't happen with clist_1 at all. I've tried every combination I could think of, but it will not crash. Open the clist_2 dialog 2 times and it deletes the clsit_2. Anyone have any idea what is happening? Thats, -Jeff From grigoriy.vovk@linustech.com.cy Tue Jul 24 05:21:39 2001 From: grigoriy.vovk@linustech.com.cy (Grigoriy G. Vovk) Date: Tue, 24 Jul 2001 07:21:39 +0300 (EEST) Subject: [Glade-users] Is there any way to send multi user-datas to a singal handle? In-Reply-To: <3B5C0C6A.9F966284@163.net> Message-ID: <20010724072037.M553-100000@callisto.internal.linustech.com.cy> Jul 23, 19:37 +0800, z..jy wrote: > for example : > guint gtk_signal_connect( GtkObject *object, > const gchar *name, > GtkSignalFunc func, > gpointer func_data ); > there is only one user-data send to GtkSignalFunc, > Is there any way to send multi user-datas to it? May be, send a pointer to a structure, where one of the member will be a pointer to a next structure? my best regards, ---------------- Grigoriy G. Vovk From sven@recif.net Tue Jul 24 08:51:38 2001 From: sven@recif.net (sven) Date: Tue, 24 Jul 2001 09:51:38 +0200 Subject: [Glade-users] gide Message-ID: <20010724075148.EA2B15470@jupiter.recif.net> I just got gide-0.3.5 and tried to compile to use it along with Glade. Unfortunately, it seems that Gide requires Glade-0.8.0 or better. I've got Glade-0.6.2 installed, which seems to be the latest release. Could someone explain me how Gide can look for a release which hasn't been released yet ?? Thanx -- ԿԬ From maldonado@ibiquity.com Tue Jul 24 17:00:08 2001 From: maldonado@ibiquity.com (Lourdes Maldonado) Date: Tue, 24 Jul 2001 12:00:08 -0400 Subject: [Glade-users] entry field Message-ID: <6AC325EB1D98F84B986D83F985121C1F13C516@radioflyer.ibocradio.com> I am trying to determine the cursor position when a button press event is received on an entry field but I have to press twice to get the correct position. The first time I press gtk_editable_get_position returns the previous position where the cursor was at; only after I press again the call to gtk_editable_get_position returns the correct position. gboolean on_enty_keyboard_button_press_event (GtkWidget *widget, GdkEventButton *event, gpointer user_data) { gint cursorPosition = -1; cursorPosition = gtk_editable_get_position(GTK_EDITABLE(widget)); return FALSE; } Can anyone tell me why or what I am doing wrong? Thanks for any help. Lourdes T. Maldonado From reineke@bigfoot.com Tue Jul 24 18:08:04 2001 From: reineke@bigfoot.com (Lars Reineke) Date: Tue, 24 Jul 2001 19:08:04 +0200 Subject: [Glade-users] Still don't get it: (glade-perl) How to return selected file from dialog? Message-ID: <01072419080503.00655@linux> Sorry, I made a mistake in subscribing to the list, so here my posting from the correct address: ------------------------------------------------- Hi, I searched the archives, read the FAQ and the tutorials and I still don't get it: I've got a main window "win_main" and a fileselection dialog. (By the way, I'm referring to glade-perl since I'm not very fluent in C anymore.) In class "win_main" I've got my signal handler: sub on_button2_clicked { my ($class, $data, $object, $instance, $event) = @_; my $me = __PACKAGE__."->on_button2_clicked"; # Get ref to hash of all widgets on our form my $form = $__PACKAGE__::all_forms->{$instance}; my $fs = fileselection1->new(); $fs->TOPLEVEL->show(); } # End of sub on_button2_clicked In class "fileselection1" another one: sub on_ok_button1_clicked { my ($class, $data, $object, $instance, $event) = @_; my $me = __PACKAGE__."->on_button1_clicked"; # Get ref to hash of all widgets on our form my $form = $__PACKAGE__::all_forms->{$instance}; $form->{'fileselection1'}->hide(); } Now, how do I return the selected file? I want to fill an entry widget on "win_main" with it. Am I stupid? Many thanks in advance Lars Reineke From james.cameron@compaq.com Tue Jul 24 00:28:21 2001 From: james.cameron@compaq.com (James Cameron) Date: Tue, 24 Jul 2001 09:28:21 +1000 Subject: [Glade-users] Is there any way to send multi user-datas to a singal handle? References: <3B5C0C6A.9F966284@163.net> Message-ID: <3B5CB315.5772B6A3@stl.dec.com> "z..jy" wrote: > there is only one user-data send to GtkSignalFunc, > Is there any way to send multi user-datas to it? Send a pointer to a struct that contains multiple items. Mail to you bounces because your address z..jy@162.net is invalid according to the internet standard RFC 821. See http://www.faqs.org/rfcs/rfc821.html Section 4.1.2, edited down by me ... ::= "@" ::= | ::= | "." ::= | ::= | "\" ::= any one of the 128 ASCII characters, but not any or ::= "<" | ">" | "(" | ")" | "[" | "]" | "\" | "." | "," | ";" | ":" | "@" """ | the control characters (ASCII codes 0 through 31 inclusive and 127) -- James Cameron (cameron@stl.dec.com) Light at the end of my tunnel: edit down your reply. From james.cameron@compaq.com Mon Jul 23 23:52:10 2001 From: james.cameron@compaq.com (James Cameron) Date: Tue, 24 Jul 2001 08:52:10 +1000 Subject: [Glade-users] Is there any way to send multi user-datas to a singal handle? References: <3B5C0C6A.9F966284@163.net> Message-ID: <3B5CAA9A.58B00A51@stl.dec.com> "z..jy" wrote: > there is only one user-data send to GtkSignalFunc, > Is there any way to send multi user-datas to it? Send a pointer to a struct that contains multiple items. -- James Cameron From reineke@bigfoot.com Tue Jul 24 18:02:09 2001 From: reineke@bigfoot.com (Lars Reineke) Date: Tue, 24 Jul 2001 19:02:09 +0200 Subject: [Glade-users] Still don't get it: (glade-perl) How to return selected file from dialog? Message-ID: <01072419020901.00655@linux> Hi, I searched the archives, read the FAQ and the tutorials and I still don't get it: I've got a main window "win_main" and a fileselection dialog. (By the way, I'm referring to glade-perl since I'm not very fluent in C anymore.) In class "win_main" I've got my signal handler: sub on_button2_clicked { my ($class, $data, $object, $instance, $event) = @_; my $me = __PACKAGE__."->on_button2_clicked"; # Get ref to hash of all widgets on our form my $form = $__PACKAGE__::all_forms->{$instance}; my $fs = fileselection1->new(); $fs->TOPLEVEL->show(); } # End of sub on_button2_clicked In class "fileselection1" another one: sub on_ok_button1_clicked { my ($class, $data, $object, $instance, $event) = @_; my $me = __PACKAGE__."->on_button1_clicked"; # Get ref to hash of all widgets on our form my $form = $__PACKAGE__::all_forms->{$instance}; $form->{'fileselection1'}->hide(); } Now, how do I return the selected file? I want to fill an entry widget on "win_main" with it. Am I stupid? Many thanks in advance Lars Reineke From jbrite@webdsi.com Tue Jul 24 20:39:32 2001 From: jbrite@webdsi.com (jbrite) Date: Tue, 24 Jul 2001 14:39:32 -0500 Subject: [Glade-users] gide In-Reply-To: <20010724075148.EA2B15470@jupiter.recif.net> References: <20010724075148.EA2B15470@jupiter.recif.net> Message-ID: <01072414393200.00499@april> I don't know much about Gide, butI thought it was simulare to Glimmer, which is what I use. Glimmer doesn't even 'know' that I'm using Glade, so Glimmer cannot demained I use a certain release of Glade. If you cannot figure out the gide thing, try Glimmer. Does anyone on this list have a comparision between Glimmer and Gide? -Jeff On Tuesday 24 July 2001 02:51, sven wrote: > I just got gide-0.3.5 and tried to compile to use it along with Glade. > > Unfortunately, it seems that Gide requires Glade-0.8.0 or better. I've got > Glade-0.6.2 installed, which seems to be the latest release. Could someone > explain me how Gide can look for a release which hasn't been released yet > ?? > > Thanx From damon@ximian.com Wed Jul 25 01:36:09 2001 From: damon@ximian.com (Damon Chaplin) Date: 24 Jul 2001 20:36:09 -0400 Subject: [Glade-users] gide In-Reply-To: <20010724075148.EA2B15470@jupiter.recif.net> References: <20010724075148.EA2B15470@jupiter.recif.net> Message-ID: <996010883.18792.23.camel@karuna.ximian.com> On 24 Jul 2001 09:51:38 +0200, sven wrote: > I just got gide-0.3.5 and tried to compile to use it along with Glade. > > Unfortunately, it seems that Gide requires Glade-0.8.0 or better. I've got > Glade-0.6.2 installed, which seems to be the latest release. Could someone > explain me how Gide can look for a release which hasn't been released yet ?? I've just spoken to JP, one of the gide maintainers, and it appears that it is really looking for gal 0.8.0. The error message is incorrect. So you need to get gal 0.8.0. Damon From sven@recif.net Wed Jul 25 09:40:46 2001 From: sven@recif.net (sven) Date: Wed, 25 Jul 2001 10:40:46 +0200 Subject: [Glade-users] gide In-Reply-To: <996010883.18792.23.camel@karuna.ximian.com> References: <20010724075148.EA2B15470@jupiter.recif.net> <996010883.18792.23.camel@karuna.ximian.com> Message-ID: <20010725084041.65CA750C7@jupiter.recif.net> Ok thanks ! Other problems now but at least this one is solved. Anyway, I'll check out for Glimmer too. Le Mercredi 25 Juillet 2001 02:36, Damon Chaplin a �crit � propos de Re: [Glade-users] gide : > On 24 Jul 2001 09:51:38 +0200, sven wrote: > > I just got gide-0.3.5 and tried to compile to use it along with Glade. > > > > Unfortunately, it seems that Gide requires Glade-0.8.0 or better. I've > > got Glade-0.6.2 installed, which seems to be the latest release. Could > > someone explain me how Gide can look for a release which hasn't been > > released yet ?? > > I've just spoken to JP, one of the gide maintainers, and it appears > that it is really looking for gal 0.8.0. The error message is incorrect. > > So you need to get gal 0.8.0. > > Damon -- ԿԬ From f.parzefall@multitest.de Wed Jul 25 14:55:26 2001 From: f.parzefall@multitest.de (f.parzefall@multitest.de) Date: Wed, 25 Jul 2001 15:55:26 +0200 Subject: [Glade-users] how to display images? Message-ID: Hi crowd, thanks to Byron I�m now able to display the images from a frame grabber in a GtkImage widget. The only issue I come across now is that if I grab and display images repeatedly and leave and reenter the screen where my program runs, it sometimes hangs in gdk_draw_gray_image(). Seems that it is just when X11 redraws the window during the execution of gdk_draw_gray_image(). When I run the program in gdb and stop it with [cntrl]-z when it hangs I can get the folowing backtrace: #0 0x402c6caa in _XFlushInt () from /usr/X11R6/lib/libX11.so.6 #1 0x402c6c5b in _XFlush () from /usr/X11R6/lib/libX11.so.6 #2 0x402c3d6a in XSync () from /usr/X11R6/lib/libX11.so.6 #3 0x4026a3e0 in gdk_flush () from /usr/lib/libgdk-1.2.so.0 #4 0x40275310 in gdk_rgb_alloc_scratch_image () from /usr/lib/libgdk-1.2.so.0 #5 0x4027538a in gdk_rgb_alloc_scratch () from /usr/lib/libgdk-1.2.so.0 #6 0x40275604 in gdk_draw_rgb_image_core () from /usr/lib/libgdk-1.2.so.0 #7 0x4027591f in gdk_draw_gray_image () from /usr/lib/libgdk-1.2.so.0 #8 0x804dc5a in image_draw () at callbacks.c:348 The last line is my funktuion that calls gdk_draw_gray_image(). Anyone a clue if this is a bug in X11 or what? I'm running RedHat 6.1 (my frame grabber driver doesnt'n work with newer versions) which is XFree 3.3.6. Thanks, Franz ------------------------------------------------------------------ Franz Parzefall Multitest elektronische Systeme GmbH & Co. KG Aeussere Oberaustr. 4 83026 Rosenheim Germany Tel: +49 (0)8031 406 473 Fax: +49 (0)8031 406 420 Email: f.parzefall@multitest.de Web: www.multitest.de ------------------------------------------------------------------ From AlexanderS@ati.com Wed Jul 25 16:30:17 2001 From: AlexanderS@ati.com (Alexander Stohr) Date: Wed, 25 Jul 2001 17:30:17 +0200 Subject: [Glade-users] Win32 Support? Message-ID: <69BE3E0F8723D511BFF80008C74C3E201F9C7A@fgl00exh01.atitech.com> Is glade capable of running on the Win32 platform? GTK+ and TheGIMP at least do. From AlexanderS@ati.com Wed Jul 25 16:31:15 2001 From: AlexanderS@ati.com (Alexander Stohr) Date: Wed, 25 Jul 2001 17:31:15 +0200 Subject: [Glade-users] Pascal export filter? Message-ID: <69BE3E0F8723D511BFF80008C74C3E201F9C7B@fgl00exh01.atitech.com> Does someone know about an XML export filter for pascal (i.e. to gnu pascal or free pascal) ? From jean-christophe.berthon@cgey.com Wed Jul 25 10:05:30 2001 From: jean-christophe.berthon@cgey.com (Jean-Christophe Berthon) Date: Wed, 25 Jul 2001 11:05:30 +0200 Subject: [Glade-users] gide References: <20010724075148.EA2B15470@jupiter.recif.net> <996010883.18792.23.camel@karuna.ximian.com> <20010725084041.65CA750C7@jupiter.recif.net> Message-ID: <009c01c114e8$f47d38e0$afd3430a@sud.capgemini.fr> Hy, Could you please tell me where did you found gIDE because the address I got is not accurate (gide.pn.org)? Thanks a lot, Best regards, --- Jean-Christophe Berthon ----- Original Message ----- From: "sven" To: Sent: Wednesday, July 25, 2001 10:40 AM Subject: Re: [Glade-users] gide > Ok thanks ! Other problems now but at least this one is solved. > Anyway, I'll check out for Glimmer too. > > Le Mercredi 25 Juillet 2001 02:36, Damon Chaplin a �crit � propos de Re: > [Glade-users] gide : > > On 24 Jul 2001 09:51:38 +0200, sven wrote: > > > I just got gide-0.3.5 and tried to compile to use it along with Glade. > > > > > > Unfortunately, it seems that Gide requires Glade-0.8.0 or better. I've > > > got Glade-0.6.2 installed, which seems to be the latest release. Could > > > someone explain me how Gide can look for a release which hasn't been > > > released yet ?? > > > > I've just spoken to JP, one of the gide maintainers, and it appears > > that it is really looking for gal 0.8.0. The error message is incorrect. > > > > So you need to get gal 0.8.0. > > > > Damon > > -- > ԿԬ > > _______________________________________________ > Glade-users maillist - Glade-users@ximian.com > http://lists.ximian.com/mailman/listinfo/glade-users From damon@ximian.com Thu Jul 26 00:00:57 2001 From: damon@ximian.com (Damon Chaplin) Date: 25 Jul 2001 19:00:57 -0400 Subject: [Glade-users] gide In-Reply-To: <009c01c114e8$f47d38e0$afd3430a@sud.capgemini.fr> References: <20010724075148.EA2B15470@jupiter.recif.net> <996010883.18792.23.camel@karuna.ximian.com> <20010725084041.65CA750C7@jupiter.recif.net> <009c01c114e8$f47d38e0$afd3430a@sud.capgemini.fr> Message-ID: <996102057.23314.1.camel@karuna.ximian.com> On 25 Jul 2001 11:05:30 +0200, Jean-Christophe Berthon wrote: > Hy, > > Could you please tell me where did you found gIDE because the address I got > is not accurate (gide.pn.org)? That website died and they don't have a new one yet. The code is in Gnome CVS and probably on ftp.gnome.org. You can also contact them on gnome-devtools@gnome.org Damon From damon@ximian.com Thu Jul 26 00:01:56 2001 From: damon@ximian.com (Damon Chaplin) Date: 25 Jul 2001 19:01:56 -0400 Subject: [Glade-users] Win32 Support? In-Reply-To: <69BE3E0F8723D511BFF80008C74C3E201F9C7A@fgl00exh01.atitech.com> References: <69BE3E0F8723D511BFF80008C74C3E201F9C7A@fgl00exh01.atitech.com> Message-ID: <996102116.23339.3.camel@karuna.ximian.com> On 25 Jul 2001 17:30:17 +0200, Alexander Stohr wrote: > Is glade capable of running on the Win32 platform? > > GTK+ and TheGIMP at least do. Yes, several people have got it running. Damon From smorar@alfonzo.smuts.uct.ac.za Fri Jul 27 04:11:21 2001 From: smorar@alfonzo.smuts.uct.ac.za (Sameer Morar) Date: 27 Jul 2001 05:11:21 +0200 Subject: [Glade-users] Shortcut bar Message-ID: <996203482.12544.1.camel@edge> Hi all Is there any way to create a shortcut bar like the evolution shortcut bar in glade? If not, anyone have any idea on how to do it manually? Thanks Sam -- ----------------------------------------------------------- Sameer H. Morar email: smorar@smuts.uct.ac.za tel: +27 82 424 7323 PGP Key fingerprint: 5AF5 1612 D0FE 0795 156C 154D 48DD 90D5 75F1 6E1E ===========================================================