Re: gtk and linux

2011-11-06 Thread Michael Torrie
On 11/03/2011 02:07 AM, Craig wrote:
 Is there a list of linux flavors like Ubuntu, KDE, Red Hat... that
 include or don't include gtk? And, let's say that a type of linux
 doesn't include gtk, how difficult is it for an average computer user to
 install gtk (on a scale of 1 to 10)?

Programs like VMWare ship their own GTK+ libraries that they use if they
can't detect the appropriate libraries on the system.  You might
consider doing that as well if this is a concern to you.
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list


gtk and linux

2011-11-03 Thread Craig
Hi,

Is there a list of linux flavors like Ubuntu, KDE, Red Hat... that
include or don't include gtk? And, let's say that a type of linux
doesn't include gtk, how difficult is it for an average computer user to
install gtk (on a scale of 1 to 10)?


-- 
Craig craigbakal...@verizon.net

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


Re: gtk and linux

2011-11-03 Thread Vlad Volodin

Hello Craig,

It seems that an average user has to be able to install linux and then 
configure it (if possible). That is why I cannot give you an skill 
level... maybe 7, or 7.35-7.63 :)



 Is there a list of linux flavors like Ubuntu, KDE, Red Hat... that include 
or don't include gtk

Even if your disto does not have GTK packages, you can build them from sources 
or try to search for some ports. This task probably can be performed by 8 or 9 
skilled average user.

Thanks,
Vlad

On 11/3/2011 1:07 AM, Craig wrote:

Hi,

Is there a list of linux flavors like Ubuntu, KDE, Red Hat... that
include or don't include gtk? And, let's say that a type of linux
doesn't include gtk, how difficult is it for an average computer user to
install gtk (on a scale of 1 to 10)?




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


Re: gtk and linux

2011-11-03 Thread jcupitt
Hi Craig,

On 3 November 2011 08:07, Craig craigbakal...@verizon.net wrote:
 Is there a list of linux flavors like Ubuntu, KDE, Red Hat... that
 include or don't include gtk? And, let's say that a type of linux

I think all will include gtk, either as part of the standard install
or available via the package manager. To install from the package
manager you just need to type gtk and click the install button
(details vary a bit).

Even this step is usually done for you: if you install a program which
needs gtk, gtk will be automatically installed for you.

 doesn't include gtk, how difficult is it for an average computer user to
 install gtk (on a scale of 1 to 10)?

Building and installing the whole of gtk from source requires a lot of
skill and work, but I think no regular user would ever need to do
this.

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


Re: gtk and linux

2011-11-03 Thread David Nečas
On Thu, Nov 03, 2011 at 04:07:44AM -0400, Craig wrote:
 Is there a list of linux flavors like Ubuntu, KDE, Red Hat... that
 include or don't include gtk?

Use distrowatch.  It lists the packaged version of Gtk+ for every
version of the distribtion.  E.g. for Fedora:

http://distrowatch.com/table.php?distribution=fedora

and see the row labelled gtk+.  Distros that do not package Gtk+ at all
are very rare (mosty those not including any GUI whatsoever).

 And, let's say that a type of linux
 doesn't include gtk, how difficult is it for an average computer user to
 install gtk (on a scale of 1 to 10)?

8.47654138908745330124567, maybe 8.47654138908745330124568.

Yeti

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


GTK on linux framebuffer - disabling the mouse

2008-12-08 Thread Maik Greubel
Hello list,

I tried to find a hint of disabling the mouse (cursor  handlers) in the
gdk  gtk reference without luck. Is there a possibility to disable the
mouse handling completely? I try to write an application for the
framebuffer, where the mouse is not needed and will only be a gap.

Thanks in advance for any points

Regards

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


Re: cross-compiling a GTK app, linux - darwin

2007-03-30 Thread Allin Cottrell
On Thu, 29 Mar 2007, Michael Torrie wrote:

 First, see http://ranger.befunk.com/fink/darwin-cross/ .  To 
 build useful exes, though, you have to populate the cross 
 environment with headers, libraries, and frameworks from the 
 real OS X box.  It's a bit tedious but doable.  Here are some 
 tips...

Thanks very much.  Yes, it does look doable -- on a day when one 
is feeling strong!

--
Allin Cottrell
Department of Economics
Wake Forest University, NC
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list


cross-compiling a GTK app, linux - darwin

2007-03-29 Thread Allin Cottrell
Does anyone have expertise/recommendations to share, on the 
subject of compiling a GTK app on x86 Linux for the 
powerpc-apple-darwin target?

