mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
0dc1ef5771
* gcmd.c (gnome_reverse_selection_cmd_panel): new function -- does good things * gscreen.c (panel_icon_list_select_icon): uses new popup menu (panel_icon_list_button_press): ditto * gpopup2.c (gpopup_do_popup2): new implementation of popup menu. Many changes -- almost all internal. Much cleaner now... Off to England.
26 lines
572 B
C
26 lines
572 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"
|
|
#include "gdesktop.h"
|
|
int gpopup_do_popup2 (GdkEventButton *event,
|
|
WPanel *panel, GList *file_list,
|
|
gboolean on_selected);
|
|
|
|
int gpopup_do_popup (GdkEventButton *event, WPanel *from_panel,
|
|
DesktopIconInfo *dii,
|
|
int panel_row, char *filename);
|
|
|
|
|
|
#endif
|