EntangleProgress
EntangleProgress — an interface for monitoring operation progress
|
|
Prerequisites
EntangleProgress requires
GObject.
Description
The EntangleProgress interface provides a way to monitor the progress
of operations performed by the camera.
Functions
entangle_progress_start ()
void
entangle_progress_start (EntangleProgress *prog
,
float target
,
const char *msg
);
entangle_progress_update ()
void
entangle_progress_update (EntangleProgress *prog
,
float current
);
Types and Values
ENTANGLE_TYPE_PROGRESS
#define ENTANGLE_TYPE_PROGRESS (entangle_progress_get_type())
struct EntangleProgressInterface
struct EntangleProgressInterface {
void (*start)(EntangleProgress *prog, float target, const char *msg);
void (*update)(EntangleProgress *prog, float current);
void (*stop)(EntangleProgress *prog);
};
EntangleProgress
typedef struct _EntangleProgress EntangleProgress;