GTK help wanted?

2018-01-30 Thread Matthew A. Postiff

  
  
Hi,
Where's a good place to hire a gtk programmer? I need help
  upgrading libwebkit in a gtk program...and eventually upgrading
  gtk.
Thanks,
Matt

  

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


Re: Gtk+ help

2009-10-09 Thread paragasu
http://gtkforums.com

On 10/7/09, tahir er  wrote:
>
> hello,i recently started the Gtk+. i am sorry but i have a question about
> Gtk+. how can i make visual styles in Gtk+, such as openmoko and maemo.
>
> can you give information or web address to me? i need very much.
>
> i will be grateful to you.thanks
>   
> _
> Windows Live: Arkadaşlarınız size e-posta gönderdiklerinde Flickr, Twitter
> ve Digg'deki hareketlerinizi görürler.
> http://www.microsoft.com/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:tr-tr:SI_SB_3:092010
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Gtk+ help

2009-10-07 Thread tahir er

hello,i recently started the Gtk+. i am sorry but i have a question about Gtk+. 
how can i make visual styles in Gtk+, such as openmoko and maemo.

can you give information or web address to me? i need very much.

i will be grateful to you.thanks
  
_
Windows Live: Arkadaşlarınız size e-posta gönderdiklerinde Flickr, Twitter ve 
Digg'deki hareketlerinizi görürler.
http://www.microsoft.com/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:tr-tr:SI_SB_3:092010___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: GTK help for newbie noob

2007-02-19 Thread NewbieNoob

Hello Michael

Thanks for your response. Yes, pygtk is my best shot. I am working through
the pygtk tutorial but I am still having a little difficulty but thanks to
the great help I received today I am on the right track.

Thanks again for your time-Patrick


Michael Torrie wrote:
> 
> On Mon, 2007-02-19 at 09:55 -0800, NewbieNoob wrote:
>> I have no C experience, just BASH and recently Python.
> 
> Might I suggest, then, that you consider using GTK in python.  PyGTK
> works very well and there are lots of docs and tutorials on GTK in
> python.  I think it would be a better fit for you than C.
> 
> Michael
> 
> 
>> 
>> Thanks for your valuable time-Patrick
> 
> ___
> gtk-list mailing list
> gtk-list@gnome.org
> http://mail.gnome.org/mailman/listinfo/gtk-list
> 
> 

-- 
View this message in context: 
http://www.nabble.com/GTK-help-for-newbie-noob-tf3254228.html#a9051959
Sent from the Gtk+ - General mailing list archive at Nabble.com.

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


Re: GTK help for newbie noob

2007-02-19 Thread Michael Torrie
On Mon, 2007-02-19 at 09:55 -0800, NewbieNoob wrote:
> I have no C experience, just BASH and recently Python.

Might I suggest, then, that you consider using GTK in python.  PyGTK
works very well and there are lots of docs and tutorials on GTK in
python.  I think it would be a better fit for you than C.

Michael


> 
> Thanks for your valuable time-Patrick

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


Re: GTK help for newbie noob

2007-02-19 Thread NewbieNoob

Thanks Adam

That was extremely helpful and encouraging. I printed your response, I will
keep it with my notes. Thanks for looking after this Newbie noob-Patrick



