2010-08-07 18:05:16 +02:00
|
|
|
|
/*
|
2011-10-25 22:19:38 +02:00
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
2010-08-07 18:05:16 +02:00
|
|
|
|
*
|
2011-10-25 22:19:38 +02:00
|
|
|
|
* i3bar - an xcb-based status- and ws-bar for i3
|
2012-08-23 12:55:28 +02:00
|
|
|
|
* © 2010-2012 Axel Wagner and contributors (see also: LICENSE)
|
2010-08-07 18:05:16 +02:00
|
|
|
|
*
|
2011-10-25 22:19:38 +02:00
|
|
|
|
* child.c: Getting Input for the statusline
|
2010-08-07 18:05:16 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2010-08-05 05:09:59 +02:00
|
|
|
|
#ifndef CHILD_H_
|
|
|
|
|
#define CHILD_H_
|
|
|
|
|
|
2012-08-20 22:20:37 +02:00
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
2010-08-05 05:09:59 +02:00
|
|
|
|
#define STDIN_CHUNK_SIZE 1024
|
|
|
|
|
|
2012-09-03 10:23:25 +02:00
|
|
|
|
typedef struct {
|
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The version number is an uint32_t to avoid machines with different sizes of
|
|
|
|
|
* 'int' to allow different values here. It’s highly unlikely we ever exceed
|
|
|
|
|
* even an int8_t, but still…
|
|
|
|
|
*/
|
|
|
|
|
uint32_t version;
|
2012-08-20 22:20:37 +02:00
|
|
|
|
|
|
|
|
|
bool stopped;
|
|
|
|
|
/**
|
|
|
|
|
* The signal requested by the client to inform it of the hidden state of i3bar
|
|
|
|
|
*/
|
|
|
|
|
int stop_signal;
|
|
|
|
|
/**
|
|
|
|
|
* The signal requested by the client to inform it of theun hidden state of i3bar
|
|
|
|
|
*/
|
|
|
|
|
int cont_signal;
|
2013-03-21 11:48:27 +01:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Enable click events
|
|
|
|
|
*/
|
|
|
|
|
bool click_events;
|
|
|
|
|
bool click_events_init;
|
2012-09-03 10:23:25 +02:00
|
|
|
|
} i3bar_child;
|
|
|
|
|
|
2010-08-07 02:10:05 +02:00
|
|
|
|
/*
|
|
|
|
|
* Start a child-process with the specified command and reroute stdin.
|
|
|
|
|
* We actually start a $SHELL to execute the command so we don't have to care
|
|
|
|
|
* about arguments and such
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-08-05 05:09:59 +02:00
|
|
|
|
void start_child(char *command);
|
2010-08-07 02:10:05 +02:00
|
|
|
|
|
|
|
|
|
/*
|
2012-03-26 17:36:00 +02:00
|
|
|
|
* kill()s the child-process (if any). Called when exit()ing.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-08-23 12:55:28 +02:00
|
|
|
|
void kill_child_at_exit(void);
|
2012-03-26 17:36:00 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* kill()s the child-process (if any) and closes and
|
2010-08-07 02:10:05 +02:00
|
|
|
|
* free()s the stdin- and sigchild-watchers
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-08-23 12:55:28 +02:00
|
|
|
|
void kill_child(void);
|
2010-08-05 05:09:59 +02:00
|
|
|
|
|
2010-08-25 18:31:03 +02:00
|
|
|
|
/*
|
|
|
|
|
* Sends a SIGSTOP to the child-process (if existent)
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-08-23 12:55:28 +02:00
|
|
|
|
void stop_child(void);
|
2010-08-25 18:31:03 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Sends a SIGCONT to the child-process (if existent)
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-08-23 12:55:28 +02:00
|
|
|
|
void cont_child(void);
|
2010-08-25 18:31:03 +02:00
|
|
|
|
|
2013-03-21 11:48:27 +01:00
|
|
|
|
/*
|
|
|
|
|
* Generates a click event, if enabled.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void send_block_clicked(int button, const char *name, const char *instance, int x, int y);
|
|
|
|
|
|
2010-08-05 05:09:59 +02:00
|
|
|
|
#endif
|