Virus detected

2004-02-09 Thread Andrew E. Makeev
Hi all

I found undelivered message  from [EMAIL PROTECTED] on our mail 
server at 8-Feb-2004. The reason is the body of the message is infected 
with virus - Win32.HLLM.MyDoom.32768. I hope your admins is taking care 
about this issue already.

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


Re: Hello World link errors

2004-02-09 Thread Fazly Fauzy
I had managed to run the hello world program but I got this message here:
** (Test Interface.exe:4060): WARNING **: No builtin or dynamically loaded moduleswere found. Pango will not work correctly. This probably meansthere was an error in the creation of: 'C:\WINDOWS\System32\etc\pango\pango.modules'You may be able to recreate this file by running pango-querymodules.Thank you for using this program.Bye!Press any key to continue
How can I fix this?
The new MSN 8: smart spam protection and 2 months FREE* 
___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Hello World link errors

2004-02-09 Thread Sven Neumann
Hi,

can you please _not_ send HTML mail to mailing lists. Thanks you.


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


Re: Hello World link errors

2004-02-09 Thread Dave Malcolm
On Mon, 2004-02-09 at 09:31, Fazly Fauzy wrote:
 I had managed to run the hello world program but I got this message
 here:
 
 
 ** (Test Interface.exe:4060): WARNING **: No builtin or dynamically
 loaded modul
 es
 were found. Pango will not work correctly. This probably means
 there was an error in the creation of:
   'C:\WINDOWS\System32\etc\pango\pango.modules'
 You may be able to recreate this file by running pango-querymodules.
 Thank you for using this program.
 Bye!
 Press any key to continue
 
 How can I fix this?

Err...  try running pango-querymodules? :-)

In case it helps, Pango is the library that sits below GTK which handles
layout of the letters of a string; it's used by all kinds of text
rendering in GTK, for example when drawing the labels on buttons, for
menus etc (it doesn't actually do the drawing, it works out where each
character should go)

The modules are the plugins that handle each human language.  The file
that it mentions lists ranges of Unicode characters and specifies which
module handles those characters.

BTW, please send emails to the list in plain text form, rather than
ASCII.

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


Re: Hello World link errors

2004-02-09 Thread Dave Malcolm
On Mon, 2004-02-09 at 14:58, Dave Malcolm wrote:

[snip]
 
 BTW, please send emails to the list in plain text form, rather than
 ASCII.

Oops, I meant: don't send HTML mails.

 
 ___
 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


Hi child parent problem

2004-02-09 Thread Anish Chandran
Hi .

Can any tall me how can i set a window the child of another window... ie
the parent window should go to the block state..

Thank you i advance...

Anish

_
Free email with personality! Over 200 domains!
http://www.MyOwnEmail.com
Looking for friendships,romance and more?
http://www.MyOwnFriends.com

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


Why don't all chars display?

2004-02-09 Thread Dennie, Brooke
Hi everyone,

I've been working on getting an iso8859-1 font to display all of
its chars in an entry widget. For some reason I can't get 0xa0 to
display. Here's the code that I'm using:
-
char buff[2], *buff2;
GtkWidget *entry;
PangoFontDescription *pfd;

.

buff[0] = (char)0xa0;
buff[1] = '\0';

gtk_widget_modify_font(entry, pfd);

buff2 = g_convert(buff, -1, UTF-8, ISO8859-1, NULL, NULL,
NULL);
gtk_entry_set_text(GTK_ENTRY(entry), buff2);

.

-

It shows up as just a blank space (it should be a greek alpha). 
When I run this with any other value besides 0xa0, it works just
as I had expected. What am I doing wrong?

Thanks!

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


Re: Why don't all chars display?

2004-02-09 Thread Mark Leisher
Dennie, Brooke wrote:
I've been working on getting an iso8859-1 font to display all of
its chars in an entry widget. For some reason I can't get 0xa0 to
display. Here's the code that I'm using:
In the ISO8859-1 character set 0xA0 is a non-breaking space, not a Greek Alpha.
--
---
Mark Leisher
Computing Research LabThe fury with which untenable beliefs
New Mexico State University   are defended is inversely proportional
Box 30001, Dept. 3CRL to their defensibility.
Las Cruces, NM  88003   -- Richard Dawkins
___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


