TABLE OF CONTENTS


Widgets/MenuButton [ Packages ]

[ Top ] [ Widgets ] [ Packages ]

FUNCTION

 Provides code for manipulate Tk widget MenuButton

SOURCE

package Tcl.Tk.Ada.Widgets.MenuButton with
   SPARK_Mode
is
   pragma Elaborate_Body;

MenuButton/MenuButton.Tk_MenuButton [ Types ]

[ Top ] [ MenuButton ] [ Types ]

FUNCTION

 This is a non-abstract type derived directly from Tk_Widget.
 Each of the derived widgets redefines the Create subprogram
 in order to create the correct type of widget.

SOURCE

   type Tk_MenuButton is new Tk_Widget with private;

MenuButton/MenuButton.Create_(function) [ Subprograms ]

[ Top ] [ MenuButton ] [ Subprograms ]

FUNCTION

 Creates a new Tk_MenuButton in the specified interpreter.

SOURCE

   overriding function Create
     (pathName: in String; options: in String := "";
      Interp: in Tcl_Interp := Null_Interp) return Tk_MenuButton with
      Global => null;

PARAMETERS

 pathName - Tk path (starts with dot) for the widget
 options  - Options which will be passed to the widget. Default value is
            empty
 Interp   - Tcl interpreter to which the widget will be created. If null,
            the widget will be created in the "contextual" interpreter.
            Default value is null.

RESULT

 Newly created Tk_MenuButton

EXAMPLE

   -- Create a new menubutton with pathname .mymenubutton and menu .mymenu
   My_Menu_Button: constant Tk_MenuButton := Create(".mymenubutton", "-menu .mymenu");

SEE ALSO

 MenuButton.Create_(procedure)

COMMANDS

 menubutton pathName ?options?

HISTORY

 8.6.1 - Added

MenuButton/MenuButton.Create_(procedure) [ Subprograms ]

[ Top ] [ MenuButton ] [ Subprograms ]

FUNCTION

 Creates a new Tk_MenuButton in the specified interpreter.

SOURCE

   overriding procedure Create
     (Widgt: out Tk_MenuButton; pathName: in String; options: in String := "";
      Interp: in Tcl_Interp := Null_Interp) with
      Global => null;

PARAMETERS

 Widgt    - Tk_MenuButton which will be created
 pathName - Tk path (starts with dot) for the widget
 options  - Options which will be passed to the widget. Default value is
            empty
 Interp   - Tcl interpreter to which the widget will be created. If null,
            the widget will be created in the "contextual" interpreter.
            Default value is null.

OUTPUT

 Newly created Tk_MenuButton as parameter Widgt

EXAMPLE

     -- Create menubutton My_Menu_Button with pathname .mymenubutton and label click me on the current Tcl interpreter
     declare
        My_Menu_Button: Tk_MenuButton;
     begin
        Create(My_Menu_Button, ".mymenubutton", "-text {click me}");
     end;

SEE ALSO

 MenuButton.Create_(function)

COMMANDS

 menubutton pathName ?options?

HISTORY

 8.6.1 - Added

MenuButton/MenuButton.Get_Widget [ Subprograms ]

[ Top ] [ MenuButton ] [ Subprograms ]

FUNCTION

 Get the existing Tk_MenuButton widget

SOURCE

   overriding function Get_Widget
     (pathName: in String; Interp: in Tcl_Interp := Get_Context)
      return Tk_MenuButton with
      Global => null;

PARAMETERS

 pathName - Tk path (starts with dot) for the widget
 Interp   - Tcl interpreter on which the widget exists. Can be empty.
            Default value is current Tcl interpreter

RESULT

 Existing Tk_MenuButton widget

EXAMPLE

     -- Get button widget with name .mybutton on the current Tcl interpreter
     My_Button: constant Tk_MenuButton := Get_Widget(".mybutton");

HISTORY

 8.6.9 - Added