mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-23 14:59:47 +03:00
Fixes for new clipboard interface.
This commit is contained in:
parent
d1dabbb0e2
commit
bded644d7f
@ -175,8 +175,8 @@ void context_popup( struct gui_window * gw, short x, short y )
|
||||
browser_window_key_press( gw->browser->bw, KEY_CUT_SELECTION );
|
||||
break;
|
||||
|
||||
case POP_CTX_PASTE_SEL:
|
||||
gui_paste_from_clipboard(gw, x, y);
|
||||
case POP_CTX_PASTE_SEL:
|
||||
browser_window_key_press(gw->browser->bw, KEY_PASTE);
|
||||
break;
|
||||
|
||||
case POP_CTX_SELECT_ALL:
|
||||
|
186
atari/gui.c
186
atari/gui.c
@ -612,125 +612,79 @@ void gui_drag_save_selection(struct selection *s, struct gui_window *w)
|
||||
|
||||
void gui_start_selection(struct gui_window *w)
|
||||
{
|
||||
gui_empty_clipboard();
|
||||
}
|
||||
|
||||
void gui_paste_from_clipboard(struct gui_window *w, int x, int y)
|
||||
{
|
||||
char * clip = scrap_txt_read( &app );
|
||||
if( clip == NULL )
|
||||
return;
|
||||
int clip_length = strlen( clip );
|
||||
if (clip_length > 0) {
|
||||
char *utf8;
|
||||
utf8_convert_ret ret;
|
||||
/* Clipboard is in local encoding so
|
||||
* convert to UTF8 */
|
||||
ret = utf8_from_local_encoding(clip,
|
||||
clip_length, &utf8);
|
||||
if (ret == UTF8_CONVERT_OK) {
|
||||
browser_window_paste_text(w->browser->bw, utf8,
|
||||
strlen(utf8), true);
|
||||
free(utf8);
|
||||
}
|
||||
free( clip );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Core asks front end for clipboard contents.
|
||||
*
|
||||
* \param buffer UTF-8 text, allocated by front end, ownership yeilded to core
|
||||
* \param length Byte length of UTF-8 text in buffer
|
||||
*/
|
||||
void gui_get_clipboard(char **buffer, size_t *length)
|
||||
{
|
||||
char *clip;
|
||||
size_t clip_len;
|
||||
|
||||
*length = 0;
|
||||
*buffer = 0;
|
||||
|
||||
clip = scrap_txt_read(&app);
|
||||
|
||||
if(clip == NULL){
|
||||
return;
|
||||
} else {
|
||||
|
||||
// clipboard is in atari encoding, convert it to utf8:
|
||||
|
||||
char *utf8 = NULL;
|
||||
utf8_convert_ret ret;
|
||||
|
||||
clip_len = strlen(clip);
|
||||
if (clip_len > 0) {
|
||||
ret = utf8_to_local_encoding(clip, clip_len, &utf8);
|
||||
if (ret == UTF8_CONVERT_OK && utf8 != NULL) {
|
||||
*buffer = utf8;
|
||||
*length = strlen(utf8);
|
||||
}
|
||||
else {
|
||||
assert(ret == UTF8_CONVERT_OK && utf8 != NULL);
|
||||
}
|
||||
}
|
||||
|
||||
bool gui_empty_clipboard(void)
|
||||
{
|
||||
if( tmp_clipboard != NULL ){
|
||||
free( tmp_clipboard );
|
||||
tmp_clipboard = NULL;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool gui_add_to_clipboard(const char *text_utf8, size_t length_utf8, bool space,
|
||||
const plot_font_style_t *fstyle)
|
||||
{
|
||||
LOG(("(%s): %s (%d)\n", (space)?"space":"", (char*)text_utf8, (int)length_utf8));
|
||||
char * oldptr = tmp_clipboard;
|
||||
size_t oldlen = 0;
|
||||
size_t newlen = 0;
|
||||
char * text = NULL;
|
||||
char * text2 = NULL;
|
||||
bool retval;
|
||||
int length = 0;
|
||||
if( length_utf8 > 0 && text_utf8 != NULL ) {
|
||||
utf8_to_local_encoding(text_utf8,length_utf8,&text);
|
||||
if( text == NULL ) {
|
||||
LOG(("Conversion failed (%s)", text_utf8));
|
||||
goto error;
|
||||
} else {
|
||||
text2 = text;
|
||||
}
|
||||
} else {
|
||||
if( space == false ) {
|
||||
goto success;
|
||||
}
|
||||
text = malloc(length + 2);
|
||||
if( text == NULL ) {
|
||||
goto error;
|
||||
}
|
||||
text2 = text;
|
||||
text[length+1] = 0;
|
||||
memset(text, ' ', length+1);
|
||||
}
|
||||
length = strlen(text);
|
||||
if( tmp_clipboard != NULL ) {
|
||||
oldlen = strlen( tmp_clipboard );
|
||||
}
|
||||
newlen = oldlen + length + 1;
|
||||
if( tmp_clipboard == NULL){
|
||||
tmp_clipboard = malloc(newlen);
|
||||
if( tmp_clipboard == NULL ) {
|
||||
goto error;
|
||||
}
|
||||
strncpy(tmp_clipboard, text, newlen);
|
||||
} else {
|
||||
tmp_clipboard = realloc( tmp_clipboard, newlen);
|
||||
if( tmp_clipboard == NULL ) {
|
||||
goto error;
|
||||
}
|
||||
strncpy(tmp_clipboard, oldptr, newlen);
|
||||
strncat(tmp_clipboard, text, newlen-oldlen);
|
||||
}
|
||||
goto success;
|
||||
|
||||
error:
|
||||
retval = false;
|
||||
goto fin;
|
||||
|
||||
success:
|
||||
retval = true;
|
||||
|
||||
fin:
|
||||
if( text2 != NULL )
|
||||
free( text2 );
|
||||
return(retval);
|
||||
|
||||
}
|
||||
|
||||
bool gui_commit_clipboard(void)
|
||||
{
|
||||
int r = scrap_txt_write(&app, tmp_clipboard);
|
||||
return( (r>0)?true:false );
|
||||
}
|
||||
|
||||
bool gui_copy_to_clipboard(struct selection *s)
|
||||
{
|
||||
bool ret = false;
|
||||
if( s->defined ) {
|
||||
gui_empty_clipboard();
|
||||
if(selection_copy_to_clipboard(s)){
|
||||
ret = gui_commit_clipboard();
|
||||
}
|
||||
}
|
||||
gui_empty_clipboard();
|
||||
return ret;
|
||||
}
|
||||
free(clip);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Core tells front end to put given text in clipboard
|
||||
*
|
||||
* \param buffer UTF-8 text, owned by core
|
||||
* \param length Byte length of UTF-8 text in buffer
|
||||
* \param styles Array of styles given to text runs, owned by core, or NULL
|
||||
* \param n_styles Number of text run styles in array
|
||||
*/
|
||||
void gui_set_clipboard(const char *buffer, size_t length,
|
||||
nsclipboard_styles styles[], int n_styles)
|
||||
{
|
||||
if (length > 0 && buffer != NULL) {
|
||||
|
||||
// convert utf8 input to atari encoding:
|
||||
|
||||
utf8_convert_ret ret;
|
||||
char *clip = NULL;
|
||||
|
||||
ret = utf8_to_local_encoding(buffer,length, &clip);
|
||||
if (ret == UTF8_CONVERT_OK) {
|
||||
scrap_txt_write(&app, clip);
|
||||
} else {
|
||||
assert(ret == UTF8_CONVERT_OK);
|
||||
}
|
||||
free(clip);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
void gui_create_form_select_menu(struct browser_window *bw,
|
||||
struct form_control *control)
|
||||
|
@ -56,7 +56,7 @@ struct s_tb_button
|
||||
struct s_url_widget
|
||||
{
|
||||
bool redraw; /* widget is only redrawn when this flag is set */
|
||||
struct text_area *textarea;
|
||||
struct textarea *textarea;
|
||||
COMPONENT * comp;
|
||||
GRECT rdw_area;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user