Searched refs:menuName (Results 1 - 18 of 18) sorted by relevance

/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkFrame.c58 char *menuName; /* Textual description of menu to use for member in struct:__anon13435
240 DEF_TOPLEVEL_MENU, -1, Tk_Offset(Frame, menuName),
933 if (framePtr->menuName == NULL) {
936 oldMenuName = ckalloc(strlen(framePtr->menuName) + 1);
937 strcpy(oldMenuName, framePtr->menuName);
958 if ((((oldMenuName == NULL) && (framePtr->menuName != NULL))
959 || ((oldMenuName != NULL) && (framePtr->menuName == NULL))
960 || ((oldMenuName != NULL) && (framePtr->menuName != NULL)
961 && strcmp(oldMenuName, framePtr->menuName) != 0))
964 framePtr->menuName);
[all...]
H A DtkMenubutton.h65 char *menuName; /* Name of menu associated with widget. member in struct:__anon13453
H A DtkIntDecls.h421 char *menuName);
460 Tk_Window tkwin, char *menuName);
523 char *menuName);
1115 void (*tkpMenuNotifyToplevelCreate) (Tcl_Interp *interp1, char *menuName); /* 67 */
1122 void (*tkpSetMainMenubar) (Tcl_Interp *interp, Tk_Window tkwin, char *menuName); /* 74 */
1133 void (*tkSetWindowMenuBar) (Tcl_Interp *interp, Tk_Window tkwin, char *oldMenuName, char *menuName); /* 85 */
H A DtkMenubutton.c113 DEF_MENUBUTTON_MENU, -1, Tk_Offset(TkMenuButton, menuName),
253 mbPtr->menuName = NULL;
H A DtkMenu.c3171 char *menuName) /* The name of the new menubar that the
3244 if (menuName != NULL && menuName[0] != 0) {
3247 menuRefPtr = TkCreateMenuReferences(interp, menuName);
3307 TkpSetMainMenubar(interp, tkwin, menuName);
3138 TkSetWindowMenuBar( Tcl_Interp *interp, Tk_Window tkwin, char *oldMenuName, char *menuName) argument
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkFrame.c60 char *menuName; /* Textual description of menu to use for member in struct:__anon13782
257 DEF_TOPLEVEL_MENU, -1, Tk_Offset(Frame, menuName),
944 if (framePtr->menuName == NULL) {
947 oldMenuName = ckalloc(strlen(framePtr->menuName) + 1);
948 strcpy(oldMenuName, framePtr->menuName);
969 if (((oldMenuName == NULL) && (framePtr->menuName != NULL))
970 || ((oldMenuName != NULL) && (framePtr->menuName == NULL))
971 || ((oldMenuName != NULL) && (framePtr->menuName != NULL)
972 && strcmp(oldMenuName, framePtr->menuName) != 0)) {
974 framePtr->menuName);
[all...]
H A DtkMenubutton.h65 char *menuName; /* Name of menu associated with widget. member in struct:__anon13795
H A DtkIntDecls.h242 Tcl_Interp * interp1, char * menuName));
263 Tk_Window tkwin, char * menuName));
297 char * menuName));
643 void (*tkpMenuNotifyToplevelCreate) _ANSI_ARGS_((Tcl_Interp * interp1, char * menuName)); /* 67 */
650 void (*tkpSetMainMenubar) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, char * menuName)); /* 74 */
661 void (*tkSetWindowMenuBar) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, char * oldMenuName, char * menuName)); /* 85 */
H A DtkMenubutton.c114 DEF_MENUBUTTON_MENU, -1, Tk_Offset(TkMenuButton, menuName),
256 mbPtr->menuName = NULL;
H A DtkMenu.c3146 TkSetWindowMenuBar(interp, tkwin, oldMenuName, menuName)
3152 char *menuName; /* The name of the new menubar that the
3228 if (menuName != NULL && menuName[0] != 0) {
3231 menuRefPtr = TkCreateMenuReferences(interp, menuName);
3292 TkpSetMainMenubar(interp, tkwin, menuName);
/macosx-10.10/tcl-105/tcl_ext/snack/snack/unix/
H A Dsnack.tcl394 proc menuDelete {menuName label} {
397 set m [menuGet $menuName]
399 error "$label not in menu $menuName"
401 [menuGet $menuName] delete $index
404 proc menuDeleteByIndex {menuName index} {
405 [menuGet $menuName] delete $index
408 proc menuGet menuName {
410 if [catch {set menu(menu,$menuName)} m] {
411 return -code error "No such menu: $menuName"
416 proc menuCommand {menuName labe
[all...]
/macosx-10.10/tcl-105/tk/tk/macosx/
H A DtkMacOSXMenu.c729 char *menuName) /* The name of the menu to put in front. If
734 if (menuName) {
739 !strcmp(menuName, Tk_PathName(
744 menuName);
1392 * menuName becuase a toplevel has been created and any system menus need
1407 char *menuName) /* The name of the menu to reconfigure. */
718 TkpSetMainMenubar( Tcl_Interp *interp, Tk_Window tkwin, char *menuName) argument
1385 TkpMenuNotifyToplevelCreate( Tcl_Interp *interp, char *menuName) argument
/macosx-10.10/tcl-105/tk84/tk/unix/
H A DtkUnixMenu.c293 TkpSetMainMenubar(interp, tkwin, menuName)
296 char *menuName;
1780 * menuName becuase a toplevel has been created and any system
1793 TkpMenuNotifyToplevelCreate(interp, menuName)
1795 char *menuName; /* The name of the menu to
/macosx-10.10/tcl-105/tk/tk/win/
H A DtkWinMenu.c374 char *menuName = Tcl_GetHashKey(tablePtr,
387 if (strcmp(searchName, menuName) == 0) {
1450 char *menuName) /* The name of the menu to put in front. If
3044 * menuName becuase a toplevel has been created and any system menus need
3059 char *menuName) /* The name of the menu to reconfigure. */
3064 if ((menuName != NULL) && (menuName[0] != '\0')) {
3065 menuRefPtr = TkFindMenuReferences(interp, menuName);
370 char *menuName = Tcl_GetHashKey(tablePtr, local
1433 TkpSetMainMenubar( Tcl_Interp *interp, Tk_Window tkwin, char *menuName) argument
3021 TkpMenuNotifyToplevelCreate( Tcl_Interp *interp, char *menuName) argument
/macosx-10.10/tcl-105/tk84/tk/win/
H A DtkWinMenu.c363 char *menuName = Tcl_GetHashKey(tablePtr,
376 if (strcmp(searchName, menuName) == 0) {
1357 char *menuName) /* The name of the menu to put in front.
2851 * menuName becuase a toplevel has been created and any system
2866 char *menuName) /* The name of the menu to
2872 if ((menuName != NULL) && (menuName[0] != '\0')) {
2873 menuRefPtr = TkFindMenuReferences(interp, menuName);
359 char *menuName = Tcl_GetHashKey(tablePtr, local
1340 TkpSetMainMenubar( Tcl_Interp *interp, Tk_Window tkwin, char *menuName) argument
2828 TkpMenuNotifyToplevelCreate( Tcl_Interp *interp, char *menuName) argument
/macosx-10.10/tcl-105/tcl_ext/incrtcl/iwidgets/generic/
H A Dmenubar.itk117 method menubutton { menuName args } { }
884 itcl::body iwidgets::Menubar::menubutton { menuName args } {
885 eval "add menubutton .$menuName $args"
1211 # .MENUBAR.menuName where menuName is the name of the menu
1212 # .MENUBAR.menuName.menu where menuName is the name of the menu
/macosx-10.10/tcl-105/tk84/tk/macosx/
H A DtkMacOSXMenu.c2056 char *menuName) /* The name of the menu to put in front.
2072 || (currentMenuBarName == NULL) || (menuName == NULL)
2073 || (strcmp(menuName, currentMenuBarName) != 0)) {
2081 if (menuName == NULL) {
2104 menuName = Tk_PathName(
2111 if (menuName == NULL) {
2114 currentMenuBarName = ckalloc(strlen(menuName) + 1);
2115 strcpy(currentMenuBarName, menuName);
3984 * menuName becuase a toplevel has been created and any system
3999 char *menuName) /* Th
2026 TkpSetMainMenubar( Tcl_Interp *interp, Tk_Window tkwin, char *menuName) argument
3941 TkpMenuNotifyToplevelCreate( Tcl_Interp *interp, char *menuName) argument
[all...]
/macosx-10.10/tcl-105/tk/tk/unix/
H A DtkUnixMenu.c306 char *menuName)
1775 * menuName becuase a toplevel has been created and any system menus need
1790 char *menuName) /* The name of the menu to reconfigure. */
296 TkpSetMainMenubar( Tcl_Interp *interp, Tk_Window tkwin, char *menuName) argument
1762 TkpMenuNotifyToplevelCreate( Tcl_Interp *interp, char *menuName) argument

Completed in 386 milliseconds