/******************************************************************************* * Copyright (C) 2013-2015 Ragnar Thomsen * * * * This program is free software: you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the Free * * Software Foundation, either version 2 of the License, or (at your option) * * any later version. * * * * This program 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 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 SYSTEMDUNIT_H #define SYSTEMDUNIT_H #include #include // struct for storing units retrieved from systemd via DBus struct SystemdUnit { QString id, description, load_state, active_state, sub_state, following, job_type, unit_file, unit_file_status; QDBusObjectPath unit_path, job_path; unsigned int job_id; // The == operator must be provided to use contains() and indexOf() // on QLists of this struct bool operator==(const SystemdUnit& right) const { if (id == right.id) return true; else return false; } SystemdUnit(){} SystemdUnit(QString newId) { id = newId; } }; Q_DECLARE_METATYPE(SystemdUnit) // struct for storing sessions retrieved from logind via DBus struct SystemdSession { QString session_id, user_name, seat_id, session_state; QDBusObjectPath session_path; unsigned int user_id; // The == operator must be provided to use contains() and indexOf() // on QLists of this struct bool operator==(const SystemdSession& right) const { if (session_id == right.session_id) return true; else return false; } }; Q_DECLARE_METATYPE(SystemdSession) enum dbusBus { sys, session, user }; #endif // SYSTEMDUNIT_H