mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
741d37e4eb
Wheeeee! Desktop icons can be selected by rubberbanding. You need Englightenment to do this, as so far it seems to be the only WM with support for the _WIN_DESKTOP_BUTTON_PROXY property. * gdesktop.c (click_proxy_filter): New event filter for button presses and releases on the root window. (click_proxy_button_press): New function to handle button presses on the desktop. (click_proxy_button_release): New function to handle button releases on the desktop. (click_proxy_motion): New function to handle rubberbanding motion on the desktop. (setup_xdnd_proxy): Flush the server after ungrabbing it. (find_click_proxy_window): Flush the server after ungrabbing it. (store_temp_selection): Stores the temporary selection to the master selection, or viceversa. This is needed for dynamic updating while the user rubberbands. (update_drag_selection): New function to update the selection while the user is rubberbanding on the desktop. (icon_is_in_area): New function to see if an icon is inside the rubberbanding area. * gdesktop-icon.h: Added fields for querying the icon and text position and size. * gdesktop-icon.c (desktop_icon_reshape): Set the position and size fields as computed for layout.
79 lines
2.5 KiB
C
79 lines
2.5 KiB
C
/* Desktop icon widget for the Midnight Commander
|
|
*
|
|
* Copyright (C) 1998 The Free Software Foundation
|
|
*
|
|
* Author: Federico Mena <federico@nuclecu.unam.mx>
|
|
*/
|
|
|
|
#ifndef GDESKTOP_ICON_H
|
|
#define GDESKTOP_ICON_H
|
|
|
|
#include <libgnome/gnome-defs.h>
|
|
#include <gtk/gtkwindow.h>
|
|
#include <libgnomeui/gnome-canvas.h>
|
|
#include <libgnomeui/gnome-icon-text.h>
|
|
|
|
BEGIN_GNOME_DECLS
|
|
|
|
|
|
#define DESKTOP_ICON_FONT "-*-helvetica-medium-r-normal--10-*-*-*-p-*-*-*"
|
|
|
|
|
|
#define TYPE_DESKTOP_ICON (desktop_icon_get_type ())
|
|
#define DESKTOP_ICON(obj) (GTK_CHECK_CAST ((obj), TYPE_DESKTOP_ICON, DesktopIcon))
|
|
#define DESKTOP_ICON_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), TYPE_DESKTOP_ICON, DesktopIconClass))
|
|
#define IS_DESKTOP_ICON(obj) (GTK_CHECK_TYPE ((obj), TYPE_DESKTOP_ICON))
|
|
#define IS_DESKTOP_ICON_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), TYPE_DESKTOP_ICON))
|
|
|
|
|
|
typedef struct _DesktopIcon DesktopIcon;
|
|
typedef struct _DesktopIconClass DesktopIconClass;
|
|
|
|
struct _DesktopIcon {
|
|
GtkWindow window;
|
|
|
|
GtkWidget *canvas; /* The canvas that holds the icon and the icon text item */
|
|
|
|
GnomeCanvasItem *icon; /* The item that contains the icon */
|
|
GnomeCanvasItem *text; /* The item that contains the editable text */
|
|
GnomeCanvasItem *stipple; /* The rectangle used as a stipple when the icon is selected */
|
|
|
|
int width, height; /* Total size of the window */
|
|
|
|
int icon_x, icon_y; /* Icon offsets */
|
|
int icon_w, icon_h; /* Icon size */
|
|
int text_x, text_y; /* Text offsets */
|
|
int text_w, text_h; /* Text size */
|
|
|
|
int w_changed_id; /* Signal connection ID for "width_changed" from the icon text item */
|
|
int h_changed_id; /* Signal connection ID for "height_changed" from the icon text item */
|
|
};
|
|
|
|
struct _DesktopIconClass {
|
|
GtkWindowClass parent_class;
|
|
};
|
|
|
|
|
|
/* Standard Gtk function */
|
|
GtkType desktop_icon_get_type (void);
|
|
|
|
/* Creates a new desktop icon from the specified image, and with the specified title */
|
|
GtkWidget *desktop_icon_new (GdkImlibImage *image, char *text);
|
|
|
|
/* Sets the icon from the specified image */
|
|
void desktop_icon_set_icon (DesktopIcon *dicon, GdkImlibImage *image);
|
|
|
|
/* Sets the icon's text */
|
|
void desktop_icon_set_text (DesktopIcon *dicon, char *text);
|
|
|
|
/* Makes the desktop icon reshape itself (for when the global desktop_use_shaped_icons flag changes) */
|
|
void desktop_icon_reshape (DesktopIcon *dicon);
|
|
|
|
/* Selects or unselects the icon based on the value of sel (TRUE is selected, FALSE is unselected) */
|
|
void desktop_icon_select (DesktopIcon *dicon, int sel);
|
|
|
|
|
|
END_GNOME_DECLS
|
|
|
|
#endif
|