2015-03-24 13:13:54 +00:00
|
|
|
/* GStreamer Editing Services
|
|
|
|
* Copyright (C) 2015 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2020-03-17 21:13:51 +00:00
|
|
|
#pragma once
|
2015-03-24 13:13:54 +00:00
|
|
|
|
|
|
|
#include <ges/ges.h>
|
|
|
|
|
2021-01-15 18:03:20 +00:00
|
|
|
#include "utils.h"
|
|
|
|
|
2015-03-24 13:13:54 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GES_TYPE_LAUNCHER ges_launcher_get_type()
|
|
|
|
|
|
|
|
typedef struct _GESLauncherPrivate GESLauncherPrivate;
|
2020-03-17 18:51:39 +00:00
|
|
|
G_DECLARE_FINAL_TYPE(GESLauncher, ges_launcher, GES, LAUNCHER, GApplication);
|
2015-03-24 13:13:54 +00:00
|
|
|
|
|
|
|
struct _GESLauncher {
|
|
|
|
GApplication parent;
|
|
|
|
|
|
|
|
/*< private >*/
|
|
|
|
GESLauncherPrivate *priv;
|
|
|
|
|
|
|
|
/* Padding for API extension */
|
|
|
|
gpointer _ges_reserved[GES_PADDING];
|
|
|
|
};
|
|
|
|
|
|
|
|
GESLauncher* ges_launcher_new (void);
|
|
|
|
gint ges_launcher_get_exit_status (GESLauncher *self);
|
2020-02-24 11:50:04 +00:00
|
|
|
gboolean ges_launcher_parse_options(GESLauncher* self, gchar*** arguments, gint *argc, GOptionContext* ctx, GError** error);
|
2015-03-24 13:13:54 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|