mirror of
https://github.com/rozniak/xfce-winxp-tc.git
synced 2026-05-01 19:51:33 +00:00
63 lines
1.3 KiB
C
63 lines
1.3 KiB
C
/** @file */
|
|
|
|
#ifndef __SHELLEXT_VIEWOPS_H__
|
|
#define __SHELLEXT_VIEWOPS_H__
|
|
|
|
#include <glib.h>
|
|
|
|
//
|
|
// FORWARD DECLARATIONS
|
|
//
|
|
typedef struct _WinTCIShextView WinTCIShextView;
|
|
typedef struct _WinTCShextOperation WinTCShextOperation;
|
|
|
|
//
|
|
// PUBLIC ENUMS
|
|
//
|
|
typedef enum
|
|
{
|
|
WINTC_SHEXT_OP_PRIORITY_NONE,
|
|
WINTC_SHEXT_OP_PRIORITY_PRIMARY,
|
|
WINTC_SHEXT_OP_PRIORITY_SECONDARY
|
|
} WinTCShextOperationPriority;
|
|
|
|
typedef enum
|
|
{
|
|
WINTC_SHEXT_OP_INVALID = 0,
|
|
|
|
WINTC_SHEXT_KNOWN_OP_OPEN = 1,
|
|
WINTC_SHEXT_KNOWN_OP_OPEN_WITH,
|
|
WINTC_SHEXT_KNOWN_OP_RUN_AS,
|
|
WINTC_SHEXT_KNOWN_OP_CUT,
|
|
WINTC_SHEXT_KNOWN_OP_COPY,
|
|
WINTC_SHEXT_KNOWN_OP_PASTE,
|
|
WINTC_SHEXT_KNOWN_OP_PASTE_SHORTCUT,
|
|
WINTC_SHEXT_KNOWN_OP_CREATE_SHORTCUT,
|
|
WINTC_SHEXT_KNOWN_OP_DELETE,
|
|
WINTC_SHEXT_KNOWN_OP_RENAME,
|
|
WINTC_SHEXT_KNOWN_OP_SEND_TO,
|
|
WINTC_SHEXT_KNOWN_OP_MOVE_TO,
|
|
WINTC_SHEXT_KNOWN_OP_COPY_TO,
|
|
WINTC_SHEXT_KNOWN_OP_PROPERTIES,
|
|
|
|
WINTC_SHEXT_OP_CUSTOM = 100
|
|
} WinTCShextOperationId;
|
|
|
|
//
|
|
// PUBLIC STRUCTURES
|
|
//
|
|
typedef gboolean (*WinTCShextOperationFunc) (
|
|
WinTCIShextView* view,
|
|
WinTCShextOperation* operation,
|
|
GtkWindow* wnd,
|
|
GError** error
|
|
);
|
|
|
|
struct _WinTCShextOperation
|
|
{
|
|
WinTCShextOperationFunc func;
|
|
gpointer priv;
|
|
};
|
|
|
|
#endif
|