X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Flogin%2Flogind-button.h;h=72a612e9148acedf6d71607dd1756074333c4ab5;hb=840ceb897ff2b44275dcf2fe8227a750941789f0;hp=ca820ed7e50e3aecd9d0a38849f13297f95cc269;hpb=65b5116220a8ebf8a260716152409aa05377aacc;p=elogind.git diff --git a/src/login/logind-button.h b/src/login/logind-button.h index ca820ed7e..72a612e91 100644 --- a/src/login/logind-button.h +++ b/src/login/logind-button.h @@ -1,7 +1,6 @@ /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ -#ifndef foologindbuttonhfoo -#define foologindbuttonhfoo +#pragma once /*** This file is part of systemd. @@ -24,18 +23,6 @@ typedef struct Button Button; -typedef enum HandleButton { - HANDLE_IGNORE, - HANDLE_POWEROFF, - HANDLE_REBOOT, - HANDLE_HALT, - HANDLE_KEXEC, - HANDLE_SUSPEND, - HANDLE_HIBERNATE, - _HANDLE_BUTTON_MAX, - _HANDLE_BUTTON_INVALID = -1 -} HandleButton; - #include "list.h" #include "util.h" #include "logind.h" @@ -43,23 +30,19 @@ typedef enum HandleButton { struct Button { Manager *manager; + sd_event_source *io_event_source; + sd_event_source *check_event_source; + char *name; char *seat; int fd; - bool lid_close_queued; + bool lid_closed; + bool docked; }; 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); -HandleButton handle_button_from_string(const char *s); - -int config_parse_handle_button(const char *filename, unsigned line, const char *section, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata); - -#endif +int button_check_switches(Button *b);