2010-03-28 16:54:45 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2009-11-18 15:24:58 +03:00
|
|
|
#include <signal.h>
|
2009-10-03 11:33:08 +04:00
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/Fl_Double_Window.H>
|
|
|
|
#include <FL/Fl_Button.H>
|
2010-03-28 16:54:45 +04:00
|
|
|
#include <edelib/Ede.h>
|
2009-10-03 11:33:08 +04:00
|
|
|
|
|
|
|
#include "Panel.h"
|
|
|
|
#include "AppletManager.h"
|
|
|
|
|
2009-11-18 15:24:58 +03:00
|
|
|
static bool running;
|
|
|
|
|
|
|
|
static void exit_signal(int signum) {
|
|
|
|
running = false;
|
|
|
|
}
|
|
|
|
|
2009-10-03 11:33:08 +04:00
|
|
|
int main(int argc, char **argv) {
|
2010-03-28 16:54:45 +04:00
|
|
|
EDE_APPLICATION("ede-panel");
|
|
|
|
|
2009-11-18 15:24:58 +03:00
|
|
|
signal(SIGTERM, exit_signal);
|
|
|
|
signal(SIGKILL, exit_signal);
|
|
|
|
signal(SIGINT, exit_signal);
|
|
|
|
|
|
|
|
Panel *panel = new Panel();
|
2009-10-03 11:33:08 +04:00
|
|
|
panel->load_applets();
|
|
|
|
panel->show();
|
2009-11-18 15:24:58 +03:00
|
|
|
running = true;
|
|
|
|
|
|
|
|
while(running)
|
|
|
|
Fl::wait();
|
|
|
|
|
|
|
|
/* so Panel::hide() can be called */
|
|
|
|
panel->hide();
|
|
|
|
return 0;
|
2009-10-03 11:33:08 +04:00
|
|
|
}
|