EntangleProgress

EntangleProgress

Synopsis

struct              EntangleProgressInterface;
void                entangle_progress_start             (EntangleProgress *prog,
                                                         float target,
                                                         const char *msg);
void                entangle_progress_stop              (EntangleProgress *prog);
void                entangle_progress_update            (EntangleProgress *prog,
                                                         float current);

Description

Details

struct EntangleProgressInterface

struct EntangleProgressInterface {
    GTypeInterface parent;

    void (*start) (EntangleProgress *prog, float target, const char *msg);
    void (*update) (EntangleProgress *prog, float current);
    void (*stop) (EntangleProgress *prog);
};

entangle_progress_start ()

void                entangle_progress_start             (EntangleProgress *prog,
                                                         float target,
                                                         const char *msg);

entangle_progress_stop ()

void                entangle_progress_stop              (EntangleProgress *prog);

entangle_progress_update ()

void                entangle_progress_update            (EntangleProgress *prog,
                                                         float current);