ede/evoke/EvokeService.h

93 lines
2.2 KiB
C
Raw Normal View History

2007-07-11 20:03:18 +04:00
/*
* $Id$
*
* Evoke, head honcho of everything
* Part of Equinox Desktop Environment (EDE).
* Copyright (c) 2000-2007 EDE Authors.
*
* This program is licensed under terms of the
* GNU General Public License version 2 or newer.
* See COPYING for details.
*/
#ifndef __EVOKESERVICE_H__
#define __EVOKESERVICE_H__
#include "Log.h"
2007-07-30 17:25:13 +04:00
#include <edelib/List.h>
2007-07-11 20:03:18 +04:00
#include <edelib/String.h>
2007-07-30 17:25:13 +04:00
#include <FL/x.h>
2007-07-11 20:03:18 +04:00
struct EvokeClient {
2007-07-30 17:25:13 +04:00
edelib::String desc; // short program description (used in Starting... message)
2007-07-11 20:03:18 +04:00
edelib::String icon; // icon for this client
edelib::String exec; // program name/path to run
};
struct EvokeProcess {
edelib::String cmd;
pid_t pid;
};
typedef edelib::list<EvokeClient> ClientList;
typedef edelib::list<EvokeClient>::iterator ClientListIter;
2007-07-30 17:25:13 +04:00
typedef edelib::list<edelib::String> StringList;
typedef edelib::list<edelib::String>::iterator StringListIter;
typedef edelib::list<EvokeProcess> ProcessList;
typedef edelib::list<EvokeProcess>::iterator ProcessListIter;
2007-07-30 17:25:13 +04:00
class Fl_Double_Window;
2007-07-11 20:03:18 +04:00
class EvokeService {
private:
2007-07-30 17:25:13 +04:00
bool is_running;
2007-07-11 20:03:18 +04:00
Log* logfile;
char* pidfile;
2007-07-30 17:25:13 +04:00
char* lockfile;
Fl_Double_Window* top_win;
2007-07-11 20:03:18 +04:00
Atom _ede_shutdown_all;
Atom _ede_spawn;
2007-07-30 17:25:13 +04:00
Atom _ede_evoke_quit;
2007-07-11 20:03:18 +04:00
ClientList clients;
ProcessList processes;
2007-07-11 20:03:18 +04:00
public:
EvokeService();
~EvokeService();
static EvokeService* instance(void);
2007-07-30 17:25:13 +04:00
void start(void) { is_running = true; }
void stop(void) { is_running = false; }
bool running(void) { return is_running; }
2007-07-11 20:03:18 +04:00
bool setup_logging(const char* file);
2007-07-30 17:25:13 +04:00
bool setup_pid(const char* file, const char* lock);
2007-07-11 20:03:18 +04:00
void setup_atoms(Display* d);
2007-07-30 17:25:13 +04:00
bool init_splash(const char* config, bool no_splash, bool dry_run);
void init_autostart(void);
2007-07-30 17:25:13 +04:00
int handle(const XEvent* ev);
2007-07-11 20:03:18 +04:00
Log* log(void) { return logfile; }
2007-07-30 17:25:13 +04:00
void register_top(Fl_Double_Window* win) { top_win = win; }
void unregister_top(void) { top_win = NULL; }
void register_process(const char* cmd, pid_t pid);
void unregister_process(pid_t pid);
bool find_and_unregister_process(pid_t pid, EvokeProcess& pc);
void service_watcher(int pid, int signum);
void quit_x11(void);
2007-07-11 20:03:18 +04:00
};
#define EVOKE_LOG EvokeService::instance()->log()->printf
#endif