Sophie

Sophie

distrib > Mandriva > cooker > i586 > by-pkgid > 08b6ba4a5956f2b058c9ca40fbe13685 > files > 31

librox-c-devel-2.1.10-2mdv2011.0.i586.rpm

/*
 * $Id: rox_filer_action.h,v 1.7 2005/12/07 11:45:02 stephen Exp $
 *
 * rox_filer_action.h - drive the filer via SOAP
 */

/**
 * @file rox_filer_action.h
 * @brief  Drive the filer via the SOAP calls.
 *
 * @author Stephen Watson
 * @version $Id: rox_filer_action.h,v 1.7 2005/12/07 11:45:02 stephen Exp $
 */

#ifndef _rox_filer_action_h
#define _rox_filer_action_h

/** Name space of ROX-Filer's SOAP messages */
#define ROX_NAMESPACE_URL "http://rox.sourceforge.net/SOAP/ROX-Filer"

/**
 * Available panels.
 */
typedef enum rox_panel_side {
  ROXPS_TOP,        /**< Panel is on the top of the screen */
  ROXPS_BOTTOM,     /**< Panel is on the bottom of the screen */
  ROXPS_LEFT,       /**< Panel is on the left of the screen */
  ROXPS_RIGHT,      /**< Panel is on the right of the screen */
} ROXPanelSide;

#define ROX_FILER_DEFAULT (-1)  /**< Use default setting of option */

extern void rox_filer_open_dir(const char *filename);
extern void rox_filer_close_dir(const char *filename);
extern void rox_filer_examine(const char *filename);
extern void rox_filer_panel(const char *name, ROXPanelSide side);
extern void rox_filer_panel_add(ROXPanelSide side, const char *path,
				int after);
extern void rox_filer_pinboard(const char *name);
extern void rox_filer_pinboard_add(const char *path, int x, int y);
extern void rox_filer_run(const char *filename);
extern void rox_filer_show(const char *directory, const char *leafname);

extern void rox_filer_copy(const char *from, const char *to,
			   const char *leafname, int quiet);
extern void rox_filer_move(const char *from, const char *to,
			   const char *leafname, int quiet);
extern void rox_filer_link(const char *from, const char *to,
			   const char *leafname);
extern void rox_filer_mount(const char *mountpoint,
			    int quiet, int opendir);

/* Return value should be passed to g_free when done */
extern char *rox_filer_version(void);
extern char *rox_filer_file_type(const char *file);

/**
 * Errors generated by rox_filer_action are in the range
 * ROX_FILER_ACTION_ERROR to ROX_FILER_ACTION_ERROR+0xff
 */
#define ROX_FILER_ACTION_ERROR 0x1100

/* Do not free return value */
extern const char *rox_filer_get_last_error(void);
extern int rox_filer_have_error(void);
extern void rox_filer_clear_error(void);

#endif

/*
 * $Log: rox_filer_action.h,v $
 * Revision 1.7  2005/12/07 11:45:02  stephen
 * Adding an error handling framework
 *
 * Revision 1.6  2005/10/15 10:47:59  stephen
 * Externally visible symbols have rox_ or ROX prefixes.
 * All still exist under the old names but in general will produce a warning message.
 *
 * Revision 1.5  2005/09/10 16:16:14  stephen
 * Added doxygen comments
 *
 * Revision 1.4  2002/03/19 08:29:19  stephen
 * Added SOAP server (rox_soap_server.h).  SOAP client can connect to programs
 * other than ROX-Filer.
 *
 * Revision 1.3  2002/02/27 16:28:09  stephen
 * Add support for PanelAdd and PinboardAdd (assuming they get into the
 * filer)
 *
 * Revision 1.2  2002/01/07 15:37:59  stephen
 * added rox_filer_version() and rox_filer_have_error()
 *
 * Revision 1.1  2001/12/05 16:46:33  stephen
 * Added rox_soap.c to talk to the filer using SOAP.  Added rox_filer_action.c
 * to use rox_soap to drive the filer.
 * Added test.c to try the above routines.
 *
 */