Fri, 01 Oct 2021 01:06:04 -0500
Add a Meson devenv configuration.
This allows running `meson devenv` as defined at https://mesonbuild.com/Commands.html#devenv
Testing Done:
Ran `meson devenv -C build pidgin3` and `meson devenv -C build finch3` on a system without either installed (even from this build).
Note stock icons don't seem to work with `XDG_DATA_DIRS`, which is why the other review requests were needed. If anything still has stock icons, they'll be broken without an install.
Reviewed at https://reviews.imfreedom.org/r/973/
|
40730
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
1 | /* |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
2 | * Pidgin - Internet Messenger |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
3 | * Copyright (C) Pidgin Developers <devel@pidgin.im> |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
4 | * |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
5 | * Pidgin is the legal property of its developers, whose names are too numerous |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
6 | * to list here. Please refer to the COPYRIGHT file distributed with this |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
7 | * source distribution. |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
8 | * |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
9 | * This program is free software; you can redistribute it and/or modify |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
10 | * it under the terms of the GNU General Public License as published by |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
11 | * the Free Software Foundation; either version 2 of the License, or |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
12 | * (at your option) any later version. |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
13 | * |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
14 | * This program is distributed in the hope that it will be useful, |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
17 | * GNU General Public License for more details. |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
18 | * |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
19 | * You should have received a copy of the GNU General Public License |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
20 | * along with this program; if not, see <https://www.gnu.org/licenses/>. |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
21 | */ |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
22 | |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
23 | #if !defined(PIDGIN_GLOBAL_HEADER_INSIDE) && !defined(PIDGIN_COMPILATION) |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
24 | # error "only <pidgin.h> may be included directly" |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
25 | #endif |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
26 | |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
27 | #ifndef PIDGIN_CREDENTIALS_PAGE_H |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
28 | #define PIDGIN_CREDENTIALS_PAGE_H |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
29 | |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
30 | /** |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
31 | * SECTION:pidgincredentialspage |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
32 | * @section_id: pidgin-pidgincredentialspage |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
33 | * @short_description: The preferences page for credential management. |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
34 | * @title: Credential management widget |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
35 | * |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
36 | * #PidginCredentialsPage is a widget for the preferences window to let users |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
37 | * choose and configure their credential provider. |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
38 | */ |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
39 | |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
40 | #include <glib.h> |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
41 | |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
42 | #include <gtk/gtk.h> |
|
40873
68c7ef6c5320
Convert credentials page to use HdyPreferencesGroup and a list box.
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40730
diff
changeset
|
43 | #include <handy.h> |
|
40730
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
44 | |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
45 | G_BEGIN_DECLS |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
46 | |
|
40878
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
47 | /** |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
48 | * PIDGIN_TYPE_CREDENTIALS_PAGE: |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
49 | * |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
50 | * The standard _get_type macro for #PidginCredentialsPage. |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
51 | * |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
52 | * Since: 3.0.0 |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
53 | */ |
|
40730
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
54 | #define PIDGIN_TYPE_CREDENTIALS_PAGE (pidgin_credentials_page_get_type()) |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
55 | G_DECLARE_FINAL_TYPE(PidginCredentialsPage, pidgin_credentials_page, |
|
40873
68c7ef6c5320
Convert credentials page to use HdyPreferencesGroup and a list box.
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40730
diff
changeset
|
56 | PIDGIN, CREDENTIALS_PAGE, HdyPreferencesPage) |
|
40730
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
57 | |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
58 | /** |
|
40878
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
59 | * PidginCredentialsPage: |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
60 | * |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
61 | * A widget that displays a page of credential settings. |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
62 | * |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
63 | * Since: 3.0.0 |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
64 | */ |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
65 | |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
66 | /** |
|
40730
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
67 | * pidgin_credentials_page_new: |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
68 | * |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
69 | * Creates a new #PidginCredentialsPage instance. |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
70 | * |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
71 | * Returns: (transfer full): The new #PidginCredentialsPage instance. |
|
40878
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
72 | * |
|
7e8c50c967bc
Add some missed docs for PidginCredential*
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
40873
diff
changeset
|
73 | * Since: 3.0.0 |
|
40730
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
74 | */ |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
75 | GtkWidget *pidgin_credentials_page_new(void); |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
76 | |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
77 | G_END_DECLS |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
78 | |
|
12b38cca63d7
Create a new PidginCredentialsPage and associated widgets for the preferences window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
79 | #endif /* PIDGIN_CREDENTIALS_PAGE_H */ |