RE: Why don't all chars display?

2004-02-09 Thread Dennie, Brooke

Hmm. That's interesting. This font claims to be ISO8859-1 and 0xa0 
is definitely not a nbsp. I ran xfd on it and it displays as an
alpha there...


 -Original Message-
 From: Mark Leisher [mailto:[EMAIL PROTECTED]
 Sent: Monday, February 09, 2004 2:08 PM
 To: '[EMAIL PROTECTED]'
 Subject: Re: Why don't all chars display?
 
 
 Dennie, Brooke wrote:
  I've been working on getting an iso8859-1 font to display all of
  its chars in an entry widget. For some reason I can't get 0xa0 to
  display. Here's the code that I'm using:
 
 In the ISO8859-1 character set 0xA0 is a non-breaking space, 
 not a Greek Alpha.
 -- 
 --
 -
 Mark Leisher
 Computing Research LabThe fury with which 
 untenable beliefs
 New Mexico State University   are defended is 
 inversely proportional
 Box 30001, Dept. 3CRL to their defensibility.
 Las Cruces, NM  88003   -- Richard Dawkins
 ___
 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+ books

2004-02-09 Thread Jack Chen
 --- Juhana Sadeharju [EMAIL PROTECTED] wrote:  From: Jack Chen
[EMAIL PROTECTED]
 
 Hi, I think the official GTK programming tutorial on the official
 GTK's
 site is the best resource for programming GTK I've found.
 
 So, the situation is pretty bad.
 
 I checked drawing area widget page in the tutorial but it is empty.
 The drawing area widget is at the top among widgets where I start
 wishing better documentation and tools. It is the place where GTK+
 ends too soon.
 
 Regards,
 Juhana

Yeah I know what you mean: there's no documentation for drawing_area.
But actually drawing area is the most primitive widget because you have
to handle all the events yourself, and you can draw anything on it
using the GDK library which has all the functions for drawing shapes. I
have made a program using the drawing_area widget to display OpenGL
rendering, and most of the things I need to remember are that

- the configure event is sent when the widget is first appeared, and
- the expose event is sent when the widget needs to be redrawn.

Other than that, there's nothing too much about the drawing_area
widget... you just draw whatever you like on it. Oh and I got these
information from a book about programing in GNOME, and from the code
examples that come from GtkGlExt, which lets you make OpenGL renders in
a GTK widget.

I don't remember the name of that GNOME book right now, but if you are
interested I can search it for you.

Bye.

Jack

__ 
Post your free ad now! http://personals.yahoo.ca
___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Hello World link errors

2004-02-09 Thread busmanus
Fazly Fauzy wrote:
I had managed to run the hello world program but I got this message here:

** (Test Interface.exe:4060): WARNING **: No builtin or dynamically 
loaded modul
es
were found. Pango will not work correctly. This probably means
there was an error in the creation of:
  'C:\WINDOWS\System32\etc\pango\pango.modules'
You may be able to recreate this file by running pango-querymodules.
Find pango-querymodules (or pango-querymodules.exe), run it and redirect
the result to pango.modules. It should look something like this in a DOS
window:
pango-querymodules.exe  pango.modules

Then you copy the resulting file to its proper place. Well, at least
that's how I did it under Linux.
busmanus


Miert fizetsz az internetert? Korlatlan, ingyenes internet hozzaferes a FreeStarttol.
Probald ki most! http://www.freestart.hu
___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Why don't all chars display?

2004-02-09 Thread Mark Leisher
Dennie, Brooke wrote:
Hmm. That's interesting. This font claims to be ISO8859-1 and 0xa0 
is definitely not a nbsp. I ran xfd on it and it displays as an
alpha there...

This is just a guess because I haven't seen the code, but Pango may be 
handling known spaces in a special way.

Is this a freely available font that we might look at?
--
---
Mark Leisher
Computing Research LabThe fury with which untenable beliefs
New Mexico State University   are defended is inversely proportional
Box 30001, Dept. 3CRL to their defensibility.
Las Cruces, NM  88003   -- Richard Dawkins
___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


RE: Why don't all chars display?

2004-02-09 Thread Dennie, Brooke
I don't believe it is. It's called Key Courrier, but I wasn't able
to find a copy of it in any public area. 

I've previously only used it in OpenLook (under the same OS I'm
currently using) and never had any issues with it there, so your
assumption about pango could very well be right. I'll have to take
a look at the pango src and see if I can find something there.

