ede/ede-panel/ede-panel.cpp

32 lines
541 B
C++
Raw Normal View History

#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>
#include "Panel.h"
#include "AppletManager.h"
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) {
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();
running = true;
while(running)
Fl::wait();
/* so Panel::hide() can be called */
panel->hide();
return 0;
2009-10-03 11:33:08 +04:00
}