summaryrefslogtreecommitdiffstats
path: root/src/gs-search-page.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:57:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:57:27 +0000
commit6f0f7d1b40a8fa8d46a2d6f4317600001cdbbb18 (patch)
treed423850ae901365e582137bdf2b5cbdffd7ca266 /src/gs-search-page.h
parentInitial commit. (diff)
downloadgnome-software-6f0f7d1b40a8fa8d46a2d6f4317600001cdbbb18.tar.xz
gnome-software-6f0f7d1b40a8fa8d46a2d6f4317600001cdbbb18.zip
Adding upstream version 43.5.upstream/43.5upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/gs-search-page.h')
-rw-r--r--src/gs-search-page.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/gs-search-page.h b/src/gs-search-page.h
new file mode 100644
index 0000000..f955a21
--- /dev/null
+++ b/src/gs-search-page.h
@@ -0,0 +1,27 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+ * vi:set noexpandtab tabstop=8 shiftwidth=8:
+ *
+ * Copyright (C) 2013 Richard Hughes <richard@hughsie.com>
+ * Copyright (C) 2015-2017 Kalev Lember <klember@redhat.com>
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#pragma once
+
+#include "gs-page.h"
+
+G_BEGIN_DECLS
+
+#define GS_TYPE_SEARCH_PAGE (gs_search_page_get_type ())
+
+G_DECLARE_FINAL_TYPE (GsSearchPage, gs_search_page, GS, SEARCH_PAGE, GsPage)
+
+GsSearchPage *gs_search_page_new (void);
+void gs_search_page_set_appid_to_show (GsSearchPage *self,
+ const gchar *appid);
+const gchar *gs_search_page_get_text (GsSearchPage *self);
+void gs_search_page_set_text (GsSearchPage *self,
+ const gchar *value);
+
+G_END_DECLS