I'm familiar with the linux - win32 cross.  This is relatively 
easy since mingw makes the win32 API available in a single 
package, and Tor Lillqvist makes available the GTK dev material 
for win32, plus various dependencies, also nicely packaged.

I'm wondering if tarring up all the GTK+ stuff from a fink 
installation on OS X, and dumping it into a suitable directory on 
Linux, is going to get me anywhere (having built a suitable 
binutils and cross-gcc first, of course).

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


Re: cross-compiling a GTK app, linux - darwin

2007-03-29 Thread Michael Torrie
On Thu, 2007-03-29 at 22:42 -0400, Allin Cottrell wrote:
 Does anyone have expertise/recommendations to share, on the 
 subject of compiling a GTK app on x86 Linux for the 
 powerpc-apple-darwin target?
 
 I'm familiar with the linux - win32 cross.  This is relatively 
 easy since mingw makes the win32 API available in a single 
 package, and Tor Lillqvist makes available the GTK dev material 
 for win32, plus various dependencies, also nicely packaged.
 
 I'm wondering if tarring up all the GTK+ stuff from a fink 
 installation on OS X, and dumping it into a suitable directory on 
 Linux, is going to get me anywhere (having built a suitable 
 binutils and cross-gcc first, of course).

First, see http://ranger.befunk.com/fink/darwin-cross/ .  To build
useful exes, though, you have to populate the cross environment with
headers, libraries, and frameworks from the real OS X box.  It's a bit
tedious but doable.  Here are some tips:

- Place any .framework folders in the lib folder of the cross
environment.
- symlink any Include directories inside the frameworks to the include
folder, but without the .framwork extension. In otherwords, symlink
$CROSSROOT/lib/fooBar.framework/Headers to $CROSSROOT/include/fooBar
- You'll have to go through each dylib and use the otool and
install_name_tool command to find and fixup the linker paths to match
your cross environment's directory structure.  For example, many dylibs
want to link against /usr/lib/libSystem.B.dylib.  You'll have to use
install_name_tool to change that
to /path/to/cross/lib/libSystem.B.dylib.  This does not affect your exes
at all, unless you bundled a library with the exe, but then you'll want
to use install_name_tool anyway to adjust the paths to be relative to
the app bundle itself.  For more information on this in general, see the
following information that applies to more than just Qt:
http://doc.trolltech.com/4.2/deployment-mac.html


Right now I only have my OS X 10.3 PPC cross environment populated.  I
use it to, ahem, build Qt apps (app bundles and all) for OS X 10.3 or
later from my Linux box.  

I have some scripts I used to do the fixups, which I may be able to
e-mail to you.  I cannot offer the cross environment for download
anywhere because it contains actual apple libraries (the OS X runtime
libraries and frameworks) that cannot be distributed.  They'd have to
come from your own licensed copy of OS X.


I don't think it's currently possible to cross-compile GTK itself for
Quartz (you can for X11, though), but once GTK is built, it's just a
matter of transferring the headers, libraries, and frameworks to the
linux environment.

Michael


 
 Allin Cottrell
 ___
 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: gtk+-1.2.10 (linux) vs gtk+-1.3.0 (windows) looks

2005-05-13 Thread Thorsten Maerz

Hi Chisheng,

On Thu, 12 May 2005 17:10:17 + (GMT) Chisheng Huang [EMAIL PROTECTED] 
wrote:

 Does anybody know how to make radio buttons, check buttons, and spinners
 in GTK+-1.3.0 for MS Windows look as nice as those in GTK+-1.2.10 for 
 Linux?

For gtk-1.3 you may have a look at the wimpose95 engine:
  http://claws-w32.sourceforge.net/wimpose95/
Also search the Sylpheed/Win32 page for the word themes,
there are links to different engines, themes and some tips
on setting up the gtkrc:
  http://sylpheed-claws.sourceforge.net/win32/

Regards,
-- 
Thorsten Maerz  [EMAIL PROTECTED]
Sylpheed-claws/Win32:   http://claws-w32.sf.net
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

gtk+-1.2.10 (linux) vs gtk+-1.3.0 (windows) looks

2005-05-12 Thread Chisheng Huang
Hi,

Does anybody know how to make radio buttons, check buttons, and spinners
in GTK+-1.3.0 for MS Windows look as nice as those in GTK+-1.2.10 for 
Linux?  Here is a URL with images illustrating the differences:

  http://chi-square-works.com/linux-vs-windows.html

Thanks a lot for any input.

Best,

-cph

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