Re: [Gimp-developer] A typo in preferences_dialog.c

2001-03-06 Thread egger

On  6 Mar, Nick Lamb wrote:

>>  We should really start discussing which dependencies would be
>>  acceptable to introduce. I'd really like to see gconf for
>>  configuration files and freetype2 for fontrendering to get rid of
>>  the X dependency and the all time sucker "standard font tool". And
>>  I'd like to evaluate ORBit as alternative to the wire protocoll as
>>  well as (optional) bonobo for embedding of GIMP into other
>>  applications.
 
> Is it possible to push font rendering (entirely) into a plug-in and
> give that the freetype2 dependency?

 Theoretically yes. However how would one without X installed switch
 to the texttool as plugin.
 We first have to address this item before your idea would solve the
 problem. However I like this idea very much...
 
-- 

Servus,
   Daniel

___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer



Re: [Gimp-developer] A typo in preferences_dialog.c

2001-03-06 Thread Michael Natterer

Nick Lamb <[EMAIL PROTECTED]> writes:

> On Mon, Mar 05, 2001 at 05:56:33PM +0100, [EMAIL PROTECTED] wrote:
> >  We should really start discussing which dependencies would be
> >  acceptable to introduce. I'd really like to see gconf for configuration
> >  files and freetype2 for fontrendering to get rid of the X dependency
> >  and the all time sucker "standard font tool". And I'd like to evaluate
> >  ORBit as alternative to the wire protocoll as well as (optional) bonobo
> >  for embedding of GIMP into other applications.
> 
> Is it possible to push font rendering (entirely) into a plug-in and give
> that the freetype2 dependency?
> 
> Or an extension, if it makes a difference ?

Yeah, with GLib 2.0 we can just make it a GTypeModule tool. In any
case, it should be a tool so we can edit the stuff directly in the
GDisplay.

As long as we stick with Gtk+ 1.2, I guess we should just depend on
FreeType. Additionally, FreeType doesn't simply crash the X server
when asked for a huge font ;)

ciao,
--Mitch
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer



Re: [gimp-devel] Re: [Gimp-developer] A typo in preferences_dialog.c

2001-03-06 Thread Simon Budig

Nick Lamb ([EMAIL PROTECTED]) wrote:
> Is it possible to push font rendering (entirely) into a plug-in and give
> that the freetype2 dependency?
> 
> Or an extension, if it makes a difference ?

A "module tool"?

Bye,
Simon
-- 
  [EMAIL PROTECTED]   http://www.home.unix-ag.org/simon/
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer



Re: [Gimp-developer] A typo in preferences_dialog.c

2001-03-06 Thread Nick Lamb

On Mon, Mar 05, 2001 at 05:56:33PM +0100, [EMAIL PROTECTED] wrote:
>  We should really start discussing which dependencies would be
>  acceptable to introduce. I'd really like to see gconf for configuration
>  files and freetype2 for fontrendering to get rid of the X dependency
>  and the all time sucker "standard font tool". And I'd like to evaluate
>  ORBit as alternative to the wire protocoll as well as (optional) bonobo
>  for embedding of GIMP into other applications.

Is it possible to push font rendering (entirely) into a plug-in and give
that the freetype2 dependency?

Or an extension, if it makes a difference ?

Nick.
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer



Re: [Gimp-developer] A typo in preferences_dialog.c

2001-03-05 Thread egger

On  4 Mar, Sven Neumann wrote:

> Oh, that preferences code really sucks. Hope we will be able to redo 
> it properly for 1.4 (eventually using gconf ?!). Anyway, thanks for
> the patch, I'll apply it to both branches.

 We should really start discussing which dependencies would be
 acceptable to introduce. I'd really like to see gconf for configuration
 files and freetype2 for fontrendering to get rid of the X dependency
 and the all time sucker "standard font tool". And I'd like to evaluate
 ORBit as alternative to the wire protocoll as well as (optional) bonobo
 for embedding of GIMP into other applications.

-- 

Servus,
   Daniel

___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer



Re: [Gimp-developer] A typo in preferences_dialog.c

2001-03-04 Thread Sven Neumann

Hi,

David Odin <[EMAIL PROTECTED]> writes:

>  By lurking into the gimp sources, I've noticed a small typo in
> app/preferences_dialog.c (today's cvs)
> 
> Here is a patch fixing this:
> -8<--
> --- gimp/app/preferences_dialog.c.origSat Mar  3 03:04:42 2001
> +++ gimp/app/preferences_dialog.c Sat Mar  3 03:05:11 2001
> @@ -684,7 +684,7 @@
>if (trust_dirty_flag != old_trust_dirty_flag)
>  {
>update = g_list_append (update, "trust-dirty-flag");
> -  remove = g_list_append (update, "dont-trust-dirty-flag");
> +  remove = g_list_append (remove, "dont-trust-dirty-flag");
>  }
>if (use_help != old_use_help)
>  {
> ->8--

Oh, that preferences code really sucks. Hope we will be able to redo 
it properly for 1.4 (eventually using gconf ?!). Anyway, thanks for
the patch, I'll apply it to both branches.


Salut, Sven
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer



[Gimp-developer] A typo in preferences_dialog.c

2001-03-03 Thread David Odin


 Hi,

 By lurking into the gimp sources, I've noticed a small typo in
app/preferences_dialog.c (today's cvs)

Here is a patch fixing this:
-8<--
--- gimp/app/preferences_dialog.c.orig  Sat Mar  3 03:04:42 2001
+++ gimp/app/preferences_dialog.c   Sat Mar  3 03:05:11 2001
@@ -684,7 +684,7 @@
   if (trust_dirty_flag != old_trust_dirty_flag)
 {
   update = g_list_append (update, "trust-dirty-flag");
-  remove = g_list_append (update, "dont-trust-dirty-flag");
+  remove = g_list_append (remove, "dont-trust-dirty-flag");
 }
   if (use_help != old_use_help)
 {
->8--

Regards,

  DindinX

-- 
[EMAIL PROTECTED]

___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer