java-gnome-developer Mailing List for The java-gnome language bindings project (Page 34)
Brought to you by:
afcowie
You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(37) |
Dec
(14) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(2) |
Feb
(20) |
Mar
(20) |
Apr
(8) |
May
|
Jun
(1) |
Jul
(6) |
Aug
(39) |
Sep
(37) |
Oct
(34) |
Nov
(50) |
Dec
(22) |
2002 |
Jan
(7) |
Feb
(13) |
Mar
(32) |
Apr
(16) |
May
(26) |
Jun
(20) |
Jul
(32) |
Aug
(7) |
Sep
(2) |
Oct
(11) |
Nov
(3) |
Dec
(35) |
2003 |
Jan
(11) |
Feb
(3) |
Mar
(8) |
Apr
(3) |
May
(11) |
Jun
(20) |
Jul
(11) |
Aug
(29) |
Sep
(13) |
Oct
(91) |
Nov
(185) |
Dec
(207) |
2004 |
Jan
(108) |
Feb
(171) |
Mar
(207) |
Apr
(113) |
May
(22) |
Jun
(53) |
Jul
(69) |
Aug
(43) |
Sep
(34) |
Oct
(182) |
Nov
(101) |
Dec
(61) |
2005 |
Jan
(86) |
Feb
(45) |
Mar
(106) |
Apr
(67) |
May
(70) |
Jun
(47) |
Jul
(19) |
Aug
(34) |
Sep
(24) |
Oct
(45) |
Nov
(20) |
Dec
(58) |
2006 |
Jan
(21) |
Feb
(21) |
Mar
(16) |
Apr
(24) |
May
(24) |
Jun
(47) |
Jul
(20) |
Aug
(8) |
Sep
(13) |
Oct
(7) |
Nov
(23) |
Dec
(2) |
2007 |
Jan
|
Feb
(14) |
Mar
(3) |
Apr
(11) |
May
(1) |
Jun
(15) |
Jul
(2) |
Aug
(5) |
Sep
(10) |
Oct
(5) |
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
(13) |
Mar
(13) |
Apr
(4) |
May
(2) |
Jun
(1) |
Jul
(5) |
Aug
(7) |
Sep
(2) |
Oct
(14) |
Nov
(11) |
Dec
(12) |
2009 |
Jan
(30) |
Feb
(4) |
Mar
(16) |
Apr
(9) |
May
(9) |
Jun
(7) |
Jul
(6) |
Aug
(3) |
Sep
(14) |
Oct
(8) |
Nov
(12) |
Dec
(9) |
2010 |
Jan
(4) |
Feb
(27) |
Mar
(6) |
Apr
(4) |
May
(3) |
Jun
(13) |
Jul
(6) |
Aug
(15) |
Sep
(15) |
Oct
(12) |
Nov
(11) |
Dec
(9) |
2011 |
Jan
(12) |
Feb
(11) |
Mar
|
Apr
(3) |
May
|
Jun
(3) |
Jul
(1) |
Aug
|
Sep
(1) |
Oct
(8) |
Nov
(1) |
Dec
|
2012 |
Jan
|
Feb
(10) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
(2) |
Sep
(7) |
Oct
(7) |
Nov
|
Dec
(4) |
2013 |
Jan
(8) |
Feb
(1) |
Mar
(1) |
Apr
(2) |
May
(3) |
Jun
(3) |
Jul
(16) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(1) |
2014 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2016 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2018 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Tom T. <tr...@re...> - 2005-11-02 17:46:51
|
>>>>> "Spyros" == Spyros Stathopoulos <fou...@gm...> writes: Spyros> gcj -classpath Spyros> /usr/share/java/gtk2.4.jar:/usr/share/gnome2.8.jar:/usr/share/java/glade2.8.jar Spyros> -lgtkjar2.4 -lgnomejar2.8 -lgladejar2.8 --main=Main -o Main Main.java Spyros> /tmp/ccYlRfbE.o(.text+0x30): In function `main': Spyros> ccADRhVT.i: undefined reference to `Main::class$' Spyros> collect2: ld returned 1 exit status Most frequently this error occurs because 'Main' is not the fully qualified name of the class containing the 'main' method. In this case it looks like it is though... but just to be sure, does Main.java have a 'package' statement in it? Tom |
From: Adam J. <ajo...@re...> - 2005-11-02 16:53:37
|
Spyros, You're right, this is a linker error. Try adding ':/.' to the end of your classpath and see if that helps. Adam Spyros Stathopoulos wrote: > Hi, > I am trying to compile a simple app, which uses Glade with GCJ (GCC > ver. 3.3.5 on SuSE 9.3). > So I type: > > gcj -classpath > /usr/share/java/gtk2.4.jar:/usr/share/gnome2.8.jar:/usr/share/java/glade2.8.jar > -lgtkjar2.4 -lgnomejar2.8 -lgladejar2.8 --main=Main -o Main Main.java > > What I get as a result is: > > /tmp/ccYlRfbE.o(.text+0x30): In function `main': > ccADRhVT.i: undefined reference to `Main::class$' > collect2: ld returned 1 exit status > > I do not have a clue on what to do from that point. It seems like a > linker error (correct me if I am wrong). > Do you have any ideas on what to do? > > Thanx in advance, > Spyros "Foucault" Stathopoulos > > > |
From: Spyros S. <fou...@gm...> - 2005-11-02 16:44:05
|
Hi, I am trying to compile a simple app, which uses Glade with GCJ (GCC ver. 3.3.5 on SuSE 9.3). So I type: gcj -classpath /usr/share/java/gtk2.4.jar:/usr/share/gnome2.8.jar:/usr/share/java/glade2.8= .jar -lgtkjar2.4 -lgnomejar2.8 -lgladejar2.8 --main=3DMain -o Main Main.java What I get as a result is: /tmp/ccYlRfbE.o(.text+0x30): In function `main': ccADRhVT.i: undefined reference to `Main::class$' collect2: ld returned 1 exit status I do not have a clue on what to do from that point. It seems like a linker error (correct me if I am wrong). Do you have any ideas on what to do? Thanx in advance, Spyros "Foucault" Stathopoulos |
From: Daniel G. <dan...@gm...> - 2005-10-31 16:21:33
|
Well, i didn't think that will be than difficult (in other platforms is easy). I think that tabs will be ok... Thanks to all! El lun, 31-10-2005 a las 16:20 +0000, Ismael Juma escribió: > On Mon, 2005-10-31 at 10:59 -0500, Andrew Cowie wrote: > [...] > > If you're committed to the nested layout because of an application > > requirement, you might consider looking writing a plugin to Eclipse. But > > that too would be A Lot Of Work (tm) :) > [...] > > Yes, it seems like what he wants is a docking framework. > > Regards, > Ismael > > > > ------------------------------------------------------- > This SF.Net email is sponsored by the JBoss Inc. > Get Certified Today * Register for a JBoss Training Course > Free Certification Exam for All Training Attendees Through End of 2005 > Visit http://www.jboss.com/services/certification for more information > _______________________________________________ > java-gnome-developer mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer |
From: Ismael J. <ml...@ju...> - 2005-10-31 16:14:30
|
On Mon, 2005-10-31 at 10:59 -0500, Andrew Cowie wrote: [...] > If you're committed to the nested layout because of an application > requirement, you might consider looking writing a plugin to Eclipse. But > that too would be A Lot Of Work (tm) :) [...] Yes, it seems like what he wants is a docking framework. Regards, Ismael |
From: Ismael J. <is...@ju...> - 2005-10-31 16:10:09
|
On Mon, 2005-10-31 at 10:59 -0500, Andrew Cowie wrote: [...] > If you're committed to the nested layout because of an application > requirement, you might consider looking writing a plugin to Eclipse. But > that too would be A Lot Of Work (tm) :) [...] Yes, it seems like what he wants is a docking framework. Regards, Ismael |
From: Andrew C. <an...@op...> - 2005-10-31 15:59:48
|
On Mon, 2005-31-10 at 16:45 +0100, Daniel Gutierrez wrote: > You can see child windows into the parent window I'm no expert, but my sense of what you've been trying to describe might be called "nested windows". "parent-child" tends to be used in GTK to describe the relationship between Widgets, say, a Label is a child of an HBox, which in turn is a child of a VBox, whose parent is ultimately a Window. The thing about "nested windows" is that, in a effect, you have to create your own Window Manager inside the broad canvas of your application. Tiling, minimizing/maximizing, dragging sub-windows... That sounds like A Lot Of Work (tm) to me :) {GTK/GNOME | Linux} programs tend to use a main application window then independent windows (dialogs for specific information requests or displays, and full windows for, say, composing a new email message) for specific work tasks. Tabs are an intermediate solution. If you're committed to the nested layout because of an application requirement, you might consider looking writing a plugin to Eclipse. But that too would be A Lot Of Work (tm) :) AfC Toronto |
From: Daniel G. <dan...@gm...> - 2005-10-31 15:45:52
|
Igor, TOAD is the name of a DDBB developing application. This is a TOra screenshot, a "TOAD like" program http://tora.sourceforge.net/misc.html You can see child windows into the parent window Thanks!! El lun, 31-10-2005 a las 10:37 -0500, Igor Foox escribió: > On Mon, 2005-10-31 at 16:31 +0100, Daniel Gutierrez wrote: > > I want to develop an application "TOAD like", with one "parent" window > > and others that will be opened into the "parent". Only this... > > Hi Daniel, I'm not sure what TOAD is, but if you could provide a link to > a screenshot to something similar to what you're trying to achieve it > might be helpful. > > Igor > > > > > > El lun, 31-10-2005 a las 10:27 -0500, Igor Foox escribió: > > > Hi Daniel, > > > > > > I'm not sure if this is exactly what you are looking for (parent-child > > > relationship), but there is an attribute in Glade which can set a window > > > to not be visible on start-up. If you go to the 'Common' tab in the > > > 'Properties' window in glade and set the window's 'Visible' property to > > > 'No' then it will not be visible on startup. Then you can set it to Yes > > > from the application. > > > > > > Igor > > > > > > On Mon, 2005-10-31 at 16:15 +0100, Daniel Gutierrez wrote: > > > > Thanks... > > > > > > > > but i had already put this values in my glade project. In other way, i > > > > have tried put the values in code and the result is the same: the child > > > > window is opened out the parent window. > > > > > > > > Its possible do that i want in java-gnome? I think that isn't easy... I > > > > hoped that was than easy like set the parent or childs with a method. > > > > Why methods like getParent() and not exists setParent()??? > > > > > > > > What widgets must put into parent window to contains their childs > > > > windows?? > > > > > > > > Is my point of view completely wrong?? > > > > > > > > Is valid to me a link o a document that explains this... I searched into > > > > API, google... > > > > > > > > Sorry for my insistence, but this is becoming something personal... > > > > > > > > Thanks in advance!! > > > > > > > > > > > > El lun, 31-10-2005 a las 07:45 -0500, Jeff Morgan escribió: > > > > > Daniel, > > > > > > > > > > The primary way to identify a window as a "parent" is to construct > > > > > it as a GtkWindow and then use the GtkWindowType GTK_WINDOW_TOPLEVEL. > > > > > The other windows can be created with the GtkWindowType > > > > > GTK_WINDOW_POPUP. You will of course have to set the > > > > > modality based upon your application needs. > > > > > > > > > > -Jeff > > > > > > > > > > > > > > > On 10/31/05, Daniel Gutierrez <dan...@gm...> wrote: > > > > > Thanks Andrew, > > > > > > > > > > i think that i don't understand you or i not explain the > > > > > problem > > > > > correctly, but i have same problem: i don't know how set the > > > > > parent > > > > > window in the application. I don't know if is a property in a > > > > > Window > > > > > object or i must set in each soon window who is his parent (i > > > > > have > > > > > getParentWindow() method, but not setParentWindow()). > > > > > > > > > > I suppose that this is a trivial thing, but after search a lot > > > > > of time, > > > > > i not find the solution. > > > > > > > > > > Thanks in advance!! > > > > > > > > > > El dom, 30-10-2005 a las 19:35 -0500, Andrew Cowie escribió: > > > > > > On Sun, 2005-30-10 at 19:31 +0100, Daniel Gutierrez wrote: > > > > > > > > > > > > > tell to glade which window must be focused when the > > > > > program starts > > > > > > > > > > > > This may not be exactly what you want, but calling > > > > > Window.present() may > > > > > > do the trick: > > > > > > > > > > > > >From the JavaDoc: > > > > > > > > > > > > Presents a window to the user. This may mean raising > > > > > the window > > > > > > in the stack order, deiconifying it, moving it to > > > > > the current > > > > > > desktop, and/or giving it the keyboard focus, > > > > > possibly dependent > > > > > > on the user's platform, window manager, and > > > > > preferences. If the > > > > > > Window is hidden it will also call show as well. > > > > > > > > > > > > [that's org.gnu.gtk.Window, not org.gnu.gdk.Window]. With > > > > > any Widget w, > > > > > > I tend to call > > > > > > > > > > > > Window top = w.getToplevel (); > > > > > > top.present(); > > > > > > > > > > > > When using Glade, I usually have Window _top as a class > > > > > instance > > > > > > variable that I populate as soon as I get my Glade file > > > > > open, > > > > > > > > > > > > LibGlade glade = new LibGlade(" file.glade", this); > > > > > > _top = (Window) glade.getWidget("my_window_name"); > > > > > > ... > > > > > > _top.present(); > > > > > > > > > > > > so that I always have it around. I find I need it a lot. > > > > > > > > > > > > AfC > > > > > > Toronto > > > > > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > This SF.Net email is sponsored by the JBoss Inc. > > > > > Get Certified Today * Register for a JBoss Training Course > > > > > Free Certification Exam for All Training Attendees Through End > > > > > of 2005 > > > > > Visit http://www.jboss.com/services/certification for more > > > > > information > > > > > _______________________________________________ > > > > > java-gnome-developer mailing list > > > > > jav...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer > > > > > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.Net email is sponsored by the JBoss Inc. > > > > Get Certified Today * Register for a JBoss Training Course > > > > Free Certification Exam for All Training Attendees Through End of 2005 > > > > Visit http://www.jboss.com/services/certification for more information > > > > _______________________________________________ > > > > java-gnome-developer mailing list > > > > jav...@li... > > > > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by the JBoss Inc. > > Get Certified Today * Register for a JBoss Training Course > > Free Certification Exam for All Training Attendees Through End of 2005 > > Visit http://www.jboss.com/services/certification for more information > > _______________________________________________ > > java-gnome-developer mailing list > > jav...@li... > > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer > |
From: Daniel G. <dan...@gm...> - 2005-10-31 15:39:35
|
Adam, thanks to advice me that now is not possible do that i wanted. Is important to know what can do the tools that we use... I will try that you say me... Very thanks!! El lun, 31-10-2005 a las 10:32 -0500, Adam Jocksch escribió: > Daniel, > > I think what you're trying to do is something like JDesktop in Swing, > where you have > one window that has multiple other windows embedded within it (kindof > like some IDEs > or word processors have). AFAIK there's no built in support in GTK for > that, although > you could probably use Layout or Fixed to create something similar. > (I've never tried adding > a window to a Layout or Fixed before, but it would be worth a shot) > > Hope that helps, > > Adam > > Daniel Gutierrez wrote: > > >Thanks... > > > >but i had already put this values in my glade project. In other way, i > >have tried put the values in code and the result is the same: the child > >window is opened out the parent window. > > > >Its possible do that i want in java-gnome? I think that isn't easy... I > >hoped that was than easy like set the parent or childs with a method. > >Why methods like getParent() and not exists setParent()??? > > > >What widgets must put into parent window to contains their childs > >windows?? > > > >Is my point of view completely wrong?? > > > >Is valid to me a link o a document that explains this... I searched into > >API, google... > > > >Sorry for my insistence, but this is becoming something personal... > > > >Thanks in advance!! > > > > > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by the JBoss Inc. > Get Certified Today * Register for a JBoss Training Course > Free Certification Exam for All Training Attendees Through End of 2005 > Visit http://www.jboss.com/services/certification for more information > _______________________________________________ > java-gnome-developer mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer |
From: Igor F. <if...@re...> - 2005-10-31 15:37:32
|
On Mon, 2005-10-31 at 16:31 +0100, Daniel Gutierrez wrote: > I want to develop an application "TOAD like", with one "parent" window > and others that will be opened into the "parent". Only this... Hi Daniel, I'm not sure what TOAD is, but if you could provide a link to a screenshot to something similar to what you're trying to achieve it might be helpful. Igor >=20 > El lun, 31-10-2005 a las 10:27 -0500, Igor Foox escribi=F3: > > Hi Daniel, > >=20 > > I'm not sure if this is exactly what you are looking for (parent-chil= d > > relationship), but there is an attribute in Glade which can set a win= dow > > to not be visible on start-up. If you go to the 'Common' tab in the > > 'Properties' window in glade and set the window's 'Visible' property = to > > 'No' then it will not be visible on startup. Then you can set it to Y= es > > from the application. > >=20 > > Igor > >=20 > > On Mon, 2005-10-31 at 16:15 +0100, Daniel Gutierrez wrote: > > > Thanks... > > >=20 > > > but i had already put this values in my glade project. In other way= , i > > > have tried put the values in code and the result is the same: the c= hild > > > window is opened out the parent window. > > >=20 > > > Its possible do that i want in java-gnome? I think that isn't easy.= .. I > > > hoped that was than easy like set the parent or childs with a metho= d. > > > Why methods like getParent() and not exists setParent()??? > > >=20 > > > What widgets must put into parent window to contains their childs > > > windows?? > > >=20 > > > Is my point of view completely wrong?? > > >=20 > > > Is valid to me a link o a document that explains this... I searched= into > > > API, google... > > >=20 > > > Sorry for my insistence, but this is becoming something personal... > > >=20 > > > Thanks in advance!! > > >=20 > > >=20 > > > El lun, 31-10-2005 a las 07:45 -0500, Jeff Morgan escribi=F3: > > > > Daniel, > > > >=20 > > > > The primary way to identify a window as a "parent" is to construc= t > > > > it as a GtkWindow and then use the GtkWindowType GTK_WINDOW_TOPLE= VEL. > > > > The other windows can be created with the GtkWindowType=20 > > > > GTK_WINDOW_POPUP. You will of course have to set the > > > > modality based upon your application needs. > > > >=20 > > > > -Jeff > > > >=20 > > > >=20 > > > > On 10/31/05, Daniel Gutierrez <dan...@gm...> wrote: > > > > Thanks Andrew, > > > > =20 > > > > i think that i don't understand you or i not explain the > > > > problem > > > > correctly, but i have same problem: i don't know how set = the > > > > parent > > > > window in the application. I don't know if is a property = in a > > > > Window=20 > > > > object or i must set in each soon window who is his paren= t (i > > > > have > > > > getParentWindow() method, but not setParentWindow()). > > > > =20 > > > > I suppose that this is a trivial thing, but after search = a lot > > > > of time, > > > > i not find the solution.=20 > > > > =20 > > > > Thanks in advance!! > > > > =20 > > > > El dom, 30-10-2005 a las 19:35 -0500, Andrew Cowie escrib= i=F3: > > > > > On Sun, 2005-30-10 at 19:31 +0100, Daniel Gutierrez wro= te: > > > > > > > > > > > tell to glade which window must be focused when the > > > > program starts=20 > > > > > > > > > > This may not be exactly what you want, but calling > > > > Window.present() may > > > > > do the trick: > > > > > > > > > > >From the JavaDoc: > > > > > > > > > > Presents a window to the user. This may mean ra= ising > > > > the window=20 > > > > > in the stack order, deiconifying it, moving it = to > > > > the current > > > > > desktop, and/or giving it the keyboard focus, > > > > possibly dependent > > > > > on the user's platform, window manager, and > > > > preferences. If the=20 > > > > > Window is hidden it will also call show as wel= l. > > > > > > > > > > [that's org.gnu.gtk.Window, not org.gnu.gdk.Window]. Wi= th > > > > any Widget w, > > > > > I tend to call > > > > > > > > > > Window top =3D w.getToplevel (); > > > > > top.present(); > > > > > > > > > > When using Glade, I usually have Window _top as a class > > > > instance > > > > > variable that I populate as soon as I get my Glade file > > > > open, > > > > > > > > > > LibGlade glade =3D new LibGlade(" file.glade", = this); > > > > > _top =3D (Window) glade.getWidget("my_window_na= me"); > > > > > ... > > > > > _top.present(); > > > > > > > > > > so that I always have it around. I find I need it a lot. > > > > > > > > > > AfC > > > > > Toronto > > > > > > > > > =20 > > > > =20 > > > > =20 > > > > ------------------------------------------------------- > > > > This SF.Net email is sponsored by the JBoss Inc. > > > > Get Certified Today * Register for a JBoss Training Cours= e=20 > > > > Free Certification Exam for All Training Attendees Throug= h End > > > > of 2005 > > > > Visit http://www.jboss.com/services/certification for mor= e > > > > information > > > > _______________________________________________=20 > > > > java-gnome-developer mailing list > > > > jav...@li... > > > > https://lists.sourceforge.net/lists/listinfo/java-gnome-d= eveloper > > > >=20 > > > >=20 > > >=20 > > >=20 > > >=20 > > > ------------------------------------------------------- > > > This SF.Net email is sponsored by the JBoss Inc. > > > Get Certified Today * Register for a JBoss Training Course > > > Free Certification Exam for All Training Attendees Through End of 2= 005 > > > Visit http://www.jboss.com/services/certification for more informat= ion > > > _______________________________________________ > > > java-gnome-developer mailing list > > > jav...@li... > > > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer > >=20 >=20 >=20 >=20 > ------------------------------------------------------- > This SF.Net email is sponsored by the JBoss Inc. > Get Certified Today * Register for a JBoss Training Course > Free Certification Exam for All Training Attendees Through End of 2005 > Visit http://www.jboss.com/services/certification for more information > _______________________________________________ > java-gnome-developer mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer |
From: Adam J. <ajo...@re...> - 2005-10-31 15:32:35
|
Daniel, I think what you're trying to do is something like JDesktop in Swing, where you have one window that has multiple other windows embedded within it (kindof like some IDEs or word processors have). AFAIK there's no built in support in GTK for that, although you could probably use Layout or Fixed to create something similar. (I've never tried adding a window to a Layout or Fixed before, but it would be worth a shot) Hope that helps, Adam Daniel Gutierrez wrote: >Thanks... > >but i had already put this values in my glade project. In other way, i >have tried put the values in code and the result is the same: the child >window is opened out the parent window. > >Its possible do that i want in java-gnome? I think that isn't easy... I >hoped that was than easy like set the parent or childs with a method. >Why methods like getParent() and not exists setParent()??? > >What widgets must put into parent window to contains their childs >windows?? > >Is my point of view completely wrong?? > >Is valid to me a link o a document that explains this... I searched into >API, google... > >Sorry for my insistence, but this is becoming something personal... > >Thanks in advance!! > > > |
From: Daniel G. <dan...@gm...> - 2005-10-31 15:31:15
|
I want to develop an application "TOAD like", with one "parent" window and others that will be opened into the "parent". Only this... Thanks!! El lun, 31-10-2005 a las 10:27 -0500, Igor Foox escribió: > Hi Daniel, > > I'm not sure if this is exactly what you are looking for (parent-child > relationship), but there is an attribute in Glade which can set a window > to not be visible on start-up. If you go to the 'Common' tab in the > 'Properties' window in glade and set the window's 'Visible' property to > 'No' then it will not be visible on startup. Then you can set it to Yes > from the application. > > Igor > > On Mon, 2005-10-31 at 16:15 +0100, Daniel Gutierrez wrote: > > Thanks... > > > > but i had already put this values in my glade project. In other way, i > > have tried put the values in code and the result is the same: the child > > window is opened out the parent window. > > > > Its possible do that i want in java-gnome? I think that isn't easy... I > > hoped that was than easy like set the parent or childs with a method. > > Why methods like getParent() and not exists setParent()??? > > > > What widgets must put into parent window to contains their childs > > windows?? > > > > Is my point of view completely wrong?? > > > > Is valid to me a link o a document that explains this... I searched into > > API, google... > > > > Sorry for my insistence, but this is becoming something personal... > > > > Thanks in advance!! > > > > > > El lun, 31-10-2005 a las 07:45 -0500, Jeff Morgan escribió: > > > Daniel, > > > > > > The primary way to identify a window as a "parent" is to construct > > > it as a GtkWindow and then use the GtkWindowType GTK_WINDOW_TOPLEVEL. > > > The other windows can be created with the GtkWindowType > > > GTK_WINDOW_POPUP. You will of course have to set the > > > modality based upon your application needs. > > > > > > -Jeff > > > > > > > > > On 10/31/05, Daniel Gutierrez <dan...@gm...> wrote: > > > Thanks Andrew, > > > > > > i think that i don't understand you or i not explain the > > > problem > > > correctly, but i have same problem: i don't know how set the > > > parent > > > window in the application. I don't know if is a property in a > > > Window > > > object or i must set in each soon window who is his parent (i > > > have > > > getParentWindow() method, but not setParentWindow()). > > > > > > I suppose that this is a trivial thing, but after search a lot > > > of time, > > > i not find the solution. > > > > > > Thanks in advance!! > > > > > > El dom, 30-10-2005 a las 19:35 -0500, Andrew Cowie escribió: > > > > On Sun, 2005-30-10 at 19:31 +0100, Daniel Gutierrez wrote: > > > > > > > > > tell to glade which window must be focused when the > > > program starts > > > > > > > > This may not be exactly what you want, but calling > > > Window.present() may > > > > do the trick: > > > > > > > > >From the JavaDoc: > > > > > > > > Presents a window to the user. This may mean raising > > > the window > > > > in the stack order, deiconifying it, moving it to > > > the current > > > > desktop, and/or giving it the keyboard focus, > > > possibly dependent > > > > on the user's platform, window manager, and > > > preferences. If the > > > > Window is hidden it will also call show as well. > > > > > > > > [that's org.gnu.gtk.Window, not org.gnu.gdk.Window]. With > > > any Widget w, > > > > I tend to call > > > > > > > > Window top = w.getToplevel (); > > > > top.present(); > > > > > > > > When using Glade, I usually have Window _top as a class > > > instance > > > > variable that I populate as soon as I get my Glade file > > > open, > > > > > > > > LibGlade glade = new LibGlade(" file.glade", this); > > > > _top = (Window) glade.getWidget("my_window_name"); > > > > ... > > > > _top.present(); > > > > > > > > so that I always have it around. I find I need it a lot. > > > > > > > > AfC > > > > Toronto > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email is sponsored by the JBoss Inc. > > > Get Certified Today * Register for a JBoss Training Course > > > Free Certification Exam for All Training Attendees Through End > > > of 2005 > > > Visit http://www.jboss.com/services/certification for more > > > information > > > _______________________________________________ > > > java-gnome-developer mailing list > > > jav...@li... > > > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer > > > > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by the JBoss Inc. > > Get Certified Today * Register for a JBoss Training Course > > Free Certification Exam for All Training Attendees Through End of 2005 > > Visit http://www.jboss.com/services/certification for more information > > _______________________________________________ > > java-gnome-developer mailing list > > jav...@li... > > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer > |
From: Igor F. <if...@re...> - 2005-10-31 15:28:06
|
Hi Daniel, I'm not sure if this is exactly what you are looking for (parent-child relationship), but there is an attribute in Glade which can set a window to not be visible on start-up. If you go to the 'Common' tab in the 'Properties' window in glade and set the window's 'Visible' property to 'No' then it will not be visible on startup. Then you can set it to Yes from the application. Igor On Mon, 2005-10-31 at 16:15 +0100, Daniel Gutierrez wrote: > Thanks... >=20 > but i had already put this values in my glade project. In other way, i > have tried put the values in code and the result is the same: the child > window is opened out the parent window. >=20 > Its possible do that i want in java-gnome? I think that isn't easy... I > hoped that was than easy like set the parent or childs with a method. > Why methods like getParent() and not exists setParent()??? >=20 > What widgets must put into parent window to contains their childs > windows?? >=20 > Is my point of view completely wrong?? >=20 > Is valid to me a link o a document that explains this... I searched int= o > API, google... >=20 > Sorry for my insistence, but this is becoming something personal... >=20 > Thanks in advance!! >=20 >=20 > El lun, 31-10-2005 a las 07:45 -0500, Jeff Morgan escribi=F3: > > Daniel, > >=20 > > The primary way to identify a window as a "parent" is to construct > > it as a GtkWindow and then use the GtkWindowType GTK_WINDOW_TOPLEVEL. > > The other windows can be created with the GtkWindowType=20 > > GTK_WINDOW_POPUP. You will of course have to set the > > modality based upon your application needs. > >=20 > > -Jeff > >=20 > >=20 > > On 10/31/05, Daniel Gutierrez <dan...@gm...> wrote: > > Thanks Andrew, > > =20 > > i think that i don't understand you or i not explain the > > problem > > correctly, but i have same problem: i don't know how set the > > parent > > window in the application. I don't know if is a property in a > > Window=20 > > object or i must set in each soon window who is his parent (i > > have > > getParentWindow() method, but not setParentWindow()). > > =20 > > I suppose that this is a trivial thing, but after search a lo= t > > of time, > > i not find the solution.=20 > > =20 > > Thanks in advance!! > > =20 > > El dom, 30-10-2005 a las 19:35 -0500, Andrew Cowie escribi=F3= : > > > On Sun, 2005-30-10 at 19:31 +0100, Daniel Gutierrez wrote: > > > > > > > tell to glade which window must be focused when the > > program starts=20 > > > > > > This may not be exactly what you want, but calling > > Window.present() may > > > do the trick: > > > > > > >From the JavaDoc: > > > > > > Presents a window to the user. This may mean raisin= g > > the window=20 > > > in the stack order, deiconifying it, moving it to > > the current > > > desktop, and/or giving it the keyboard focus, > > possibly dependent > > > on the user's platform, window manager, and > > preferences. If the=20 > > > Window is hidden it will also call show as well. > > > > > > [that's org.gnu.gtk.Window, not org.gnu.gdk.Window]. With > > any Widget w, > > > I tend to call > > > > > > Window top =3D w.getToplevel (); > > > top.present(); > > > > > > When using Glade, I usually have Window _top as a class > > instance > > > variable that I populate as soon as I get my Glade file > > open, > > > > > > LibGlade glade =3D new LibGlade(" file.glade", this= ); > > > _top =3D (Window) glade.getWidget("my_window_name")= ; > > > ... > > > _top.present(); > > > > > > so that I always have it around. I find I need it a lot. > > > > > > AfC > > > Toronto > > > > > =20 > > =20 > > =20 > > ------------------------------------------------------- > > This SF.Net email is sponsored by the JBoss Inc. > > Get Certified Today * Register for a JBoss Training Course=20 > > Free Certification Exam for All Training Attendees Through En= d > > of 2005 > > Visit http://www.jboss.com/services/certification for more > > information > > _______________________________________________=20 > > java-gnome-developer mailing list > > jav...@li... > > https://lists.sourceforge.net/lists/listinfo/java-gnome-devel= oper > >=20 > >=20 >=20 >=20 >=20 > ------------------------------------------------------- > This SF.Net email is sponsored by the JBoss Inc. > Get Certified Today * Register for a JBoss Training Course > Free Certification Exam for All Training Attendees Through End of 2005 > Visit http://www.jboss.com/services/certification for more information > _______________________________________________ > java-gnome-developer mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer |
From: Daniel G. <dan...@gm...> - 2005-10-31 15:15:55
|
Thanks... but i had already put this values in my glade project. In other way, i have tried put the values in code and the result is the same: the child window is opened out the parent window. Its possible do that i want in java-gnome? I think that isn't easy... I hoped that was than easy like set the parent or childs with a method. Why methods like getParent() and not exists setParent()??? What widgets must put into parent window to contains their childs windows?? Is my point of view completely wrong?? Is valid to me a link o a document that explains this... I searched into API, google... Sorry for my insistence, but this is becoming something personal... Thanks in advance!! El lun, 31-10-2005 a las 07:45 -0500, Jeff Morgan escribió: > Daniel, > > The primary way to identify a window as a "parent" is to construct > it as a GtkWindow and then use the GtkWindowType GTK_WINDOW_TOPLEVEL. > The other windows can be created with the GtkWindowType > GTK_WINDOW_POPUP. You will of course have to set the > modality based upon your application needs. > > -Jeff > > > On 10/31/05, Daniel Gutierrez <dan...@gm...> wrote: > Thanks Andrew, > > i think that i don't understand you or i not explain the > problem > correctly, but i have same problem: i don't know how set the > parent > window in the application. I don't know if is a property in a > Window > object or i must set in each soon window who is his parent (i > have > getParentWindow() method, but not setParentWindow()). > > I suppose that this is a trivial thing, but after search a lot > of time, > i not find the solution. > > Thanks in advance!! > > El dom, 30-10-2005 a las 19:35 -0500, Andrew Cowie escribió: > > On Sun, 2005-30-10 at 19:31 +0100, Daniel Gutierrez wrote: > > > > > tell to glade which window must be focused when the > program starts > > > > This may not be exactly what you want, but calling > Window.present() may > > do the trick: > > > > >From the JavaDoc: > > > > Presents a window to the user. This may mean raising > the window > > in the stack order, deiconifying it, moving it to > the current > > desktop, and/or giving it the keyboard focus, > possibly dependent > > on the user's platform, window manager, and > preferences. If the > > Window is hidden it will also call show as well. > > > > [that's org.gnu.gtk.Window, not org.gnu.gdk.Window]. With > any Widget w, > > I tend to call > > > > Window top = w.getToplevel (); > > top.present(); > > > > When using Glade, I usually have Window _top as a class > instance > > variable that I populate as soon as I get my Glade file > open, > > > > LibGlade glade = new LibGlade(" file.glade", this); > > _top = (Window) glade.getWidget("my_window_name"); > > ... > > _top.present(); > > > > so that I always have it around. I find I need it a lot. > > > > AfC > > Toronto > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by the JBoss Inc. > Get Certified Today * Register for a JBoss Training Course > Free Certification Exam for All Training Attendees Through End > of 2005 > Visit http://www.jboss.com/services/certification for more > information > _______________________________________________ > java-gnome-developer mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer > > |
From: Jeff M. <ku...@gm...> - 2005-10-31 13:23:06
|
On 10/31/05, Lucie Zahorikova <L.Z...@se...> wrote: > > Hi, > I am planning a little GPL application in Java (using gcj) and I am very > interested in using your Cairo bindings. Can you please be so kind as to > tell me how "usable" your binding currently is? Cairo homepage says "not > suitable", but your project seems to be very active, so it may have chang= ed. > If possible, please express roughly in percents "completeness" of the API= , > how is the documentation and overall stability. Thank you for your work. > Lucie Zahorikova. I would guess that our cairo bindings have about 75-80% api coverage with the primary missing coverage being related to pathing. It is hard to say exactly how "usable" it is since to my knowledge nobody has tried to use it in an application. -Jeff |
From: Jeff M. <ku...@gm...> - 2005-10-31 12:45:56
|
Daniel, The primary way to identify a window as a "parent" is to construct it as a GtkWindow and then use the GtkWindowType GTK_WINDOW_TOPLEVEL. The other windows can be created with the GtkWindowType GTK_WINDOW_POPUP. You will of course have to set the modality based upon your application needs. -Jeff On 10/31/05, Daniel Gutierrez <dan...@gm...> wrote: > > Thanks Andrew, > > i think that i don't understand you or i not explain the problem > correctly, but i have same problem: i don't know how set the parent > window in the application. I don't know if is a property in a Window > object or i must set in each soon window who is his parent (i have > getParentWindow() method, but not setParentWindow()). > > I suppose that this is a trivial thing, but after search a lot of time, > i not find the solution. > > Thanks in advance!! > > El dom, 30-10-2005 a las 19:35 -0500, Andrew Cowie escribi=F3: > > On Sun, 2005-30-10 at 19:31 +0100, Daniel Gutierrez wrote: > > > > > tell to glade which window must be focused when the program starts > > > > This may not be exactly what you want, but calling Window.present() may > > do the trick: > > > > >From the JavaDoc: > > > > Presents a window to the user. This may mean raising the window > > in the stack order, deiconifying it, moving it to the current > > desktop, and/or giving it the keyboard focus, possibly dependent > > on the user's platform, window manager, and preferences. If the > > Window is hidden it will also call show as well. > > > > [that's org.gnu.gtk.Window, not org.gnu.gdk.Window]. With any Widget w, > > I tend to call > > > > Window top =3D w.getToplevel(); > > top.present(); > > > > When using Glade, I usually have Window _top as a class instance > > variable that I populate as soon as I get my Glade file open, > > > > LibGlade glade =3D new LibGlade("file.glade", this); > > _top =3D (Window) glade.getWidget("my_window_name"); > > ... > > _top.present(); > > > > so that I always have it around. I find I need it a lot. > > > > AfC > > Toronto > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by the JBoss Inc. > Get Certified Today * Register for a JBoss Training Course > Free Certification Exam for All Training Attendees Through End of 2005 > Visit http://www.jboss.com/services/certification for more information > _______________________________________________ > java-gnome-developer mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer > |
From: Daniel G. <dan...@gm...> - 2005-10-31 12:04:23
|
Thanks Andrew, i think that i don't understand you or i not explain the problem correctly, but i have same problem: i don't know how set the parent window in the application. I don't know if is a property in a Window object or i must set in each soon window who is his parent (i have getParentWindow() method, but not setParentWindow()). I suppose that this is a trivial thing, but after search a lot of time, i not find the solution. Thanks in advance!! El dom, 30-10-2005 a las 19:35 -0500, Andrew Cowie escribió: > On Sun, 2005-30-10 at 19:31 +0100, Daniel Gutierrez wrote: > > > tell to glade which window must be focused when the program starts > > This may not be exactly what you want, but calling Window.present() may > do the trick: > > >From the JavaDoc: > > Presents a window to the user. This may mean raising the window > in the stack order, deiconifying it, moving it to the current > desktop, and/or giving it the keyboard focus, possibly dependent > on the user's platform, window manager, and preferences. If the > Window is hidden it will also call show as well. > > [that's org.gnu.gtk.Window, not org.gnu.gdk.Window]. With any Widget w, > I tend to call > > Window top = w.getToplevel(); > top.present(); > > When using Glade, I usually have Window _top as a class instance > variable that I populate as soon as I get my Glade file open, > > LibGlade glade = new LibGlade("file.glade", this); > _top = (Window) glade.getWidget("my_window_name"); > ... > _top.present(); > > so that I always have it around. I find I need it a lot. > > AfC > Toronto > |
From: <L.Z...@se...> - 2005-10-31 08:13:00
|
Hi, I am planning a little GPL application in Java (using gcj) and I am very interested in using your Cairo bindings. Can you please be so kind as to tell me how "usable" your binding currently is? Cairo homepage says "not suitable", but your project seems to be very active, so it may have changed. If possible, please express roughly in percents "completeness" of the API, how is the documentation and overall stability. Thank you for your work. Lucie Zahorikova. |
From: Andrew C. <an...@op...> - 2005-10-31 00:35:09
|
On Sun, 2005-30-10 at 19:31 +0100, Daniel Gutierrez wrote: > tell to glade which window must be focused when the program starts This may not be exactly what you want, but calling Window.present() may do the trick: >From the JavaDoc: Presents a window to the user. This may mean raising the window in the stack order, deiconifying it, moving it to the current desktop, and/or giving it the keyboard focus, possibly dependent on the user's platform, window manager, and preferences. If the Window is hidden it will also call show as well. [that's org.gnu.gtk.Window, not org.gnu.gdk.Window]. With any Widget w, I tend to call Window top = w.getToplevel(); top.present(); When using Glade, I usually have Window _top as a class instance variable that I populate as soon as I get my Glade file open, LibGlade glade = new LibGlade("file.glade", this); _top = (Window) glade.getWidget("my_window_name"); ... _top.present(); so that I always have it around. I find I need it a lot. AfC Toronto -- Andrew Frederick Cowie Technology strategy, managing change, establishing procedures, and executing successful upgrades to mission critical business infrastructure. http://www.operationaldynamics.com/ Sydney New York Toronto London |
From: Daniel G. <dan...@gm...> - 2005-10-30 18:31:28
|
Hi, i want create a "father" window and its "soons", but i dont know how tell to glade wath window must be focused when the program starts and the properties to set into window. How can i do it? Thanks!! PD: sorry for my english |
From: Spyros S. <fou...@gm...> - 2005-10-27 15:27:44
|
Thanks Sami, that was helpful indeed; it makes things much clearer. I' ll try to adjust it to my code, see how it works and mail back if smth goes wrong. This probably a mistake that happened when you were writing the email but > shouldent it be > list.setModel(ls) ? > > True. I' ve changed a bit the code to make it more "mail- compatible", bu= t I've forgotten to change tv to list. Anyway you seem to have gotten the point!. I've read the tutorial, but I must have missed a few things. I'm still trying to find out how the whole java- gnome thing works. Again... thanks. Spyros "Foucault" Stathopoulos |
From: Sami W. <swa...@re...> - 2005-10-27 13:57:22
|
Hi Spyros, There is a very good tutorial on using TreeView on the java-gnome web page http://java-gnome.sourceforge.net/cgi-bin/bin/view/Main/TreeViewTutorial But from your email this is probably the most important part of the tutorial for you: Rather than creating an array of DataColumns, your code will be far easier to write if you create separate variables for each column: DataColumnBoolean ColIsChecked = new DataColumnBoolean(); DataColumnPixbuf ColFaceImage = new DataColumnPixbuf(); col3.addAttributeMapping(render3, CellRendererText.Attribute.TEXT, (DataColumnString)dc[3]); DataColumnString ColName = new DataColumnString(); ListStore ls = new ListStore( new DataColumn[] {ColIsChecked, ColFaceImage, ColName} ); Then later you can do this: ... ls.setValue(it, ColName , "Test"); ... > private void initTree(){ > list = (TreeView)glade.getWidget("listTreeView"); > > DataColumn[] dc = new DataColumn[4]; > for(int i = 0; i < 4; i++) col3.addAttributeMapping(render3, > CellRendererText.Attribute.TEXT, (DataColumnString)dc[3]); > dc[i] = new DataColumnString(); > > ListStore ls = new ListStore(dc); > tv.setModel(ls); This probably a mistake that happened when you were writing the email but shouldent it be list.setModel(ls) ? > * Sets a value in the data store. To display the data in the > widget, you > * need to associate the datablock with the renderer, using > methods of the > * {@link TreeViewColumn}. This just means calling addAttributeMaping which you already did here: col3.addAttributeMapping(render3, CellRendererText.Attribute.TEXT, (DataColumnString)dc[3]); I hope this helps :). Good luck, Sami Wagiaalla |
From: Spyros S. <fou...@gm...> - 2005-10-27 12:59:06
|
Well, this may sound a little bit silly, however I have a little problem when it comes to adding a row. I do not know what to put as DataColumn in the setValue method. But let's take a look to the following piece of code: public class Whatever{ TreeView list; public Whatever(){ initTree(); ... ... fillTree(); } /*Initialize the tree by creating the columns, but NOT filling in the Data*= / private void initTree(){ list =3D (TreeView)glade.getWidget("listTreeView"); DataColumn[] dc =3D new DataColumn[4]; for(int i =3D 0; i < 4; i++) dc[i] =3D new DataColumnString(); ListStore ls =3D new ListStore(dc); tv.setModel(ls); TreeViewColumn col0 =3D new TreeViewColumn(); col0.setTitle("ONE"); CellRendererText render0 =3D new CellRendererText(); col0.setResizable(true); col0.packStart(render0, false); col0.addAttributeMapping(render0, org.gnu.gtk.CellRendererText.Attribute.TEXT , (DataColumnString)dc[0]); TreeViewColumn col1 =3D new TreeViewColumn(); col1.setTitle("TWO"); CellRendererText render1 =3D new CellRendererText(); col1.setResizable(true); col1.packStart(render1, false); col1.addAttributeMapping(render1, CellRendererText.Attribute.TEXT, (DataColumnString)dc[1]); TreeViewColumn col2 =3D new TreeViewColumn(); col2.setTitle("THREE"); CellRendererText render2 =3D new CellRendererText(); col2.setResizable(true); col2.packStart(render2, false); col2.addAttributeMapping(render2, CellRendererText.Attribute.TEXT, (DataColumnString)dc[2]); TreeViewColumn col3 =3D new TreeViewColumn(); col3.setTitle("FOUR"); CellRendererText render3 =3D new CellRendererText(); col3.setResizable(true); col3.packStart(render3, false); col3.addAttributeMapping(render3, CellRendererText.Attribute.TEXT, (DataColumnString)dc[3]); tv.appendColumn(col0); tv.appendColumn(col1); tv.appendColumn(col2); tv.appendColumn(col3); /* No further data is provided to the TreeView*/ } } private void fillTree(){ ListStore ls =3D (ListStore)(list.getModel()); TreeIter it =3D ls.appendRow(); ls.setValue(it, /*WHAT HERE???*/, "Test"); } } Well I was not able to find a way to get the DataColumn from the Model, as = I would when calling method ls.setValue(it, (DataColumnString)dc[0], "A String"); from within the method initTree. I mean, there is no dc to use in method fillTree(). I've read in the docs that this should be done through the Renderer, however I wasn't able to find a solution to this either. Is there a way to retrieve the DataColumn of the specified ListStore? /** * Sets a value in the data store. To display the data in the widget, you * need to associate the datablock with the renderer, using methods of the * {@link TreeViewColumn}. * @param iter A valid iterator which specifies the row in which the data * should be set. Iterators can be gained by using methods such as * {@link #appendRow()}. * @param dataBlock The data block to store the value in. * @param value The value to store. This must be of the same type * for the column as that set in the constructor to the ListStore. */ public void setValue( TreeIter iter, DataColumnString dataBlock, String value){...} Thnx everyone that might take a look in advance, Spyros "Foucault" Stathopoulos |
From: Igor F. <if...@re...> - 2005-10-26 15:27:16
|
On Tue, 2005-10-25 at 17:06 -0400, Andrew Cowie wrote: > Hello, > > libgtk-java 2.8.1, and lib{gnome,glade,gconf}-java 2.12.1 have been > released. See: > http://java-gnome.sourceforge.net/cgi-bin/bin/view/Main/NewsTwoTwelveOne > > Source tarballs are, as usual, available for download from: > http://research.operationaldynamics.com/linux/java-gnome/ > > hackers: CVS tagged and now re-opened for commits. > > AfC > Toronto I've updated the packages in Fedora Core rawhide with the .1 versions. Cheers, Igor |
From: Joao V. <jvi...@ya...> - 2005-10-26 01:17:43
|
Sami, could you try login in now? Cheers, J.V. --- Sami Wagiaalla <swa...@re...> escreveu: > Hi jvic, > > I am having trouble registering for a wicki account on the java-gnome > website. > I never really receive the confirmation email. > > Any idea whats going on there ? > > Thanx > Sami Wagiaalla > > > ------------------------------------------------------- > This SF.Net email is sponsored by the JBoss Inc. > Get Certified Today * Register for a JBoss Training Course > Free Certification Exam for All Training Attendees Through End of 2005 > Visit http://www.jboss.com/services/certification for more information > _______________________________________________ > java-gnome-developer mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer > _______________________________________________________ Promoção Yahoo! Acesso Grátis: a cada hora navegada você acumula cupons e concorre a mais de 500 prêmios! Participe! http://yahoo.fbiz.com.br/ |