Re: Question about a Gtk-WARNING message when running gedit

2013-03-29 Thread Jasper St. Pierre
Your issue is that you have an old GTK+ theme paired with a new GTK+
version.


On Thu, Mar 28, 2013 at 12:53 PM, Tilton, James C. (GSFC-6063) <
james.c.til...@nasa.gov> wrote:

> Hi gtk-list:
>
> ** **
>
> I recently built and installed GTK+ version 3.6.4.  This ended up
> 'breaking' my old RHEL system supplied version of gedit (version 2.16.0).*
> ***
>
> ** **
>
> So I went ahead and built and installed gedit version 3.2.6.  This version
> works, but I get the following Gtk-WARNING every time I run gedit:
>
> ** **
>
> (gedit:9928): Gtk-WARNING **: Theme parsing error: :5:10: Not using
> units is deprecated. Assuming 'px'.
>
> ** **
>
> It appears to me that this may be caused by a call to a GTK+ function
> somewhere in the gedit source code using a deprecated call format.
>
> However, I don't know what to look for in the gedit source code.
>
> ** **
>
> What GTK+ function would such a WARNING be associated with?
>
> ** **
>
> Or is this caused by some other problem?
>
> ** **
>
> Jim Tilton
>
> ** **
> --
>
> Dr. James C. Tilton
> Voice:   301-286-9510
>
> NASA Goddard Space Flight Center   FAX: 301-286-1776**
> **
>
> Mail Code 606.3
> E-Mail:  james.c.til...@nasa.gov
>
> (Computational & Information Sciences and Technology Office)
>
> Greenbelt, MD 20771   
>
> URLs:  http://ipp.gsfc.nasa.gov/ft_tech_rhseg.shtm,
> http://science.gsfc.nasa.gov/606.3/TILTON/ and
>
> https://powellcenter.usgs.gov/globalcroplandwater/. 
>
> ** **
>
> ** **
>
> ** **
>
> ___
> gtk-list mailing list
> gtk-list@gnome.org
> https://mail.gnome.org/mailman/listinfo/gtk-list
>
>


-- 
  Jasper
___
gtk-list mailing list
gtk-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-list


Re: Question about a Gtk-WARNING message when running gedit

2013-03-29 Thread Alan F

Hello,

Start the application with the environment variable:

G_DEBUG=fatal-warnings

Then run it in GDB, you should be able to obtain a backtrace when the 
warning is triggered.


Regards,

On 28/03/13 16:53, Tilton, James C. (GSFC-6063) wrote:


Hi gtk-list:

I recently built and installed GTK+ version 3.6.4.  This ended up 
'breaking' my old RHEL system supplied version of gedit (version 2.16.0).


So I went ahead and built and installed gedit version 3.2.6.  This 
version works, but I get the following Gtk-WARNING every time I run gedit:


(gedit:9928): Gtk-WARNING **: Theme parsing error: :5:10: Not 
using units is deprecated. Assuming 'px'.


It appears to me that this may be caused by a call to a GTK+ function 
somewhere in the gedit source code using a deprecated call format.


However, I don't know what to look for in the gedit source code.

What GTK+ function would such a WARNING be associated with?

Or is this caused by some other problem?

Jim Tilton



Dr. James C. Tilton Voice:   301-286-9510

NASA Goddard Space Flight Center   FAX: 301-286-1776

Mail Code 606.3 E-Mail: james.c.til...@nasa.gov 
<mailto:james.c.til...@nasa.gov>


(Computational & Information Sciences and Technology Office)

Greenbelt, MD 20771

URLs: http://ipp.gsfc.nasa.gov/ft_tech_rhseg.shtm, 
http://science.gsfc.nasa.gov/606.3/TILTON/ and


https://powellcenter.usgs.gov/globalcroplandwater/.



___
gtk-list mailing list
gtk-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-list


___
gtk-list mailing list
gtk-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-list


Question about a Gtk-WARNING message when running gedit

2013-03-28 Thread Tilton, James C. (GSFC-6063)
Hi gtk-list:



I recently built and installed GTK+ version 3.6.4.  This ended up 'breaking' my 
old RHEL system supplied version of gedit (version 2.16.0).



So I went ahead and built and installed gedit version 3.2.6.  This version 
works, but I get the following Gtk-WARNING every time I run gedit:



(gedit:9928): Gtk-WARNING **: Theme parsing error: :5:10: Not using units 
is deprecated. Assuming 'px'.



It appears to me that this may be caused by a call to a GTK+ function somewhere 
in the gedit source code using a deprecated call format.

However, I don't know what to look for in the gedit source code.



What GTK+ function would such a WARNING be associated with?



Or is this caused by some other problem?



Jim Tilton


Dr. James C. TiltonVoice:   
301-286-9510
NASA Goddard Space Flight Center   FAX: 301-286-1776
Mail Code 606.3E-Mail:  
james.c.til...@nasa.gov<mailto:james.c.til...@nasa.gov>
(Computational & Information Sciences and Technology Office)
Greenbelt, MD 20771
URLs:  http://ipp.gsfc.nasa.gov/ft_tech_rhseg.shtm, 
http://science.gsfc.nasa.gov/606.3/TILTON/ and
https://powellcenter.usgs.gov/globalcroplandwater/.




___
gtk-list mailing list
gtk-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-list


Re: GTK+ Warning: Can't set a parent on widget which has a parent

2011-06-03 Thread Phong Cao
Thank you Nicola. I finally got it fixed! Yeah I did not pay attention to
the parents of songinfo...

On Fri, Jun 3, 2011 at 6:08 AM, Nicola Fontana  wrote:

> Il giorno Fri, 3 Jun 2011 04:08:22 -0400
> Phong Cao  ha scritto:
>
> > Hello everybody,
> >
> > I am trying to write the interface for my music manager using GTK+. The
> > program was compiled successfully. However, when I executed it, the
> machine
> > returned errors:
> >
> > (dingo_draft:6462): Gtk-WARNING **: Can't set a parent on widget which
> > has a parent
>
> Hi Phong,
>
> you are adding songinfo to infohbox and to vpaned. Choose a single
> container
> or duplicate the widget.
>
> Ciao.
> --
> Nicola
>
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: GTK+ Warning: Can't set a parent on widget which has a parent

2011-06-03 Thread Nicola Fontana
Il giorno Fri, 3 Jun 2011 04:08:22 -0400
Phong Cao  ha scritto:

> Hello everybody,
> 
> I am trying to write the interface for my music manager using GTK+. The
> program was compiled successfully. However, when I executed it, the machine
> returned errors:
> 
> (dingo_draft:6462): Gtk-WARNING **: Can't set a parent on widget which
> has a parent

