forked from HandBrake/HandBrake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueuehandler.h
48 lines (43 loc) · 1.93 KB
/
queuehandler.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* queuehandler.h
*
* Copyright (C) 2008-2024 John Stebbins <stebbins@stebbins>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: GPL-2.0-only
*/
#pragma once
#include "common.h"
#include "ghb-queue-row.h"
#include "hb-backend.h"
#include "settings.h"
G_BEGIN_DECLS
void ghb_queue_buttons_grey(signal_user_data_t *ud);
gboolean ghb_reload_queue(signal_user_data_t *ud);
void ghb_queue_remove_row(signal_user_data_t *ud, int row);
gint ghb_find_queue_job(GhbValue *queue, gint unique_id, GhbValue **job);
void ghb_low_disk_check(signal_user_data_t *ud);
void ghb_reset_disk_space_check(void);
void ghb_queue_item_set_status(signal_user_data_t *ud, int index,
int status);
void ghb_queue_progress_set_fraction(signal_user_data_t *ud, int index,
gdouble frac);
void ghb_queue_update_status(signal_user_data_t *ud, int index, int status);
void ghb_queue_select_log(signal_user_data_t * ud);
void ghb_queue_update_live_stats(signal_user_data_t * ud, int index,
ghb_instance_status_t * status);
void ghb_queue_drag_n_drop_init(signal_user_data_t * ud);
void ghb_add_to_queue_list(signal_user_data_t *ud, GhbValue *queueDict);
void ghb_queue_selection_init(signal_user_data_t * ud);
void ghb_queue_row_remove(GhbQueueRow *row);
G_END_DECLS