2002-11-10 13:17:47

by Romain Lievin

[permalink] [raw]
Subject: kconfig (gconf): GTK tool released, please test...

Hi,

I worked on a kernel configuration tool similar to Qconf but written with
GTK+... You will find it at <http://tilp.info/perso/gconfig.html>.

Please test it.
Comments, suggestions, fixes, ..., are welcome !

BTW, I have written it with GTK 1.2. If there is a real need to use GTK 2.0,
then I will rewrite it.

Romain.
--
Romain Lievin, aka 'roms' <[email protected]>
Web site <http://lpg.ticalc.org/prj_tilp>
"Linux, y'a moins bien mais c'est plus cher !"















2002-11-10 14:48:28

by Roman Zippel

[permalink] [raw]
Subject: Re: kconfig (gconf): GTK tool released, please test...

Hi,

On Sun, 10 Nov 2002, Romain Lievin wrote:

> I worked on a kernel configuration tool similar to Qconf but written with
> GTK+... You will find it at <http://tilp.info/perso/gconfig.html>.

I needed the patch below to get it working at all. sym_get_choice_value()
might return a NULL pointer. The choice value is only updated if the
choice symbol is yes and even then it can be NULL, if no choice value is
visible.
I couldn't select 'Adaptec AIC7xxx support'. Choice symbols are special
tristate symbols, beside having the tristate value it also points to a
choice value.
The autoexpand mode is very annoying, even after changing a single symbol
everything is expanded again. Keyboard support is basically nonexistent.

Anyway, it looks interesting, but still needs quite some work. :)

bye, Roman

--- src/callbacks.c.org 2002-11-10 15:12:12.000000000 +0100
+++ src/callbacks.c 2002-11-10 15:11:59.000000000 +0100
@@ -648,7 +648,8 @@
def_menu = child;
}

- row[5] = g_strdup(menu_get_prompt(def_menu));
+ if (def_menu)
+ row[5] = g_strdup(menu_get_prompt(def_menu));
}

type = sym_get_type(sym);

2002-11-26 20:16:44

by Romain Lievin

[permalink] [raw]
Subject: Re: kconfig (gkc): GTK tool released, please test again...

Hi,

I converted gkc to GTK+ 2.0 and improved/fixed it according to your
suggestions.
I submit it again for testing... You will find it at
<http://tilp.info/perso/gkc.html>.

What I plan to do: add check boxes and more views.

Romain.

On Sun, Nov 10, 2002 at 03:55:08PM +0100, Roman Zippel wrote:
> Hi,
>
> On Sun, 10 Nov 2002, Romain Lievin wrote:
>
> > I worked on a kernel configuration tool similar to Qconf but written with
> > GTK+... You will find it at <http://tilp.info/perso/gconfig.html>.
>
> The autoexpand mode is very annoying, even after changing a single symbol
> everything is expanded again. Keyboard support is basically nonexistent.
>
> Anyway, it looks interesting, but still needs quite some work. :)
>
> bye, Roman
>

--
Romain Lievin, aka 'roms' <[email protected]>
Web site <http://lpg.ticalc.org/prj_tilp>
"Linux, y'a moins bien mais c'est plus cher !"














2002-11-26 20:42:48

by Sam Ravnborg

[permalink] [raw]
Subject: Re: kconfig (gkc): GTK tool released, please test again...

On Tue, Nov 26, 2002 at 09:24:48PM +0100, Romain Lievin wrote:
> Hi,
>
> I converted gkc to GTK+ 2.0 and improved/fixed it according to your
> suggestions.
> I submit it again for testing... You will find it at
> <http://tilp.info/perso/gkc.html>.
Could you add a patch as well, that makes it much easier to try out.
No matter it is big, it's still more convinient.

Sam