regarding gtk and x11 componenets

2010-04-02 Thread shriti G
Hi 

This is  shruthi here .. I am doing my MTech . I am doing my final year
project in Philips innovation campus tumkur..

I am trying to build gtk-directfb on phoneme ..

I installed gtk2.17 on directfb . now I am trying to build gtk on phoneme .

 

I se some of the native files such as GComponentpeer.c and GFramePeer.c
contains some x11 components I don't want to use x11 in my project how to
replace these with similar functions of gtk ..

 

I hope u would help me in this ...

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


Re: regarding gtk and x11 componenets

2010-03-19 Thread Tor Lillqvist
 I am trying to build gtk-directfb on phoneme ….

Why do you assume people would know what phoneme is?

  how to replace these with similar functions of gtk ……

By asking for help on the Interwebs? Or by doing the research and
coding required yourself? Which approach would you be more proud of?

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

regarding gtk and x11 componenets

2010-03-19 Thread shriti G
Hi 

This is  shruthi here .. I am doing my MTech . I am doing my final year
project in Philips innovation campus tumkur..

I am trying to build gtk-directfb on phoneme ..

I installed gtk2.17 on directfb . now I am trying to build gtk on phoneme .

 

I se some of the native files such as GComponentpeer.c and GFramePeer.c
contains some x11 components I don't want to use x11 in my project how to
replace these with similar functions of gtk ..

 

I hope u would help me in this ...

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


Re: regarding gtk and x11 componenets

2010-03-19 Thread Tor Lillqvist
 I am trying to build gtk-directfb on phoneme ….

Why do you assume people would know what phoneme is?

  how to replace these with similar functions of gtk ……

By asking for help on the Interwebs? Or by doing the research and
coding required yourself? Which approach would you be more proud of?

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


regarding gtk build on phoneme

2010-03-15 Thread shriti G
Hi 

 

How to build gtk2.17.0 on phoneme to port awt into directfb...

 

What are all the API changes had to be made in GTk2.17.0 API ...so that all
the API works properly

 

 

What are all the changes I had to be made in GTK2.17.0. to get the proper
result

I hope u will help regarding this 

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


Re: Regarding GTK Entry keys

2010-02-14 Thread AshokKumar G
Hi Sanny,
 Thanks for your reply. I am doing it.

Regards  Cheers
AshokKumar.G
+919986132890


On Fri, Feb 12, 2010 at 1:26 PM, Sanny Chawla sanny.cha...@gmail.comwrote:

 Hi Ashok,

 This might be because of the incorrect hardware keycode for the function
 keys on your embedded system. The key events that you mentioned (Backspace ,
 Delete , etc) are activated through key bindings in Gtk which needs a valid
 hardware keycode.

 You can try modifying the keymap table for this. xmodmap utility can be
 helpful for the same.

 Cheers ,
 Sanny


 On Wed, Feb 10, 2010 at 4:27 AM, AshokKumar G 
 ashok.sysprogram...@gmail.com wrote:

 Hi,
 I am new to GTK+ programming. I have created a test application
 with GtkEntry on embedded system based on ARM and backend target is
 DirectFB-1.2.9. I am able to enter the text into GtkEntry field. But when
 I
 use BackSpace, Delete, Arrow Keys (left or right for navigation), no
 action
 is taken. In my test application I have registered call back
 key-press-event
 to verify whether event is coming or not, when I press backspace the event
 is coming and I am returning FALSE from that call back function. But no
 character is getting deleted on backspace/delete key press.
 But when I run my same test application on PC GTK+same version
 with
 backend target X11, then all the actions are performing as expected.
 Could some one help me on this?

 Thanks  Regards,
 AshokKumar.G

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



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


Re: Regarding GTK Entry keys

2010-02-11 Thread Sanny Chawla
Hi Ashok,

This might be because of the incorrect hardware keycode for the function
keys on your embedded system. The key events that you mentioned (Backspace ,
Delete , etc) are activated through key bindings in Gtk which needs a valid
hardware keycode.

You can try modifying the keymap table for this. xmodmap utility can be
helpful for the same.

Cheers ,
Sanny


On Wed, Feb 10, 2010 at 4:27 AM, AshokKumar G ashok.sysprogram...@gmail.com
 wrote:

 Hi,
 I am new to GTK+ programming. I have created a test application
 with GtkEntry on embedded system based on ARM and backend target is
 DirectFB-1.2.9. I am able to enter the text into GtkEntry field. But when I
 use BackSpace, Delete, Arrow Keys (left or right for navigation), no action
 is taken. In my test application I have registered call back
 key-press-event
 to verify whether event is coming or not, when I press backspace the event
 is coming and I am returning FALSE from that call back function. But no
 character is getting deleted on backspace/delete key press.
 But when I run my same test application on PC GTK+same version with
 backend target X11, then all the actions are performing as expected.
 Could some one help me on this?

 Thanks  Regards,
 AshokKumar.G
 ___
 gtk-app-devel-list mailing list
 gtk-app-devel-list@gnome.org
 http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

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


