Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-3.0-or-later
2 : : // SPDX-FileCopyrightText: Andy Holmes <andrew.g.r.holmes@gmail.com>
3 : :
4 : : #pragma once
5 : :
6 : : #include <gtk/gtk.h>
7 : :
8 : : G_BEGIN_DECLS
9 : :
10 : : #define VALENT_TYPE_RUNCOMMAND_EDITOR (valent_runcommand_editor_get_type())
11 : :
12 [ + - + - : 25 : G_DECLARE_FINAL_TYPE (ValentRuncommandEditor, valent_runcommand_editor, VALENT, RUNCOMMAND_EDITOR, GtkWindow)
- + ]
13 : :
14 : : GVariant * valent_runcommand_editor_get_command (ValentRuncommandEditor *editor);
15 : : void valent_runcommand_editor_set_command (ValentRuncommandEditor *editor,
16 : : GVariant *command);
17 : : const char * valent_runcommand_editor_get_uuid (ValentRuncommandEditor *editor);
18 : : void valent_runcommand_editor_set_uuid (ValentRuncommandEditor *editor,
19 : : const char *uuid);
20 : :
21 : : G_END_DECLS
|