/*************************************************************************** * Copyright (c) 2014 Pier Luigi Fiorini * Copyright (c) 2013 Abdurrahman AVCI * * 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, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ***************************************************************************/ #ifndef SDDM_XORGDISPLAYSERVER_H #define SDDM_XORGDISPLAYSERVER_H #include "DisplayServer.h" #include "XAuth.h" class QProcess; namespace SDDM { class XorgDisplayServer : public DisplayServer { Q_OBJECT Q_DISABLE_COPY(XorgDisplayServer) public: explicit XorgDisplayServer(Display *parent); ~XorgDisplayServer(); const QString &display() const; QString authPath() const; QString sessionType() const; const QByteArray cookie() const; public slots: bool start(); void stop(); void finished(); void setupDisplay(); private: XAuth m_xauth; QProcess *process { nullptr }; void changeOwner(const QString &fileName); }; } #endif // SDDM_XORGDISPLAYSERVER_H