Regarding GTK Entry keys

2010-02-09 Thread AshokKumar G
Hi,
 I am new to GTK+ programming. I have created a test application
with GtkEntry on embedded system based on ARM and backend target is
DirectFB-1.2.9. I am able to enter the text into GtkEntry field. But when I
use BackSpace, Delete, Arrow Keys (left or right for navigation), no action
is taken. In my test application I have registered call back key-press-event
to verify whether event is coming or not, when I press backspace the event
is coming and I am returning FALSE from that call back function. But no
character is getting deleted on backspace/delete key press.
 But when I run my same test application on PC GTK+same version with
backend target X11, then all the actions are performing as expected.
 Could some one help me on this?

Thanks  Regards,
AshokKumar.G
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list


Question regarding GTK Input method module

2008-01-17 Thread Suzuki K P
Hi,

I am looking at adding a compose_sequence table for German language (
as we do for Cyrillic alphabets in imcyrillic-translit module). What
are the restrictions on the usage of GDK_ symbols to construct the
same ?

I tried using the GDK_Alt_R for getting the real console keyboard
mapping inside the GTK input module.
i.e, Alt_R + U = some other character.

 But somehow the modifiers are ignored in the key sequences. I tried
removing the GDK_Alt_R key from the ignore table, but still the key
combinations didn't work.

Also I tried using GDK_semicolon in the compose table, and that also
didn't work well :( .

I am wondering how do we do it for handling the Menu items etc. (
where we do Alt+E, to select the menu items.) I mean seperating the
Alt key + Other key symbols.


Any help/ pointer to a documentation would be really helpful.

Thanks  Regards,

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


Question regarding GTK Input method module

2008-01-17 Thread Suzuki K P
Hi,

I am looking at adding a compose_sequence table for German language (
as we do for Cyrillic alphabets in imcyrillic-translit module). What
are the restrictions on the usage of GDK_ symbols to construct the
same ?

I tried using the GDK_Alt_R for getting the real console keyboard
mapping inside the GTK input module.
i.e, Alt_R + U = some other character.

 But somehow the modifiers are ignored in the key sequences. I tried
removing the GDK_Alt_R key from the ignore table, but still the key
combinations didn't work.

Also I tried using GDK_semicolon in the compose table, and that also
didn't work well :( .

I am wondering how do we do it for handling the Menu items etc. (
where we do Alt+E, to select the menu items.) I mean seperating the
Alt key + Other key symbols.


Any help/ pointer to a documentation would be really helpful.

Thanks  Regards,

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


Re: Regarding GTK

2007-06-07 Thread Ritesh Khadgaray
On Thu, 2007-06-07 at 09:41 +0530, Sashi Kiran Akella wrote:
 Hi,
 
I've installed gtk+-2.6 RPM into my Fedora 3 Box. I've 
 uninstalled any previous versions of gtk. Now after installing one 
 application it is again asking gtk+-2.0=gtk+-2.4.
 
 Please help me come out of this problem.
  
It would be easier to upgrade your system to Fedora Core 4 .

Sashi 
 Kiran
 ___
 gtk-list mailing list
 gtk-list@gnome.org
 http://mail.gnome.org/mailman/listinfo/gtk-list
-- 
Ritesh Khadgaray
ॐ मणि पद्मे हूँ
LinuX N Stuff
Ph: +919970164885
Eat Right, Exercise, Die Anyway.

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


Regarding GTK

2007-06-06 Thread Sashi Kiran Akella
Hi,

   I've installed gtk+-2.6 RPM into my Fedora 3 Box. I've 
uninstalled any previous versions of gtk. Now after installing one 
application it is again asking gtk+-2.0=gtk+-2.4.

Please help me come out of this problem.
 
   Sashi 
Kiran
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Regarding GTK

2007-06-01 Thread Sashi Kiran Akella
Hi,

I've removed gtk+-2.3.5 and installed gtk+-2.6.1-2, even after 
that I';m getting the following error:

checking for PACKAGE... Requested 'gtk+-2.0 = 2.4.0' but version of 
GTK+ is 2.3.5
configure: error: Package requirements (gtk+-2.0 = 2.4.0 libglade-2.0 
glib-2.0 gthread-2.0) were not met:



Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables PACKAGE_CFLAGS
and PACKAGE_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details

