From 8c4df6215a986695edc6c6530f6d6388ea9640d5 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Mon, 13 Feb 2023 22:02:46 +0100 Subject: UnitySession -> LomiriSession: Re-rename related changes that we erroneously hid away as Ayatana DesktopSession. This brings full Lomiri integration finally. Until now, the session indicator somehow seemed to work, but in some odd ways. On the phone, the session indicator would fallback to direct systemd interaction while on Lomiri in Debian, it would fallback to Zenity dialogs (most of all because Zenity got installed by some other package as a dependency). With this massive renaming change, ayatana-indicator-session should now smoothly interact with the com.lomiri.Shell.Session DBus interface and also with the mimicked GNOME SessionManager End-Session-Dialog interface. As a downside, this change nearly fully removes Unity7 support which would need to be brought back +/- as a full duplicate of what we do for Lomiri. But as noone has dared integrating Ayatana Indicator Session with Unity7, so far, we should be able to live with that for now. Fixes https://github.com/AyatanaIndicators/ayatana-indicator-session/issues/82 --- tests/backend-dbus/mock-lomiri-session.h | 57 ++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 tests/backend-dbus/mock-lomiri-session.h (limited to 'tests/backend-dbus/mock-lomiri-session.h') diff --git a/tests/backend-dbus/mock-lomiri-session.h b/tests/backend-dbus/mock-lomiri-session.h new file mode 100644 index 0000000..1f42f49 --- /dev/null +++ b/tests/backend-dbus/mock-lomiri-session.h @@ -0,0 +1,57 @@ +/* + * Copyright 2014 Canonical Ltd. + * + * Authors: + * Marco Trevisan + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 3, as published + * by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranties of + * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see . + */ + +#ifndef MOCK_LOMIRI_SESSION_H +#define MOCK_LOMIRI_SESSION_H + +#include "mock-object.h" // parent class +#include "backend-dbus/lomiri-session.h" // Lomiri Session + +class MockLomiriSession: public MockObject +{ + public: + + MockLomiriSession (GMainLoop * loop, + GDBusConnection * bus_connection); + virtual ~MockLomiriSession (); + + public: + + enum Action { None, Lock, PromptLock, RequestLogout, RequestShutdown, RequestReboot }; + Action last_action () { return my_last_action; } + void clear_last_action () { my_last_action = None; } + + private: + + LomiriShellSession * my_skeleton; + Action my_last_action; + + static gboolean handle_lock (LomiriShellSession *, + GDBusMethodInvocation *, + gpointer); + static gboolean handle_prompt_lock (LomiriShellSession *, + GDBusMethodInvocation *, + gpointer); + static gboolean handle_request_logout (LomiriShellSession *, + GDBusMethodInvocation *, + gpointer); + +}; + +#endif -- cgit v1.2.3