removing unused function: drawReminder

This commit is contained in:
Roland Hollós 2021-10-02 09:43:05 +02:00
parent 84c5c89a70
commit 585390485c
2 changed files with 2 additions and 29 deletions

View File

@ -1,5 +1,5 @@
TARGET=fiboBG
DEST=$(HOME)/.local/bin #local install
DEST=$(HOME)/.local/bin/ #local install
#DES=/usr/local #global install
SRC=main.c
# DEBUG=-g
@ -7,6 +7,6 @@ DEBUG=
$(TARGET): main.c config.h
gcc -Wall -Wextra -pedantic $(DEBUG) $(SRC) `pkg-config --cflags --libs cairo x11` -o $(TARGET) -lm
install:
cp $(TARGET) $(DEST)/
cp $(TARGET) $(DEST)
uninstall:
rm $(DEST)/$(TARGET)

27
main.c
View File

@ -93,32 +93,6 @@ void drawRectangle(cairo_t* cr, rectangle R){
cairo_fill(cr); /* fill rectangle */
}
void drawReminder(cairo_t* cr, int minRem){
float x_pos[4]={10, 810, 810, 10};
float y_pos[4]={10, 10, 510, 510};
int previous;
if(minRem == 0){
previous = 4;
} else {
previous = minRem - 1;
}
for(int i = 0; i < 4; ++i){
cairo_arc(cr, x_pos[i], y_pos[i],10, 0, 2 * M_PI);
cairo_set_source_rgb(cr, 0.5, 0.5, 0.5); /* set fill color */
cairo_fill(cr);
}
cairo_arc(cr, x_pos[previous], y_pos[previous], 10, 0, 2 * M_PI);
cairo_set_source_rgb(cr, 0.5, 0.5, 0.5); /* set fill color */
cairo_fill(cr);
if(minRem != 0){
cairo_arc(cr, x_pos[minRem - 1], y_pos[minRem - 1], 7, 0, 2 * M_PI);
cairo_set_source_rgb(cr, 0, 0, 0); /* set fill color */
cairo_fill(cr);
}
}
void drawFibbTime(cairo_t* cr, int width, int height){
@ -174,7 +148,6 @@ void drawFibbTime(cairo_t* cr, int width, int height){
drawRectangle(cr, Rs[3]);
drawRectangle(cr, Rs[4]);
drawRectangle(cr, Rs[0]);
/* drawReminder(cr, (t.minute % 5)); */
}
int main(int argc, char** argv) {