Please help me come out of this problem.
 
--Sashi
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Regarding GTK

2007-06-01 Thread Gian Mario Tagliaretti
2007/6/1, Sashi Kiran Akella [EMAIL PROTECTED]:

 I've removed gtk+-2.3.5 and installed gtk+-2.6.1-2, even after
 that I';m getting the following error:

 checking for PACKAGE... Requested 'gtk+-2.0 = 2.4.0' but version of
 GTK+ is 2.3.5

It depends on many factors, did you install the old and/or the new
version of gtk in a non system folder? did you use the packaging
software of you distro? (I dubt that)

I guess you now have part of the old gtk installation most likely in
the system path e.g. /usr/lib and the new install in a non system
folder e.g. /usr/local/lib.

To help you with that we should know where and what you did in your
attempt of removing/installing the library,

cheers
-- 
Gian Mario Tagliaretti
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Regarding gtk

2007-05-29 Thread Sashi Kiran Akella
Please any one help me in getting an rpm for gtk+-2.4.
 
  Sashi
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Regarding gtk

2007-05-29 Thread Emmanuele Bassi
On Tue, 2007-05-29 at 17:51 +0530, Sashi Kiran Akella wrote:
 Please any one help me in getting an rpm for gtk+-2.4.

gtk+ 2.4 was released more than three years ago and is unmaintained. are
you sure you want to use it?

I don't think there's a distribution still shipping a package for that
release. you might try rpmfind.net but I doubt you'll find it.

ciao,
 Emmanuele.

-- 
Emmanuele Bassi,  E: [EMAIL PROTECTED]
W: http://www.emmanuelebassi.net
B: http://log.emmanuelebassi.net

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


Re: Regarding gtk

2007-05-29 Thread Emmanuele Bassi
you should reply to the list, not to me.

On Tue, 2007-05-29 at 18:03 +0530, Sashi Kiran Akella wrote:
 Emmanuele Bassi wrote:
 

 gtk+ 2.4 was released more than three years ago and is unmaintained. are
 you sure you want to use it?
 
 I don't think there's a distribution still shipping a package for that
 release. you might try rpmfind.net but I doubt you'll find it.

 I have to use gtk 2.4 or greater version. I want a RPM for that.

if you have to use a greater version, you can download RPMs for 2.10.12
which is the latest stable release of GTK+. you can find them inside the
repositories for the distribution you are using - without knowing it
there isn't much anyone can tell.

ciao,
 Emmanuele.

-- 
Emmanuele Bassi,  E: [EMAIL PROTECTED]
W: http://www.emmanuelebassi.net
B: http://log.emmanuelebassi.net

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


Re: Regarding gtk

2007-05-29 Thread Emmanuele Bassi
again: you should reply to the list, not to me.

On Tue, 2007-05-29 at 18:13 +0530, Sashi Kiran Akella wrote:
 Emmanuele Bassi wrote:

 gtk+ 2.4 was released more than three years ago and is unmaintained. are
 you sure you want to use it?
 
 I don't think there's a distribution still shipping a package for that
 release. you might try rpmfind.net but I doubt you'll find it.

 I have to use gtk 2.4 or greater version. I want a RPM for that.

 if you have to use a greater version, you can download RPMs for 2.10.12
 which is the latest stable release of GTK+. you can find them inside the
 repositories for the distribution you are using - without knowing it
 there isn't much anyone can tell.

 can you give me the link please..

no, because I have no idea whatsoever about what kind of distribution
you are using, and you cannot use RPMs from different distributions.

use http://rpmfind.net to find the right RPM for *your* distribution.

ciao,
 Emmanuele.

-- 
Emmanuele Bassi,  E: [EMAIL PROTECTED]
W: http://www.emmanuelebassi.net
B: http://log.emmanuelebassi.net

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


Re: Regarding gtk

2007-05-29 Thread Yeti
On Tue, May 29, 2007 at 03:51:24PM +0300, Emmanuele Bassi wrote:
 
  can you give me the link please..
 
 no, because I have no idea whatsoever about what kind of distribution
 you are using, and you cannot use RPMs from different distributions.
 
 use http://rpmfind.net to find the right RPM for *your* distribution.

Even better idea than searching rpmfind, inevitably
downloading a package the wrong distro [version] and then
trying to break your system with it, is to just tell the
distro package management tool to install Gtk+ (assuming
devel is wanted too):

RedHat/Fedora: yum install gtk2-devel
SuSE:  yast -i gtk2-devel
Mandriva:  urpmi libgtk+2.0_0-devel
PCLinuxOS: apt-get install libgtk+2.0_0-devel

