-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWidgets-GTK.h
49 lines (36 loc) · 901 Bytes
/
Widgets-GTK.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: Widgets-GTK.h
* Author: Vinicius Furlan
*
* Created on June 26, 2016, 4:53 AM
*/
#ifndef WIDGETS_GTK_H
#define WIDGETS_GTK_H
#ifdef __cplusplus
extern "C" {
#endif
#include <gtk-3.0/gtk/gtk.h>
#include "arvoreB.h"
typedef struct{
TipoPagina *arvore;
TipoRegistro x;
int i;
GtkEntry *txtNum;
GtkWidget *txtView;
GtkWidget *gtkImg;
GtkTextBuffer *buffer;
GtkTextIter iter,iterEnd;
GtkTextMark *mark;
}Widgets;
G_MODULE_EXPORT void on_btnAdd_clicked(GtkButton *button,Widgets *widg);
G_MODULE_EXPORT void on_btnDel_clicked(GtkButton *button,Widgets *widg);
void on_window1_destroy();
#ifdef __cplusplus
}
#endif
#endif /* WIDGETS_GTK_H */