Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-10-21 | Fix ident mistakes introduces by previous mass changes | Benjamin Franzke | 4 | -164/+172 | |
Variables were substituted by sed, so indentation got messed up. | |||||
2011-10-21 | Stop using global variables. | Benjamin Franzke | 4 | -204/+219 | |
Rather store it in a context, thats used everywhere as parameter, or as userdata. | |||||
2011-10-21 | interface: Stop the use of ugly tmp structures | Benjamin Franzke | 1 | -40/+28 | |
2011-10-21 | Merge sink.h and sink_input.h | Benjamin Franzke | 4 | -21/+11 | |
2011-10-21 | Use a GList instead of GArray for sinks. | Benjamin Franzke | 7 | -147/+84 | |
This lets us drop our ugly GArray wrappers sink.c and sink_input.c. It will make gradual updates of sinks easier, since elements can be added and dropped everywhere in the list easily. | |||||
2011-10-21 | interface: Cache some boolean expressions | Benjamin Franzke | 1 | -4/+8 | |
2011-10-21 | signalfd: Read out received signals | Benjamin Franzke | 1 | -0/+11 | |
2011-10-20 | Use signalfd if available | Benjamin Franzke | 3 | -3/+40 | |
If kqueue can be added as well, our homegrown kinda ugly signal dispatcher could be killed. | |||||
2011-10-20 | g_unix_signal: Remove g_ prefix to not collide with glib | Benjamin Franzke | 5 | -39/+43 | |
There is a g_unix_signal_new function in glib as well now, but that is only allowed to be used for SIGINT, SIGHUP and SIGTERM, so we have to stay with our own. | |||||
2011-10-20 | Kill off g_curses_input | Benjamin Franzke | 4 | -101/+13 | |
Use a g_io_channel that listens to STDIN_FILENO instead. | |||||
2011-10-19 | interface_set_status: Rename "save" to "status" | Benjamin Franzke | 1 | -5/+6 | |
2011-10-19 | interface: Add defines for special chooser_input states | Benjamin Franzke | 1 | -13/+16 | |
2011-10-19 | g_curses_input: Fix coding style | Benjamin Franzke | 2 | -9/+19 | |
2011-10-19 | Makefile.am: Use variables rather then substitutions | Benjamin Franzke | 1 | -2/+3 | |
Also set preprocessor flags in AM_CPPFLAGS | |||||
2011-10-19 | glib mainloop wrappers: Add missing includes for own prototypes | Benjamin Franzke | 2 | -0/+2 | |
2011-10-19 | Define gcc specific flags in configure | Benjamin Franzke | 1 | -1/+1 | |
2011-10-19 | g_unix_signal: Fix coding style | Benjamin Franzke | 1 | -8/+21 | |
2011-10-19 | interface: Rename status to interface_set_status | Benjamin Franzke | 3 | -10/+10 | |
2011-10-19 | interface.h: Remove private function prototypes | Benjamin Franzke | 2 | -105/+99 | |
Therefore reorder function definitions in interface.c. | |||||
2011-10-19 | Coding style: Seperate line for function return type | Benjamin Franzke | 6 | -40/+81 | |
2011-10-19 | interface: Rename get_input to interface_get_input | Benjamin Franzke | 2 | -3/+4 | |
2011-02-23 | Add glib helper headers to Makefile.am | Benjamin Franzke | 1 | -1/+1 | |
2011-02-08 | Fix: output formating | younix | 1 | -2/+3 | |
- max_name_len(): add indentation space - add space between volume bar and border | |||||
2011-02-08 | Dynamic growing volume bar. | younix | 1 | -4/+5 | |
Get the current window width and calculate the volume bar width. | |||||
2011-02-08 | Printing full name length. | younix | 2 | -7/+48 | |
Adding function to find out the longest name of all SINK's and INPUT's. Inserting indentations in amount of this max. length. | |||||
2010-11-04 | Merge branch 'master' of gitorious.org:pa-sink-ctl/pa-sink-ctl | younix | 2 | -0/+7 | |
2010-11-04 | add comment | younix | 1 | -3/+3 | |
2010-11-04 | get_input: only handle inputs, when context is ready | Benjamin Franzke | 2 | -0/+7 | |
2010-10-21 | get_sink_input_info: use pa_sink_info name attr as fallback | ben | 1 | -1/+3 | |
2010-10-21 | status: fix pointer to be const | ben | 2 | -2/+2 | |
2010-07-23 | replace gramatically incorrect "signal_infos" with "signal_data" | ben | 1 | -29/+29 | |
2010-07-23 | configure.ac: use AC_MSG_ERROR and add sigaction() check | ben | 1 | -11/+17 | |
2010-07-23 | glib curses input-event added (replacement for g_timeout) | ben | 6 | -17/+88 | |
2010-07-23 | unix SIGWNICH signal wrapped as glib signal source | ben | 5 | -24/+132 | |
2010-07-23 | move sink_list var to sink.c (included from sink.h) | ben | 4 | -6/+8 | |
other c-files than sink.c get the extern definition via sink.h, only sink.c receives the non-extern one | |||||
2010-07-23 | height,width made local vars + abit syntax cleanup | ben | 1 | -14/+14 | |
2010-07-23 | add wasd + tab + x keymapping for left hand ctrl | ben | 1 | -0/+7 | |
2010-07-23 | use blocked instead of pending var name for sync | ben | 2 | -8/+8 | |
2010-07-23 | use sigaction instead of signal | ben | 1 | -12/+5 | |
2010-07-23 | change (global) variable visibility (ie be static) | ben | 2 | -15/+15 | |
2010-07-23 | increase exit smoothness + add some g_asserts | ben | 1 | -1/+7 | |
2010-07-23 | remove old outcommented printfs | ben | 1 | -5/+2 | |
2010-07-23 | fit autotools config to actual changes and improve | ben | 1 | -2/+2 | |
2010-07-23 | use g_printerr instead of printf for errors | ben | 1 | -7/+8 | |
2010-07-23 | add status function, and display connection state | ben | 3 | -13/+35 | |
2010-07-23 | smoothly exit now (pulse con & glib loop explicit) | ben | 2 | -11/+11 | |
2010-07-23 | sink_list_tmp as userdata instead of global now | ben | 1 | -5/+6 | |
2010-07-22 | glib-ify datatype, functions etc + header cleanup | ben | 8 | -148/+103 | |
2010-07-21 | message window working now | ben | 1 | -5/+7 | |
2010-07-21 | Merge branch 'master' of gitorious.org:pa-sink-ctl/pa-sink-ctl | Jan Klemkow | 2 | -22/+24 | |