Subversion Repositories Kolibri OS

Rev

Rev 6560 | Rev 6601 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6560 Rev 6589
Line 23... Line 23...
23
  KOLIBRI_STATICNUM,
23
  KOLIBRI_STATICNUM,
24
  KOLIBRI_BUTTON,
24
  KOLIBRI_BUTTON,
25
  KOLIBRI_D_BUTTON,
25
  KOLIBRI_D_BUTTON,
26
  KOLIBRI_PATHSHOW,
26
  KOLIBRI_PATHSHOW,
27
  KOLIBRI_FILEBROWSE,
27
  KOLIBRI_FILEBROWSE,
-
 
28
  KOLIBRI_EDITOR,
Line 28... Line 29...
28
 
29
 
29
  /* Add elements above this element in order to let KOLIBRI_NUM_GUI_ELEMENTS */
30
  /* Add elements above this element in order to let KOLIBRI_NUM_GUI_ELEMENTS */
Line 30... Line 31...
30
  /* stay at correct value */
31
  /* stay at correct value */
Line 77... Line 78...
77
#include "kolibri_pathshow.h"
78
#include "kolibri_pathshow.h"
78
#include "kolibri_progressbar.h"
79
#include "kolibri_progressbar.h"
79
#include "kolibri_scrollbar.h"
80
#include "kolibri_scrollbar.h"
80
#include "kolibri_statictext.h"
81
#include "kolibri_statictext.h"
81
#include "kolibri_filebrowse.h"
82
#include "kolibri_filebrowse.h"
82
 
-
 
-
 
83
#include "kolibri_editor.h"
Line 83... Line 84...
83
 
84
 
Line 84... Line 85...
84
 
85
 
Line 148... Line 149...
148
kolibri_gui_op_table[KOLIBRI_PATHSHOW].key_fn = NULL;
149
kolibri_gui_op_table[KOLIBRI_PATHSHOW].key_fn = NULL;
Line 149... Line 150...
149
 
150
 
150
kolibri_gui_op_table[KOLIBRI_FILEBROWSE].redraw_fn = (cb_elem_boxlib)filebrowse_draw;
151
kolibri_gui_op_table[KOLIBRI_FILEBROWSE].redraw_fn = (cb_elem_boxlib)filebrowse_draw;
151
kolibri_gui_op_table[KOLIBRI_FILEBROWSE].mouse_fn = (cb_elem_boxlib)filebrowse_mouse;
152
kolibri_gui_op_table[KOLIBRI_FILEBROWSE].mouse_fn = (cb_elem_boxlib)filebrowse_mouse;
-
 
153
kolibri_gui_op_table[KOLIBRI_FILEBROWSE].key_fn = (cb_elem_boxlib)filebrowse_key;
-
 
154
 
-
 
155
kolibri_gui_op_table[KOLIBRI_EDITOR].redraw_fn = (cb_elem_boxlib)ted_draw;
-
 
156
kolibri_gui_op_table[KOLIBRI_EDITOR].mouse_fn = (cb_elem_boxlib)ted_mouse;
152
kolibri_gui_op_table[KOLIBRI_FILEBROWSE].key_fn = (cb_elem_boxlib)filebrowse_key;
157
kolibri_gui_op_table[KOLIBRI_EDITOR].key_fn = (cb_elem_boxlib)editor_key;
153
debug_board_printf("KOLIBRI_FILEBROWSE (%x,%x,%x)\n", filebrowse_draw, filebrowse_mouse, filebrowse_key);
158
debug_board_printf("KOLIBRI_EDITOR (%x,%x,%x)\n", ted_draw, ted_mouse, editor_key);
Line 154... Line 159...
154
}
159
}
155
 
160