-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#575: implement top orientation for noncurses
- Loading branch information
Showing
4 changed files
with
68 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
#include "../config.h" | ||
|
||
int init_terminal_noncurses(int inAtty, char *const fg_color_string, char *const bg_color_string, | ||
int col, int bgcol, int gradient, int gradient_count, | ||
char **gradient_colors, int w, int h, int bar_width); | ||
void get_terminal_dim_noncurses(int *w, int *h); | ||
int draw_terminal_noncurses(int inAtty, int lines, int width, int number_of_bars, int bar_width, | ||
int bar_spacing, int rest, int bars[], int previous_frame[], | ||
int gradient, int x_axis_info); | ||
int gradient, int x_axis_info, enum orientation orientation); | ||
void cleanup_terminal_noncurses(void); |