mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
e265fe2067
* glayout.c (file_menu): Use view_cmd and view_simple_cmd in the menu instead of panel_action_view and panel_action_view_unfiltered, respectively. * gpopup.c (create_regexp_actions): Create the menu items using gnome-app-helper, for visual consistency. (create_actions): Likewise. Also, fixed S_ISLNK() confusion. (get_label_text): Extract the label from the GnomeUIInfo item in an ugly way.
21 lines
398 B
C
21 lines
398 B
C
/* Popup menus for the Midnight Commander
|
|
*
|
|
* Copyright (C) 1998 The Free Software Foundation
|
|
*
|
|
* Authors: Federico Mena <federico@nuclecu.unam.mx>
|
|
* Miguel de Icaza <miguel@nuclecu.unam.mx>
|
|
*/
|
|
|
|
#ifndef GPOPUP_H
|
|
#define GPOPUP_H
|
|
|
|
|
|
#include <gdk/gdktypes.h>
|
|
#include "panel.h"
|
|
|
|
|
|
int gpopup_do_popup (GdkEventButton *event, WPanel *from_panel, int panel_row, char *filename);
|
|
|
|
|
|
#endif
|