12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /* SLiM - Simple Login Manager
- Copyright (C) 1997, 1998 Per Liden
- Copyright (C) 2004-06 Simone Rota <sip@varlock.com>
- Copyright (C) 2004-06 Johannes Winkelmann <jw@tks6.net>
- 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.
- */
- #ifndef _APP_H_
- #define _APP_H_
- #include <X11/Xlib.h>
- #include <signal.h>
- #include <unistd.h>
- #include <sys/wait.h>
- #include <errno.h>
- #include <setjmp.h>
- #include <stdlib.h>
- #include <iostream>
- #include "panel.h"
- #include "cfg.h"
- class App {
- public:
- App(int argc, char** argv);
- ~App();
- void Run();
- int GetServerPID();
- void StopServer();
-
- // Lock functions
- void GetLock();
- void RemoveLock();
- private:
- void Login();
- void Reboot();
- void Halt();
- void Suspend();
- void Console();
- void Exit();
- void KillAllClients(Bool top);
- void RestartServer();
- void ReadConfig();
- void OpenLog();
- void CloseLog();
- void HideCursor();
- void CreateServerAuth();
- char* StrConcat(const char* str1, const char* str2);
-
- static std::string findValidRandomTheme(const std::string& set);
- static void replaceVariables(std::string& input,
- const std::string& var,
- const std::string& value);
- // Server functions
- int StartServer();
- int ServerTimeout(int timeout, char *string);
- int WaitForServer();
- // Private data
- Window Root;
- Display* Dpy;
- int Scr;
- Panel* LoginPanel;
- int ServerPID;
- char* DisplayName;
- // Options
- char* DispName;
- Cfg cfg;
- XpmAttributes BackgroundPixmapAttributes;
- Pixmap BackgroundPixmap;
- void blankScreen();
- void setBackground(const string& themedir);
-
- bool daemonmode;
- // For testing themes
- char* testtheme;
- bool testing;
-
- std::string themeName;
- std::string mcookie;
- };
- #endif
|