[tepl] WindowActionsFile: skeleton



commit 9e2ae29fd6ba52487462cb32d11f4081aee04374
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Sun May 3 17:38:35 2020 +0200

    WindowActionsFile: skeleton

 po/POTFILES.in                  |  1 +
 tepl/meson.build                |  6 ++++--
 tepl/tepl-window-actions-file.c | 20 ++++++++++++++++++++
 tepl/tepl-window-actions-file.h | 29 +++++++++++++++++++++++++++++
 4 files changed, 54 insertions(+), 2 deletions(-)
---
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 78fcf4d..77aac64 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -33,3 +33,4 @@ tepl/tepl-tab-label.c
 tepl/tepl-tab-saving.c
 tepl/tepl-utils.c
 tepl/tepl-view.c
+tepl/tepl-window-actions-file.c
diff --git a/tepl/meson.build b/tepl/meson.build
index b3ec033..16dc4b2 100644
--- a/tepl/meson.build
+++ b/tepl/meson.build
@@ -72,7 +72,8 @@ TEPL_PRIVATE_HEADERS = [
   'tepl-metadata-parser.h',
   'tepl-progress-info-bar.h',
   'tepl-signal-group.h',
-  'tepl-tab-saving.h'
+  'tepl-tab-saving.h',
+  'tepl-window-actions-file.h'
 ]
 
 tepl_private_c_files = [
@@ -86,7 +87,8 @@ tepl_private_c_files = [
   'tepl-metadata-parser.c',
   'tepl-progress-info-bar.c',
   'tepl-signal-group.c',
-  'tepl-tab-saving.c'
+  'tepl-tab-saving.c',
+  'tepl-window-actions-file.c'
 ]
 
 headers_install_dir = get_option('includedir') / 'tepl-@0@/tepl/'.format(TEPL_API_VERSION)
diff --git a/tepl/tepl-window-actions-file.c b/tepl/tepl-window-actions-file.c
new file mode 100644
index 0000000..40dea1a
--- /dev/null
+++ b/tepl/tepl-window-actions-file.c
@@ -0,0 +1,20 @@
+/*
+ * This file is part of Tepl, a text editor library.
+ *
+ * Copyright 2020 - Sébastien Wilmet <swilmet gnome org>
+ *
+ * Tepl is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU Lesser General Public License as published by the
+ * Free Software Foundation; either version 2.1 of the License, or (at your
+ * option) any later version.
+ *
+ * Tepl 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 Lesser General Public
+ * License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "tepl-window-actions-file.h"
diff --git a/tepl/tepl-window-actions-file.h b/tepl/tepl-window-actions-file.h
new file mode 100644
index 0000000..c29b764
--- /dev/null
+++ b/tepl/tepl-window-actions-file.h
@@ -0,0 +1,29 @@
+/*
+ * This file is part of Tepl, a text editor library.
+ *
+ * Copyright 2020 - Sébastien Wilmet <swilmet gnome org>
+ *
+ * Tepl is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU Lesser General Public License as published by the
+ * Free Software Foundation; either version 2.1 of the License, or (at your
+ * option) any later version.
+ *
+ * Tepl 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 Lesser General Public
+ * License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef TEPL_WINDOW_ACTIONS_FILE_H
+#define TEPL_WINDOW_ACTIONS_FILE_H
+
+#include <gtk/gtk.h>
+
+G_BEGIN_DECLS
+
+G_END_DECLS
+
+#endif /* TEPL_WINDOW_ACTIONS_FILE_H */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]