mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
a416ee4f7b
1998-05-22 Miguel de Icaza <miguel@nuclecu.unam.mx> * gwidget.c (x_create_input): Disable the use of the GNOME entries for now, as they are very slow. We need to figure out what is wrong with this. With this change, dialog boxes close quickly instead of taking ages to close. * gscreen.c, gdesktop.c (file_popup_add_context, file_popup): Share the context menu code in gdesktop.c and gscreen.c. The desktop pop up menus now include all of the stuff that would have appeared in the Panel. * gdesktop.c (desktop_icon_remove): Remove the file associated with this desktop entry if it is on the ~/desktop directory.
64 lines
1.8 KiB
C
64 lines
1.8 KiB
C
#ifndef _GDESKTOP_H
|
|
#define _GDESKTOP_H
|
|
|
|
#define MC_LIB_DESKTOP "mc.desktop"
|
|
|
|
|
|
/* Types of desktop icons:
|
|
*
|
|
* o Application: Double click: start up application;
|
|
* Dropping: start up program with arguments.
|
|
*
|
|
* o Directory: Double click: opens the directory in a panel.
|
|
* Double click: copies/moves files.
|
|
*
|
|
* o File: Opens the application according to regex_command
|
|
*/
|
|
|
|
typedef enum {
|
|
application,
|
|
directory,
|
|
file
|
|
} icon_t;
|
|
|
|
/* A structure that describes each icon on the desktop */
|
|
typedef struct {
|
|
GnomeDesktopEntry *dentry;
|
|
GtkWidget *widget;
|
|
icon_t type;
|
|
int x, y;
|
|
int grid_x, grid_y;
|
|
char *pathname;
|
|
} desktop_icon_t;
|
|
|
|
/* size of the snap to grid size */
|
|
#define SNAP_X 80
|
|
#define SNAP_Y 80
|
|
|
|
/* gtrans.c */
|
|
|
|
extern int want_transparent_icons;
|
|
extern int want_transparent_text;
|
|
|
|
GtkWidget *create_transparent_text_window (char *file, char *text, int extra_events);
|
|
GtkWidget *make_transparent_window (char *file);
|
|
|
|
/* gdesktop.c */
|
|
void drop_on_directory (GdkEventDropDataAvailable *event, char *dest, int force_manually);
|
|
void gnome_arrange_icons (void);
|
|
void artificial_drag_start (GdkWindow *source_window, int x, int y);
|
|
void start_desktop (void);
|
|
void stop_desktop (void);
|
|
|
|
/* These get invoked by the context sensitive popup menu in gscreen.c */
|
|
void desktop_icon_properties (GtkWidget *widget, desktop_icon_t *di);
|
|
void desktop_icon_execute (GtkWidget *widget, desktop_icon_t *di);
|
|
void desktop_icon_delete (GtkWidget *widget, desktop_icon_t *di);
|
|
|
|
/* Pops up the context sensitive menu for a WPanel or a desktop_icon_t */
|
|
void file_popup (GdkEventButton *event, void *WPanel_pointer, void *desktop_icon_t_pointer, int row, char *filename);
|
|
|
|
extern int icons_snap_to_grid;
|
|
|
|
#endif
|