X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Flogin%2Flogind-button.h;h=b76ca32c087d8291280f046ee2ec5835d1e7dfa8;hb=c67fbe4c71977de14ebd09a8c250ef8091dff231;hp=7518d05ccb8290efe39c6571a530ada9d6b09a47;hpb=6de0e0e500d9d534c6e4baab242fc2a146f021fa;p=elogind.git diff --git a/src/login/logind-button.h b/src/login/logind-button.h index 7518d05cc..b76ca32c0 100644 --- a/src/login/logind-button.h +++ b/src/login/logind-button.h @@ -25,11 +25,15 @@ typedef struct Button Button; typedef enum HandleButton { - HANDLE_OFF, - HANDLE_NO_SESSION, /* Only handle key when nobody is logged in; honour inhibitors */ - HANDLE_TTY_SESSION, /* Only handle key when nobody is logged in, or the fg session is the only one and non-graphical; honour inhibitors */ - HANDLE_ANY_SESSION, /* Only handle key when nobody is logged in, or the fg session is the only one; honour inhibtors */ - HANDLE_ALWAYS, /* Always handle, ignore sessions; ignore inhibitors */ + HANDLE_IGNORE, + HANDLE_POWEROFF, + HANDLE_REBOOT, + HANDLE_HALT, + HANDLE_KEXEC, + HANDLE_SUSPEND, + HANDLE_HIBERNATE, + HANDLE_HYBRID_SLEEP, + HANDLE_LOCK, _HANDLE_BUTTON_MAX, _HANDLE_BUTTON_INVALID = -1 } HandleButton; @@ -44,12 +48,15 @@ struct Button { char *name; char *seat; int fd; + + bool lid_close_queued; }; Button* button_new(Manager *m, const char *name); void button_free(Button*b); int button_open(Button *b); int button_process(Button *b); +int button_recheck(Button *b); int button_set_seat(Button *b, const char *sn); const char* handle_button_to_string(HandleButton h);