forked from KolibriOS/kolibrios
a912a6a094
git-svn-id: svn://kolibrios.org@6470 a494cfbc-eb01-0410-851d-a64ba20cac60
115 lines
4.6 KiB
C
115 lines
4.6 KiB
C
#ifndef KOLIBRI_EDITBOX_H
|
|
#define KOLIBRI_EDITBOX_H
|
|
|
|
#include "kolibri_colors.h"
|
|
|
|
/* flags meaning
|
|
ed_figure_only= 1000000000000000b ;îäíè ñèìâîëû
|
|
ed_always_focus= 100000000000000b
|
|
ed_focus= 10b ;ôîêóñ ïðèëîæåíèÿ
|
|
ed_pass= 1b ;ïîëå ñ ïàðîëåì
|
|
ed_shift_on= 1000b ;åñëè íå óñòàíîâëåí -çíà÷èò âïåðâûå íàæàò shift,åñëè áûë óñòàíîâëåí, çíà÷èò ìû óæå ÷òî - òî äåëàëè óäåðæèâàÿ shift
|
|
ed_shift_on_off=1111111111110111b
|
|
ed_shift= 100b ;âêëþ÷àåòñÿ ïðè íàæàòèè íà shift ò.å. åñëè íàæèìàþ
|
|
ed_shift_off= 1111111111111011b
|
|
ed_shift_bac= 10000b ;áèò äëÿ î÷èñòêè âûäåëåíîãî shift ò.å. ïðè óñòàíîâêå ãîâîðèò ÷òî åñòü âûäåëåíèå
|
|
ed_shift_bac_cl=1111111111101111b ;î÷èñòêà ïðè óäàëåíèè âûäåëåíèÿ
|
|
ed_shift_cl= 1111111111100011b
|
|
ed_shift_mcl= 1111111111111011b
|
|
ed_left_fl= 100000b
|
|
ed_right_fl= 1111111111011111b
|
|
ed_offset_fl= 1000000b
|
|
ed_offset_cl= 1111111110111111b
|
|
ed_insert= 10000000b
|
|
ed_insert_cl= 1111111101111111b
|
|
ed_mouse_on = 100000000b
|
|
ed_mous_adn_b= 100011000b
|
|
ed_mouse_on_off=1111111011111111b
|
|
*/
|
|
|
|
typedef struct {
|
|
unsigned int width;
|
|
unsigned int left;
|
|
unsigned int top;
|
|
unsigned int color;
|
|
unsigned int shift_color; // selected text color
|
|
unsigned int focus_border_color;
|
|
unsigned int blur_border_color;
|
|
unsigned int text_color;
|
|
unsigned int max;
|
|
char *text;
|
|
unsigned int mouse_variable; // mus be int* pointer to saved mouse pos ??
|
|
unsigned int flags;
|
|
|
|
unsigned int size; // used symbols in buffer without trailing zero
|
|
unsigned int pos; // cursor position
|
|
/* The following struct members are not used by the users of API */
|
|
unsigned int offset;
|
|
unsigned int cl_curs_x;
|
|
unsigned int cl_curs_y;
|
|
unsigned int shift;
|
|
unsigned int shift_old;
|
|
}edit_box;
|
|
|
|
/* Initializes an Editbox with sane settings, sufficient for most use.
|
|
This will let you create a box and position it somewhere on the screen.
|
|
The text_buffer is a pointer to a character array and needs to be as long as
|
|
AT LEAST MAX_CHARS + 1.If the text_buffer is smaller, it will crash if user
|
|
types more characters than what will fit into the text buffer.
|
|
|
|
Allocating buffer space automatically so that programmer can be carefree now.
|
|
This also automatically adjusts the size of edit box so that it can hold enough characters.
|
|
|
|
All you need is :
|
|
|
|
tlx,tly = Coordinates of the beginning of the edit box.
|
|
max_chars = Limit of number of characters user can enter into edit box.
|
|
*/
|
|
|
|
edit_box* kolibri_new_edit_box(unsigned int tlx, unsigned int tly, unsigned int max_chars)
|
|
{
|
|
unsigned int PIXELS_PER_CHAR = 7;
|
|
edit_box *new_textbox = (edit_box *)malloc(sizeof(edit_box));
|
|
char *text_buffer = (char *)calloc(max_chars + 1, sizeof(char));
|
|
|
|
/* Update blur_border_color and shift_color from box_lib.mac macro */
|
|
/* edit_boxes_set_sys_color */
|
|
|
|
new_textbox -> width = max_chars * PIXELS_PER_CHAR;
|
|
new_textbox -> left = tlx;
|
|
new_textbox -> top = tly;
|
|
new_textbox -> color = 0xFFFFFF; /* Always make white edit boxes */
|
|
new_textbox -> shift_color = 0x6a9480;
|
|
new_textbox -> focus_border_color = kolibri_color_table.color_work_graph;
|
|
new_textbox -> blur_border_color = 0x6a9480;
|
|
new_textbox -> text_color = kolibri_color_table.color_work_text; /* Always black text when typing */
|
|
new_textbox -> max = max_chars;
|
|
new_textbox -> text = text_buffer;
|
|
new_textbox -> mouse_variable = 1; /* let the mouse take control? */
|
|
new_textbox -> flags = 0x00000000;
|
|
/* If these lines are uncommented, the executable will crash for no reason at start */
|
|
/* Even though these lines are not ever read it ALWAYS causes a crash, even crashes MTDBG. What gives? */
|
|
|
|
new_textbox -> size = 0;
|
|
new_textbox -> pos = 0;
|
|
new_textbox -> offset = 0;
|
|
new_textbox -> cl_curs_x = 0;
|
|
new_textbox -> cl_curs_y = 0;
|
|
new_textbox -> shift = 0;
|
|
new_textbox -> shift_old = 0;
|
|
|
|
return new_textbox;
|
|
}
|
|
|
|
extern void (*edit_box_draw)(edit_box *) __attribute__((__stdcall__));
|
|
|
|
/* editbox_key is a wrapper written in assembly to handle key press events for editboxes */
|
|
/* because inline assembly in GCC is a PITA and interferes with the EAX (AH) register */
|
|
/* which edit_box_key requires */
|
|
extern void editbox_key(edit_box *) __attribute__((__stdcall__));
|
|
|
|
extern void (*edit_box_mouse)(edit_box *) __attribute__((__stdcall__));
|
|
extern void (*edit_box_set_text)(edit_box *, char *) __attribute__((__stdcall__));
|
|
extern volatile unsigned press_key;
|
|
#endif /* KOLIBRI_EDITBOX_H */
|