Re: Reparent command problem

2014-04-03 Thread Kjell Ahlstedt
Don't reparent anything. You shall not replace the message area with your own box, you shall add your grid to the existing box. Gtk::Label *label1 = Gtk::manage(new Gtk::Label("some text")); Gtk::Label *label2 = Gtk::manage(new Gtk::Label("some more text")); Gtk::Grid *grid = Gtk::m

Re: Reparent command problem

2014-04-03 Thread mike lear
Hello all, Since posting this request I had time to go back over my code. I discovered that I don't need to add the vbox. So removing that line of code and the reparent line. The code then compiles with no errors. I am not sure yet how to close down this posting. But  I do not now require any ass

Re: Titles in Gtk::Dialogs

2014-04-03 Thread Kjell Ahlstedt
When I run your program on my Ubuntu 13.10 system, the look of the dialog box is very different from the one in the attachment to https://mail.gnome.org/archives/gtkmm-list/2014-April/msg3.html. The title is written only once, in the titlebar. In my case there's another irritating difference

Re: .0 stable versions of glibmm and gtkmm

2014-04-03 Thread Kjell Ahlstedt
The new class Gio::Notification is used in https://git.gnome.org/browse/gtkmm-documentation/tree/examples/book/application/app_and_win_menus/examplewindow.cc. The Popover example did not compile after './configure --enable-warnings=fatal' (all warnings treated as errors). I've just fixed that.

Reparent command problem

2014-04-03 Thread mike lear
Hello,     I am a newcomer to Gtkmm and this mailing list, I have a question regarding the use of the reparent command using gtkmm-3. I am attempting to add several text labels to the MessageDialog. I wish to position these labels below the dialog-secondary text using a grid to achieve this. The f

Re: .0 stable versions of glibmm and gtkmm

2014-04-03 Thread Murray Cumming
On Thu, 2014-04-03 at 08:06 +0200, Juan Rafael García Blanco wrote: > Hi, > > When Gtk::FlowBox was finally wrapped, I took an action to write some > example code. Unfortunately, I haven't done that yet. I'll try to > write an example app in the next days; due to next Monday let's say, > would tha

Re: Titles in Gtk::Dialogs

2014-04-03 Thread Glus Xof
Hi guys, Substitute my last code for this new one, --- #include class DialogTest :public Gtk::Dialog { public: DialogTest(); virtual ~DialogTest(); private: Gtk::Box vbox; Gtk::Label label; }; DialogTest::DialogTest() :vbox (Gtk::ORIENTATION_VERTICAL, 5), label ("L

Re: Titles in Gtk::Dialogs

2014-04-03 Thread mike lear
Hello, I recieved  a warning whilst running your program regarding the order of initialization in the Constructor. //  Constructor initializer list is in the wrong order it should be:     DialogTest::DialogTest() : vbox (Gtk::ORIENTATION_VERTICAL, 5), label ("Label") { //  DialogTest::DialogTe