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 <adwaita.h>
7 : :
8 : : G_BEGIN_DECLS
9 : :
10 : : #define VALENT_TYPE_PREFERENCES_COMMAND_EDITOR (valent_preferences_command_editor_get_type())
11 : :
12 [ + - + - : 11 : G_DECLARE_FINAL_TYPE (ValentPreferencesCommandEditor, valent_preferences_command_editor, VALENT, PREFERENCES_COMMAND_EDITOR, AdwDialog)
- + ]
13 : :
14 : : GVariant * valent_preferences_command_editor_get_command (ValentPreferencesCommandEditor *editor);
15 : : void valent_preferences_command_editor_set_command (ValentPreferencesCommandEditor *editor,
16 : : GVariant *command);
17 : : const char * valent_preferences_command_editor_get_uuid (ValentPreferencesCommandEditor *editor);
18 : : void valent_preferences_command_editor_set_uuid (ValentPreferencesCommandEditor *editor,
19 : : const char *uuid);
20 : :
21 : : G_END_DECLS
|