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.
30 lines
739 B
30 lines
739 B
#ifndef VIEW_EDIT_H
|
|
#define VIEW_EDIT_H
|
|
#include <gtk/gtk.h>
|
|
#include <gtk/gtkx.h>
|
|
#include "ubl-utils.h"
|
|
#include "ubl-strings.h"
|
|
#include <locale.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <libintl.h>
|
|
#include <getopt.h>
|
|
#include <libintl.h>
|
|
|
|
// Переменные
|
|
typedef struct {
|
|
GtkWidget* Window;
|
|
GtkWidget* btnSaveEditSave;
|
|
GtkWidget* btnEditCancel;
|
|
} edit_window;
|
|
|
|
// Функции
|
|
edit_window *edit_setup_window(char* glade_path);
|
|
void edit_event(edit_window *widgets);
|
|
void edit_localization(edit_window *widgets);
|
|
void edit_on_hide_subwindow(GtkWidget *self);
|
|
edit_window *get_widget_edit();
|
|
void edit_show(GtkWidget *self, char* glade_path);
|
|
void edit_destroy(GtkWidget *self);
|
|
#endif |