Hi Phong,

you are adding songinfo to infohbox and to vpaned. Choose a single container
or duplicate the widget.

Ciao.
-- 
Nicola
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: GTK+ Warning: Can't set a parent on widget which has a parent

2011-06-03 Thread Chris Vine
On Fri, 3 Jun 2011 04:08:22 -0400
Phong Cao  wrote:
> Hello everybody,
> 
> I am trying to write the interface for my music manager using GTK+.
> The program was compiled successfully. However, when I executed it,
> the machine returned errors:
> 
> (dingo_draft:6462): Gtk-WARNING **: Can't set a parent on widget which
> has a parent(dingo_draft:6462): Gtk-CRITICAL **: gtk_widget_realize:
> assertion `GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)'
> failed**Gtk:ERROR:/build/buildd/gtk+2.0-2.20.1/gtk/gtkwidget.c:8760:gtk_widget_real_map:
> assertion failed: (gtk_widget_get_realized (widget))Aborted

I have no idea if it causes your problem (probably not), but you insert
a tree view into a scrolled window using gtk_container_add(), not
gtk_scrolled_window_add_with_viewport().

Chris
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


GTK+ Warning: Can't set a parent on widget which has a parent

2011-06-03 Thread Phong Cao
Hello everybody,

I am trying to write the interface for my music manager using GTK+. The
program was compiled successfully. However, when I executed it, the machine
returned errors:

(dingo_draft:6462): Gtk-WARNING **: Can't set a parent on widget which
has a parent(dingo_draft:6462): Gtk-CRITICAL **: gtk_widget_realize:
assertion `GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)'
failed**Gtk:ERROR:/build/buildd/gtk+2.0-2.20.1/gtk/gtkwidget.c:8760:gtk_widget_real_map:
assertion failed: (gtk_widget_get_realized (widget))Aborted

Attached with this email is the source code of the program. Please note that
this is *just the interface written in GTK+*. I did not add any signals in
yet. I think there might be some problems with the GTK+ functions, but I
could not locate where the errors occured.

Thank you for helping me with this problem!! Hope you guys have a good
weekend!
/* This is the interface design draft for the media player
/* This does not include the signals for widgets. Just a plain draft */

#include 

