1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
|
#include "gcin.h"
#include "pho.h"
#include "win-sym.h"
#include "gst.h"
GtkWidget *gwin0 = NULL;
extern GtkWidget *gwin1;
extern Display *dpy;
static GtkWidget *top_bin;
int current_gcin_inner_frame;
static GtkWidget *hbox_edit;
static PangoAttrList* attr_list, *attr_list_blank;
extern gboolean test_mode;
void compact_win0();
void move_win0(int x, int y);
void get_win0_geom();
static struct {
GtkWidget *vbox;
GtkWidget *label;
// GtkWidget *line;
int x;
} chars[MAX_PH_BF_EXT];
static GtkWidget *button_pho;
static GtkWidget *label_pho;
extern char text_pho[];
extern int text_pho_N;
static GtkWidget *button_eng_ph;
//static int max_yl;
static void create_win0_gui();
static void recreate_win0()
{
bzero(chars, sizeof(chars));
label_pho = NULL;
create_win0_gui();
}
#if WIN32
static int timeout_handle;
gboolean timeout_minimize_win0(gpointer data)
{
if (!gwin0)
return FALSE;
gtk_window_resize(GTK_WINDOW(gwin0), 1, 1);
// gtk_window_present(GTK_WINDOW(gwin0));
timeout_handle = 0;
return FALSE;
}
#endif
#if USE_TSIN
void change_win0_style()
{
if (!top_bin || current_gcin_inner_frame == gcin_inner_frame)
return;
gtk_widget_destroy(top_bin);
top_bin = NULL;
current_gcin_inner_frame = gcin_inner_frame;
recreate_win0();
}
#endif
void set_label_font_size();
/* there is a bug in gtk, if the widget is created and hasn't been processed by
gtk_main(), the coodinate of the widget is sometimes invalid.
We use pre-create to overcome this bug.
*/
void drawcursor();
void open_select_pho();
void create_phrase_save_menu(GdkEventButton * event);
static void mouse_char_callback( GtkWidget *widget,GdkEventButton *event, gpointer data)
{
tss.c_idx = GPOINTER_TO_INT(data);
drawcursor();
switch (event->button) {
case 1:
case 2:
open_select_pho();
break;
case 3:
{
create_phrase_save_menu(event);
break;
}
}
}
static void create_char(int index)
{
int i;
// dbg("create_char %d\n", index);
if (!hbox_edit) {
dbg("create_char: !hbox_edit\n");
return;
}
GdkColor fg;
gdk_color_parse(gcin_win_color_fg, &fg);
GdkColor color_bg;
gdk_color_parse(tsin_phrase_line_color, &color_bg);
i = index;
{
if (chars[i].vbox)
return;
GtkWidget *event_box = gtk_event_box_new();
gtk_event_box_set_visible_window (GTK_EVENT_BOX(event_box), FALSE);
chars[i].vbox = event_box;
g_signal_connect (G_OBJECT (event_box), "button-press-event", G_CALLBACK (mouse_char_callback), GINT_TO_POINTER(index));
gtk_box_pack_start (GTK_BOX (hbox_edit), event_box, FALSE, FALSE, 0);
GtkWidget *vbox = gtk_vbox_new (FALSE, 0);
gtk_container_add(GTK_CONTAINER(event_box), vbox);
GtkWidget *label = gtk_label_new(NULL);
gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0);
set_label_font_size(label, gcin_font_size);
chars[i].label = label;
if (gcin_win_color_use) {
#if !GTK_CHECK_VERSION(2,91,6)
gtk_widget_modify_fg(label, GTK_STATE_NORMAL, &fg);
#else
GdkRGBA rgbfg;
gdk_rgba_parse(&rgbfg, gdk_color_to_string(&fg));
gtk_widget_override_color(label, GTK_STATE_FLAG_NORMAL, &rgbfg);
#endif
}
gtk_widget_show_all(event_box);
}
}
extern gboolean b_use_full_space;
void set_label_space();
void set_label_space(GtkWidget *label);
void create_win0();
void disp_char(int index, char *ch)
{
if (gcin_edit_display_ap_only())
return;
if (!top_bin) {
// dbg("not top_bin");
create_win0();
create_win0_gui();
// return;
}
// dbg("disp_char %d %s\n", index, ch);
create_char(index);
GtkWidget *label = chars[index].label;
if (label) {
if (ch[0]==' ' && ch[1]==' ')
set_label_space(label);
else {
gtk_label_set_text(GTK_LABEL(label), ch);
}
}
#if GTK_CHECK_VERSION(3,0,0)
// bug in gtk3
set_label_font_size(label, gcin_font_size);
#endif
get_win0_geom();
if (win_x + win_xl >= dpy_xl)
move_win0(dpy_xl - win_xl, win_y);
gtk_widget_show_all(chars[index].vbox);
}
void hide_char(int index)
{
#if WIN32
if (test_mode)
return;
#endif
if (!chars[index].vbox)
return;
gtk_label_set_text(GTK_LABEL(chars[index].label), "");
gtk_widget_hide_all(chars[index].vbox);
}
void clear_chars_all()
{
int i;
#if WIN32
if (test_mode)
return;
#endif
for(i=0; i < MAX_PH_BF_EXT; i++) {
hide_char(i);
}
compact_win0();
}
void set_cursor_tsin(int index)
{
GtkWidget *label = chars[index].label;
if (!label)
return;
if (gcin_edit_display_ap_only())
return;
gtk_label_set_attributes(GTK_LABEL(label), attr_list);
}
void clr_tsin_cursor(int index)
{
GtkWidget *label = chars[index].label;
if (!label)
return;
#if WIN32
if (test_mode)
return;
#endif
gtk_label_set_attributes(GTK_LABEL(label), attr_list_blank);
}
void disp_pho_sub(GtkWidget *label, int index, char *pho);
void hide_win0();
void disp_tsin_pho(int index, char *pho)
{
#if WIN32
if (test_mode)
return;
#endif
if (gcin_display_on_the_spot_key()) {
if (gwin0 && GTK_WIDGET_VISIBLE(gwin0))
hide_win0();
return;
}
if (button_pho && !GTK_WIDGET_VISIBLE(button_pho))
gtk_widget_show(button_pho);
text_pho_N = pin_juyin?6:3;
disp_pho_sub(label_pho, index, pho);
}
void disp_tsin_pho(int index, char *pho);
gboolean tsin_pho_mode();
void show_button_pho(gboolean bshow);
void clr_in_area_pho_tsin()
{
if (!tsin_pho_mode()) {
show_button_pho(FALSE);
return;
}
int i;
#if WIN32
if (test_mode)
return;
#endif
for(i=0; i < text_pho_N; i++)
disp_tsin_pho(i, " ");
}
int get_widget_xy(GtkWidget *win, GtkWidget *widget, int *rx, int *ry)
{
if (!win && !widget)
p_err("get_widget_xy err");
// gdk_flush();
GtkRequisition sz;
gtk_widget_get_preferred_size(widget, NULL, &sz);
int wx, wy;
wx=wy=0;
gtk_widget_translate_coordinates(widget, win,
0, sz.height, &wx, &wy);
gtk_widget_translate_coordinates(widget, win,
0, sz.height, &wx, &wy);
// dbg("%d wx:%d\n", index, wx);
int win_x, win_y;
gtk_window_get_position(GTK_WINDOW(win), &win_x, &win_y);
int win_xl, win_yl;
get_win_size(win, &win_xl, &win_yl);
if (wx > win_xl)
wx = win_xl;
*rx = win_x + wx;
*ry = win_y + wy;
return wx;
}
void getRootXY(Window win, int wx, int wy, int *tx, int *ty);
void disp_selections(int x, int y);
void disp_tsin_select(int index)
{
int x,y;
#if WIN32
if (test_mode)
return;
#endif
if (index < 0)
return;
// dbg("gcin_edit_display_ap_only() %d\n", gcin_edit_display_ap_only());
if (gcin_edit_display_ap_only()) {
dbg("spot %d,%d\n", current_CS->spot_location.x, current_CS->spot_location.y);
getRootXY(current_CS->client_win, current_CS->spot_location.x, current_CS->spot_location.y, &x, &y);
} else {
#if 1
int i;
// bug in GTK, widget position is wrong, repeat util find one
for(i=index;i>=0; i--) {
gtk_widget_show_now(chars[i].label);
gtk_widget_show(chars[i].vbox);
gtk_main_iteration_do(FALSE);
int tx = get_widget_xy(gwin0, chars[i].vbox, &x, &y);
if (tx>=0)
break;
}
#else
get_widget_xy(gwin0, chars[index].vbox, &x, &y);
#endif
get_win0_geom();
}
disp_selections(x, y);
}
#define MIN_X_SIZE 32
static int best_win_x, best_win_y;
static void raw_move(int x, int y)
{
int xl, yl;
if (!gwin0)
return;
get_win_size(gwin0, &xl, &yl);
if (x + xl > dpy_xl)
x = dpy_xl - xl;
if (y + yl > dpy_yl)
y = dpy_yl - yl;
gtk_window_move(GTK_WINDOW(gwin0), x, y);
// dbg("gwin0:%x raw_move %d,%d\n", gwin0, x, y);
}
void compact_win0()
{
#if WIN32
if (test_mode)
return;
#endif
if (!gwin0)
return;
// max_yl = 0;
gtk_window_resize(GTK_WINDOW(gwin0), 1, 1);
raw_move(best_win_x, best_win_y);
#if WIN32
if (!timeout_handle)
timeout_handle = g_timeout_add(50, timeout_minimize_win0, NULL);
#endif
}
gboolean tsin_has_input();
GtkWidget *gwin_sym;
void move_win0(int x, int y)
{
dbg("--- gwin0:%x move_win0 %d,%d\n", gwin0, x,y);
best_win_x = x;
best_win_y = y;
if (gwin0)
gtk_window_get_size(GTK_WINDOW(gwin0), &win_xl, &win_yl);
if (x + win_xl > dpy_xl)
x = dpy_xl - win_xl;
if (x < 0)
x = 0;
if (y + win_yl > dpy_yl)
y = dpy_yl - win_yl;
if (y < 0)
y = 0;
// dbg("move_win0 %d,%d\n",x, y);
if (gwin0)
gtk_window_move(GTK_WINDOW(gwin0), x, y);
// dbg("move_win0 %d %d\n",x,y);
win_x = x;
win_y = y;
move_win_sym();
}
void disp_tsin_eng_pho(int eng_pho)
{
static char *eng_pho_strs[]={"英","注"};
if (!button_eng_ph)
return;
gtk_button_set_label(GTK_BUTTON(button_eng_ph), eng_pho_strs[eng_pho]);
}
void exec_gcin_setup();
void toggle_win_sym();
static void mouse_button_callback( GtkWidget *widget,GdkEventButton *event, gpointer data)
{
// dbg("mouse_button_callback %d\n", event->button);
switch (event->button) {
case 1:
toggle_win_sym();
break;
case 2:
inmd_switch_popup_handler(widget, (GdkEvent *)event);
break;
case 3:
exec_gcin_setup();
break;
}
}
void tsin_toggle_eng_ch();
void set_no_focus();
GtkWidget *create_no_focus_win()
{
GtkWidget *win = gtk_window_new (GTK_WINDOW_TOPLEVEL);
// gtk_window_set_has_resize_grip(GTK_WINDOW(win), FALSE);
#if UNIX
gtk_window_set_resizable(GTK_WINDOW(win), FALSE);
#endif
#if WIN32
set_no_focus(win);
#endif
gtk_container_set_border_width (GTK_CONTAINER (win), 0);
gtk_widget_realize (win);
#if UNIX
// GdkWindow *gdkwin = gtk_widget_get_window(win);
set_no_focus(win);
#else
win32_init_win(win);
#endif
return win;
}
void create_win0()
{
if (gwin0)
return;
#if _DEBUG && 0
dbg("create_win0\n");
#endif
gwin0 = create_no_focus_win();
}
void create_win1();
static void create_cursor_attr()
{
if (attr_list)
pango_attr_list_unref(attr_list);
GdkColor color_bg, color_fg;
gdk_color_parse(tsin_cursor_color, &color_bg);
gdk_color_parse("white", &color_fg);
attr_list = pango_attr_list_new ();
attr_list_blank = pango_attr_list_new ();
PangoAttribute *blue_bg = pango_attr_background_new(
color_bg.red, color_bg.green, color_bg.blue);
blue_bg->start_index = 0;
blue_bg->end_index = 128;
pango_attr_list_insert (attr_list, blue_bg);
PangoAttribute *white_fg = pango_attr_foreground_new(
color_fg.red, color_fg.green, color_fg.blue);
white_fg->start_index = 0;
white_fg->end_index = 128;
pango_attr_list_insert (attr_list, white_fg);
}
void init_tsin_selection_win();
static void set_win0_bg()
{
#if 1
change_win_bg(gwin0);
#endif
}
void change_win1_font();
static void create_win0_gui()
{
if (top_bin)
return;
GtkWidget *vbox_top = gtk_vbox_new (FALSE, 0);
gtk_container_set_border_width (GTK_CONTAINER (gwin0), 0);
if (gcin_inner_frame) {
GtkWidget *frame;
top_bin = frame = gtk_frame_new(NULL);
gtk_container_set_border_width (GTK_CONTAINER (frame), 0);
gtk_container_add (GTK_CONTAINER(gwin0), frame);
gtk_container_add (GTK_CONTAINER (frame), vbox_top);
} else {
top_bin = vbox_top;
gtk_container_add (GTK_CONTAINER (gwin0), vbox_top);
}
bzero(chars, sizeof(chars));
GtkWidget *hbox_row1 = gtk_hbox_new (FALSE, 0);
/* This packs the button into the gwin0 (a gtk container). */
gtk_box_pack_start (GTK_BOX (vbox_top), hbox_row1, FALSE, FALSE, 0);
hbox_edit = gtk_hbox_new (FALSE, 0);
gtk_container_set_border_width (GTK_CONTAINER (hbox_edit), 0);
/* This packs the button into the gwin0 (a gtk container). */
gtk_box_pack_start (GTK_BOX (hbox_row1), hbox_edit, FALSE, FALSE, 0);
create_cursor_attr();
button_pho = gtk_button_new();
gtk_container_set_border_width (GTK_CONTAINER (button_pho), 0);
gtk_box_pack_start (GTK_BOX (hbox_row1), button_pho, FALSE, FALSE, 0);
g_signal_connect(G_OBJECT(button_pho),"button-press-event",
G_CALLBACK(mouse_button_callback), NULL);
#if GTK_CHECK_VERSION(2,18,0)
gtk_widget_set_can_focus(button_pho, FALSE);
gtk_widget_set_can_default(button_pho, FALSE);
#else
GTK_WIDGET_UNSET_FLAGS(button_pho, GTK_CAN_FOCUS|GTK_CAN_DEFAULT);
#endif
if (left_right_button_tips) {
#if GTK_CHECK_VERSION(2,12,0)
gtk_widget_set_tooltip_text (button_pho, _(_L("左鍵符號,右鍵設定")));
#else
GtkTooltips *button_pho_tips = gtk_tooltips_new ();
gtk_tooltips_set_tip (GTK_TOOLTIPS (button_pho_tips), button_pho, _(_L("左鍵符號,右鍵設定")),NULL);
#endif
}
label_pho = gtk_label_new("");
set_label_font_size(label_pho, gcin_font_size_tsin_pho_in);
gtk_container_add (GTK_CONTAINER (button_pho), label_pho);
clr_in_area_pho_tsin();
gtk_widget_show_all (gwin0);
// gdk_flush();
gtk_widget_hide(gwin0);
init_tsin_selection_win();
set_win0_bg();
// change_win1_font();
}
static void destroy_top_bin()
{
if (!top_bin)
return;
gtk_widget_destroy(top_bin);
top_bin = NULL;
label_pho = NULL;
button_pho = NULL;
button_eng_ph = NULL;
hbox_edit = NULL;
bzero(chars, sizeof(chars));
}
void destroy_win0()
{
if (!gwin0)
return;
destroy_top_bin();
gtk_widget_destroy(gwin0);
gwin0 = NULL;
}
void get_win0_geom()
{
if (!gwin0)
return;
#if WIN32 && 0
if (!GTK_WIDGET_VISIBLE(gwin0))
return;
#endif
gtk_window_get_position(GTK_WINDOW(gwin0), &win_x, &win_y);
dbg("win_xy %d,%d\n");
get_win_size(gwin0, &win_xl, &win_yl);
}
gboolean tsin_has_input();
extern gboolean force_show;
void raise_tsin_selection_win();
void show_win0()
{
#if WIN32
if (test_mode)
return;
#endif
#if _DEBUG && 1
dbg("show_win0 pop:%d in:%d for:%d win_xy:%d,%d\n", gcin_pop_up_win, tsin_has_input(), force_show, win_x, win_y);
#endif
create_win0();
create_win0_gui();
if (gcin_pop_up_win && !tsin_has_input() && !force_show) {
// dbg("show ret\n");
return;
}
#if WIN32
compact_win0();
#endif
#if UNIX && 0
if (!GTK_WIDGET_VISIBLE(gwin0))
#endif
{
// dbg("gtk_widget_show %x\n", gwin0);
#if UNIX
move_win0(win_x, win_y);
gtk_widget_show(gwin0);
#else
move_win0(win_x, win_y);
gtk_widget_show(gwin0);
// move_win0(win_x, win_y);
#endif
}
show_win_sym();
#if UNIX
if (current_CS->b_raise_window)
#endif
{
gtk_window_present(GTK_WINDOW(gwin0));
raise_tsin_selection_win();
}
}
void hide_selections_win();
void hide_win0()
{
#if WIN32
if (test_mode)
return;
#endif
if (!gwin0)
return;
#if WIN32
if (timeout_handle) {
g_source_remove(timeout_handle);
timeout_handle = 0;
}
#endif
gtk_widget_hide(gwin0);
if (destroy_window)
destroy_win0();
else
destroy_top_bin();
hide_selections_win();
hide_win_sym();
}
void bell();
#if USE_TSIN
void change_tsin_font_size()
{
if (!top_bin)
return;
GdkColor fg;
gdk_color_parse(gcin_win_color_fg, &fg);
set_label_font_size(label_pho, gcin_font_size_tsin_pho_in);
int i;
for(i=0; i < MAX_PH_BF_EXT; i++) {
GtkWidget *label = chars[i].label;
if (!label)
continue;
set_label_font_size(label, gcin_font_size);
if (gcin_win_color_use) {
#if !GTK_CHECK_VERSION(2,91,6)
gtk_widget_modify_fg(label, GTK_STATE_NORMAL, &fg);
#else
GdkRGBA rgbfg;
gdk_rgba_parse(&rgbfg, gdk_color_to_string(&fg));
gtk_widget_override_color(label, GTK_STATE_FLAG_NORMAL, &rgbfg);
#endif
}
}
compact_win0();
// change_win1_font();
set_win0_bg();
// change_tsin_line_color();
}
#endif
void show_button_pho(gboolean bshow)
{
if (!button_pho)
return;
if (bshow)
gtk_widget_show(button_pho);
else {
gtk_widget_hide(button_pho);
compact_win0();
}
}
char *get_full_str();
void win_tsin_disp_half_full()
{
#if WIN32
if (test_mode)
return;
#endif
if (label_pho) {
if (gcin_win_color_use)
gtk_label_set_markup(GTK_LABEL(label_pho), get_full_str());
else
gtk_label_set_text(GTK_LABEL(label_pho), get_full_str());
}
compact_win0();
}
void drawcursor();
#if USE_TSIN
void change_tsin_color()
{
create_cursor_attr();
drawcursor();
}
#endif
void bell()
{
#if WIN32
if (test_mode)
return;
#endif
if (gcin_bell_off)
return;
#if UNIX && 1
XBell(dpy, gcin_bell_volume);
#else
gdk_beep();
#endif
// abort();
}
|