Subversion Repositories Kolibri OS

Rev

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

Rev 6589 Rev 6601
Line 24... Line 24...
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,
28
  KOLIBRI_EDITOR,
-
 
29
  KOLIBRI_TREELIST,
Line 29... Line 30...
29
 
30
 
30
  /* Add elements above this element in order to let KOLIBRI_NUM_GUI_ELEMENTS */
31
  /* Add elements above this element in order to let KOLIBRI_NUM_GUI_ELEMENTS */
Line 31... Line 32...
31
  /* stay at correct value */
32
  /* stay at correct value */
Line 79... Line 80...
79
#include "kolibri_progressbar.h"
80
#include "kolibri_progressbar.h"
80
#include "kolibri_scrollbar.h"
81
#include "kolibri_scrollbar.h"
81
#include "kolibri_statictext.h"
82
#include "kolibri_statictext.h"
82
#include "kolibri_filebrowse.h"
83
#include "kolibri_filebrowse.h"
83
#include "kolibri_editor.h"
84
#include "kolibri_editor.h"
-
 
85
#include "kolibri_treelist.h"
Line 84... Line 86...
84
 
86
 
Line 85... Line 87...
85
 
87
 
Line 154... Line 156...
154
 
156
 
155
kolibri_gui_op_table[KOLIBRI_EDITOR].redraw_fn = (cb_elem_boxlib)ted_draw;
157
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;
158
kolibri_gui_op_table[KOLIBRI_EDITOR].mouse_fn = (cb_elem_boxlib)ted_mouse;
157
kolibri_gui_op_table[KOLIBRI_EDITOR].key_fn = (cb_elem_boxlib)editor_key;
159
kolibri_gui_op_table[KOLIBRI_EDITOR].key_fn = (cb_elem_boxlib)editor_key;
-
 
160
debug_board_printf("KOLIBRI_EDITOR (%x,%x,%x)\n", ted_draw, ted_mouse, editor_key);
-
 
161
 
-
 
162
kolibri_gui_op_table[KOLIBRI_TREELIST].redraw_fn = (cb_elem_boxlib)tl_draw;
-
 
163
kolibri_gui_op_table[KOLIBRI_TREELIST].mouse_fn = (cb_elem_boxlib)tl_mouse;
-
 
164
kolibri_gui_op_table[KOLIBRI_TREELIST].key_fn = (cb_elem_boxlib)treelist_key;
158
debug_board_printf("KOLIBRI_EDITOR (%x,%x,%x)\n", ted_draw, ted_mouse, editor_key);
165
debug_board_printf("KOLIBRI_TREELIST (%x,%x,%x)\n", tl_draw, tl_mouse, treelist_key);
Line 159... Line 166...
159
}
166
}
160
 
167