int main(int argc, char *argv[]) {
  /* Initialize gtk+ & gstreamer */
  gtk_init(&argc, &argv);

  /* Create mainwindow (mainwindow) */
  GtkWidget *mainwindow;
  
  mainwindow = gtk_window_new(GTK_WINDOW_TOPLEVEL);
  gtk_window_set_title(GTK_WINDOW(mainwindow), "Music Manager");
  
  /* Create the vbox containing searchbox & song list (treevbox) */
  GtkWidget *searchbox, *treesong, *scrollsong, *treevbox;
  GtkCellRenderer *namerender, *timerender;

  treesong = gtk_tree_view_new();
  gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(treesong), FALSE);

  namerender = gtk_cell_renderer_text_new();
  gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(treesong), -1, "Songs", namerender, "text", 0, NULL);
  
  timerender = gtk_cell_renderer_text_new();
  gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(treesong), -1, "Time", timerender, "text", 1, NULL);
  
  /* some problem here */
  scrollsong = gtk_scrolled_window_new(NULL, NULL);  
  gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrollsong), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
  gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrollsong), treesong);
  
  searchbox = gtk_entry_new();
  
  treevbox = gtk_vbox_new(TRUE, 0);
  gtk_box_pack_start_defaults(GTK_BOX(treevbox), searchbox);
  gtk_box_pack_start_defaults(GTK_BOX(treevbox), scrollsong);
  
  /* Create the song info section (infohbox) */
  GtkWidget *songname, *songinfo, *coverart;
  GtkWidget *infohbox, *imagevbox;
  
  coverart = gtk_image_new_from_file("music-notes.png");
  songname = gtk_label_new("Song Name");
  songinfo = gtk_label_new("Artist: \n Track \n Album \n Year \n Genre \n Rating");
  
  infohbox = gtk_hbox_new(TRUE, 0);
  imagevbox = gtk_vbox_new(TRUE, 0);
  
  gtk_box_pack_start_defaults(GTK_BOX(imagevbox), coverart);
  gtk_box_pack_start_defaults(GTK_BOX(imagevbox), songname);
  gtk_box_pack_start_defaults(GTK_BOX(infohbox), imagevbox);
  gtk_box_pack_start_defaults(GTK_BOX(infohbox), songinfo);
  
  /* Create drawing area for video display (previewarea) */
  GtkWidget *previewarea;
  
  previewarea = gtk_drawing_area_new();
  gtk_widget_set_size_request(previewarea, 300, 200);
  
  /* Create actions tree view (ltreeview) */
  enum {
COL_ICON = 0,
COL_ACTION,
NUM_COLS
  };
  
  GtkCellRenderer *lrenderer;
  GtkTreeModel *lmodel;
  GtkWidget *ltreeview;
  GtkListStore *lliststore;
  GtkTreeIter liter;
  
  ltreeview = gtk_tree_view_new();
  
  lrenderer = gtk_cell_renderer_pixbuf_new();
  gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(ltreeview), -1, "Icon", lrenderer, "pixbuf", COL_ICON, NULL);
  
  lrenderer = gtk_cell_renderer_text_new();
  gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(ltreeview), -1, "Actions", lrenderer, "text", COL_ACTION, NULL);
  
  lliststore = gtk_list_store_new(NUM_COLS, GDK_TYPE_PIXBUF, G_TYPE_STRING);
  
  gtk_list_store_append(lliststore, &liter);
  gtk_list_store_set(lliststore, &liter, COL_ICON, gdk_pixbuf_new_from_file("now-playing.png", NULL), COL_ACTION, "Now Playing", -1);

  gtk_list_store_append(lliststore, &liter);
  gtk_list_store_set(lliststore, &liter, COL_ICON, gdk_pixbuf_new_from_file("music.png", NULL), COL_ACTION, "Music", -1);
  
  gtk_list_store_append(lliststore, &liter);
  gtk_list_store_set(lliststore, &liter, COL_ICON, gdk_pixbuf_new_from_file("video.png", NULL), COL_ACTION, "Videos", -1);
  
  gtk_list_store_append(lliststore, &liter);
  gtk_list_store_set(lliststore, &liter, COL_ICON, gdk_pixbuf_new_from_file("playlist.png", NULL), COL_ACTION, "Playlists", -1);
  
  lmodel = GTK_TREE_MODEL(lliststore);
  
  gtk_tree_view_set_model(GTK_TREE_VIEW(ltreeview), lmodel);
  
  /* 

Re: Gtk-WARNING **: Locale not supported by C library.

2009-10-20 Thread michael kapelko
As I said, I created an i18n application with gettext. It works fine. Thus,
I think that means my Glibc build does support ru_RU.UTF-8.
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Gtk-WARNING **: Locale not supported by C library.

2009-10-20 Thread michael kapelko
Hello.
When I run linphone I get the error:

korn...@korenwork:~$ linphone-3
** Message: Found lang ru

(process:11306): Gtk-WARNING **: Locale not supported by C library.
Using the fallback 'C' locale.

I tried to ask at linphone mailing list and got reply that it has nothing to
do with linphone.
Googling it didn't gave any success either. I tried to set LANG to ru,
ru_RU, ru_RU.UTF-8, ru_RU.utf8, ru_RU.cp1251, ru_RU.koi8r, that is all
locales I have under /usr/lib/locale (I'm using Slackware 13.0).
All the answers found at Google only suggest to play with LANG variable or
to recompile Libc. Since the distro contains glibc-i18n package I suspect it
has all locales correctly compiled. Not sure how to check for sure.
I hope you can direct me to the docs describing what can cause this
particular Gtk-WARNING. Today I've read gettext documentation, did a test
localization for ru, and that worked fine.
Thanks.
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


'Gtk-WARNING **: Unable to locate theme engine in module_path: "qtcurve"' problem

2008-10-20 Thread Sergei Steshenko
Hello All,

after upgrading my KDE version I'm getting this warning:

Gtk-WARNING **: Unable to locate theme engine in module_path: "qtcurve" ...

and the application does not look the way it used to look.

I read http://www.gtk.org/api/2.6/gtk/gtk-running.html document, but it's
unclear to me how to fix the problem.

Unfortunately, gtk+ does not print the paths it goes through trying to
locate that theme engine, otherwise I would have guessed where to put
the files or to symlink them.

The theme engine in question (if I understand correctly what it is)
can be either of the following two files:

/usr/lib/qt3/plugins/styles/qtcurve.so
/usr/lib/kde4/plugins/styles/qtcurve.so

- I mean, these are real location of my 'qtcurve.so' files on in my 
filesystem. Since I'm on KDE3, I guess I need the first of the two.

So, how can I resolve this issue ?

I.e. what directories/files should I create and/or what environment
variables to set in order to make the application see qtcurve.so ?

Also, there is

/usr/share/themes/QtCurve/gtk-2.0/gtkrc

file which I want to be used, in the beginning the file says:

style "qtcurve-default"

, so I guess, this is the gtkrc file I want to be used by gtk+
applications.

Thanks,
  Sergei.

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


GTK-Warning when trying to open a map of geodata from a database.

2007-07-19 Thread Daniela Stärke
Hi everyone,

when I want to open a database with geometry data in it with the program 
MezoGis I receive the following GTK-Warning:

/usr/local/lib/python2.5/site-packages/mezoGISlib/_canvas.py:530: GtkWarning: 
Using Cairo rendering requires the drawable argument to
have a specified colormap. All windows have a colormap,
however, pixmaps only have colormap by default if they
were created with a non-NULL window argument. Otherwise
a colormap must be set on them with gdk_drawable_set_colormap
  self.ctx = self.pixmap.cairo_create() 
Traceback (most recent call last):
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_pane_db.py", line 
537, in __on_doubleclick
self.pgbutler.runQuery('SELECT * FROM %s'%table.getSQL())
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_guicore.py", line 
412, in runQuery
self.showResults(cursor, query, layer, resultset, tablelist)
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_guicore.py", line 
446, in showResults
mapview = openMapView(layer.resultset)
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_guiwindows.py", line 
33, in openMapView
m = MapWindow(resultset)
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_guiwindows.py", line 
139, in __init__
self.canvas = MapCanvas()
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_canvas.py", line 86, 
in __init__
self.__createNewCanvas()
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_canvas.py", line 
530, in __createNewCanvas
self.ctx = self.pixmap.cairo_create() 
cairo.Error: NULL pointer

A mapframe is also created, but somehow there is no content in it or nothing is 
shown on/in the map.
I am nearly for 100% sure, that there is no mistake in my geometry data, 
because the extend is correct initialized, when I start the database.

Has anyone an idea, what I could do??? I am totally desperate, because the 
program will not work.


 In the source code I made some print-commands, to see how far the program goes 
and there I saw, that mezogis goes in the file _canvas.py and also in the 
function " def __createNewCanvas(self): ". But then, when mezogis should show 
the extend (with a print command) of the table, I get height: 1 and width: 1. 
And this can't be right, because my database is filled with geodata of the 
world, and this extend can't be just 1.

Something must be wrong with the line:

aw = self.mapframe.get_allocation()
because afterwards the height and width is set, and with print I get the extend 
of 1, like I said.
The get_allocation command is a method of python, or what does it do???  I ask, 
because in no other file this method is used (ok, just in one of 
_guiwindows.py, but there, the line is commented out).

When I use the SQL-command (Select * from "public"."dbname" )to show me the 
content of the database I get the messages which I wrote above.
The program is able to show all data in a table, except from the 
geometry-column. But actually I wanted a map created, which looks like a 
worldmap and with which I could work, but without mezogis is quit useless for 
me.

Also with a database of randomized created geometry data I have the same 
problem.

I forgot to say, that I work on a SuSe Linux 10.2 distribution.

Thank you very much in advance for your help.

Daniela
-- 
Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! 
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


GTK-Warning when trying to open a map of geodata from a database.

2007-07-17 Thread Daniela Stärke
Hi everyone,

when I want to open a database with geometry data in it with the program 
MezoGis I receive the following GTK-Warning:

/usr/local/lib/python2.5/site-packages/mezoGISlib/_canvas.py:530: GtkWarning: 
Using Cairo rendering requires the drawable argument to
have a specified colormap. All windows have a colormap,
however, pixmaps only have colormap by default if they
were created with a non-NULL window argument. Otherwise
a colormap must be set on them with gdk_drawable_set_colormap
  self.ctx = self.pixmap.cairo_create() 
Traceback (most recent call last):
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_pane_db.py", line 
537, in __on_doubleclick
self.pgbutler.runQuery('SELECT * FROM %s'%table.getSQL())
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_guicore.py", line 
412, in runQuery
self.showResults(cursor, query, layer, resultset, tablelist)
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_guicore.py", line 
446, in showResults
mapview = openMapView(layer.resultset)
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_guiwindows.py", line 
33, in openMapView
m = MapWindow(resultset)
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_guiwindows.py", line 
139, in __init__
self.canvas = MapCanvas()
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_canvas.py", line 86, 
in __init__
self.__createNewCanvas()
  File "/usr/local/lib/python2.5/site-packages/mezoGISlib/_canvas.py", line 
530, in __createNewCanvas
self.ctx = self.pixmap.cairo_create() 
cairo.Error: NULL pointer

A mapframe is also created, but somehow there is no content in it or nothing is 
shown on/in the map.
I am nearly for 100% sure, that there is no mistake in my geometry data, 
because the extend is correct initialized, when I start the database.

Has anyone an idea, what I could do??? I am totally desperate, because the 
program will not work.


 In the source code I made some print-commands, to see how far the program goes 
and there I saw, that mezogis goes in the file _canvas.py and also in the 
function " def __createNewCanvas(self): ". But then, when mezogis should show 
the extend (with a print command) of the table, I get height: 1 and width: 1. 
And this can't be right, because my database is filled with geodata of the 
world, and this extend can't be just 1.

Something must be wrong with the line:

aw = self.mapframe.get_allocation()
because afterwards the height and width is set, and with print I get the extend 
of 1, like I said.
The get_allocation command is a method of python, or what does it do???  I ask, 
because in no other file this method is used (ok, just in one of 
_guiwindows.py, but there, the line is commented out).

When I use the SQL-command (Select * from "public"."dbname" )to show me the 
content of the database I get the messages which I wrote above.
The program is able to show all data in a table, except from the 
geometry-column. But actually I wanted a map created, which looks like a 
worldmap and with which I could work, but without mezogis is quit useless for 
me.

Also with a database of randomized created geometry data I have the same 
problem.

Thank you very much in advance for your help.

Daniela

-- 
Pt! Schon vom neuen GMX MultiMessenger gehört?
Der kanns mit allen: http://www.gmx.net/de/go/multimessenger
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Upgrade problem: Gtk-WARNING **: Unable to locate theme engine in module_path: "bluecurve"

2007-01-23 Thread MICHAEL MCGINN
Hi,

I upgraded my Redhat WS 4 installation to include the current versions of:
Gtk 2.10.8
Glib 2.12.9
Pango 1.14.8
All dependencies (atk, cairo, libpng, etc..)
Everything seemed to compile and test out well.

When starting an application I receive the following warning message:
Gtk-WARNING **: Unable to locate theme engine in module_path: "bluecurve",

The other issue is that when I select a menu option from any application or the 
desktop, it changes the text to white which makes it very difficult to see.

Does anyone have any ideas of what might be wrong?

Regards,
Michael___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: GTK Warning

2004-02-04 Thread Aaron Neerenberg
Hi-

Running terminal won't do quite what you need.  I'd advise downloading a
X11 Server, and starting that before using gimp/bluefish.  The terminal
application in MacOSX is, more or less, a telnet application.

-Aaron


On Mon, 2004-02-02 at 21:31, Steve Slade wrote:
> Hello,
> 
> I'm very new to the world of UNIX having been introduced through my 
> recent purchase of OS X. I am trying to find alternatives to programs 
> such as Photoshop and Dreamweaver. I found the Gimp and Bluefish. I 
> downloaded Fink and began installing GTK, Gimp, and Bluefish.
> 
> I loaded the fourth CD Xcode Tools that came with Panther (OS X 10.3). 
> I installed GTK from source through Finkcommander (I still am tied to 
> GUI's) and then installed the other two programs in the same way.
> 
> When I try to launch Gimp or Bluefish from a terminal window, I get 
> this error:
>   GTK-Warning **: Cannot open display: :0.0
> 
> I have no idea what that means and no idea what to do now. I apologize 
> if this has been asked before. I will search the archives as time 
> permits as I know they contain a wealth of information. I do have a 
> project that I need to complete soon which is why I'm asking the list.
> 
> Any help is greatly appreciated. Thank  you.
> 
> Steve
> 
> ___
> gtk-list mailing list
> [EMAIL PROTECTED]
> http://mail.gnome.org/mailman/listinfo/gtk-list
-- 

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: GTK Warning

2004-02-03 Thread John Cupitt
Hi Steve,

Steve Slade wrote:
When I try to launch Gimp or Bluefish from a terminal window, I get this 
error:
GTK-Warning **: Cannot open display: :0.0
You need an X server. Panther comes with a good X server, but it's not installed by default: you'll need to put your panther DVD back in again and install X.

John
___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: GTK Warning

2004-02-03 Thread Dave Malcolm
On Tue, 2004-02-03 at 05:31, Steve Slade wrote:
> Hello,
> 
> I'm very new to the world of UNIX having been introduced through my 
> recent purchase of OS X. I am trying to find alternatives to programs 
> such as Photoshop and Dreamweaver. I found the Gimp and Bluefish. I 
> downloaded Fink and began installing GTK, Gimp, and Bluefish.
> 
> I loaded the fourth CD Xcode Tools that came with Panther (OS X 10.3). 
> I installed GTK from source through Finkcommander (I still am tied to 
> GUI's) and then installed the other two programs in the same way.
> 
> When I try to launch Gimp or Bluefish from a terminal window, I get 
> this error:
>   GTK-Warning **: Cannot open display: :0.0

I'm kind-of guessing here, but it looks like you need to be running an
"X server".  This is the program that most versions of Unix use to draw
things on screen and handle mouse and keyboard inputs.

Have a look for information on X servers that run under OS X; IIRC
there's one that comes with Fink, and maybe one comes with Panther?  You
ought to be able to find a freely downloadable one.

Hope this helps

Dave

> 
> I have no idea what that means and no idea what to do now. I apologize 
> if this has been asked before. I will search the archives as time 
> permits as I know they contain a wealth of information. I do have a 
> project that I need to complete soon which is why I'm asking the list.
> 
> Any help is greatly appreciated. Thank  you.
> 
> Steve
> 
> ___
> gtk-list mailing list
> [EMAIL PROTECTED]
> http://mail.gnome.org/mailman/listinfo/gtk-list

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: GTK Warning

2004-02-03 Thread Sven Neumann
Hi,

Steve Slade <[EMAIL PROTECTED]> writes:

> I'm very new to the world of UNIX having been introduced through my
> recent purchase of OS X. I am trying to find alternatives to programs
> such as Photoshop and Dreamweaver. I found the Gimp and Bluefish. I
> downloaded Fink and began installing GTK, Gimp, and Bluefish.
> 
> I loaded the fourth CD Xcode Tools that came with Panther (OS X
> 10.3). I installed GTK from source through Finkcommander (I still am
> tied to GUI's) and then installed the other two programs in the same
> way.
> 
> When I try to launch Gimp or Bluefish from a terminal window, I get
> this error:
>   GTK-Warning **: Cannot open display: :0.0
> 
> I have no idea what that means and no idea what to do now. I apologize
> if this has been asked before. I will search the archives as time
> permits as I know they contain a wealth of information. I do have a
> project that I need to complete soon which is why I'm asking the list.

You will need to start the X Server before you launch a GTK+ or any
other X11 application.


Sven
___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


GTK Warning

2004-02-02 Thread Steve Slade
Hello,

I'm very new to the world of UNIX having been introduced through my 
recent purchase of OS X. I am trying to find alternatives to programs 
such as Photoshop and Dreamweaver. I found the Gimp and Bluefish. I 
downloaded Fink and began installing GTK, Gimp, and Bluefish.

I loaded the fourth CD Xcode Tools that came with Panther (OS X 10.3). 
I installed GTK from source through Finkcommander (I still am tied to 
GUI's) and then installed the other two programs in the same way.

When I try to launch Gimp or Bluefish from a terminal window, I get 
this error:
	GTK-Warning **: Cannot open display: :0.0

I have no idea what that means and no idea what to do now. I apologize 
if this has been asked before. I will search the archives as time 
permits as I know they contain a wealth of information. I do have a 
project that I need to complete soon which is why I'm asking the list.

Any help is greatly appreciated. Thank  you.

Steve

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Gtk-WARNING, How to fix ?

2003-05-27 Thread Flavio Alberto Lopes Soares
Hello all,

I developing an application that uses 640 checkbuttons performing a 32 X 20 matrix 
using gtk1.2, recently in my Debian woody system I upgraded to Gnome2.2 and your 
libraries, and after this, when I open the window that has these checkbuttons (running 
my app from a xterm) I had these warnings : 

Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate widget with width 
65532 and height 19

I don't know if exists relantionship with this warning but when I compiling/linking my 
app I receive these message from gcc :

.
.
.
make[2]: Entering directory `/home/flavio/Projects/ihmserial/src'
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../intl  -I/usr/include/gnome-1.0 
-DNEED_GNOMESUPPORT_H -I/usr/lib/gnome-libs/include -I/usr/include/glib-1.2 
-I/usr/lib/glib/include -I/usr/include/orbit-1.0 -I/usr/include/gtk-1.2 
-I/usr/X11R6/include  -I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 
-I/usr/lib/glib/include -I/usr/X11R6/include  -g -O2 -Wall -Wunused  -c callbacks.c
gcc  -g -O2 -Wall -Wunused   -o ihmserial  main.o support.o ihmserial.o serial.o 
interface.o callbacks.o -rdynamic -L/usr/lib -L/usr/X11R6/lib -rdynamic -lgnomeui 
-lart_lgpl -lgdk_imlib -lSM -lICE -lgtk -lgdk -lgmodule -ldl -lXi -lXext -lX11 -lgnome 
-lgnomesupport -lesd -laudiofile -lm -ldb-3 -lglib
/usr/bin/ld: warning: libgdk_imlib.so.1, needed by /usr/lib/libgnomeui.so, may 
conflict with libgdk_imlib.so.2
.
.
.

My application runs OK but I think these warning strange.
Someone knows what is this and how to fix this ?
I will be been thankful 

Success for all

-- 
Flavio Alberto Lopes Soares
[EMAIL PROTECTED]
Linux User n. 257636

MAQPLAS INDÚSTRIA E COMÉRCIO DE MÁQUINAS LTDA.
www.maqplas.com.br
[EMAIL PROTECTED]
___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap"

2002-12-08 Thread beer



 
hi,
I have not still fixed this 
error.
It appear when I use gtk_rc_parse 
("@prefix@/skin/gtkrc").
:(
Please, help 
me.


Re: Gtk-warning: cannot open display

2001-07-11 Thread Jean-Christophe Berthon

did you try to open another term and logon as root (for example, or even try
it with your own login name) and then type this:
xhost +

then try to run your program. Is it still showing the same problem?


Best regards,
---
Jean-Christophe Berthon



- Original Message -
From: "Johan N-P" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, July 11, 2001 1:07 AM
Subject: Gtk-warning: cannot open display


> Hi all,
>
> I have a really weird problem. Until yesterday my gtk program worked
> fine, but suddenly it stopped working. Now it  just tells me
> "gtk-warning: cannot open display" when I try to run it.
> $DISPLAY is :0.0 as it should be. And yes, I'm running it as the user
> who started X.
>
> When I compile and run other gtk  programs they work fine, it's just my
> program that behaves like this. I stepped through it in gdb to see where
> it happens, and I found that it's always gtk_init that gives this error
> without any apparent reason (there is absolutely nothing wrong with argc
> and argv or the way I supply them).
>
> What could tbe the reason for this?
>
> Johan
>
>
> ___
> gtk-list mailing list
> [EMAIL PROTECTED]
> http://mail.gnome.org/mailman/listinfo/gtk-list


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: Gtk-warning: cannot open display

2001-07-11 Thread Johan N-P

>> Have you tried xhost + ?

Yes, I tried that, both as root and as my normal user. It doesn't work though :/

Thanks anyway,
Johan

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Gtk-warning: cannot open display

2001-07-10 Thread Johan N-P

Hi all,

I have a really weird problem. Until yesterday my gtk program worked
fine, but suddenly it stopped working. Now it  just tells me
"gtk-warning: cannot open display" when I try to run it.
$DISPLAY is :0.0 as it should be. And yes, I'm running it as the user
who started X.

When I compile and run other gtk  programs they work fine, it's just my
program that behaves like this. I stepped through it in gdb to see where
it happens, and I found that it's always gtk_init that gives this error
without any apparent reason (there is absolutely nothing wrong with argc
and argv or the way I supply them).

What could tbe the reason for this?

Johan


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: GTK+-Warning

2001-03-24 Thread Havoc Pennington


User Cmdrpc <[EMAIL PROTECTED]> writes:
> I have been running some application (gimp, gnucash, gtkbitchx, pan)
> all rely on GTK+ and all have been generating a warning message
> which states that libxfce.so is missing.  Does anyone know a reason
> why a library used for XFCE would be need for these application?

It's an XFCE theme which is missing. Change to another theme.

Havoc

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



GTK+-Warning

2001-03-23 Thread User Cmdrpc

I have been running some application (gimp, gnucash, gtkbitchx, pan) all rely on GTK+ 
and all have been generating a warning message which states that 
libxfce.so is missing.  Does anyone know a reason why a library used for
XFCE would be need for these application?  Also, if someone has an idea as to how to 
stop the warning messages which does not require me to reload XFCE I 
would greatly appreciate it. Please send any response to my email address I do
not check this newsgroup regularly.
Thanks

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Gtk-WARNING **: Unable to locate loadable module in module_path: "libpixmap.so

2001-03-13 Thread Andrew Pickin

I know this has already been the subject of at least one thread,
but that didn't answer all my questions:

It seems that at some point libpixmap et al have moved

from .../lib/gtk/themes/engines/ 
to .../lib/gtk/themes/engines/lib

Can somebody tell me if this is correct?
Is this last lib directory going  to stay.

Where is this defined (for the whole system not just each user)?
is it at build-time or run-time?

THX

AMP
-- 
pediddel:
A car with only one working headlight.
-- "Sniglets", Rich Hall & Friends

_
This message has been checked for all known viruses by the 
MessageLabs Virus Control Centre. For further information visit
http://www.messagelabs.com/stats.asp


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Gtk-WARNING **: GtkItemFactory: entry path

2001-03-05 Thread Ignacio Nodal

Hi,
Suppose these are the menu items I'm putting in my menu.

static GtkItemFactoryEntry menu_items[] = {
  { "/_File",NULL, NULL, 0, "" },
  { "/File/FilSep1", NULL, NULL, 0, "" },
  { "/File/_Load VRML",  "L", CAMBIAR_CALLBACK, 0, NULL
},
  { "/File/Image",   NULL, CAMBIAR_CALLBACK, 0, NULL },
  { "/File/_Points", "P", CAMBIAR_CALLBACK, 0, NULL
},
  { "/File/Save VRML",   "S", NULL, 0, NULL },
  { "/File/FilSep2", NULL, NULL, 0, "" },
  { "/File/Quit","Q", gtk_main_quit, 0, NULL },
  { "/_Options", NULL, NULL, 0, "" },
  { "/Options/OptSep",   NULL, NULL, 0, "" },
  { "/Options/GL Mode",  NULL, NULL, 0, ""},
  { "/Options/GL Mode/GL__POINT", NULL, NULL, 0, ""},
  { "/Options/GL Mode/GL__LINE",  NULL, NULL, 0, "/Options/GL
Mode/GL__POINT"},
  { "/Options/GL Mode/GL__FILL",  NULL, NULL, 0, "/Options/GL
Mode/GL__POINT"},
  { "/_Help",NULL, NULL, 0, "" },
  { "/Help/HelpSep", NULL, NULL, 0, "" },
  { "/Help/About",   NULL, NULL, 0, NULL },
};


I want to use RadioItems to establish how to render my OpenGL scene. So
the "/Options/GL Mode" item has to contain 3 RadioItems "/Options/GL
Mode/GL__POINT", "/Options/GL Mode/GL__LINE" and "/Options/GL
Mode/GL__FILL". I had to put two "_" underscores to see "GL_POINT"
instead of "GLPOINT" with the "P" underlined. But then..what i'm suppose
to put in the , 5th argument.

If i put "/Options/GL Mode/GL__POINT", with two underscores i get a
warning of invalid type in the path. Same happens if i put "/Options/GL
Mode/GL_POINT" with only one underscore. Isn't there any way to show
underscores and then use them for the path argument in the
GtkItemFactoryEntry structure?

I'm lost :P

Ignacio Nodal

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: I am getting Gtk-warning **:cannot display:

2000-11-10 Thread Wolfgang Sourdeau

La plume légère, à Thu, Nov 09, 2000 at 05:16:08PM -0800, heure d'inpiration,
basavaraj menasinahal écrivait en ces mots:
> Dear Sir/Madam,
> I compiled successfully my program and when I tried to
> run on SUN OS it is giving me 
> Gtk-warning ** : cannot display:
> 
> What is the error?
You are probably launching your program in an environment where the 
the "DISPLAY" variable is not set. You can verify this by typing this command:
"echo $DISPLAY".

This problem should not occur if you are running it in an X Window session.


Wolfgang
-- 
A chicken is an egg's way of producing more eggs.

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



RE: I am getting Gtk-warning **:cannot display:

2000-11-10 Thread Dugas, Alan

Are you running this program remotely?  I get that error if I try to run my gtk
app on a remote host and display it on a local host.  Hope this helps.



-- Stupid Genius

> --
> From: basavaraj menasinahal[SMTP:[EMAIL PROTECTED]]
> Reply To: [EMAIL PROTECTED]
> Sent: Thursday, November 09, 2000 8:16 PM
> To:   [EMAIL PROTECTED]
> Subject:      I am getting Gtk-warning **:cannot display:
> 
> Dear Sir/Madam,
> I compiled successfully my program and when I tried to
> run on SUN OS it is giving me 
> Gtk-warning ** : cannot display:
> 
> What is the error?
> 
> Can I run this program in Windows?
> 
> 
> __
> Do You Yahoo!?
> Thousands of Stores.  Millions of Products.  All in one Place.
> http://shopping.yahoo.com/
> 
> ___
> gtk-list mailing list
> [EMAIL PROTECTED]
> http://mail.gnome.org/mailman/listinfo/gtk-list
> 

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



I am getting Gtk-warning **:cannot display:

2000-11-10 Thread basavaraj menasinahal

Dear Sir/Madam,
I compiled successfully my program and when I tried to
run on SUN OS it is giving me 
Gtk-warning ** : cannot display:

What is the error?

Can I run this program in Windows?


__
Do You Yahoo!?
Thousands of Stores.  Millions of Products.  All in one Place.
http://shopping.yahoo.com/

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Gtk-WARNING + strange behavior

2000-09-17 Thread daman


Hello.
perhaps it is not a good place to put my mail but I will try anyway ;-)
I have Helix gnome installed (over standard mandrake 7.1 Gnome).
My problem is strange behavior of some Gtk apps. When I run eg. Glade (0.59)
first I have some warnings:
Gtk-WARNING: could not find libxeno.so

then
GnomeUI-Warning: Authentication rejected. Reason: none of auth. protocols are
supported...

Then glade runs but it is really hard to use it - the app seems like it "does
not understand" mouse. My left button does not work at all. I can only select
widgets with right one but that's all. Then I have to use keyboard to press
enrter, tabs etc.
There are also other aplications that behaves like glade (ie. any app that I
build with glade...).
Could you please tell me where can I find libxeno.so and/or what is the problem
with those apps?
Thanks,
_Adam_



___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: Gtk-WARNING **: Unable to locate loadable module in module_path:"libpixmap.so"

2000-07-13 Thread Vlad Harchev

On Thu, 13 Jul 2000, David Frascone wrote:

> On Thu, Jul 13, 2000 at 08:44:17PM +0500, Vlad Harchev wrote:
> > On Thu, 13 Jul 2000, David Frascone wrote:
> > 
> > > Hmm . . .strange . . .seems that a theme did it.  If I remove my .gtkrc, it
> > > works fine.  Here is the offensive .gtkrc
> > 
> >  If you remove .gtkrc, it seems that gtk+ will use default theme that doesn't
> > require pixmap engine - so this is the reason the message disappears.
> >  
> >  Could you try restoring your original .gtkrc shown below, and add
> > module_path "/usr/lib/gtk/themes/"
> >  to it and report results.
> 
> I did that . . it didn't help

  You could perform steps 1) and 2) I listed in previous messages, and also
execute 'file /usr/lib/gtk/themes/engines/pixmap.so" and check output - may be
you've got pixmap.so for wrong CPU type (say for SPARC if you are on x86) 
(sorry if this offends you, but this seems to be my last idea).

  If you are not on linux, please state it clearly too.

 HTH

 Best regards,
  -Vlad


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



*** FIXED *** Re: Gtk-WARNING **: Unable to locate loadable module in module_path: "libpixmap.so"

2000-07-13 Thread David Frascone

strace found it.  I wasn't doing the module_path at the beginning of the
.gtkrc file, so it was trying to load libpixmap before it got to the theme.

Thanks a lot for everyone's help.

On Thu, Jul 13, 2000 at 11:31:10AM -0500, David Frascone wrote:
> On Thu, Jul 13, 2000 at 08:44:17PM +0500, Vlad Harchev wrote:
> > On Thu, 13 Jul 2000, David Frascone wrote:
> > 
> > > Hmm . . .strange . . .seems that a theme did it.  If I remove my .gtkrc, it
> > > works fine.  Here is the offensive .gtkrc
> > 
> >  If you remove .gtkrc, it seems that gtk+ will use default theme that doesn't
> > require pixmap engine - so this is the reason the message disappears.
> >  
> >  Could you try restoring your original .gtkrc shown below, and add
> > module_path "/usr/lib/gtk/themes/"
> >  to it and report results.
> 
> I did that . . it didn't help
> 
> ___
> gtk-list mailing list
> [EMAIL PROTECTED]
> http://mail.gnome.org/mailman/listinfo/gtk-list

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: Gtk-WARNING **: Unable to locate loadable module in module_path: "libpixmap.so"

2000-07-13 Thread David Frascone

On Thu, Jul 13, 2000 at 08:44:17PM +0500, Vlad Harchev wrote:
> On Thu, 13 Jul 2000, David Frascone wrote:
> 
> > Hmm . . .strange . . .seems that a theme did it.  If I remove my .gtkrc, it
> > works fine.  Here is the offensive .gtkrc
> 
>  If you remove .gtkrc, it seems that gtk+ will use default theme that doesn't
> require pixmap engine - so this is the reason the message disappears.
>  
>  Could you try restoring your original .gtkrc shown below, and add
>   module_path "/usr/lib/gtk/themes/"
>  to it and report results.

I did that . . it didn't help

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: Gtk-WARNING **: Unable to locate loadable module in module_path:"libpixmap.so"

2000-07-13 Thread Vlad Harchev

On Thu, 13 Jul 2000, David Frascone wrote:

> Hmm . . .strange . . .seems that a theme did it.  If I remove my .gtkrc, it
> works fine.  Here is the offensive .gtkrc

 If you remove .gtkrc, it seems that gtk+ will use default theme that doesn't
require pixmap engine - so this is the reason the message disappears.
 
 Could you try restoring your original .gtkrc shown below, and add
module_path "/usr/lib/gtk/themes/"
 to it and report results.
 
> # -- THEME AUTO-WRITTEN DO NOT EDIT
> include "/home/chaos/.themes/DarkMarble/gtk/gtkrc"
> 
> style "user-font"
> {
>   font="-adobe-helvetica-medium-r-normal-*-*-120-*-*-p-*-iso8859-1"
> }
> widget_class "*" style "user-font"
> 
> include "/home/chaos/.gtkrc.mine"
> 
> # -- THEME AUTO-WRITTEN DO NOT EDIT
> 
> .gtkrc.mine does not exist, and DarkMarble's gtkrc does not modify the 
> module_path
> 
> On Thu, Jul 13, 2000 at 07:10:45PM +0500, Vlad Harchev wrote:
> > On Thu, 13 Jul 2000, David Frascone wrote:
> > 
> > > Wups . . got chopped.
> > > 
> > > On Thu, Jul 13, 2000 at 08:48:59AM -0500, David Frascone wrote:
> > > > >  I didn't have such problem, but is it owned by root and has access rights 
> > > > > "rwxr-xr-x" - I recall something about linux dynamic loader that requires 
>*.so
> > > > > to have execute persmissions for everybody.
> > > > > 
> > > > Here's mine :)
> > > > [chaos@chaos chaos]$ ls -l /usr/lib/gtk/themes/engines
> > > > :
> > > > :
> > > > :
> > > > -rwxr-xr-x1 root root  784 Apr  5 07:01 libpixmap.la
> > > > -rwxr-xr-x1 root root   216930 Apr  5 07:01 libpixmap.so
> > > > :
> > > > :
> > > > :
> > > > 
> > 
> >   In original message, you've stated that you added
> >  module_path "/usr/lib/gtk/themes/engines"
> >   to your gtkrc.
> >   But it seems that you should use module_path "/usr/lib/gtk/themes/" for your
> > file layout (I see this looking at the comments in gtkrc's of various themes).
> > Please try this and report.
> > 
> >   If it still doesn't work: Did you compile libpixmap.so yourself (what is
> > your distro)? If I were you, I would try the following then:
> > 
> >  1) Get compiled libpixmap.so from any other place (i.e. from RedHat - it's in 
> > gtk-engines.rpmor something like this) and try it.
> >  2) If 1) is not acceptable - may be your libgtk.so and libpixmap.so are
> > compiled by different versions of gcc (and probably linked with
> > different versions of glibc), so try to compile them with the same
> > compiler (and probably without all optimizations).
> >  
> >  HTH

 Best regards,
  -Vlad


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: Gtk-WARNING **: Unable to locate loadable module in module_path: "libpixmap.so"

2000-07-13 Thread David Frascone

Hmm . . .strange . . .seems that a theme did it.  If I remove my .gtkrc, it
works fine.  Here is the offensive .gtkrc

# -- THEME AUTO-WRITTEN DO NOT EDIT
include "/home/chaos/.themes/DarkMarble/gtk/gtkrc"

style "user-font"
{
  font="-adobe-helvetica-medium-r-normal-*-*-120-*-*-p-*-iso8859-1"
}
widget_class "*" style "user-font"

include "/home/chaos/.gtkrc.mine"

# -- THEME AUTO-WRITTEN DO NOT EDIT

.gtkrc.mine does not exist, and DarkMarble's gtkrc does not modify the 
module_path

On Thu, Jul 13, 2000 at 07:10:45PM +0500, Vlad Harchev wrote:
> On Thu, 13 Jul 2000, David Frascone wrote:
> 
> > Wups . . got chopped.
> > 
> > On Thu, Jul 13, 2000 at 08:48:59AM -0500, David Frascone wrote:
> > > >  I didn't have such problem, but is it owned by root and has access rights 
> > > > "rwxr-xr-x" - I recall something about linux dynamic loader that requires *.so
> > > > to have execute persmissions for everybody.
> > > > 
> > > Here's mine :)
> > > [chaos@chaos chaos]$ ls -l /usr/lib/gtk/themes/engines
> > > :
> > > :
> > > :
> > > -rwxr-xr-x1 root root  784 Apr  5 07:01 libpixmap.la
> > > -rwxr-xr-x1 root root   216930 Apr  5 07:01 libpixmap.so
> > > :
> > > :
> > > :
> > > 
> 
>   In original message, you've stated that you added
>module_path "/usr/lib/gtk/themes/engines"
>   to your gtkrc.
>   But it seems that you should use module_path "/usr/lib/gtk/themes/" for your
> file layout (I see this looking at the comments in gtkrc's of various themes).
> Please try this and report.
> 
>   If it still doesn't work: Did you compile libpixmap.so yourself (what is
> your distro)? If I were you, I would try the following then:
> 
>  1) Get compiled libpixmap.so from any other place (i.e. from RedHat - it's in 
>   gtk-engines.rpmor something like this) and try it.
>  2) If 1) is not acceptable - may be your libgtk.so and libpixmap.so are
>   compiled by different versions of gcc (and probably linked with
>   different versions of glibc), so try to compile them with the same
>   compiler (and probably without all optimizations).
>  
>  HTH
> 
> > ___
> > gtk-list mailing list
> > [EMAIL PROTECTED]
> > http://mail.gnome.org/mailman/listinfo/gtk-list
> > 
> 
>  Best regards,
>   -Vlad
> 
> 
> ___
> gtk-list mailing list
> [EMAIL PROTECTED]
> http://mail.gnome.org/mailman/listinfo/gtk-list

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: Gtk-WARNING **: Unable to locate loadable module in module_path:"libpixmap.so"

2000-07-13 Thread Vlad Harchev

On Thu, 13 Jul 2000, David Frascone wrote:

> Wups . . got chopped.
> 
> On Thu, Jul 13, 2000 at 08:48:59AM -0500, David Frascone wrote:
> > >  I didn't have such problem, but is it owned by root and has access rights 
> > > "rwxr-xr-x" - I recall something about linux dynamic loader that requires *.so
> > > to have execute persmissions for everybody.
> > > 
> > Here's mine :)
> > [chaos@chaos chaos]$ ls -l /usr/lib/gtk/themes/engines
> > :
> > :
> > :
> > -rwxr-xr-x1 root root  784 Apr  5 07:01 libpixmap.la
> > -rwxr-xr-x1 root root   216930 Apr  5 07:01 libpixmap.so
> > :
> > :
> > :
> > 

  In original message, you've stated that you added
 module_path "/usr/lib/gtk/themes/engines"
  to your gtkrc.
  But it seems that you should use module_path "/usr/lib/gtk/themes/" for your
file layout (I see this looking at the comments in gtkrc's of various themes).
Please try this and report.

  If it still doesn't work: Did you compile libpixmap.so yourself (what is
your distro)? If I were you, I would try the following then:

 1) Get compiled libpixmap.so from any other place (i.e. from RedHat - it's in 
gtk-engines.rpmor something like this) and try it.
 2) If 1) is not acceptable - may be your libgtk.so and libpixmap.so are
compiled by different versions of gcc (and probably linked with
different versions of glibc), so try to compile them with the same
compiler (and probably without all optimizations).
 
 HTH

> ___
> gtk-list mailing list
> [EMAIL PROTECTED]
> http://mail.gnome.org/mailman/listinfo/gtk-list
> 

 Best regards,
  -Vlad


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: Gtk-WARNING **: Unable to locate loadable module in module_path: "libpixmap.so"

2000-07-13 Thread David Frascone

Wups . . got chopped.

On Thu, Jul 13, 2000 at 08:48:59AM -0500, David Frascone wrote:
> >  I didn't have such problem, but is it owned by root and has access rights 
> > "rwxr-xr-x" - I recall something about linux dynamic loader that requires *.so
> > to have execute persmissions for everybody.
> > 
> Here's mine :)
> [chaos@chaos chaos]$ ls -l /usr/lib/gtk/themes/engines
> :
> :
> :
> -rwxr-xr-x1 root root  784 Apr  5 07:01 libpixmap.la
> -rwxr-xr-x1 root root   216930 Apr  5 07:01 libpixmap.so
> :
> :
> :
> 

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: Gtk-WARNING **: Unable to locate loadable module in module_path: "libpixmap.so"

2000-07-13 Thread David Frascone

>  I didn't have such problem, but is it owned by root and has access rights 
> "rwxr-xr-x" - I recall something about linux dynamic loader that requires *.so
> to have execute persmissions for everybody.
> 
Here's mine :)
[chaos@chaos chaos]$ ls -l /usr/lib/gtk/themes/engines

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: Gtk-WARNING **: Unable to locate loadable module in module_path:"libpixmap.so"

2000-07-13 Thread Vlad Harchev

On Wed, 12 Jul 2000, David Frascone wrote:

> I have looked in all the archvies, and see a few people ask about this error,
> but none of their questions were ever asked.
> 
> The library does exist, it /usr/lib/gtk/themes/engines.  I've tried pointing
> module_path to it via the following line in my .gtkrc:
> 
> module_path "/usr/lib/gtk/themes/engines"
> 
> I've even tried adding that path to my ld.so.conf.  No luck.  Please tell me
> what I'm doing wrong.
> 
> gtk-version:  1.2.8
> glib-version: 1.2.8

 I didn't have such problem, but is it owned by root and has access rights 
"rwxr-xr-x" - I recall something about linux dynamic loader that requires *.so
to have execute persmissions for everybody.

 HTH

 Best regards,
  -Vlad


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Gtk-WARNING **: Unable to locate loadable module in module_path: "libpixmap.so"

2000-07-12 Thread David Frascone

I have looked in all the archvies, and see a few people ask about this error,
but none of their questions were ever asked.

The library does exist, it /usr/lib/gtk/themes/engines.  I've tried pointing
module_path to it via the following line in my .gtkrc:

module_path "/usr/lib/gtk/themes/engines"

I've even tried adding that path to my ld.so.conf.  No luck.  Please tell me
what I'm doing wrong.

gtk-version:  1.2.8
glib-version: 1.2.8

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list