[tepl] WindowActionsSearch: skeleton



commit 01aceb659311afb63f43936fd87131f5a8655769
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Mon May 4 14:33:34 2020 +0200

    WindowActionsSearch: skeleton

 po/POTFILES.in                    |  1 +
 tepl/meson.build                  |  6 ++++--
 tepl/tepl-window-actions-search.c | 11 +++++++++++
 tepl/tepl-window-actions-search.h | 17 +++++++++++++++++
 4 files changed, 33 insertions(+), 2 deletions(-)
---
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 7d96df6..5f13874 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -35,3 +35,4 @@ tepl/tepl-utils.c
 tepl/tepl-view.c
 tepl/tepl-window-actions-edit.c
 tepl/tepl-window-actions-file.c
+tepl/tepl-window-actions-search.c
diff --git a/tepl/meson.build b/tepl/meson.build
index fe257c0..b06eaed 100644
--- a/tepl/meson.build
+++ b/tepl/meson.build
@@ -74,7 +74,8 @@ TEPL_PRIVATE_HEADERS = [
   'tepl-signal-group.h',
   'tepl-tab-saving.h',
   'tepl-window-actions-edit.h',
-  'tepl-window-actions-file.h'
+  'tepl-window-actions-file.h',
+  'tepl-window-actions-search.h'
 ]
 
 tepl_private_c_files = [
@@ -90,7 +91,8 @@ tepl_private_c_files = [
   'tepl-signal-group.c',
   'tepl-tab-saving.c',
   'tepl-window-actions-edit.c',
-  'tepl-window-actions-file.c'
+  'tepl-window-actions-file.c',
+  'tepl-window-actions-search.c'
 ]
 
 headers_install_dir = get_option('includedir') / 'tepl-@0@/tepl/'.format(TEPL_API_VERSION)
diff --git a/tepl/tepl-window-actions-search.c b/tepl/tepl-window-actions-search.c
new file mode 100644
index 0000000..7949bfc
--- /dev/null
+++ b/tepl/tepl-window-actions-search.c
@@ -0,0 +1,11 @@
+/* SPDX-FileCopyrightText: 2020 - Sébastien Wilmet <swilmet gnome org>
+ * SPDX-License-Identifier: LGPL-3.0-or-later
+ */
+
+#include "tepl-window-actions-search.h"
+
+void
+_tepl_window_actions_search_add_actions (TeplApplicationWindow *tepl_window)
+{
+       g_return_if_fail (TEPL_IS_APPLICATION_WINDOW (tepl_window));
+}
diff --git a/tepl/tepl-window-actions-search.h b/tepl/tepl-window-actions-search.h
new file mode 100644
index 0000000..8fa1446
--- /dev/null
+++ b/tepl/tepl-window-actions-search.h
@@ -0,0 +1,17 @@
+/* SPDX-FileCopyrightText: 2020 - Sébastien Wilmet <swilmet gnome org>
+ * SPDX-License-Identifier: LGPL-3.0-or-later
+ */
+
+#ifndef TEPL_WINDOW_ACTIONS_SEARCH_H
+#define TEPL_WINDOW_ACTIONS_SEARCH_H
+
+#include "tepl-application-window.h"
+
+G_BEGIN_DECLS
+
+G_GNUC_INTERNAL
+void   _tepl_window_actions_search_add_actions (TeplApplicationWindow *tepl_window);
+
+G_END_DECLS
+
+#endif /* TEPL_WINDOW_ACTIONS_SEARCH_H */


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