Adam Bloom-3 wrote:
> 
> Hey,
> 
> This is the opinion of a fellow newb, but I think it may help.
> 
> Looking at GTK as it if were C can be very confusing, because GTK
> doesn't make much sense from a pure-C perspective. GTK is a pseudo-OO
> language, so thinking of the syntax as a very mangled form of Python
> or C++ may help.
> 
> So a call such as (from the GTK tutorial:
> http://www.gtk.org/tutorial/c39.html)
> 
> window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
> 
> Can be thought of as an object creator. A signal:
> 
> g_signal_connect (G_OBJECT (window), "delete_event",
> G_CALLBACK (delete_event), NULL);
>   
> Is sort of like a dynamic method creator. Give the object (window) a
> new method that activates on a "delete_event" and calls the function
> delete_event.
> 
> You said:
> 
>> I am trying to work my way through the pygtk tutorial but I feel like I
>> am
>> just memorizing bit and pieces of information without understand the
>> underlying rules.
> 
> Honestly, that's fine. As you memorize bits and pieces, the underlying
> rules will start to come into focus. You'll start to see patterns, and
> once you know a few patterns you'll be able to look at something
> unfamiliar and say, "We'll, I know what this bit means, and this looks
> like that other thing." Anything you still don't recognize is just an
> API document away.
> 
> That's my two cents.
> 
> -Adam
> 
>> Thanks for your time Mariano.
>>
>> I am not sure if I am using the correct terminology here. By syntax I
>> mean
>> the grammar of the language. Since GTK is written in C I tried reading
>> through some tutorials on C syntax to get an understanding of how the
>> language is laid out. I was not really able to see the correlation
>> between
>> the C syntax and GTK's.
>>
>> I am trying to work my way through the pygtk tutorial but I feel like I
>> am
>> just memorizing bit and pieces of information without understand the
>> underlying rules.
>>
>> The problem here may be that I am a dumbass. I will try to continue
>> studying.
>>
>> Thanks again-Patrick
>>
>>
>>
>> Mariano Suárez-Alvarez-2 wrote:
>> >
>> > On Mon, 2007-02-19 at 09:55 -0800, NewbieNoob wrote:
>> >> Hi There
>> >>
>> >> I am just learning GTK.
>> >>
>> >> I don't quite get the basic "building blocks" of GTK.
>> >>
>> >> Is there a reference or tutorial out there that focuses on the syntax
>> in
>> >> a
>> >> systematic way?
>> >
>> > I don0t really understand what you mean by syntax here, but...
>> >
>> > There is a tutorial oriented to C at <http://www.gtk.org/tutorial/> and
>> > another one, oriented towards python, at
>> > <http://www.pygtk.org/pygtk2tutorial/index.html>.
>> >
>> > (If you google for "gtk tutorial" you get these two links, and the ones
>> > for Perl, Ruby, and Ocaml among tyhe first few results. Remember:
>> Google
>> > is your friend)
>> >
>> > -- m
>> >
>> >
>> > --
>> > Mariano Suárez-Alvarez
>> > http://www.gnome.org/~mariano
>> >
>> >
>> > _______
>> > gtk-list mailing list
>> > gtk-list@gnome.org
>> > http://mail.gnome.org/mailman/listinfo/gtk-list
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/GTK-help-for-newbie-noob-tf3254228.html#a9047223
>> Sent from the Gtk+ - General mailing list archive at Nabble.com.
>>
>> ___
>> gtk-list mailing list
>> gtk-list@gnome.org
>> http://mail.gnome.org/mailman/listinfo/gtk-list
>>
> ___
> gtk-list mailing list
> gtk-list@gnome.org
> http://mail.gnome.org/mailman/listinfo/gtk-list
> 
> 

-- 
View this message in context: 
http://www.nabble.com/GTK-help-for-newbie-noob-tf3254228.html#a9048739
Sent from the Gtk+ - General mailing list archive at Nabble.com.

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


Re: GTK help for newbie noob

2007-02-19 Thread Adam Bloom
Hey,

This is the opinion of a fellow newb, but I think it may help.

Looking at GTK as it if were C can be very confusing, because GTK
doesn't make much sense from a pure-C perspective. GTK is a pseudo-OO
language, so thinking of the syntax as a very mangled form of Python
or C++ may help.

So a call such as (from the GTK tutorial: http://www.gtk.org/tutorial/c39.html)

window = gtk_window_new (GTK_WINDOW_TOPLEVEL);

Can be thought of as an object creator. A signal:

g_signal_connect (G_OBJECT (window), "delete_event",
  G_CALLBACK (delete_event), NULL);

Is sort of like a dynamic method creator. Give the object (window) a
new method that activates on a "delete_event" and calls the function
delete_event.

You said:

> I am trying to work my way through the pygtk tutorial but I feel like I am
> just memorizing bit and pieces of information without understand the
> underlying rules.

Honestly, that's fine. As you memorize bits and pieces, the underlying
rules will start to come into focus. You'll start to see patterns, and
once you know a few patterns you'll be able to look at something
unfamiliar and say, "We'll, I know what this bit means, and this looks
like that other thing." Anything you still don't recognize is just an
API document away.

That's my two cents.

-Adam

> Thanks for your time Mariano.
>
> I am not sure if I am using the correct terminology here. By syntax I mean
> the grammar of the language. Since GTK is written in C I tried reading
> through some tutorials on C syntax to get an understanding of how the
> language is laid out. I was not really able to see the correlation between
> the C syntax and GTK's.
>
> I am trying to work my way through the pygtk tutorial but I feel like I am
> just memorizing bit and pieces of information without understand the
> underlying rules.
>
> The problem here may be that I am a dumbass. I will try to continue
> studying.
>
> Thanks again-Patrick
>
>
>
> Mariano Suárez-Alvarez-2 wrote:
> >
> > On Mon, 2007-02-19 at 09:55 -0800, NewbieNoob wrote:
> >> Hi There
> >>
> >> I am just learning GTK.
> >>
> >> I don't quite get the basic "building blocks" of GTK.
> >>
> >> Is there a reference or tutorial out there that focuses on the syntax in
> >> a
> >> systematic way?
> >
> > I don0t really understand what you mean by syntax here, but...
> >
> > There is a tutorial oriented to C at <http://www.gtk.org/tutorial/> and
> > another one, oriented towards python, at
> > <http://www.pygtk.org/pygtk2tutorial/index.html>.
> >
> > (If you google for "gtk tutorial" you get these two links, and the ones
> > for Perl, Ruby, and Ocaml among tyhe first few results. Remember: Google
> > is your friend)
> >
> > -- m
> >
> >
> > --
> > Mariano Suárez-Alvarez
> > http://www.gnome.org/~mariano
> >
> >
> > ___
> > gtk-list mailing list
> > gtk-list@gnome.org
> > http://mail.gnome.org/mailman/listinfo/gtk-list
> >
> >
>
> --
> View this message in context: 
> http://www.nabble.com/GTK-help-for-newbie-noob-tf3254228.html#a9047223
> Sent from the Gtk+ - General mailing list archive at Nabble.com.
>
> ___
> gtk-list mailing list
> gtk-list@gnome.org
> http://mail.gnome.org/mailman/listinfo/gtk-list
>
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: GTK help for newbie noob

2007-02-19 Thread NewbieNoob

Thanks for your time Mariano.

I am not sure if I am using the correct terminology here. By syntax I mean
the grammar of the language. Since GTK is written in C I tried reading
through some tutorials on C syntax to get an understanding of how the
language is laid out. I was not really able to see the correlation between
the C syntax and GTK's.

I am trying to work my way through the pygtk tutorial but I feel like I am
just memorizing bit and pieces of information without understand the
underlying rules.

The problem here may be that I am a dumbass. I will try to continue
studying.

Thanks again-Patrick



Mariano Suárez-Alvarez-2 wrote:
> 
> On Mon, 2007-02-19 at 09:55 -0800, NewbieNoob wrote:
>> Hi There
>> 
>> I am just learning GTK.  
>> 
>> I don't quite get the basic "building blocks" of GTK.
>> 
>> Is there a reference or tutorial out there that focuses on the syntax in
>> a
>> systematic way? 
> 
> I don0t really understand what you mean by syntax here, but...
> 
> There is a tutorial oriented to C at <http://www.gtk.org/tutorial/> and
> another one, oriented towards python, at
> <http://www.pygtk.org/pygtk2tutorial/index.html>. 
> 
> (If you google for "gtk tutorial" you get these two links, and the ones
> for Perl, Ruby, and Ocaml among tyhe first few results. Remember: Google
> is your friend)
> 
> -- m
> 
> 
> -- 
> Mariano Suárez-Alvarez
> http://www.gnome.org/~mariano
> 
> 
> ___
> gtk-list mailing list
> gtk-list@gnome.org
> http://mail.gnome.org/mailman/listinfo/gtk-list
> 
> 

-- 
View this message in context: 
http://www.nabble.com/GTK-help-for-newbie-noob-tf3254228.html#a9047223
Sent from the Gtk+ - General mailing list archive at Nabble.com.

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


Re: GTK help for newbie noob

2007-02-19 Thread Mariano Suárez-Alvarez
On Mon, 2007-02-19 at 09:55 -0800, NewbieNoob wrote:
> Hi There
> 
> I am just learning GTK.  
> 
> I don't quite get the basic "building blocks" of GTK.
> 
> Is there a reference or tutorial out there that focuses on the syntax in a
> systematic way? 

I don0t really understand what you mean by syntax here, but...

There is a tutorial oriented to C at  and
another one, oriented towards python, at
. 

(If you google for "gtk tutorial" you get these two links, and the ones
for Perl, Ruby, and Ocaml among tyhe first few results. Remember: Google
is your friend)

-- m


-- 
Mariano Suárez-Alvarez
http://www.gnome.org/~mariano


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


GTK help for newbie noob

2007-02-19 Thread NewbieNoob

Hi There

I am just learning GTK.  

I don't quite get the basic "building blocks" of GTK.

Is there a reference or tutorial out there that focuses on the syntax in a
systematic way? 

I can't quite make out the pattern, does the syntax vary from widget to
widget or is there a standard format I can follow, an "order of operations"
if you will?

To expand:

Is there some sort rule to dictate the hierarchy of the every Widget's
syntax?

Like, first object or class, then widget name, then func, then func data
etc, etc.


I have no C experience, just BASH and recently Python.

Thanks for your valuable time-Patrick
-- 
View this message in context: 
http://www.nabble.com/GTK-help-for-newbie-noob-tf3254228.html#a9046526
Sent from the Gtk+ - General mailing list archive at Nabble.com.

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


gtk help!!!

2002-06-07 Thread enlain

Bueno la duda en este momento es la siguiente se puede crear un menu con barra de 
desplazamiento.

Esto debido a que mi menu tiene muchas opciones y no las veo todas en pantalla.

Si alguien me puede indicar como de antemano gracias.


_
No olvides nada. Recuerda los cumpleaños, tus citas, tus cenas románticas y
todo lo que quieras usando la Agenda personal de Wanadoo.es, desde cualquier
lugar conectado a Internet. Visítala en http://www.wanadoo.es/agenda


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



GTK help!!

2002-06-07 Thread enlain

hola

Bueno la duda en este momento es la siguiente se puede crear un menu con barra de 
desplazamiento.

Esto debido a que mi menu tiene muchas opciones y no las veo todas en pantalla.

Si alguien me puede indicar como de antemano gracias.

gracias por la atencion prestada.
_
No olvides nada. Recuerda los cumpleaños, tus citas, tus cenas románticas y
todo lo que quieras usando la Agenda personal de Wanadoo.es, desde cualquier
lugar conectado a Internet. Visítala en http://www.wanadoo.es/agenda


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



[GTK help]

2002-02-23 Thread Romain



Hi!
How I can superpose two GtkText in the same window 
(in a notebook for example)? In a background, a gtktext where you can't modify 
the text and in the foreground, a gtktext where you can modify the text. Result, 
you have the background and the foreground in the same window with the 
superposed texts.
Thanks,
C@stor
 
Excuse me for my 'english' but I don't speak it 
very well.


[GTK help]

2002-02-20 Thread Castor Fou



Thanks for the tips.
But, my foreground must be diaphanously because the text on the background must be visible. I think 
I'm not clear.
I have a notebook. In the notebook, I add a 
GtKFixed with two GtkText which coordonates must be the same. The 
first GtkText include, for example, a head, the legs, the armes, the 
foot and two hands. The second include the body. It is possible to see 
the body completely ? With a second text's foreground diaphanously 
?
I hope that you understand me,
Thanks,
C@stor
 


RE: [GTK help]

2002-02-20 Thread Esteban Quijano



Let's 
see. As I understand you want a gtktext over a bigger gtktext, both in the same 
window, don't you?
You 
can do that with a GtkFixed widget. You can position widgets at fixed 
coordinates, no matter if one widget is in front of another 
one.
 
Esteban Quijano V.
Artinsoft corp

  -Original Message-From: Castor Fou 
  [mailto:[EMAIL PROTECTED]]Sent: Wednesday, February 20, 2002 
  5:31 AMTo: [EMAIL PROTECTED]Subject: [GTK 
  help]
  
  Hi!
  How I can superpose two GtkText in the same 
  window (in a notebook for example)? In a background, a gtktext where you can't 
  modify the text and in the foreground, a gtktext where you can modify the 
  text. Result, you have the background and the foreground in the same 
  window with the superposed texts.
  Thanks,
  C@stor
   
  Excuse me for my 'english' but I don't speak it 
  very well.


Re: [GTK help]

2002-02-20 Thread Bruce A. Smith



Nope, can't be done.
 

  - Original Message - 
  From: 
  Castor 
  Fou 
  To: [EMAIL PROTECTED] 
  Sent: Wednesday, February 20, 2002 1:30 
  PM
  Subject: [GTK help]
  
  
  Hi!
  How I can superpose two GtkText in the same 
  window (in a notebook for example)? In a background, a gtktext where you can't 
  modify the text and in the foreground, a gtktext where you can modify the 
  text. Result, you have the background and the foreground in the same 
  window with the superposed texts.
  Thanks,
  C@stor
   
  Excuse me for my 'english' but I don't speak it 
  very well.


[GTK help]

2002-02-20 Thread Castor Fou




Hi!
How I can superpose two GtkText in the same window 
(in a notebook for example)? In a background, a gtktext where you can't modify 
the text and in the foreground, a gtktext where you can modify the text. Result, 
you have the background and the foreground in the same window with the 
superposed texts.
Thanks,
C@stor
 
Excuse me for my 'english' but I don't speak it 
very well.