forked from KolibriOS/kolibrios
59d92b4ec3
git-svn-id: svn://kolibrios.org@6589 a494cfbc-eb01-0410-851d-a64ba20cac60
75 lines
2.3 KiB
C
75 lines
2.3 KiB
C
#ifndef KOLIBRI_OPENDIALOG_H
|
|
#define KOLIBRI_OPENDIALOG_H
|
|
|
|
char sz_com_area_name[] = "FFFFFFFF_open_dialog";
|
|
char sz_dir_default_path[] = "/rd/1";
|
|
char sz_start_path[] = "/rd/1/File managers/opendial";
|
|
|
|
enum open_dialog_mode {
|
|
OPEN,
|
|
SAVE,
|
|
SELECT
|
|
};
|
|
|
|
typedef struct __attribute__ ((__packed__)) {
|
|
unsigned int size;
|
|
unsigned char end;
|
|
}od_filter;
|
|
|
|
typedef struct __attribute__ ((__packed__)) {
|
|
unsigned int mode;
|
|
char* procinfo;
|
|
char* com_area_name;
|
|
unsigned int com_area;
|
|
char* opendir_path;
|
|
char* dir_default_path;
|
|
char* start_path;
|
|
void (*draw_window)();
|
|
unsigned int status;
|
|
char* openfile_path;
|
|
char* filename_area;
|
|
od_filter* filter_area;
|
|
unsigned short x_size;
|
|
unsigned short x_start;
|
|
unsigned short y_size;
|
|
unsigned short y_start;
|
|
}open_dialog;
|
|
|
|
void fake_on_redraw(void) {}
|
|
|
|
open_dialog* kolibri_new_open_dialog(unsigned int mode, unsigned short tlx, unsigned short tly, unsigned short x_size, unsigned short y_size)
|
|
{
|
|
open_dialog *new_opendialog = (open_dialog *)malloc(sizeof(open_dialog));
|
|
od_filter *new_od_filter = (od_filter *)malloc(sizeof(od_filter));
|
|
char *plugin_path = (char *)calloc(4096, sizeof(char));
|
|
char *openfile_path = (char *)calloc(4096, sizeof(char));
|
|
char *proc_info = (char *)calloc(1024, sizeof(char));
|
|
char *filename_area = (char *)calloc(256, sizeof(char));
|
|
|
|
new_od_filter -> size = 0;
|
|
new_od_filter -> end = 0;
|
|
|
|
new_opendialog -> mode = mode;
|
|
new_opendialog -> procinfo = proc_info;
|
|
new_opendialog -> com_area_name = sz_com_area_name;
|
|
new_opendialog -> com_area = 0;
|
|
new_opendialog -> opendir_path = plugin_path;
|
|
new_opendialog -> dir_default_path = sz_dir_default_path;
|
|
new_opendialog -> start_path = sz_start_path;
|
|
new_opendialog -> draw_window = &fake_on_redraw;
|
|
new_opendialog -> status = 0;
|
|
new_opendialog -> openfile_path = openfile_path;
|
|
new_opendialog -> filename_area = filename_area;
|
|
new_opendialog -> filter_area = new_od_filter;
|
|
new_opendialog -> x_size = x_size;
|
|
new_opendialog -> x_start = tlx;
|
|
new_opendialog -> y_size = y_size;
|
|
new_opendialog -> y_start = tly;
|
|
return new_opendialog;
|
|
}
|
|
|
|
extern void kolibri_proclib_init();
|
|
extern void (*OpenDialog_init)(open_dialog *) __attribute__((__stdcall__));
|
|
extern void (*OpenDialog_start)(open_dialog *) __attribute__((__stdcall__));
|
|
#endif /* KOLIBRI_OPENDIALOG_H */
|