1998-11-25 06:48:20 +03:00
|
|
|
/* 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>
|
1998-11-26 02:58:43 +03:00
|
|
|
#include "panel.h"
|
1998-12-22 02:29:46 +03:00
|
|
|
#include "gdesktop.h"
|
1999-02-06 02:52:44 +03:00
|
|
|
int gpopup_do_popup2 (GdkEventButton *event,
|
|
|
|
WPanel *panel, GList *file_list,
|
|
|
|
gboolean on_selected);
|
1998-11-25 06:48:20 +03:00
|
|
|
|
1998-12-22 02:29:46 +03:00
|
|
|
int gpopup_do_popup (GdkEventButton *event, WPanel *from_panel,
|
1998-12-31 04:43:11 +03:00
|
|
|
DesktopIconInfo *dii,
|
1998-12-22 02:29:46 +03:00
|
|
|
int panel_row, char *filename);
|
1998-11-25 06:48:20 +03:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|