Support for compact menu

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #35248
    Beherit
    Participant

    In the AlphaControls will support the compact menu soon? I mean the button on the toolbar window ex. in Firefox, Opera, AQQ IM. Screenshoots:

    [attachment=5746:1.png] [attachment=5747:2.png] [attachment=5748:3.png]

    It's very important for me and many other people I think 🙂

    #48564
    widmh
    Participant

    Currently, I just replaced the system menu with a simple popup. Without haveing a drop down arrow!

    The issue is also, how to deal with the F10 menu activation / deactivation.

    procedure TMainForm.ApplicationEventsMessage(var Msg: tagMSG; var Handled: Boolean);

    begin

    Case Msg.Message Of

    WM_NCLButtonDown :

    Begin

    If Screen.ActiveForm = Self Then Begin

    If Msg.wParam = HTSYSMENU Then Begin

    SystemPopupMenu.Popup (Left + 6, Top + 26);

    Handled := True;

    Exit;

    End

    Else Inherited;

    End;

    End;

    End;

    End;

    #48569
    Support
    Keymaster

    This feature is planned in the version 8, will be released at this summer, I think.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.