-
Notifications
You must be signed in to change notification settings - Fork 0
/
my_button.h
32 lines (27 loc) · 989 Bytes
/
my_button.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// Created by rufus on 25.01.18.
//
#ifndef MILL_MY_BUTTON_H
#define MILL_MY_BUTTON_H
#include <gtk/gtk.h>
#include "board.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
/// @class my_button
///
/// @brief Struktuja guzika z obrazkiem
////////////////////////////////////////////////////////////////////////////////////////////////////
typedef struct my_button{
char *assets[3];
Board board;
GtkWidget *event_box;
GtkWidget *image;
int x,y,state;
} *Button;
////////////////////////////////////////////////////////////////////////////////////////////////////
/// @fn Button init_button(Board board,int x,int y, char *assets[3]);
///
/// @brief Inicjalizuje guzik
/// @return Zainicjalizowany guzik
////////////////////////////////////////////////////////////////////////////////////////////////////
Button init_button(Board board,int x,int y, char *assets[3]);
#endif //MILL_MY_BUTTON_H