• How to associate a simple menu with a window in GtkAda

    From andrew.shvets@gmail.com@21:1/5 to All on Sat Apr 30 22:37:58 2022
    I'm trying to create a small menu that will show up at the top of a window. The problem that I'm encountering is that I'm not clear on how to make that association and have had a hard time trying to find this specific example. This is the code that I
    have so far:

    https://codeshare.io/loqWOm

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Dmitry A. Kazakov@21:1/5 to andrew...@gmail.com on Sun May 1 10:58:45 2022
    On 2022-05-01 07:37, andrew...@gmail.com wrote:
    I'm trying to create a small menu that will show up at the top of a window. The problem that I'm encountering is that I'm not clear on how to make that association and have had a hard time trying to find this specific example. This is the code that I
    have so far:

    https://codeshare.io/loqWOm

    1. Always post complete code.

    2. Never call Initialize on objects created Gtk_New or equivalent.

    3. GtkAda examples contains a sample code for menus.

    --
    Regards,
    Dmitry A. Kazakov
    http://www.dmitry-kazakov.de

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Stephen Merrony@21:1/5 to andrew...@gmail.com on Sun May 1 23:15:21 2022
    On Sunday, 1 May 2022 at 07:37:59 UTC+2, andrew...@gmail.com wrote:
    I'm trying to create a small menu that will show up at the top of a window. The problem that I'm encountering is that I'm not clear on how to make that association and have had a hard time trying to find this specific example. This is the code that I
    have so far:

    https://codeshare.io/loqWOm

    I agree that it's hard to find readable examples. I have a an Ada GUI program on Github using GtkAda: https://github.com/SMerrony/dashera

    I'm not holding up as great code, but take a look at Src/gui.adb - starting maybe woth the Create_Window procedure, then Create_Menu_Bar which adds the menu and associates its items to their procedures.

    Hope that helps a little.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From andrew.shvets@gmail.com@21:1/5 to Dmitry A. Kazakov on Sat May 21 21:00:44 2022
    About point #2, why not?

    On Sunday, May 1, 2022 at 4:58:52 AM UTC-4, Dmitry A. Kazakov wrote:
    On 2022-05-01 07:37, @gmail.com wrote:
    I'm trying to create a small menu that will show up at the top of a window. The problem that I'm encountering is that I'm not clear on how to make that association and have had a hard time trying to find this specific example. This is the code that I
    have so far:

    https://codeshare.io/loqWOm
    1. Always post complete code.

    2. Never call Initialize on objects created Gtk_New or equivalent.

    3. GtkAda examples contains a sample code for menus.

    --
    Regards,
    Dmitry A. Kazakov
    http://www.dmitry-kazakov.de

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Dmitry A. Kazakov@21:1/5 to andrew...@gmail.com on Sun May 22 08:29:24 2022
    On 2022-05-22 06:00, andrew...@gmail.com wrote:
    About point #2, why not?

    On Sunday, May 1, 2022 at 4:58:52 AM UTC-4, Dmitry A. Kazakov wrote:
    On 2022-05-01 07:37, @gmail.com wrote:
    I'm trying to create a small menu that will show up at the top of a window. The problem that I'm encountering is that I'm not clear on how to make that association and have had a hard time trying to find this specific example. This is the code that I
    have so far:

    https://codeshare.io/loqWOm
    1. Always post complete code.

    2. Never call Initialize on objects created Gtk_New or equivalent.

    Because Gtk_New calls to Initialize internally. Basically

    Gtk_New = allocator new + Initialize

    --
    Regards,
    Dmitry A. Kazakov
    http://www.dmitry-kazakov.de

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)