Class
EvinceViewJob
since: 3.0
Description
abstract class EvinceView.Job : GObject.Object
{
document: EvDocument*,
run_mode: EvJobRunMode,
cancelled: guint,
finished: guint,
failed: guint,
error: GError*,
cancellable: GCancellable*,
idle_finished_id: guint,
idle_cancelled_id: guint
}
No description available.
Available since: 3.0
Functions
ev_job_scheduler_wait
Synchronously waits until all jobs are done. Remember that main loop is not running already probably.
since: 3.0
Signals
Signals inherited from GObject (1)
GObject::notify
The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.
since: 2.0
Class structure
struct EvinceViewJobClass {
GObjectClass parent_class;
gboolean (* run) (
EvJob* job
);
void (* cancelled) (
EvJob* job
);
void (* finished) (
EvJob* job
);
}
No description available.
Class members
parent_class: GObjectClass
- No description available.
run: gboolean (* run) ( EvJob* job )
- No description available.
cancelled: void (* cancelled) ( EvJob* job )
- No description available.
finished: void (* finished) ( EvJob* job )
- No description available.