Thanks!

Brooke

 -Original Message-
 From: Mark Leisher [mailto:[EMAIL PROTECTED]
 Sent: Monday, February 09, 2004 4:08 PM
 To: '[EMAIL PROTECTED]'
 Subject: Re: Why don't all chars display?
 
 
 Dennie, Brooke wrote:
  Hmm. That's interesting. This font claims to be ISO8859-1 and 0xa0 
  is definitely not a nbsp. I ran xfd on it and it displays as an
  alpha there...
  
 
 This is just a guess because I haven't seen the code, but 
 Pango may be 
 handling known spaces in a special way.
 
 Is this a freely available font that we might look at?
 -- 
 --
 -
 Mark Leisher
 Computing Research LabThe fury with which 
 untenable beliefs
 New Mexico State University   are defended is 
 inversely proportional
 Box 30001, Dept. 3CRL to their defensibility.
 Las Cruces, NM  88003   -- Richard Dawkins
 ___
 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: Hi child parent problem

2004-02-09 Thread Kevin Leung
Can any tall me how can i set a window the child of another window... ie
the parent window should go to the block state..
GtkDialog is probably what you are looking for. It blocks the main loop.

Kevin Leung

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


Re: Hello World link errors

2004-02-09 Thread Fazly Fauzy
Sorry for the HTML thing.

I've ran pango-querymodules and copied pango.modules to 
C:\Windows\System32\etc\pango\
I also copied the \lib\pango\1.2.0\modules folder to C:\Windows\System32 
because pango.modules in it specified ModulesPath = 
C:\WINDOWS\System32\lib\pango\1.2.0\modules

I'm still getting the same error. Please do excuse my posts because I am 
very new at this and still trying to learn how work with GTK+.

Also maybe I should have mentioned this; the GTK I installed were
GTK-Runtime-Environment-2.2.4.1 and  GTK-Development-Environment-2.2.4.1

[snip]
  BTW, please send emails to the list in plain text form, rather than  
ASCII.

Oops, I meant: don't send HTML mails.

  ___  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
_
Are you in love? Find a date on MSN Personals http://match.msn.com.my/
___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Hi child parent problem

2004-02-09 Thread Manoj tr

- Original Message -
From: Anish Chandran [EMAIL PROTECTED]
Date: Mon, 9 Feb 2004 11:04:10 -0600
To: [EMAIL PROTECTED]
Subject: Hi child parent problem

 Hi .
 
 Can any tall me how can i set a window the child of another window... ie
 the parent window should go to the block state..
 
 Thank you i advance...
 
 Anish
 
 _
 Free email with personality! Over 200 domains!
 http://www.MyOwnEmail.com
 Looking for friendships,romance and more?
 http://www.MyOwnFriends.com
 
 ___
 gtk-list mailing list
 [EMAIL PROTECTED]
 http://mail.gnome.org/mailman/listinfo/gtk-list;;


Hai 

 I think u want set a widget to the child of another widget. If u want this u can 
use the function

voidgtk_widget_set_parent   (GtkWidget *widget,
 GtkWidget *parent);



With Regards
Manoj

-- 
__
Check out the latest SMS services @ http://www.linuxmail.org 
This allows you to send and receive SMS through your mailbox.


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