#include "rox-clib.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <glib.h>
#include <gtk/gtk.h>
#include <libxml/parser.h>
#include "rox.h"
#include "rox_soap.h"
#include "error.h"
#include "rox_debug.h"
#include "rox_filer_action.h"
Functions | |
void | rox_filer_action_init (void) |
void | rox_filer_open_dir (const char *filename) |
void | rox_filer_close_dir (const char *filename) |
void | rox_filer_examine (const char *filename) |
void | rox_filer_panel (const char *name, ROXPanelSide side) |
void | rox_filer_panel_add (ROXPanelSide side, const char *path, int after) |
void | rox_filer_pinboard (const char *name) |
void | rox_filer_pinboard_add (const char *path, int x, int y) |
void | rox_filer_run (const char *filename) |
void | rox_filer_show (const char *directory, const char *leafname) |
void | rox_filer_copy (const char *from, const char *to, const char *leafname, int quiet) |
void | rox_filer_move (const char *from, const char *to, const char *leafname, int quiet) |
void | rox_filer_link (const char *from, const char *to, const char *leafname) |
void | rox_filer_mount (const char *mountpoint, int quiet, int opendir) |
char * | rox_filer_file_type (const char *file) |
char * | rox_filer_version (void) |
int | rox_filer_have_error (void) |
const char * | rox_filer_get_last_error (void) |
void | rox_filer_clear_error (void) |
Uses the filer's remote protocol to drive the filer. See Appendix C in ROX-Filer/Help/Manual.html
|
Initialize the filer action system. Calling this function is optional, the other file action functions will call this automatically if they detect that initialization has not been performed. |
|
Clear any recorded error.
|
|
Call the CloseDir method
|
|
Copy a file. If leafname is
|
|
Call the Examine method
|
|
Determine the MIME type of a file by asking ROX-Filer.
|
|
|
|
Check for error in talking to ROX-Filer. Errors are not normally reported back to the caller, but are recorded. Only the most recent error is returned.
|
|
Create a symbolic link. If leafname is
|
|
Mount a known mountpoint (defined in /etc/fstab or /etc/vfstab).
|
|
Move a file. If leafname is
|
|
Call the OpenDir method
|
|
Call the Panel method to set the panel on a side.
|
|
Add an object to a panel.
|
|
Set the name of the pinboard.
|
|
Add an object to the pinboard.
|
|
Call the Run method to run a file.
|
|
Show a directory viewer with the named file highlighted.
|
|
Get ROX-Filer's version string.
|