Yeti

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


Regarding GTK player

2006-06-16 Thread prashu

hi all... 
  i am designing user inerface to mobiles for mobiles. For UI i selected GTK
as framework.
  I am writting in C langauge. What actually i need is one playlist window
which contains audio files from particular directory. on selecting file from
playlist another window should open. which contains play and pause buttons.
If any one have code of this thing , please mail to my id,
[EMAIL PROTECTED] 

with regards,
Prashanth KM
--
View this message in context: 
http://www.nabble.com/Regarding-GTK-player-t1797584.html#a4898493
Sent from the Gtk+ - General forum at Nabble.com.

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


Re: A question regarding Gtk::IconView text formatting...

2006-03-22 Thread Murray Cumming
On Wed, 2006-03-22 at 01:20 -0800, R. Douglas Barbieri wrote:
[snip]
 I was unable to get the text for each icon in the control to behave in a
 manner I found acceptable. For example:
 
 http://www.dooglio.net/images/iconview_example_simple.png
 
 Note how the text just wraps mid-word. I could not find a way to stop
 this, since I have no access to the underlying Gtk::Label (I'm assuming
 it's a Gtk::Label). Unless I'm just missing something here...

Yes, that doesn't look nice. I've seen the same problem in Nautilus'
icon view. CCing [EMAIL PROTECTED]

-- 
Murray Cumming
[EMAIL PROTECTED]
www.murrayc.com
www.openismus.com

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


Re: regarding gtk+ syntax highlighting

2005-02-08 Thread Russell Shaw
subashini wrote:
Sir,
  I 'm a UG student doing a project in GTK+ programming. 
I need to know about the SYNTAX highlighting in GTK. Please guide me 
with the necessary details. Awaiting your reply.
check out gedit.
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: regarding gtk+ syntax highlighting

2005-02-08 Thread Russell Shaw
subashini wrote:
Sir,
  I 'm a UG student doing a project in GTK+ programming. 
I need to know about the SYNTAX highlighting in GTK. Please guide me 
with the necessary details. Awaiting your reply.
This is the gtk devel-list NOT the user list. Ask on gtk-app-devel-list.
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: regarding gtk+ syntax highlighting

2005-02-08 Thread Iago Rubio
On Sat, 2005-02-05 at 11:47, subashini wrote:
 Sir,
   I 'm a UG student doing a project in GTK+
 programming. I need to know about the SYNTAX highlighting in GTK.
 Please guide me with the necessary details. Awaiting your reply.

It's off topic in this list.

You can find help on this issue at:
http://gtksourceview.sourceforge.net/
http://mail.gnome.org/mailman/listinfo/gnome-devtools
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list


Regards.
-- 
Iago Rubio
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


help regarding gtk+

2005-02-08 Thread Kushan Thakershy

 
hi there,
we are plaing to develop a banking system in c language under linux.
you can make user interface using the GTK+ (glade) software.
there is one option called build program. once u build the project it generates .c files.

interface.c
support.c
main.c
callbacks.c

and also the respective .h files.
my problem is how to use those files..

can i use the code generated by the gtk+ software?

or which file i should compile and run so that i can get the userinterface.

or which file i should include in my atcual source code..

please help me regarding this. i have to finish this project as soon as possible.

regards,



Kushan P.Thakershy
+91-9890706687

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


Re: help regarding gtk+

2005-02-08 Thread Alif Wahid
take a look at all the tutorials for glade from the glade website. 

http://glade.gnome.org

The following tutorial is quite good.

http://wingtk.sourceforge.net/ishan/glade.html

Hope this helps.

Alif.


On Tue, 08 Feb 2005 02:25:17 -0800 (PST), Kushan Thakershy
[EMAIL PROTECTED] wrote:
 
 

  hi there,
  we are plaing to develop a banking system in c language under linux.
  you can make user interface using the GTK+ (glade) software.
  there is one option called build program. once u build the project it
 generates .c files.
  
  interface.c
  support.c
  main.c
  callbacks.c
  
  and also the respective .h files.
  my problem is how to use those files..
  
  can i use the code generated by the gtk+ software?
  
  or which file i should compile and run so that i can get the userinterface.
  
  or which file i should include in my atcual source code..
  
  please help me regarding this. i have to finish this project as soon as
 possible.
  
  regards, Kushan P. Thakershy 
  +91-9890706687
 
  
 ___
 gtk-list mailing list
 gtk-list@gnome.org
 http://mail.gnome.org/mailman/listinfo/gtk-list
 
 
 


-- 
Heaven is the peaceful place on earth...New Zealand.
 -- Alif Wahid.
___
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list