summaryrefslogtreecommitdiffstats
path: root/src/terminal-prefs-process.hh
blob: a93a532d29cba6d6bc571dfef041f372a7f4552b (plain)
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
49
50
51
52
53
/*
 *  Copyright © 2022 Christian Persch
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * 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 <http://www.gnu.org/licenses/>.
 */

#pragma once

#include <gio/gio.h>

G_BEGIN_DECLS

#define TERMINAL_TYPE_PREFS_PROCESS         (terminal_prefs_process_get_type ())
#define TERMINAL_PREFS_PROCESS(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), TERMINAL_TYPE_PREFS_PROCESS, TerminalPrefsProcess))
#define TERMINAL_PREFS_PROCESS_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), TERMINAL_TYPE_PREFS_PROCESS, TerminalPrefsProcessClass))
#define TERMINAL_IS_PREFS_PROCESS(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), TERMINAL_TYPE_PREFS_PROCESS))
#define TERMINAL_IS_PREFS_PROCESS_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), TERMINAL_TYPE_PREFS_PROCESS))
#define TERMINAL_PREFS_PROCESS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TERMINAL_TYPE_PREFS_PROCESS, TerminalPrefsProcessClass))

typedef struct _TerminalPrefsProcess        TerminalPrefsProcess;
typedef struct _TerminalPrefsProcessClass   TerminalPrefsProcessClass;

GType terminal_prefs_process_get_type(void);

void terminal_prefs_process_new_async(GCancellable* cancellable,
                                      GAsyncReadyCallback callback,
                                      void* user_data);

TerminalPrefsProcess* terminal_prefs_process_new_finish(GAsyncResult* result,
                                                        GError** error);

TerminalPrefsProcess* terminal_prefs_process_new_sync(GCancellable* cancellable,
                                                      GError** error);

void terminal_prefs_process_abort(TerminalPrefsProcess* process);

void terminal_prefs_process_show(TerminalPrefsProcess* process,
                                 char const* profile_uuid,
                                 char const* hint,
                                 unsigned timestamp);

G_END_DECLS