You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
945 B
33 lines
945 B
#include <gtk/gtk.h>
|
|
#include <gtk/gtkx.h>
|
|
#include "model/ubl-utils.h"
|
|
#include <locale.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <libintl.h>
|
|
#include <getopt.h>
|
|
#include <libintl.h>
|
|
#include "ubl-cmake.h"
|
|
#include "model/model.h"
|
|
#include "model/load.h"
|
|
#include "ubl-strings.h"
|
|
|
|
typedef struct {
|
|
GtkWidget* btnCancel;
|
|
GtkWidget* Window;
|
|
GtkWidget* btnSave;
|
|
GtkWidget* treeViewCheckUsersGroups;
|
|
GtkListStore* liststoreUsersGroups;
|
|
} table_u_g;
|
|
|
|
void table_u_g_table_u_g_event(table_u_g *widgets);
|
|
void table_u_g_on_hide_subwindow(GtkWidget *self);
|
|
table_u_g *table_u_g_get_widget_filters();
|
|
void table_u_g_destroy(GtkWidget *self);
|
|
void table_u_g_event();
|
|
void table_u_g_fill_tree_view(char** array, int size);
|
|
void table_u_g_set_flag(char* _flag_u_g);
|
|
void table_u_g_set_glade_path(char* _glade_path);
|
|
void table_u_g_show(GtkWidget *self, char* glade_path);
|
|
void set_vector(vector* _vec_temp); |