TABLE OF CONTENTS


TkAda/Wm [ Packages ]

[ Top ] [ TkAda ] [ Packages ]

FUNCTION

 Provides code for communicate with windows manager

SOURCE

package Tcl.Tk.Ada.Wm with
   SPARK_Mode
is

Wm/Wm.Wm_Set [ Subprograms ]

[ Top ] [ Wm ] [ Subprograms ]

FUNCTION

 Communicate with the window manager

SOURCE

   procedure Wm_Set
     (Widgt: in Tk_Widget'Class; Action: in String; Options: in String := "");

PARAMETERS

 Tk_Widget   - Tk_Widget which will be modified
 Action   - WM action to do
 Options  - Options for selected action. Default is empty

EXAMPLE

   -- Set title of My_Window to My window title
   Wm_Set(My_Window, "title", "{My window title}");

COMMANDS

 wm action Widgt options

HISTORY

 8.6.1 - Added