[glade--]Re: cvs glade-- missing files I think
Christof Petig <[email protected]>
| Newsgroups | gmane.comp.gnome.glademm |
|---|---|
| Organization | Adolf Petig GmbH & Co. KG |
| Message-ID | <[email protected]> |
Mark Jones wrote:
>>Did you run ./autogen.sh which creates all missing files ?
>
>
> Oh yeah, oops. :) I'm used to using that only with actual stuff created by glade.
>
> Ok, well that is taken care of. Several bugs still exist (in cvs) as far as I can tell.
>
> The new startup is not exactly correct (as far as I can tell by behavior but also by comparing with the gtkmm examples):
> int main(int argc, char **argv)
> {
>
> Gtk::Main m(&argc, &argv);
>
> //window1 *window1 = new class window1();
> // should be
> window1 window1
> // m.run();
> // should be
> Gtk::Main::run(window1);
TODO (planned): first toplevel window is passed to run().
The other changes are purely a matter of taste, not wrong.
> //delete window1;
> return 0;
> }
>
>
> And, I still do not see it writing out requested sizes.
>
> I checked it out from cvs and I am pretty sure it installed correctly:
> # glade-- --version
> glademm V1.1.2_cvs (glade to Gtk-- converter)
>
> I will attach my .glade file. It is just something I threw together with a bunch of random widgets of differing sizes. Maybe you can give it a run and see if window1_glade.cc comes out with the size requests for you. If so, can you verify the changes are in cvs? Or you can suggest I verify something instead if that is better. :)
Good, I'll check it this afternoon.