1 /* vi:set ts=8 sw=4 sts=4:
3 * VIM - Vi IMproved by Bram Moolenaar
4 * Photon GUI support by Julian Kinraid
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
10 * Clipboard support is in os_qnx.c
11 * PhAttach() is called in os_qnx.c:qnx_init()
17 # include <photon/PxImage.h>
21 /* Used when generating prototypes. */
22 # define PgColor_t int
23 # define PhEvent_t int
24 # define PhPoint_t int
25 # define PtWidget_t int
27 # define PtCallbackF_t int
28 # define PtCallbackInfo_t int
30 # define PtWidget_t int
31 # define PhImage_t int
34 #define ARRAY_LENGTH(a) (sizeof(a) / sizeof(a[0]))
35 #define RGB(r,g,b) PgRGB(r,g,b)
37 #define EVENT_BUFFER_SIZE sizeof( PhEvent_t ) + 1000
39 /* Some defines for gui_mch_mousehide() */
40 #define MOUSE_HIDE TRUE
41 #define MOUSE_SHOW FALSE
43 /* Optional support for using a PtPanelGroup widget, needs work */
44 #undef USE_PANEL_GROUP
46 #ifdef USE_PANEL_GROUP
47 static char *empty_title
= " ";
48 static char **panel_titles
= NULL
;
49 static ushort_t num_panels
= 0;
50 static short pg_margin_left
, pg_margin_right
, pg_margin_top
, pg_margin_bottom
;
53 #define GUI_PH_MARGIN 4 /* Size of the bevel */
55 #define GUI_PH_MOUSE_TYPE Ph_CURSOR_INSERT
56 static PgColor_t gui_ph_mouse_color
= Pg_BLACK
;
58 static PhPoint_t gui_ph_raw_offset
;
59 static PtWidget_t
*gui_ph_timer_cursor
; /* handle cursor blinking */
60 static PtWidget_t
*gui_ph_timer_timeout
; /* used in gui_mch_wait_for_chars */
61 static short is_timeout
; /* Has the timeout occured? */
64 * This is set inside the mouse callback for a right mouse
65 * button click, and used for the popup menus
67 static PhPoint_t abs_mouse
;
69 /* Try and avoid redraws while a resize is in progress */
70 static int is_ignore_draw
= FALSE
;
72 /* Used for converting to/from utf-8 and other charsets */
73 static struct PxTransCtrl
*charset_translate
;
76 * Cursor blink functions.
78 * This is a simple state machine:
79 * BLINK_NONE not blinking at all
80 * BLINK_OFF blinking, cursor is not shown
81 * BLINK_ON blinking, cursor is shown
87 } blink_state
= BLINK_NONE
;
89 static long_u blink_waittime
= 700;
90 static long_u blink_ontime
= 400;
91 static long_u blink_offtime
= 250;
103 {Pk_Right
, 'k', 'r'},
145 {Pk_BackSpace
, 'k', 'b'},
146 {Pk_Insert
, 'k', 'I'},
147 {Pk_Delete
, 'k', 'D'},
150 {Pk_Prior
, 'k', 'P'},
152 {Pk_Print
, '%', '9'},
154 {Pk_KP_Add
, 'K', '6'},
155 {Pk_KP_Subtract
,'K', '7'},
156 {Pk_KP_Divide
, 'K', '8'},
157 {Pk_KP_Multiply
,'K', '9'},
158 {Pk_KP_Enter
, 'K', 'A'},
160 {Pk_KP_0
, KS_EXTRA
, KE_KINS
}, /* Insert */
161 {Pk_KP_Decimal
, KS_EXTRA
, KE_KDEL
}, /* Delete */
163 {Pk_KP_4
, 'k', 'l'}, /* Left */
164 {Pk_KP_6
, 'k', 'r'}, /* Right */
165 {Pk_KP_8
, 'k', 'u'}, /* Up */
166 {Pk_KP_2
, 'k', 'd'}, /* Down */
168 {Pk_KP_7
, 'K', '1'}, /* Home */
169 {Pk_KP_1
, 'K', '4'}, /* End */
171 {Pk_KP_9
, 'K', '3'}, /* Page Up */
172 {Pk_KP_3
, 'K', '5'}, /* Page Down */
174 {Pk_KP_5
, '&', '8'}, /* Undo */
176 /* Keys that we want to be able to use any modifier with: */
177 {Pk_Return
, CAR
, NUL
},
178 {Pk_space
, ' ', NUL
},
180 {Pk_Escape
, ESC
, NUL
},
184 /* End of list marker: */
189 /****************************************************************************/
191 static PtCallbackF_t gui_ph_handle_timer_cursor
;
192 static PtCallbackF_t gui_ph_handle_timer_timeout
;
194 static PtCallbackF_t gui_ph_handle_window_cb
;
196 static PtCallbackF_t gui_ph_handle_scrollbar
;
197 static PtCallbackF_t gui_ph_handle_keyboard
;
198 static PtCallbackF_t gui_ph_handle_mouse
;
199 static PtCallbackF_t gui_ph_handle_pulldown_menu
;
200 static PtCallbackF_t gui_ph_handle_menu
;
201 static PtCallbackF_t gui_ph_handle_focus
; /* focus change of text area */
203 static PtCallbackF_t gui_ph_handle_menu_resize
;
205 /* When a menu is unrealized, give focus back to vimTextArea */
206 static PtCallbackF_t gui_ph_handle_menu_unrealized
;
208 #ifdef USE_PANEL_GROUP
209 static void gui_ph_get_panelgroup_margins( short*, short*, short*, short* );
213 static PhImage_t
*gui_ph_toolbar_find_icon( vimmenu_T
*menu
);
216 static void gui_ph_draw_start( void );
217 static void gui_ph_draw_end( void );
219 /* Set the text for the balloon */
220 static PtWidget_t
* gui_ph_show_tooltip( PtWidget_t
*window
,
225 PgColor_t fill_color
,
226 PgColor_t text_color
);
228 /****************************************************************************/
230 static PtWidget_t
* gui_ph_show_tooltip( PtWidget_t
*window
,
235 PgColor_t fill_color
,
236 PgColor_t text_color
)
242 PtSetArg( &arg
, Pt_ARG_POINTER
, &menu
, 0 );
243 PtGetResources( widget
, 1, &arg
);
245 /* Override the text and position */
250 int index
= MENU_INDEX_TIP
;
251 if( menu
->strings
[ index
] != NULL
)
252 tooltip
= menu
->strings
[ index
];
255 return( PtInflateBalloon(
258 /* Don't put the balloon at the bottom,
259 * it gets drawn over by gfx done in the PtRaw */
268 gui_ph_resize_container( void )
272 PtWidgetArea( gui
.vimWindow
, &area
);
273 PtWidgetPos ( gui
.vimContainer
, &area
.pos
);
275 PtSetResource( gui
.vimContainer
, Pt_ARG_AREA
, &area
, 0 );
279 gui_ph_handle_menu_resize(
282 PtCallbackInfo_t
*info
)
284 PtContainerCallback_t
*sizes
= info
->cbdata
;
285 PtWidget_t
*container
;
286 PhPoint_t below_menu
;
289 height
= sizes
->new_dim
.h
;
291 /* Because vim treats the toolbar and menubar separately,
292 * and here they're lumped together into a PtToolbarGroup,
293 * we only need either menu_height or toolbar_height set at once */
294 if( gui
.menu_is_active
)
296 gui
.menu_height
= height
;
297 gui
.toolbar_height
= 0;
301 gui
.toolbar_height
= height
;
305 below_menu
.y
= height
;
307 #ifdef USE_PANEL_GROUP
308 container
= gui
.vimPanelGroup
;
310 container
= gui
.vimContainer
;
313 PtSetResource( container
, Pt_ARG_POS
, &below_menu
, 0 );
315 gui_ph_resize_container();
317 #ifdef USE_PANEL_GROUP
318 gui_ph_get_panelgroup_margins(
319 &pg_margin_top
, &pg_margin_bottom
,
320 &pg_margin_left
, &pg_margin_right
);
322 return( Pt_CONTINUE
);
326 * Pt_ARG_TIMER_REPEAT isn't used because the on & off times
330 gui_ph_handle_timer_cursor(
333 PtCallbackInfo_t
*info
)
335 if( blink_state
== BLINK_ON
)
338 blink_state
= BLINK_OFF
;
339 PtSetResource( gui_ph_timer_cursor
, Pt_ARG_TIMER_INITIAL
,
344 gui_update_cursor(TRUE
, FALSE
);
345 blink_state
= BLINK_ON
;
346 PtSetResource( gui_ph_timer_cursor
, Pt_ARG_TIMER_INITIAL
,
349 return( Pt_CONTINUE
);
353 gui_ph_handle_timer_timeout(PtWidget_t
*widget
, void *data
, PtCallbackInfo_t
*info
)
357 return( Pt_CONTINUE
);
361 gui_ph_handle_window_cb( PtWidget_t
*widget
, void *data
, PtCallbackInfo_t
*info
)
363 PhWindowEvent_t
*we
= info
->cbdata
;
364 ushort_t
*width
, *height
;
366 switch( we
->event_f
) {
372 /* Just in case it's hidden and needs to be shown */
373 gui_mch_mousehide( MOUSE_SHOW
);
375 if( we
->event_state
== Ph_WM_EVSTATE_FOCUS
)
377 gui_focus_change(TRUE
);
378 gui_mch_start_blink();
382 gui_focus_change(FALSE
);
383 gui_mch_stop_blink();
388 PtGetResource( gui
.vimWindow
, Pt_ARG_WIDTH
, &width
, 0 );
389 PtGetResource( gui
.vimWindow
, Pt_ARG_HEIGHT
, &height
, 0 );
390 #ifdef USE_PANEL_GROUP
391 width
-= (pg_margin_left
+ pg_margin_right
);
392 height
-= (pg_margin_top
+ pg_margin_bottom
);
394 gui_resize_shell( *width
, *height
);
395 gui_set_shellsize( FALSE
, FALSE
, RESIZE_BOTH
);
396 is_ignore_draw
= FALSE
;
397 PtEndFlux( gui
.vimContainer
);
398 PtContainerRelease( gui
.vimContainer
);
405 return( Pt_CONTINUE
);
409 gui_ph_handle_scrollbar( PtWidget_t
*widget
, void *data
, PtCallbackInfo_t
*info
)
411 PtScrollbarCallback_t
*scroll
;
413 int value
, dragging
= FALSE
;
415 scroll
= info
->cbdata
;
417 sb
= (scrollbar_T
*) data
;
420 value
= scroll
->position
;
421 switch( scroll
->action
)
423 case Pt_SCROLL_DRAGGED
:
428 /* FIXME: return straight away here? */
429 return( Pt_CONTINUE
);
433 gui_drag_scrollbar(sb
, value
, dragging
);
435 return( Pt_CONTINUE
);
439 gui_ph_handle_keyboard( PtWidget_t
*widget
, void *data
, PtCallbackInfo_t
*info
)
442 unsigned char string
[6];
446 key
= PhGetData( info
->event
);
448 ch
= modifiers
= len
= 0;
451 gui_mch_mousehide( MOUSE_HIDE
);
453 /* We're a good lil photon program, aren't we? yes we are, yeess wee arrr */
454 if( key
->key_flags
& Pk_KF_Compose
)
456 return( Pt_CONTINUE
);
459 if( (key
->key_flags
& Pk_KF_Cap_Valid
) &&
460 PkIsKeyDown( key
->key_flags
) )
464 * Only show the menu if the Alt key is down, and the Shift & Ctrl
465 * keys aren't down, as well as the other conditions
467 if( ( ( key
->key_mods
& Pk_KM_Alt
) &&
468 !( key
->key_mods
& Pk_KM_Shift
) &&
469 !( key
->key_mods
& Pk_KM_Ctrl
) ) &&
470 gui
.menu_is_active
&&
473 gui_is_menu_shortcut( key
->key_cap
) ) ) )
475 /* Fallthrough and let photon look for the hotkey */
476 return( Pt_CONTINUE
);
480 for( i
= 0; special_keys
[i
].key_sym
!= 0; i
++ )
482 if( special_keys
[i
].key_sym
== key
->key_cap
)
485 if( special_keys
[i
].vim_code1
== NUL
)
486 ch
= special_keys
[i
].vim_code0
;
489 /* Detect if a keypad number key has been pressed
490 * and change the key if Num Lock is on */
491 if( key
->key_cap
>= Pk_KP_Enter
&& key
->key_cap
<= Pk_KP_9
492 && ( key
->key_mods
& Pk_KM_Num_Lock
) )
494 /* FIXME: For now, just map the key to a ascii value
495 * (see <photon/PkKeyDef.h>) */
496 ch
= key
->key_cap
- 0xf080;
499 ch
= TO_SPECIAL( special_keys
[i
].vim_code0
,
500 special_keys
[i
].vim_code1
);
506 if( key
->key_mods
& Pk_KM_Ctrl
)
507 modifiers
|= MOD_MASK_CTRL
;
508 if( key
->key_mods
& Pk_KM_Alt
)
509 modifiers
|= MOD_MASK_ALT
;
510 if( key
->key_mods
& Pk_KM_Shift
)
511 modifiers
|= MOD_MASK_SHIFT
;
513 /* Is this not a special key? */
514 if( special_keys
[i
].key_sym
== 0 )
516 ch
= PhTo8859_1( key
);
519 || ( enc_utf8
&& ch
> 127 )
524 len
= PhKeyToMb( string
, key
);
528 int src_taken
, dst_made
;
529 if( enc_utf8
!= TRUE
)
540 add_to_input_buf( buf
, dst_made
);
544 add_to_input_buf( string
, len
);
547 return( Pt_CONSUME
);
554 /* FIXME: is this the right thing to do? */
555 if( modifiers
& MOD_MASK_CTRL
)
557 modifiers
&= ~MOD_MASK_CTRL
;
559 if( ( ch
>= 'a' && ch
<= 'z' ) ||
571 modifiers
|= MOD_MASK_CTRL
;
574 if( modifiers
& MOD_MASK_ALT
)
577 modifiers
&= ~MOD_MASK_ALT
;
582 return( Pt_CONTINUE
);
586 modifiers
&= ~MOD_MASK_SHIFT
;
589 ch
= simplify_key( ch
, &modifiers
);
592 string
[ len
++ ] = CSI
;
593 string
[ len
++ ] = KS_MODIFIER
;
594 string
[ len
++ ] = modifiers
;
597 if( IS_SPECIAL( ch
) )
599 string
[ len
++ ] = CSI
;
600 string
[ len
++ ] = K_SECOND( ch
);
601 string
[ len
++ ] = K_THIRD( ch
);
605 string
[ len
++ ] = ch
;
608 if (len
== 1 && ((ch
== Ctrl_C
&& ctrl_c_interrupts
)
615 if (len
== 1 && string
[0] == CSI
)
617 /* Turn CSI into K_CSI. */
618 string
[ len
++ ] = KS_EXTRA
;
619 string
[ len
++ ] = KE_CSI
;
624 add_to_input_buf( string
, len
);
625 return( Pt_CONSUME
);
629 return( Pt_CONTINUE
);
633 gui_ph_handle_mouse( PtWidget_t
*widget
, void *data
, PtCallbackInfo_t
*info
)
635 PhPointerEvent_t
*pointer
;
637 int button
= 0, repeated_click
, modifiers
= 0x0;
638 short mouse_x
, mouse_y
;
640 pointer
= PhGetData( info
->event
);
641 pos
= PhGetRects( info
->event
);
643 gui_mch_mousehide( MOUSE_SHOW
);
646 * Coordinates need to be relative to the base window,
647 * not relative to the vimTextArea widget
649 mouse_x
= pos
->ul
.x
+ gui
.border_width
;
650 mouse_y
= pos
->ul
.y
+ gui
.border_width
;
652 if( info
->event
->type
== Ph_EV_PTR_MOTION_NOBUTTON
)
654 gui_mouse_moved( mouse_x
, mouse_y
);
655 return( Pt_CONTINUE
);
658 if( pointer
->key_mods
& Pk_KM_Shift
)
659 modifiers
|= MOUSE_SHIFT
;
660 if( pointer
->key_mods
& Pk_KM_Ctrl
)
661 modifiers
|= MOUSE_CTRL
;
662 if( pointer
->key_mods
& Pk_KM_Alt
)
663 modifiers
|= MOUSE_ALT
;
666 * FIXME More than one button may be involved, but for
667 * now just deal with one
669 if( pointer
->buttons
& Ph_BUTTON_SELECT
)
672 if( pointer
->buttons
& Ph_BUTTON_MENU
)
674 button
= MOUSE_RIGHT
;
675 /* Need the absolute coordinates for the popup menu */
676 abs_mouse
.x
= pointer
->pos
.x
;
677 abs_mouse
.y
= pointer
->pos
.y
;
680 if( pointer
->buttons
& Ph_BUTTON_ADJUST
)
681 button
= MOUSE_MIDDLE
;
683 /* Catch a real release (not phantom or other releases */
684 if( info
->event
->type
== Ph_EV_BUT_RELEASE
)
685 button
= MOUSE_RELEASE
;
687 if( info
->event
->type
& Ph_EV_PTR_MOTION_BUTTON
)
691 /* Vim doesn't use button repeats */
692 if( info
->event
->type
& Ph_EV_BUT_REPEAT
)
696 /* Don't do anything if it is one of the phantom mouse release events */
697 if( ( button
!= MOUSE_RELEASE
) ||
698 ( info
->event
->subtype
== Ph_EV_RELEASE_REAL
) )
700 repeated_click
= (pointer
->click_count
>= 2) ? TRUE
: FALSE
;
702 gui_send_mouse_event( button
, mouse_x
, mouse_y
, repeated_click
, modifiers
);
705 return( Pt_CONTINUE
);
708 /* Handle a focus change of the PtRaw widget */
710 gui_ph_handle_focus( PtWidget_t
*widget
, void *data
, PtCallbackInfo_t
*info
)
712 if( info
->reason
== Pt_CB_LOST_FOCUS
)
714 PtRemoveEventHandler( gui
.vimTextArea
, Ph_EV_PTR_MOTION_NOBUTTON
,
715 gui_ph_handle_mouse
, NULL
);
717 gui_mch_mousehide( MOUSE_SHOW
);
721 PtAddEventHandler( gui
.vimTextArea
, Ph_EV_PTR_MOTION_NOBUTTON
,
722 gui_ph_handle_mouse
, NULL
);
724 return( Pt_CONTINUE
);
728 gui_ph_handle_raw_draw( PtWidget_t
*widget
, PhTile_t
*damage
)
732 PhPoint_t translation
;
734 if( is_ignore_draw
== TRUE
)
737 PtSuperClassDraw( PtBasic
, widget
, damage
);
738 PgGetTranslation( &translation
);
739 PgClearTranslation();
743 * This causes some weird problems, with drawing being done from
744 * within this raw drawing function (rather than just simple clearing
745 * and text drawing done by gui_redraw)
747 * The main problem is when PhBlit is used, and the cursor appearing
748 * in places where it shouldn't
753 PtWidgetOffset( widget
, &offset
);
754 PhTranslatePoint( &offset
, PtWidgetPos( gui
.vimTextArea
, NULL
) );
757 /* Redraw individual damage regions */
758 if( damage
->next
!= NULL
)
759 damage
= damage
->next
;
761 while( damage
!= NULL
)
765 r
->ul
.x
- offset
.x
, r
->ul
.y
- offset
.y
,
766 r
->lr
.x
- r
->ul
.x
+ 1,
767 r
->lr
.y
- r
->ul
.y
+ 1 );
768 damage
= damage
->next
;
771 /* Redraw the rectangle that covers all the damaged regions */
774 r
->ul
.x
- offset
.x
, r
->ul
.y
- offset
.y
,
775 r
->lr
.x
- r
->ul
.x
+ 1,
776 r
->lr
.y
- r
->ul
.y
+ 1 );
779 PgSetTranslation( &translation
, 0 );
783 gui_ph_handle_pulldown_menu(
786 PtCallbackInfo_t
*info
)
790 vimmenu_T
*menu
= (vimmenu_T
*) data
;
792 PtPositionMenu( menu
->submenu_id
, NULL
);
793 PtRealizeWidget( menu
->submenu_id
);
796 return( Pt_CONTINUE
);
799 /* This is used for pulldown/popup menus and also toolbar buttons */
801 gui_ph_handle_menu( PtWidget_t
*widget
, void *data
, PtCallbackInfo_t
*info
)
805 vimmenu_T
*menu
= (vimmenu_T
*) data
;
808 return( Pt_CONTINUE
);
811 /* Stop focus from disappearing into the menubar... */
813 gui_ph_handle_menu_unrealized(
816 PtCallbackInfo_t
*info
)
818 PtGiveFocus( gui
.vimTextArea
, NULL
);
819 return( Pt_CONTINUE
);
823 gui_ph_handle_window_open(
826 PtCallbackInfo_t
*info
)
828 gui_set_shellsize( FALSE
, TRUE
, RESIZE_BOTH
);
829 return( Pt_CONTINUE
);
832 /****************************************************************************/
834 #define DRAW_START gui_ph_draw_start()
835 #define DRAW_END gui_ph_draw_end()
837 /* TODO: Set a clipping rect? */
839 gui_ph_draw_start( void )
844 PgSetRegion( PtWidgetRid( PtFindDisjoint( gui
.vimTextArea
) ) );
845 PgClearClippingsCx( gc
);
846 PgClearTranslationCx( gc
);
848 PtWidgetOffset( gui
.vimTextArea
, &gui_ph_raw_offset
);
849 PhTranslatePoint( &gui_ph_raw_offset
, PtWidgetPos( gui
.vimTextArea
, NULL
) );
851 PgSetTranslation( &gui_ph_raw_offset
, Pg_RELATIVE
);
855 gui_ph_draw_end( void )
857 gui_ph_raw_offset
.x
= -gui_ph_raw_offset
.x
;
858 gui_ph_raw_offset
.y
= -gui_ph_raw_offset
.y
;
859 PgSetTranslation( &gui_ph_raw_offset
, Pg_RELATIVE
);
862 #ifdef USE_PANEL_GROUP
864 gui_ph_find_buffer_item( char_u
*name
)
866 vimmenu_T
*top_level
= root_menu
;
867 vimmenu_T
*items
= NULL
;
869 while( top_level
!= NULL
&&
870 ( STRCMP( top_level
->dname
, "Buffers" ) != 0 ) )
871 top_level
= top_level
->next
;
873 if( top_level
!= NULL
)
875 items
= top_level
->children
;
877 while( items
!= NULL
&&
878 ( STRCMP( items
->dname
, name
) != 0 ) )
885 gui_ph_pg_set_buffer_num( int_u buf_num
)
891 if( gui
.vimTextArea
== NULL
|| buf_num
== 0 )
895 ultoa( buf_num
, &search
[1], 10 );
896 STRCAT( search
, ")" );
898 for( i
= 0; i
< num_panels
; i
++ )
900 /* find the last "(" in the panel title and see if the buffer
901 * number in the title matches the one we're looking for */
902 mark
= STRRCHR( panel_titles
[ i
], '(' );
903 if( mark
!= NULL
&& STRCMP( mark
, search
) == 0 )
905 PtSetResource( gui
.vimPanelGroup
, Pt_ARG_PG_CURRENT_INDEX
,
912 gui_ph_handle_pg_change(
915 PtCallbackInfo_t
*info
)
918 PtPanelGroupCallback_t
*panel
;
920 if( info
->event
!= NULL
)
922 panel
= info
->cbdata
;
923 if( panel
->new_panel
!= NULL
)
925 menu
= gui_ph_find_buffer_item( panel
->new_panel
);
930 return( Pt_CONTINUE
);
934 gui_ph_get_panelgroup_margins(
940 unsigned short abs_raw_x
, abs_raw_y
, abs_panel_x
, abs_panel_y
;
941 const unsigned short *margin_top
, *margin_bottom
;
942 const unsigned short *margin_left
, *margin_right
;
944 PtGetAbsPosition( gui
.vimTextArea
, &abs_raw_x
, &abs_raw_y
);
945 PtGetAbsPosition( gui
.vimPanelGroup
, &abs_panel_x
, &abs_panel_y
);
947 PtGetResource( gui
.vimPanelGroup
, Pt_ARG_MARGIN_RIGHT
, &margin_right
, 0 );
948 PtGetResource( gui
.vimPanelGroup
, Pt_ARG_MARGIN_BOTTOM
, &margin_bottom
, 0 );
950 abs_raw_x
-= abs_panel_x
;
951 abs_raw_y
-= abs_panel_y
;
954 *bottom
= *margin_bottom
;
957 *right
= *margin_right
;
960 /* Used for the tabs for PtPanelGroup */
962 gui_ph_is_buffer_item( vimmenu_T
*menu
, vimmenu_T
*parent
)
966 if( STRCMP( parent
->dname
, "Buffers" ) == 0 )
968 /* Look for '(' digits ')' */
969 mark
= vim_strchr( menu
->dname
, '(' );
973 while( isdigit( *mark
) )
984 gui_ph_pg_add_buffer(char *name
)
986 char **new_titles
= NULL
;
988 new_titles
= (char **) alloc( ( num_panels
+ 1 ) * sizeof( char ** ) );
989 if( new_titles
!= NULL
)
992 memcpy( new_titles
, panel_titles
, num_panels
* sizeof( char ** ) );
994 new_titles
[ num_panels
++ ] = name
;
996 PtSetResource( gui
.vimPanelGroup
, Pt_ARG_PG_PANEL_TITLES
, new_titles
,
999 vim_free( panel_titles
);
1000 panel_titles
= new_titles
;
1005 gui_ph_pg_remove_buffer( char *name
)
1008 char **new_titles
= NULL
;
1010 /* If there is only 1 panel, we just use the temporary place holder */
1011 if( num_panels
> 1 )
1013 new_titles
= (char **) alloc( ( num_panels
- 1 ) * sizeof( char ** ) );
1014 if( new_titles
!= NULL
)
1016 char **s
= new_titles
;
1017 /* Copy all the titles except the one we're removing */
1018 for( i
= 0; i
< num_panels
; i
++ )
1020 if( STRCMP( panel_titles
[ i
], name
) != 0 )
1022 *s
++ = panel_titles
[ i
];
1027 PtSetResource( gui
.vimPanelGroup
, Pt_ARG_PG_PANEL_TITLES
, new_titles
,
1030 vim_free( panel_titles
);
1031 panel_titles
= new_titles
;
1037 PtSetResource( gui
.vimPanelGroup
, Pt_ARG_PG_PANEL_TITLES
, &empty_title
,
1040 vim_free( panel_titles
);
1041 panel_titles
= NULL
;
1045 /* When a buffer item is deleted from the buffer menu */
1047 gui_ph_handle_buffer_remove(
1050 PtCallbackInfo_t
*info
)
1056 menu
= (vimmenu_T
*) data
;
1057 gui_ph_pg_remove_buffer( menu
->dname
);
1060 return( Pt_CONTINUE
);
1065 gui_ph_pane_resize( PtWidget_t
*widget
, void *data
, PtCallbackInfo_t
*info
)
1067 if( PtWidgetIsRealized( widget
) )
1069 is_ignore_draw
= TRUE
;
1070 PtStartFlux( gui
.vimContainer
);
1071 PtContainerHold( gui
.vimContainer
);
1074 return( Pt_CONTINUE
);
1077 /****************************************************************************/
1081 gui_ph_encoding_changed( int new_encoding
)
1083 /* Default encoding is latin1 */
1084 char *charset
= "latin1";
1091 { DBCS_JPN
, "SHIFT_JIS" },
1092 { DBCS_KOR
, "csEUCKR" },
1093 { DBCS_CHT
, "big5" },
1097 for( i
= 0; i
< ARRAY_LENGTH( charsets
); i
++ )
1099 if( new_encoding
== charsets
[ i
].encoding
)
1100 charset
= charsets
[ i
].name
;
1103 charset_translate
= PxTranslateSet( charset_translate
, charset
);
1107 /****************************************************************************/
1108 /****************************************************************************/
1111 gui_mch_prepare(argc
, argv
)
1122 int flags
= 0, n
= 0;
1124 PhDim_t window_size
= {100, 100}; /* Arbitrary values */
1125 PhPoint_t pos
= {0, 0};
1127 gui
.event_buffer
= (PhEvent_t
*) alloc( EVENT_BUFFER_SIZE
);
1128 if( gui
.event_buffer
== NULL
)
1131 /* Get a translation so we can convert from ISO Latin-1 to UTF */
1132 charset_translate
= PxTranslateSet( NULL
, "latin1" );
1134 /* The +2 is for the 1 pixel dark line on each side */
1135 gui
.border_offset
= gui
.border_width
= GUI_PH_MARGIN
+ 2;
1137 /* Handle close events ourselves */
1138 PtSetArg( &args
[ n
++ ], Pt_ARG_WINDOW_MANAGED_FLAGS
, Pt_FALSE
, Ph_WM_CLOSE
);
1139 PtSetArg( &args
[ n
++ ], Pt_ARG_WINDOW_NOTIFY_FLAGS
, Pt_TRUE
,
1140 Ph_WM_CLOSE
| Ph_WM_RESIZE
| Ph_WM_FOCUS
);
1141 PtSetArg( &args
[ n
++ ], Pt_ARG_DIM
, &window_size
, 0 );
1142 gui
.vimWindow
= PtCreateWidget( PtWindow
, NULL
, n
, args
);
1143 if( gui
.vimWindow
== NULL
)
1146 PtAddCallback( gui
.vimWindow
, Pt_CB_WINDOW
, gui_ph_handle_window_cb
, NULL
);
1147 PtAddCallback( gui
.vimWindow
, Pt_CB_WINDOW_OPENING
,
1148 gui_ph_handle_window_open
, NULL
);
1151 PtSetArg( &args
[ n
++ ], Pt_ARG_ANCHOR_FLAGS
, Pt_ANCHOR_ALL
, Pt_IS_ANCHORED
);
1152 PtSetArg( &args
[ n
++ ], Pt_ARG_DIM
, &window_size
, 0 );
1153 PtSetArg( &args
[ n
++ ], Pt_ARG_POS
, &pos
, 0 );
1155 #ifdef USE_PANEL_GROUP
1156 /* Put in a temprary place holder title */
1157 PtSetArg( &args
[ n
++ ], Pt_ARG_PG_PANEL_TITLES
, &empty_title
, 1 );
1159 gui
.vimPanelGroup
= PtCreateWidget( PtPanelGroup
, gui
.vimWindow
, n
, args
);
1160 if( gui
.vimPanelGroup
== NULL
)
1163 PtAddCallback( gui
.vimPanelGroup
, Pt_CB_PG_PANEL_SWITCHING
,
1164 gui_ph_handle_pg_change
, NULL
);
1166 /* Turn off all edge decorations */
1167 PtSetArg( &args
[ n
++ ], Pt_ARG_BASIC_FLAGS
, Pt_FALSE
, Pt_ALL
);
1168 PtSetArg( &args
[ n
++ ], Pt_ARG_BEVEL_WIDTH
, 0, 0 );
1169 PtSetArg( &args
[ n
++ ], Pt_ARG_MARGIN_WIDTH
, 0, 0 );
1170 PtSetArg( &args
[ n
++ ], Pt_ARG_MARGIN_HEIGHT
, 0, 0 );
1171 PtSetArg( &args
[ n
++ ], Pt_ARG_CONTAINER_FLAGS
, Pt_TRUE
, Pt_AUTO_EXTENT
);
1173 gui
.vimContainer
= PtCreateWidget( PtPane
, gui
.vimWindow
, n
, args
);
1174 if( gui
.vimContainer
== NULL
)
1177 PtAddCallback( gui
.vimContainer
, Pt_CB_RESIZE
, gui_ph_pane_resize
, NULL
);
1180 /* Size for the text area is set in gui_mch_set_text_area_pos */
1183 PtSetArg( &args
[ n
++ ], Pt_ARG_RAW_DRAW_F
, gui_ph_handle_raw_draw
, 1 );
1184 PtSetArg( &args
[ n
++ ], Pt_ARG_BEVEL_WIDTH
, GUI_PH_MARGIN
, 0 );
1186 * Using focus render also causes the whole widget to be redrawn
1187 * whenever it changes focus, which is very annoying :p
1189 PtSetArg( &args
[ n
++ ], Pt_ARG_FLAGS
, Pt_TRUE
,
1190 Pt_GETS_FOCUS
| Pt_HIGHLIGHTED
);
1191 #ifndef FEAT_MOUSESHAPE
1192 PtSetArg( &args
[ n
++ ], Pt_ARG_CURSOR_TYPE
, GUI_PH_MOUSE_TYPE
, 0 );
1193 PtSetArg( &args
[ n
++ ], Pt_ARG_CURSOR_COLOR
, gui_ph_mouse_color
, 0 );
1196 gui
.vimTextArea
= PtCreateWidget( PtRaw
, Pt_DFLT_PARENT
, n
, args
);
1197 if( gui
.vimTextArea
== NULL
)
1200 /* TODO: use PtAddEventHandlers instead? */
1201 /* Not using Ph_EV_BUT_REPEAT because vim wouldn't use it anyway */
1202 PtAddEventHandler( gui
.vimTextArea
,
1203 Ph_EV_BUT_PRESS
| Ph_EV_BUT_RELEASE
| Ph_EV_PTR_MOTION_BUTTON
,
1204 gui_ph_handle_mouse
, NULL
);
1205 PtAddEventHandler( gui
.vimTextArea
, Ph_EV_KEY
,
1206 gui_ph_handle_keyboard
, NULL
);
1207 PtAddCallback( gui
.vimTextArea
, Pt_CB_GOT_FOCUS
,
1208 gui_ph_handle_focus
, NULL
);
1209 PtAddCallback( gui
.vimTextArea
, Pt_CB_LOST_FOCUS
,
1210 gui_ph_handle_focus
, NULL
);
1213 * Now that the text area widget has been created, set up the colours,
1214 * which wil call PtSetResource from gui_mch_new_colors
1218 * Create the two timers, not as accurate as using the kernel timer
1219 * functions, but good enough
1221 gui_ph_timer_cursor
= PtCreateWidget( PtTimer
, gui
.vimWindow
, 0, NULL
);
1222 if( gui_ph_timer_cursor
== NULL
)
1225 gui_ph_timer_timeout
= PtCreateWidget( PtTimer
, gui
.vimWindow
, 0, NULL
);
1226 if( gui_ph_timer_timeout
== NULL
)
1229 PtAddCallback( gui_ph_timer_cursor
, Pt_CB_TIMER_ACTIVATE
,
1230 gui_ph_handle_timer_cursor
, NULL
);
1231 PtAddCallback( gui_ph_timer_timeout
, Pt_CB_TIMER_ACTIVATE
,
1232 gui_ph_handle_timer_timeout
, NULL
);
1236 PtSetArg( &args
[ n
++ ], Pt_ARG_WIDTH
, window_size
.w
, 0 );
1237 PtSetArg( &args
[ n
++ ], Pt_ARG_ANCHOR_FLAGS
, Pt_ANCHOR_LEFT_RIGHT
,
1239 gui
.vimToolBarGroup
= PtCreateWidget( PtToolbarGroup
, gui
.vimWindow
,
1241 if( gui
.vimToolBarGroup
== NULL
)
1244 PtAddCallback( gui
.vimToolBarGroup
, Pt_CB_RESIZE
,
1245 gui_ph_handle_menu_resize
, NULL
);
1249 PtSetArg( &args
[ n
++ ], Pt_ARG_WIDTH
, window_size
.w
, 0 );
1250 if( ! vim_strchr( p_go
, GO_MENUS
) )
1252 flags
|= Pt_DELAY_REALIZE
;
1253 PtSetArg( &args
[ n
++ ], Pt_ARG_FLAGS
, Pt_TRUE
, flags
);
1255 gui
.vimMenuBar
= PtCreateWidget( PtMenuBar
, gui
.vimToolBarGroup
, n
, args
);
1256 if( gui
.vimMenuBar
== NULL
)
1259 # ifdef FEAT_TOOLBAR
1262 PtSetArg( &args
[ n
++ ], Pt_ARG_ANCHOR_FLAGS
,
1263 Pt_ANCHOR_LEFT_RIGHT
|Pt_TOP_ANCHORED_TOP
, Pt_IS_ANCHORED
);
1264 PtSetArg( &args
[ n
++ ], Pt_ARG_RESIZE_FLAGS
, Pt_TRUE
,
1265 Pt_RESIZE_Y_AS_REQUIRED
);
1266 PtSetArg( &args
[ n
++ ], Pt_ARG_WIDTH
, window_size
.w
, 0 );
1268 flags
= Pt_GETS_FOCUS
;
1269 if( ! vim_strchr( p_go
, GO_TOOLBAR
) )
1270 flags
|= Pt_DELAY_REALIZE
;
1272 PtSetArg( &args
[ n
++ ], Pt_ARG_FLAGS
, Pt_DELAY_REALIZE
, flags
);
1274 gui
.vimToolBar
= PtCreateWidget( PtToolbar
, gui
.vimToolBarGroup
, n
, args
);
1275 if( gui
.vimToolBar
== NULL
)
1279 * Size for the toolbar is fetched in gui_mch_show_toolbar, after
1280 * the buttons have been added and the toolbar has resized it's height
1281 * for the buttons to fit
1291 gui_mch_init_check(void)
1293 return( (is_photon_available
== TRUE
) ? OK
: FAIL
);
1299 gui
.norm_pixel
= Pg_BLACK
;
1300 gui
.back_pixel
= Pg_WHITE
;
1302 set_normal_colors();
1305 gui
.def_norm_pixel
= gui
.norm_pixel
;
1306 gui
.def_back_pixel
= gui
.back_pixel
;
1308 highlight_gui_started();
1310 if (gui_win_x
!= -1 && gui_win_y
!= -1)
1311 gui_mch_set_winpos(gui_win_x
, gui_win_y
);
1313 return( (PtRealizeWidget( gui
.vimWindow
) == 0) ? OK
: FAIL
);
1317 gui_mch_exit(int rc
)
1319 PtDestroyWidget( gui
.vimWindow
);
1321 PxTranslateSet( charset_translate
, NULL
);
1323 vim_free( gui
.event_buffer
);
1325 #ifdef USE_PANEL_GROUPS
1326 vim_free( panel_titles
);
1330 /****************************************************************************/
1333 /* When no events are available, photon will call this function, working is
1334 * set to FALSE, and the gui_mch_update loop will exit. */
1336 exit_gui_mch_update( void *data
)
1338 *(int *)data
= FALSE
;
1343 gui_mch_update(void)
1347 PtAppAddWorkProc( NULL
, exit_gui_mch_update
, &working
);
1348 while( ( working
== TRUE
) && !vim_is_input_buf_full())
1355 gui_mch_wait_for_chars(int wtime
)
1360 PtSetResource( gui_ph_timer_timeout
, Pt_ARG_TIMER_INITIAL
, wtime
, 0 );
1365 if( input_available() )
1367 PtSetResource( gui_ph_timer_timeout
, Pt_ARG_TIMER_INITIAL
, 0, 0 );
1370 else if( is_timeout
== TRUE
)
1375 #if defined( FEAT_BROWSE ) || defined( PROTO )
1377 * Put up a file requester.
1378 * Returns the selected name in allocated memory, or NULL for Cancel.
1379 * saving, select file to write
1380 * title title for the window
1381 * default_name default name (well duh!)
1382 * ext not used (extension added)
1383 * initdir initial directory, NULL for current dir
1384 * filter not used (file name filter)
1390 char_u
*default_name
,
1395 PtFileSelectionInfo_t file
;
1397 char_u
*default_path
;
1398 char_u
*open_text
= NULL
;
1401 memset( &file
, 0, sizeof( file
) );
1403 default_path
= alloc( MAXPATHL
+ 1 + NAME_MAX
+ 1 );
1404 if( default_path
!= NULL
)
1406 if( saving
== TRUE
)
1408 /* Don't need Pt_FSR_CONFIRM_EXISTING, vim will ask anyway */
1409 flags
|= Pt_FSR_NO_FCHECK
;
1410 open_text
= "&Save";
1413 /* combine the directory and filename into a single path */
1414 if( initdir
== NULL
|| *initdir
== NUL
)
1416 mch_dirname( default_path
, MAXPATHL
);
1417 initdir
= default_path
;
1421 STRCPY( default_path
, initdir
);
1422 initdir
= default_path
;
1425 if( default_name
!= NULL
)
1427 if( default_path
[ STRLEN( default_path
) - 1 ] != '/' )
1428 STRCAT( default_path
, "/" );
1430 STRCAT( default_path
, default_name
);
1433 /* TODO: add a filter? */
1446 vim_free( default_path
);
1448 if( file
.ret
== Pt_FSDIALOG_BTN1
)
1449 return( vim_strsave( file
.path
) );
1455 #if defined( FEAT_GUI_DIALOG ) || defined( PROTO )
1456 static PtWidget_t
*gui_ph_dialog_text
= NULL
;
1459 gui_ph_dialog_close( int button
, void *data
)
1461 PtModalCtrl_t
*modal_ctrl
= data
;
1462 char_u
*dialog_text
, *vim_text
;
1464 if( gui_ph_dialog_text
!= NULL
)
1466 PtGetResource( gui_ph_dialog_text
, Pt_ARG_TEXT_STRING
, &dialog_text
, 0 );
1467 PtGetResource( gui_ph_dialog_text
, Pt_ARG_POINTER
, &vim_text
, 0 );
1468 STRNCPY( vim_text
, dialog_text
, IOSIZE
- 1 );
1471 PtModalUnblock( modal_ctrl
, (void *) button
);
1477 gui_ph_dialog_text_enter( PtWidget_t
*widget
, void *data
, PtCallbackInfo_t
*info
)
1479 if( info
->reason_subtype
== Pt_EDIT_ACTIVATE
)
1480 gui_ph_dialog_close( 1, data
);
1481 return( Pt_CONTINUE
);
1485 gui_ph_dialog_esc( PtWidget_t
*widget
, void *data
, PtCallbackInfo_t
*info
)
1489 key
= PhGetData( info
->event
);
1490 if( ( key
->key_flags
& Pk_KF_Cap_Valid
) && ( key
->key_cap
== Pk_Escape
) )
1492 gui_ph_dialog_close( 0, data
);
1493 return( Pt_CONSUME
);
1495 return( Pt_PROCESS
);
1508 char_u
**button_array
;
1509 char_u
*buttons_copy
;
1513 int dialog_result
= -1;
1515 /* FIXME: the vertical option in guioptions is blatantly ignored */
1516 /* FIXME: so is the type */
1518 button_count
= len
= i
= 0;
1520 if( buttons
== NULL
|| *buttons
== NUL
)
1523 /* There is one less separator than buttons, so bump up the button count */
1526 /* Count string length and number of seperators */
1527 for( str
= buttons
; *str
; str
++ )
1530 if( *str
== DLG_BUTTON_SEP
)
1534 if ( title
== NULL
)
1537 buttons_copy
= alloc( len
+ 1 );
1538 button_array
= (char_u
**) alloc( button_count
* sizeof( char_u
* ) );
1539 if( buttons_copy
!= NULL
&& button_array
!= NULL
)
1541 STRCPY( buttons_copy
, buttons
);
1544 * Convert DLG_BUTTON_SEP into NUL's and fill in
1545 * button_array with the pointer to each NUL terminated string
1548 for( i
= 0; i
< button_count
; i
++ )
1550 button_array
[ i
] = str
;
1551 for( ; *str
; str
++ )
1553 if( *str
== DLG_BUTTON_SEP
)
1560 #ifndef FEAT_GUI_TEXTDIALOG
1561 dialog_result
= PtAlert(
1562 gui
.vimWindow
, NULL
,
1566 button_count
, (const char **) button_array
, NULL
,
1567 default_button
, 0, Pt_MODAL
);
1569 /* Writing the dialog ourselves lets us add extra features, like
1570 * trapping the escape key and returning 0 to vim */
1574 PtWidget_t
*dialog
, *pane
;
1575 PtModalCtrl_t modal_ctrl
;
1578 memset( &di
, 0, sizeof( di
) );
1579 memset( &modal_ctrl
, 0, sizeof( modal_ctrl
) );
1582 PtSetArg( &args
[n
++], Pt_ARG_GROUP_ROWS_COLS
, 0, 0 );
1583 PtSetArg( &args
[n
++], Pt_ARG_WIDTH
, 350, 0 );
1584 PtSetArg( &args
[n
++], Pt_ARG_GROUP_ORIENTATION
,
1585 Pt_GROUP_VERTICAL
, 0 );
1586 PtSetArg( &args
[n
++], Pt_ARG_GROUP_FLAGS
,
1587 Pt_TRUE
, Pt_GROUP_NO_KEYS
| Pt_GROUP_STRETCH_HORIZONTAL
);
1588 PtSetArg( &args
[n
++], Pt_ARG_CONTAINER_FLAGS
, Pt_FALSE
, Pt_TRUE
);
1589 pane
= PtCreateWidget( PtGroup
, NULL
, n
, args
);
1592 PtSetArg( &args
[n
++], Pt_ARG_TEXT_STRING
, message
, 0 );
1593 PtCreateWidget( PtLabel
, pane
, n
, args
);
1595 if( textfield
!= NULL
)
1598 PtSetArg( &args
[n
++], Pt_ARG_MAX_LENGTH
, IOSIZE
- 1, 0 );
1599 PtSetArg( &args
[n
++], Pt_ARG_TEXT_STRING
, textfield
, 0 );
1600 PtSetArg( &args
[n
++], Pt_ARG_POINTER
, textfield
, 0 );
1601 gui_ph_dialog_text
= PtCreateWidget( PtText
, pane
, n
, args
);
1602 PtAddCallback( gui_ph_dialog_text
, Pt_CB_ACTIVATE
,
1603 gui_ph_dialog_text_enter
, &modal_ctrl
);
1606 di
.parent
= gui
.vimWindow
;
1609 di
.buttons
= (const char **) button_array
;
1610 di
.nbtns
= button_count
;
1611 di
.def_btn
= default_button
;
1612 /* This is just to give the dialog the close button.
1613 * We check for the Escape key ourselves and return 0 */
1614 di
.esc_btn
= button_count
;
1615 di
.callback
= gui_ph_dialog_close
;
1616 di
.data
= &modal_ctrl
;
1618 dialog
= PtCreateDialog( &di
);
1619 PtAddFilterCallback( dialog
, Ph_EV_KEY
,
1620 gui_ph_dialog_esc
, &modal_ctrl
);
1622 if( gui_ph_dialog_text
!= NULL
)
1623 PtGiveFocus( gui_ph_dialog_text
, NULL
);
1625 /* Open dialog, block the vim window and wait for the dialog to close */
1626 PtRealizeWidget( dialog
);
1627 PtMakeModal( dialog
, Ph_CURSOR_NOINPUT
, Ph_CURSOR_DEFAULT_COLOR
);
1628 dialog_result
= (int) PtModalBlock( &modal_ctrl
, 0 );
1630 PtDestroyWidget( dialog
);
1631 gui_ph_dialog_text
= NULL
;
1636 vim_free( button_array
);
1637 vim_free( buttons_copy
);
1639 return( dialog_result
);
1642 /****************************************************************************/
1643 /* window size/position/state */
1646 gui_mch_get_winpos(int *x
, int *y
)
1650 pos
= PtWidgetPos( gui
.vimWindow
, NULL
);
1659 gui_mch_set_winpos(int x
, int y
)
1661 PhPoint_t pos
= { x
, y
};
1663 PtSetResource( gui
.vimWindow
, Pt_ARG_POS
, &pos
, 0 );
1667 gui_mch_set_shellsize(int width
, int height
,
1668 int min_width
, int min_height
, int base_width
, int base_height
,
1671 PhDim_t window_size
= { width
, height
};
1672 PhDim_t min_size
= { min_width
, min_height
};
1674 #ifdef USE_PANEL_GROUP
1675 window_size
.w
+= pg_margin_left
+ pg_margin_right
;
1676 window_size
.h
+= pg_margin_top
+ pg_margin_bottom
;
1679 PtSetResource( gui
.vimWindow
, Pt_ARG_MINIMUM_DIM
, &min_size
, 0 );
1680 PtSetResource( gui
.vimWindow
, Pt_ARG_DIM
, &window_size
, 0 );
1682 if( ! PtWidgetIsRealized( gui
.vimWindow
) )
1683 gui_ph_resize_container();
1687 * Return the amount of screen space that hasn't been allocated (such as
1691 gui_mch_get_screen_dimensions(int *screen_w
, int *screen_h
)
1695 PhWindowQueryVisible( Ph_QUERY_WORKSPACE
, 0,
1696 PhInputGroup( NULL
), &console
);
1698 *screen_w
= console
.lr
.x
- console
.ul
.x
+ 1;
1699 *screen_h
= console
.lr
.y
- console
.ul
.y
+ 1;
1703 gui_mch_iconify(void)
1705 PhWindowEvent_t event
;
1707 memset( &event
, 0, sizeof (event
) );
1708 event
.event_f
= Ph_WM_HIDE
;
1709 event
.event_state
= Ph_WM_EVSTATE_HIDE
;
1710 event
.rid
= PtWidgetRid( gui
.vimWindow
);
1711 PtForwardWindowEvent( &event
);
1714 #if defined(FEAT_EVAL) || defined(PROTO)
1716 * Bring the Vim window to the foreground.
1719 gui_mch_set_foreground()
1721 PhWindowEvent_t event
;
1723 memset( &event
, 0, sizeof (event
) );
1724 event
.event_f
= Ph_WM_TOFRONT
;
1725 event
.event_state
= Ph_WM_EVSTATE_FFRONT
;
1726 event
.rid
= PtWidgetRid( gui
.vimWindow
);
1727 PtForwardWindowEvent( &event
);
1732 gui_mch_settitle(char_u
*title
, char_u
*icon
)
1734 #ifdef USE_PANEL_GROUP
1735 gui_ph_pg_set_buffer_num( curwin
->w_buffer
->b_fnum
);
1737 PtSetResource( gui
.vimWindow
, Pt_ARG_WINDOW_TITLE
, title
, 0 );
1738 /* Not sure what to do with the icon text, set balloon text somehow? */
1741 /****************************************************************************/
1745 gui_mch_set_scrollbar_thumb(scrollbar_T
*sb
, int val
, int size
, int max
)
1750 PtSetArg( &args
[ n
++ ], Pt_ARG_MAXIMUM
, max
, 0 );
1751 PtSetArg( &args
[ n
++ ], Pt_ARG_SLIDER_SIZE
, size
, 0 );
1752 PtSetArg( &args
[ n
++ ], Pt_ARG_GAUGE_VALUE
, val
, 0 );
1753 PtSetResources( sb
->id
, n
, args
);
1757 gui_mch_set_scrollbar_pos(scrollbar_T
*sb
, int x
, int y
, int w
, int h
)
1759 PhArea_t area
= {{ x
, y
}, { w
, h
}};
1761 PtSetResource( sb
->id
, Pt_ARG_AREA
, &area
, 0 );
1765 gui_mch_create_scrollbar(scrollbar_T
*sb
, int orient
)
1768 /* int anchor_flags = 0;*/
1772 * Stop the scrollbar from being realized when the parent
1773 * is realized, so it can be explicitly realized by vim.
1775 * Also, don't let the scrollbar get focus
1777 PtSetArg( &args
[ n
++ ], Pt_ARG_FLAGS
, Pt_DELAY_REALIZE
,
1778 Pt_DELAY_REALIZE
| Pt_GETS_FOCUS
);
1779 PtSetArg( &args
[ n
++ ], Pt_ARG_SCROLLBAR_FLAGS
, Pt_SCROLLBAR_SHOW_ARROWS
, 0);
1781 /* Don't need this anchoring for the scrollbars */
1782 if( orient
== SBAR_HORIZ
)
1784 anchor_flags
= Pt_BOTTOM_ANCHORED_BOTTOM
|
1785 Pt_LEFT_ANCHORED_LEFT
| Pt_RIGHT_ANCHORED_RIGHT
;
1789 anchor_flags
= Pt_BOTTOM_ANCHORED_BOTTOM
| Pt_TOP_ANCHORED_TOP
;
1790 if( sb
->wp
!= NULL
)
1792 if( sb
== &sb
->wp
->w_scrollbars
[ SBAR_LEFT
] )
1793 anchor_flags
|= Pt_LEFT_ANCHORED_LEFT
;
1795 anchor_flags
|= Pt_RIGHT_ANCHORED_RIGHT
;
1798 PtSetArg( &args
[ n
++ ], Pt_ARG_ANCHOR_FLAGS
, anchor_flags
, Pt_IS_ANCHORED
);
1800 PtSetArg( &args
[ n
++ ], Pt_ARG_ORIENTATION
,
1801 (orient
== SBAR_HORIZ
) ? Pt_HORIZONTAL
: Pt_VERTICAL
, 0 );
1802 #ifdef USE_PANEL_GROUP
1803 sb
->id
= PtCreateWidget( PtScrollbar
, gui
.vimPanelGroup
, n
, args
);
1805 sb
->id
= PtCreateWidget( PtScrollbar
, gui
.vimContainer
, n
, args
);
1808 PtAddCallback( sb
->id
, Pt_CB_SCROLLBAR_MOVE
, gui_ph_handle_scrollbar
, sb
);
1812 gui_mch_enable_scrollbar(scrollbar_T
*sb
, int flag
)
1815 PtRealizeWidget( sb
->id
);
1817 PtUnrealizeWidget( sb
->id
);
1821 gui_mch_destroy_scrollbar(scrollbar_T
*sb
)
1823 PtDestroyWidget( sb
->id
);
1827 /****************************************************************************/
1828 /* Mouse functions */
1830 #if defined(FEAT_MOUSESHAPE) || defined(PROTO)
1831 /* The last set mouse pointer shape is remembered, to be used when it goes
1832 * from hidden to not hidden. */
1833 static int last_shape
= 0;
1835 /* Table for shape IDs. Keep in sync with the mshape_names[] table in
1837 static int mshape_ids
[] =
1839 Ph_CURSOR_POINTER
, /* arrow */
1840 Ph_CURSOR_NONE
, /* blank */
1841 Ph_CURSOR_INSERT
, /* beam */
1842 Ph_CURSOR_DRAG_VERTICAL
, /* updown */
1843 Ph_CURSOR_DRAG_VERTICAL
, /* udsizing */
1844 Ph_CURSOR_DRAG_HORIZONTAL
, /* leftright */
1845 Ph_CURSOR_DRAG_HORIZONTAL
, /* lrsizing */
1846 Ph_CURSOR_WAIT
, /* busy */
1847 Ph_CURSOR_DONT
, /* no */
1848 Ph_CURSOR_CROSSHAIR
, /* crosshair */
1849 Ph_CURSOR_FINGER
, /* hand1 */
1850 Ph_CURSOR_FINGER
, /* hand2 */
1851 Ph_CURSOR_FINGER
, /* pencil */
1852 Ph_CURSOR_QUESTION_POINT
, /* question */
1853 Ph_CURSOR_POINTER
, /* right-arrow */
1854 Ph_CURSOR_POINTER
, /* up-arrow */
1855 Ph_CURSOR_POINTER
/* last one */
1859 mch_set_mouse_shape(shape
)
1867 if (shape
== MSHAPE_HIDE
|| gui
.pointer_hidden
)
1868 PtSetResource( gui
.vimTextArea
, Pt_ARG_CURSOR_TYPE
, Ph_CURSOR_NONE
,
1872 if (shape
>= MSHAPE_NUMBERED
)
1873 id
= Ph_CURSOR_POINTER
;
1875 id
= mshape_ids
[shape
];
1877 PtSetResource( gui
.vimTextArea
, Pt_ARG_CURSOR_TYPE
, id
, 0 );
1879 if (shape
!= MSHAPE_HIDE
)
1885 gui_mch_mousehide(int hide
)
1887 if( gui
.pointer_hidden
!= hide
)
1889 gui
.pointer_hidden
= hide
;
1890 #ifdef FEAT_MOUSESHAPE
1892 PtSetResource( gui
.vimTextArea
, Pt_ARG_CURSOR_TYPE
,
1893 Ph_CURSOR_NONE
, 0 );
1895 mch_set_mouse_shape( last_shape
);
1897 PtSetResource( gui
.vimTextArea
, Pt_ARG_CURSOR_TYPE
,
1898 ( hide
== MOUSE_SHOW
) ? GUI_PH_MOUSE_TYPE
: Ph_CURSOR_NONE
,
1905 gui_mch_getmouse(int *x
, int *y
)
1907 PhCursorInfo_t info
;
1910 /* FIXME: does this return the correct position,
1911 * with respect to the border? */
1912 PhQueryCursor( PhInputGroup( NULL
), &info
);
1913 PtGetAbsPosition( gui
.vimTextArea
, &ix
, &iy
);
1915 *x
= info
.pos
.x
- ix
;
1916 *y
= info
.pos
.y
- iy
;
1920 gui_mch_setmouse(int x
, int y
)
1924 PtGetAbsPosition( gui
.vimTextArea
, &abs_x
, &abs_y
);
1925 /* Add the border offset? */
1926 PhMoveCursorAbs( PhInputGroup( NULL
), abs_x
+ x
, abs_y
+ y
);
1929 /****************************************************************************/
1933 * Return the RGB value of a pixel as a long.
1936 gui_mch_get_rgb(guicolor_T pixel
)
1938 return PgRGB(PgRedValue(pixel
), PgGreenValue(pixel
), PgBlueValue(pixel
));
1942 gui_mch_new_colors(void)
1944 #if 0 /* Don't bother changing the cursor colour */
1948 * If there isn't enough difference between the background colour and
1949 * the mouse pointer colour then change the mouse pointer colour
1951 color_diff
= gui_get_lightness(gui_ph_mouse_color
)
1952 - gui_get_lightness(gui
.back_pixel
);
1954 if( abs( color_diff
) < 64 )
1957 /* not a great algorithm... */
1958 r
= PgRedValue( gui_ph_mouse_color
) ^ 255;
1959 g
= PgGreenValue( gui_ph_mouse_color
) ^ 255;
1960 b
= PgBlueValue( gui_ph_mouse_color
) ^ 255;
1962 #ifndef FEAT_MOUSESHAPE
1963 gui_ph_mouse_color
= PgRGB( r
, g
, b
);
1964 PtSetResource( gui
.vimTextArea
, Pt_ARG_CURSOR_COLOR
,
1965 gui_ph_mouse_color
, 0 );
1970 PtSetResource( gui
.vimTextArea
, Pt_ARG_FILL_COLOR
, gui
.back_pixel
, 0 );
1979 if (c
>= 'a' && c
<= 'f')
1980 return( c
- 'a' + 10 );
1986 * This should be split out into a separate file,
1987 * every port does basically the same thing.
1989 * This is the gui_w32.c version (i think..)
1990 * Return INVALCOLOR when failed.
1994 gui_mch_get_color(char_u
*name
)
2000 typedef struct GuiColourTable
2006 static GuiColourTable table
[] =
2008 {"Black", RGB(0x00, 0x00, 0x00)},
2009 {"DarkGray", RGB(0x80, 0x80, 0x80)},
2010 {"DarkGrey", RGB(0x80, 0x80, 0x80)},
2011 {"Gray", RGB(0xC0, 0xC0, 0xC0)},
2012 {"Grey", RGB(0xC0, 0xC0, 0xC0)},
2013 {"LightGray", RGB(0xD3, 0xD3, 0xD3)},
2014 {"LightGrey", RGB(0xD3, 0xD3, 0xD3)},
2015 {"Gray10", RGB(0x1A, 0x1A, 0x1A)},
2016 {"Grey10", RGB(0x1A, 0x1A, 0x1A)},
2017 {"Gray20", RGB(0x33, 0x33, 0x33)},
2018 {"Grey20", RGB(0x33, 0x33, 0x33)},
2019 {"Gray30", RGB(0x4D, 0x4D, 0x4D)},
2020 {"Grey30", RGB(0x4D, 0x4D, 0x4D)},
2021 {"Gray40", RGB(0x66, 0x66, 0x66)},
2022 {"Grey40", RGB(0x66, 0x66, 0x66)},
2023 {"Gray50", RGB(0x7F, 0x7F, 0x7F)},
2024 {"Grey50", RGB(0x7F, 0x7F, 0x7F)},
2025 {"Gray60", RGB(0x99, 0x99, 0x99)},
2026 {"Grey60", RGB(0x99, 0x99, 0x99)},
2027 {"Gray70", RGB(0xB3, 0xB3, 0xB3)},
2028 {"Grey70", RGB(0xB3, 0xB3, 0xB3)},
2029 {"Gray80", RGB(0xCC, 0xCC, 0xCC)},
2030 {"Grey80", RGB(0xCC, 0xCC, 0xCC)},
2031 {"Gray90", RGB(0xE5, 0xE5, 0xE5)},
2032 {"Grey90", RGB(0xE5, 0xE5, 0xE5)},
2033 {"White", RGB(0xFF, 0xFF, 0xFF)},
2034 {"DarkRed", RGB(0x80, 0x00, 0x00)},
2035 {"Red", RGB(0xFF, 0x00, 0x00)},
2036 {"LightRed", RGB(0xFF, 0xA0, 0xA0)},
2037 {"DarkBlue", RGB(0x00, 0x00, 0x80)},
2038 {"Blue", RGB(0x00, 0x00, 0xFF)},
2039 {"LightBlue", RGB(0xA0, 0xA0, 0xFF)},
2040 {"DarkGreen", RGB(0x00, 0x80, 0x00)},
2041 {"Green", RGB(0x00, 0xFF, 0x00)},
2042 {"LightGreen", RGB(0xA0, 0xFF, 0xA0)},
2043 {"DarkCyan", RGB(0x00, 0x80, 0x80)},
2044 {"Cyan", RGB(0x00, 0xFF, 0xFF)},
2045 {"LightCyan", RGB(0xA0, 0xFF, 0xFF)},
2046 {"DarkMagenta", RGB(0x80, 0x00, 0x80)},
2047 {"Magenta", RGB(0xFF, 0x00, 0xFF)},
2048 {"LightMagenta", RGB(0xFF, 0xA0, 0xFF)},
2049 {"Brown", RGB(0x80, 0x40, 0x40)},
2050 {"Yellow", RGB(0xFF, 0xFF, 0x00)},
2051 {"LightYellow", RGB(0xFF, 0xFF, 0xA0)},
2052 {"SeaGreen", RGB(0x2E, 0x8B, 0x57)},
2053 {"Orange", RGB(0xFF, 0xA5, 0x00)},
2054 {"Purple", RGB(0xA0, 0x20, 0xF0)},
2055 {"SlateBlue", RGB(0x6A, 0x5A, 0xCD)},
2056 {"Violet", RGB(0xEE, 0x82, 0xEE)},
2059 /* is name #rrggbb format? */
2060 if( name
[0] == '#' && STRLEN( name
) == 7 )
2062 r
= hex_digit( name
[1] ) * 16 + hex_digit( name
[2] );
2063 g
= hex_digit( name
[3] ) * 16 + hex_digit( name
[4] );
2064 b
= hex_digit( name
[5] ) * 16 + hex_digit( name
[6] );
2065 if( r
< 0 || g
< 0 || b
< 0 )
2067 return( RGB( r
, g
, b
) );
2070 for( i
= 0; i
< ARRAY_LENGTH( table
); i
++ )
2072 if( STRICMP( name
, table
[i
].name
) == 0 )
2073 return( table
[i
].colour
);
2077 * Last attempt. Look in the file "$VIMRUNTIME/rgb.txt".
2080 #define LINE_LEN 100
2082 char line
[LINE_LEN
];
2085 fname
= expand_env_save((char_u
*)"$VIMRUNTIME/rgb.txt");
2089 fd
= fopen((char *)fname
, "rt");
2100 fgets(line
, LINE_LEN
, fd
);
2103 if (len
<= 1 || line
[len
-1] != '\n')
2108 i
= sscanf(line
, "%d %d %d %n", &r
, &g
, &b
, &pos
);
2114 if (STRICMP(color
, name
) == 0)
2117 return( (guicolor_T
) RGB(r
,g
,b
) );
2129 gui_mch_set_fg_color(guicolor_T color
)
2131 PgSetTextColor( color
);
2135 gui_mch_set_bg_color(guicolor_T color
)
2137 PgSetFillColor( color
);
2141 gui_mch_set_sp_color(guicolor_T color
)
2146 gui_mch_invert_rectangle(int row
, int col
, int nr
, int nc
)
2150 rect
.ul
.x
= FILL_X( col
);
2151 rect
.ul
.y
= FILL_Y( row
);
2153 /* FIXME: This has an off by one pixel problem */
2154 rect
.lr
.x
= rect
.ul
.x
+ nc
* gui
.char_width
;
2155 rect
.lr
.y
= rect
.ul
.y
+ nr
* gui
.char_height
;
2162 PgSetDrawMode( Pg_DrawModeDSTINVERT
);
2163 PgDrawRect( &rect
, Pg_DRAW_FILL
);
2164 PgSetDrawMode( Pg_DrawModeSRCCOPY
);
2169 gui_mch_clear_block(int row1
, int col1
, int row2
, int col2
)
2172 { FILL_X( col1
), FILL_Y( row1
) },
2173 { FILL_X( col2
+ 1 ) - 1, FILL_Y( row2
+ 1 ) - 1}
2177 gui_mch_set_bg_color( gui
.back_pixel
);
2178 PgDrawRect( &block
, Pg_DRAW_FILL
);
2185 PhRect_t text_rect
= {
2186 { gui
.border_width
, gui
.border_width
},
2187 { Columns
* gui
.char_width
+ gui
.border_width
- 1 ,
2188 Rows
* gui
.char_height
+ gui
.border_width
- 1 }
2191 if( is_ignore_draw
== TRUE
)
2195 gui_mch_set_bg_color( gui
.back_pixel
);
2196 PgDrawRect( &text_rect
, Pg_DRAW_FILL
);
2201 gui_mch_delete_lines(int row
, int num_lines
)
2206 rect
.ul
.x
= FILL_X( gui
.scroll_region_left
);
2207 rect
.ul
.y
= FILL_Y( row
+ num_lines
);
2209 rect
.lr
.x
= FILL_X( gui
.scroll_region_right
+ 1 ) - 1;
2210 rect
.lr
.y
= FILL_Y( gui
.scroll_region_bot
+ 1) - 1;
2212 PtWidgetOffset( gui
.vimTextArea
, &gui_ph_raw_offset
);
2213 PhTranslatePoint( &gui_ph_raw_offset
, PtWidgetPos(gui
.vimTextArea
, NULL
));
2214 PhTranslateRect( &rect
, &gui_ph_raw_offset
);
2217 delta
.y
= -num_lines
* gui
.char_height
;
2221 PhBlit( PtWidgetRid( PtFindDisjoint( gui
.vimTextArea
) ), &rect
, &delta
);
2224 gui
.scroll_region_bot
- num_lines
+ 1,
2225 gui
.scroll_region_left
,
2226 gui
.scroll_region_bot
,
2227 gui
.scroll_region_right
);
2231 gui_mch_insert_lines(int row
, int num_lines
)
2236 rect
.ul
.x
= FILL_X( gui
.scroll_region_left
);
2237 rect
.ul
.y
= FILL_Y( row
);
2239 rect
.lr
.x
= FILL_X( gui
.scroll_region_right
+ 1 ) - 1;
2240 rect
.lr
.y
= FILL_Y( gui
.scroll_region_bot
- num_lines
+ 1 ) - 1;
2242 PtWidgetOffset( gui
.vimTextArea
, &gui_ph_raw_offset
);
2243 PhTranslatePoint( &gui_ph_raw_offset
, PtWidgetPos( gui
.vimTextArea
, NULL
) );
2244 PhTranslateRect( &rect
, &gui_ph_raw_offset
);
2247 delta
.y
= num_lines
* gui
.char_height
;
2251 PhBlit( PtWidgetRid( PtFindDisjoint( gui
.vimTextArea
) ) , &rect
, &delta
);
2253 gui_clear_block( row
, gui
.scroll_region_left
,
2254 row
+ num_lines
- 1, gui
.scroll_region_right
);
2258 gui_mch_draw_string(int row
, int col
, char_u
*s
, int len
, int flags
)
2260 static char *utf8_buffer
= NULL
;
2261 static int utf8_len
= 0;
2263 PhPoint_t pos
= { TEXT_X( col
), TEXT_Y( row
) };
2266 if( is_ignore_draw
== TRUE
)
2271 if( !( flags
& DRAW_TRANSP
) )
2274 FILL_X( col
), FILL_Y( row
),
2275 FILL_X( col
+ len
) - 1, FILL_Y( row
+ 1 ) - 1,
2279 if( flags
& DRAW_UNDERL
)
2280 PgSetUnderline( gui
.norm_pixel
, Pg_TRANSPARENT
, 0 );
2282 if( charset_translate
!= NULL
2288 int src_taken
, dst_made
;
2290 /* Use a static buffer to avoid large amounts of de/allocations */
2291 if( utf8_len
< len
)
2293 utf8_buffer
= realloc( utf8_buffer
, len
* MB_LEN_MAX
);
2309 PgDrawText( s
, len
, &pos
, 0 );
2311 if( flags
& DRAW_BOLD
)
2313 /* FIXME: try and only calculate these values once... */
2314 rect
.ul
.x
= FILL_X( col
) + 1;
2315 rect
.ul
.y
= FILL_Y( row
);
2316 rect
.lr
.x
= FILL_X( col
+ len
) - 1;
2317 rect
.lr
.y
= FILL_Y( row
+ 1) - 1;
2318 /* PgSetUserClip( NULL ) causes the scrollbar to not redraw... */
2322 PgSetUserClip( &rect
);
2323 PgDrawText( s
, len
, &pos
, 0 );
2324 PgSetUserClip( NULL
);
2326 rect
.lr
.y
-= ( p_linespace
+ 1 ) / 2;
2327 /* XXX: DrawTextArea doesn't work with phditto */
2328 PgDrawTextArea( s
, len
, &rect
, Pg_TEXT_BOTTOM
);
2332 if( flags
& DRAW_UNDERL
)
2333 PgSetUnderline( Pg_TRANSPARENT
, Pg_TRANSPARENT
, 0 );
2338 /****************************************************************************/
2342 gui_mch_draw_hollow_cursor(guicolor_T color
)
2346 /* FIXME: Double width characters */
2348 r
.ul
.x
= FILL_X( gui
.col
);
2349 r
.ul
.y
= FILL_Y( gui
.row
);
2350 r
.lr
.x
= r
.ul
.x
+ gui
.char_width
- 1;
2351 r
.lr
.y
= r
.ul
.y
+ gui
.char_height
- 1;
2354 PgSetStrokeColor( color
);
2355 PgDrawRect( &r
, Pg_DRAW_STROKE
);
2360 gui_mch_draw_part_cursor(int w
, int h
, guicolor_T color
)
2364 r
.ul
.x
= FILL_X( gui
.col
);
2365 r
.ul
.y
= FILL_Y( gui
.row
) + gui
.char_height
- h
;
2366 r
.lr
.x
= r
.ul
.x
+ w
- 1;
2367 r
.lr
.y
= r
.ul
.y
+ h
- 1;
2370 gui_mch_set_bg_color( color
);
2371 PgDrawRect( &r
, Pg_DRAW_FILL
);
2376 gui_mch_set_blinking(long wait
, long on
, long off
)
2378 blink_waittime
= wait
;
2380 blink_offtime
= off
;
2384 gui_mch_start_blink(void)
2386 /* Only turn on the timer on if none of the times are zero */
2387 if( blink_waittime
&& blink_ontime
&& blink_offtime
&& gui
.in_focus
)
2389 PtSetResource( gui_ph_timer_cursor
, Pt_ARG_TIMER_INITIAL
,
2390 blink_waittime
, 0 );
2391 blink_state
= BLINK_ON
;
2392 gui_update_cursor(TRUE
, FALSE
);
2397 gui_mch_stop_blink(void)
2399 PtSetResource( gui_ph_timer_cursor
, Pt_ARG_TIMER_INITIAL
, 0, 0 );
2401 if( blink_state
== BLINK_OFF
)
2402 gui_update_cursor(TRUE
, FALSE
);
2404 blink_state
= BLINK_NONE
;
2407 /****************************************************************************/
2408 /* miscellaneous functions */
2417 gui_mch_flash(int msec
)
2419 PgSetFillXORColor( Pg_BLACK
, Pg_WHITE
);
2420 PgSetDrawMode( Pg_DRAWMODE_XOR
);
2421 gui_mch_clear_all();
2424 ui_delay( (long) msec
, TRUE
);
2426 gui_mch_clear_all();
2427 PgSetDrawMode( Pg_DRAWMODE_OPAQUE
);
2438 gui_mch_set_text_area_pos(int x
, int y
, int w
, int h
)
2440 PhArea_t area
= {{x
, y
}, {w
, h
}};
2442 PtSetResource( gui
.vimTextArea
, Pt_ARG_AREA
, &area
, 0 );
2446 gui_mch_haskey(char_u
*name
)
2450 for (i
= 0; special_keys
[i
].key_sym
!= 0; i
++)
2451 if (name
[0] == special_keys
[i
].vim_code0
&&
2452 name
[1] == special_keys
[i
].vim_code1
)
2457 /****************************************************************************/
2461 #include "toolbar.phi"
2463 static PhImage_t
*gui_ph_toolbar_images
[] = {
2476 &tb_save_session_phi
,
2477 &tb_new_session_phi
,
2478 &tb_load_session_phi
,
2498 gui_ph_toolbar_load_icon( char_u
*iconfile
)
2500 static PhImage_t external_icon
;
2501 PhImage_t
*temp_phi
= NULL
;
2503 temp_phi
= PxLoadImage( iconfile
, NULL
);
2504 if( temp_phi
!= NULL
)
2506 /* The label widget will free the image/palette/etc. for us when
2508 temp_phi
->flags
|= Ph_RELEASE_IMAGE_ALL
;
2509 memcpy( &external_icon
, temp_phi
, sizeof( external_icon
) );
2512 temp_phi
= &external_icon
;
2518 * This returns either a builtin icon image, an external image or NULL
2519 * if it can't find either. The caller can't and doesn't need to try and
2520 * free() the returned image, and it can't store the image pointer.
2521 * (When setting the Pt_ARG_LABEL_IMAGE resource, the contents of the
2522 * PhImage_t are copied, and the original PhImage_t aren't needed anymore).
2525 gui_ph_toolbar_find_icon( vimmenu_T
*menu
)
2527 char_u full_pathname
[ MAXPATHL
+ 1 ];
2528 PhImage_t
*icon
= NULL
;
2530 if( menu
->icon_builtin
== FALSE
)
2532 if( menu
->iconfile
!= NULL
)
2533 /* TODO: use gui_find_iconfile() */
2534 icon
= gui_ph_toolbar_load_icon( menu
->iconfile
);
2536 /* TODO: Restrict loading to just .png? Search for any format? */
2537 if( ( icon
== NULL
) &&
2538 ( ( gui_find_bitmap( menu
->name
, full_pathname
, "gif" ) == OK
) ||
2539 ( gui_find_bitmap( menu
->name
, full_pathname
, "png" ) == OK
) ) )
2540 icon
= gui_ph_toolbar_load_icon( full_pathname
);
2546 if( menu
->iconidx
>= 0 &&
2547 ( menu
->iconidx
< ARRAY_LENGTH( gui_ph_toolbar_images
) ) )
2549 return( gui_ph_toolbar_images
[ menu
->iconidx
] );
2556 #if defined( FEAT_MENU ) || defined( PROTO )
2558 gui_mch_enable_menu(int flag
)
2561 PtRealizeWidget( gui
.vimMenuBar
);
2563 PtUnrealizeWidget( gui
.vimMenuBar
);
2567 gui_mch_set_menu_pos(int x
, int y
, int w
, int h
)
2572 /* Change the position of a menu button in the parent */
2574 gui_ph_position_menu( PtWidget_t
*widget
, int priority
)
2576 PtWidget_t
*traverse
;
2579 traverse
= PtWidgetChildBack( PtWidgetParent( widget
) );
2581 /* Iterate through the list of widgets in traverse, until
2582 * we find the position we want to insert our widget into */
2583 /* TODO: traverse from front to back, possible speedup? */
2584 while( traverse
!= NULL
)
2586 PtGetResource( traverse
, Pt_ARG_POINTER
, &menu
, 0 );
2589 priority
< menu
->priority
&&
2590 widget
!= traverse
)
2592 /* Insert the widget before the current traverse widget */
2593 PtWidgetInsert( widget
, traverse
, 1 );
2597 traverse
= PtWidgetBrotherInFront( traverse
);
2601 /* the index is ignored because it's not useful for our purposes */
2603 gui_mch_add_menu(vimmenu_T
*menu
, int index
)
2605 vimmenu_T
*parent
= menu
->parent
;
2607 char_u mnemonic_str
[MB_LEN_MAX
];
2611 menu
->submenu_id
= menu
->id
= NULL
;
2613 if( menu_is_menubar( menu
->name
) )
2616 accel_key
= vim_strchr( menu
->name
, '&' );
2617 if( accel_key
!= NULL
)
2619 mnemonic_str
[0] = accel_key
[1];
2620 mnemonic_str
[1] = NUL
;
2623 /* Create the menu button */
2625 PtSetArg( &args
[ n
++ ], Pt_ARG_TEXT_STRING
, menu
->dname
, 0 );
2626 PtSetArg( &args
[ n
++ ], Pt_ARG_ACCEL_TEXT
, menu
->actext
, 0 );
2627 if( accel_key
!= NULL
)
2628 PtSetArg( &args
[ n
++ ], Pt_ARG_ACCEL_KEY
, mnemonic_str
, 0 );
2629 PtSetArg( &args
[ n
++ ], Pt_ARG_POINTER
, menu
, 0 );
2631 if( parent
!= NULL
)
2632 PtSetArg( &args
[ n
++ ], Pt_ARG_BUTTON_TYPE
, Pt_MENU_RIGHT
, 0 );
2634 menu
->id
= PtCreateWidget( PtMenuButton
,
2635 (parent
== NULL
) ? gui
.vimMenuBar
: parent
->submenu_id
,
2638 PtAddCallback( menu
->id
, Pt_CB_ARM
, gui_ph_handle_pulldown_menu
, menu
);
2640 /* Create the actual menu */
2642 if( parent
!= NULL
)
2643 PtSetArg( &args
[ n
++ ], Pt_ARG_MENU_FLAGS
, Pt_TRUE
, Pt_MENU_CHILD
);
2645 menu
->submenu_id
= PtCreateWidget( PtMenu
, menu
->id
, n
, args
);
2647 if( parent
== NULL
)
2649 PtAddCallback( menu
->submenu_id
, Pt_CB_UNREALIZED
,
2650 gui_ph_handle_menu_unrealized
, menu
);
2652 if( menu
->mnemonic
!= 0 )
2654 PtAddHotkeyHandler( gui
.vimWindow
, tolower( menu
->mnemonic
),
2655 Pk_KM_Alt
, 0, menu
, gui_ph_handle_pulldown_menu
);
2659 gui_ph_position_menu( menu
->id
, menu
->priority
);
2661 /* Redraw menubar here instead of gui_mch_draw_menubar */
2662 if( gui
.menu_is_active
)
2663 PtRealizeWidget( menu
->id
);
2665 else if( menu_is_popup( menu
->name
) )
2667 menu
->submenu_id
= PtCreateWidget( PtMenu
, gui
.vimWindow
, 0, NULL
);
2668 PtAddCallback( menu
->submenu_id
, Pt_CB_UNREALIZED
,
2669 gui_ph_handle_menu_unrealized
, menu
);
2674 gui_mch_add_menu_item(vimmenu_T
*menu
, int index
)
2676 vimmenu_T
*parent
= menu
->parent
;
2678 char_u mnemonic_str
[MB_LEN_MAX
];
2683 PtSetArg( &args
[ n
++ ], Pt_ARG_POINTER
, menu
, 0 );
2686 if( menu_is_toolbar( parent
->name
) )
2688 if( menu_is_separator( menu
->name
) )
2690 PtSetArg( &args
[ n
++ ], Pt_ARG_SEP_FLAGS
,
2691 Pt_SEP_VERTICAL
, Pt_SEP_ORIENTATION
);
2692 PtSetArg( &args
[ n
++ ], Pt_ARG_SEP_TYPE
, Pt_ETCHED_IN
, 0 );
2693 PtSetArg( &args
[ n
++ ], Pt_ARG_ANCHOR_FLAGS
,
2694 Pt_TRUE
, Pt_ANCHOR_TOP_BOTTOM
);
2695 PtSetArg( &args
[ n
++ ], Pt_ARG_WIDTH
, 2, 0 );
2696 menu
->id
= PtCreateWidget( PtSeparator
, gui
.vimToolBar
, n
, args
);
2700 if( strstr( (const char *) p_toolbar
, "text" ) != NULL
)
2702 PtSetArg( &args
[ n
++ ], Pt_ARG_BALLOON_POSITION
,
2703 Pt_BALLOON_BOTTOM
, 0 );
2704 PtSetArg( &args
[ n
++ ], Pt_ARG_TEXT_STRING
, menu
->dname
, 0 );
2705 PtSetArg( &args
[ n
++ ], Pt_ARG_TEXT_FONT
, "TextFont08", 0 );
2707 if( ( strstr( (const char *) p_toolbar
, "icons" ) != NULL
) &&
2708 ( gui_ph_toolbar_images
!= NULL
) )
2710 PtSetArg( &args
[ n
++ ], Pt_ARG_LABEL_IMAGE
,
2711 gui_ph_toolbar_find_icon( menu
), 0 );
2712 PtSetArg( &args
[ n
++ ], Pt_ARG_LABEL_TYPE
, Pt_TEXT_IMAGE
, 0 );
2713 PtSetArg( &args
[ n
++ ], Pt_ARG_TEXT_IMAGE_SPACING
, 0, 0 );
2715 if( strstr( (const char *) p_toolbar
, "tooltips" ) != NULL
)
2717 PtSetArg( &args
[ n
++ ], Pt_ARG_LABEL_BALLOON
,
2718 gui_ph_show_tooltip
, 0 );
2719 PtSetArg( &args
[ n
++ ], Pt_ARG_LABEL_FLAGS
,
2720 Pt_TRUE
, Pt_SHOW_BALLOON
);
2722 PtSetArg( &args
[ n
++ ], Pt_ARG_MARGIN_HEIGHT
, 1, 0 );
2723 PtSetArg( &args
[ n
++ ], Pt_ARG_MARGIN_WIDTH
, 1, 0 );
2724 PtSetArg( &args
[ n
++ ], Pt_ARG_FLAGS
, Pt_FALSE
,
2725 Pt_HIGHLIGHTED
| Pt_GETS_FOCUS
);
2726 PtSetArg( &args
[ n
++ ], Pt_ARG_FILL_COLOR
, Pg_TRANSPARENT
, 0 );
2727 menu
->id
= PtCreateWidget( PtButton
, gui
.vimToolBar
, n
, args
);
2729 PtAddCallback( menu
->id
, Pt_CB_ACTIVATE
, gui_ph_handle_menu
, menu
);
2731 /* Update toolbar if it's open */
2732 if( PtWidgetIsRealized( gui
.vimToolBar
) )
2733 PtRealizeWidget( menu
->id
);
2737 if( menu_is_separator( menu
->name
) )
2739 menu
->id
= PtCreateWidget( PtSeparator
, parent
->submenu_id
, n
, args
);
2743 accel_key
= vim_strchr( menu
->name
, '&' );
2744 if( accel_key
!= NULL
)
2746 mnemonic_str
[0] = accel_key
[1];
2747 mnemonic_str
[1] = NUL
;
2750 PtSetArg( &args
[ n
++ ], Pt_ARG_TEXT_STRING
, menu
->dname
, 0 );
2751 if( accel_key
!= NULL
)
2752 PtSetArg( &args
[ n
++ ], Pt_ARG_ACCEL_KEY
, mnemonic_str
,
2755 PtSetArg( &args
[ n
++ ], Pt_ARG_ACCEL_TEXT
, menu
->actext
, 0 );
2757 menu
->id
= PtCreateWidget( PtMenuButton
, parent
->submenu_id
, n
, args
);
2759 PtAddCallback( menu
->id
, Pt_CB_ACTIVATE
, gui_ph_handle_menu
, menu
);
2761 #ifdef USE_PANEL_GROUP
2762 if( gui_ph_is_buffer_item( menu
, parent
) == TRUE
)
2764 PtAddCallback( menu
->id
, Pt_CB_DESTROYED
,
2765 gui_ph_handle_buffer_remove
, menu
);
2766 gui_ph_pg_add_buffer( menu
->dname
);
2771 gui_ph_position_menu( menu
->id
, menu
->priority
);
2775 gui_mch_destroy_menu(vimmenu_T
*menu
)
2777 if( menu
->submenu_id
!= NULL
)
2778 PtDestroyWidget( menu
->submenu_id
);
2779 if( menu
->id
!= NULL
)
2780 PtDestroyWidget( menu
->id
);
2782 menu
->submenu_id
= NULL
;
2787 gui_mch_menu_grey(vimmenu_T
*menu
, int grey
)
2789 long flags
, mask
, fields
;
2791 if( menu
->id
== NULL
)
2794 flags
= PtWidgetFlags( menu
->id
);
2795 if( PtWidgetIsClass( menu
->id
, PtMenuButton
) &&
2796 PtWidgetIsClass( PtWidgetParent( menu
->id
), PtMenu
) )
2799 mask
= Pt_SELECTABLE
| Pt_HIGHLIGHTED
;
2804 mask
= Pt_BLOCKED
| Pt_GHOST
;
2810 PtSetResource( menu
->id
, Pt_ARG_FLAGS
, fields
,
2815 gui_mch_menu_hidden(vimmenu_T
*menu
, int hidden
)
2817 /* TODO: [un]realize the widget? */
2821 gui_mch_draw_menubar(void)
2823 /* The only time a redraw is needed is when a menu button
2824 * is added to the menubar, and that is detected and the bar
2825 * redrawn in gui_mch_add_menu_item
2830 gui_mch_show_popupmenu(vimmenu_T
*menu
)
2832 PtSetResource( menu
->submenu_id
, Pt_ARG_POS
, &abs_mouse
, 0 );
2833 PtRealizeWidget( menu
->submenu_id
);
2837 gui_mch_toggle_tearoffs(int enable
)
2839 /* No tearoffs yet */
2844 #if defined( FEAT_TOOLBAR ) || defined( PROTO )
2846 gui_mch_show_toolbar(int showit
)
2849 PtRealizeWidget( gui
.vimToolBar
);
2851 PtUnrealizeWidget( gui
.vimToolBar
);
2855 /****************************************************************************/
2863 /* Check whether the resulting font has the font flags and size that
2872 font_tag
= alloc( MAX_FONT_TAG
);
2873 if( font_tag
!= NULL
)
2875 if( PfGenerateFontName( font_name
, font_flags
, font_size
,
2876 font_tag
) != NULL
)
2878 /* Enforce some limits on the font used */
2879 style
= PHFONT_INFO_FIXED
;
2881 if( enforce
& PF_STYLE_BOLD
)
2882 style
|= PHFONT_INFO_BOLD
;
2883 if( enforce
& PF_STYLE_ANTIALIAS
)
2884 style
|= PHFONT_INFO_ALIAS
;
2885 if( enforce
& PF_STYLE_ITALIC
)
2886 style
|= PHFONT_INFO_ITALIC
;
2888 PfQueryFontInfo( font_tag
, &info
);
2890 if( info
.size
== 0 )
2893 /* Make sure font size matches, and that the font style
2894 * at least has the bits we're checking for */
2895 if( font_size
== info
.size
&&
2896 style
== (info
.style
& style
) )
2897 return( (GuiFont
) font_tag
);
2899 vim_free( font_tag
);
2905 * Split up the vim font name
2907 * vim_font is in the form of
2908 * <name>:s<height>:a:b:i
2917 gui_ph_parse_font_name(
2924 int_u name_len
, size
;
2926 mark
= vim_strchr( vim_font
, ':' );
2928 name_len
= STRLEN( vim_font
);
2930 name_len
= (int_u
) ( mark
- vim_font
);
2932 *font_name
= vim_strnsave( vim_font
, name_len
);
2933 if( *font_name
!= NULL
)
2937 while( *mark
!= NUL
&& *mark
++ == ':')
2939 switch( tolower( *mark
++ ) )
2941 case 'a': *font_flags
|= PF_STYLE_ANTIALIAS
; break;
2942 case 'b': *font_flags
|= PF_STYLE_BOLD
; break;
2943 case 'i': *font_flags
|= PF_STYLE_ITALIC
; break;
2946 size
= getdigits( &mark
);
2947 /* Restrict the size to some vague limits */
2948 if( size
< 1 || size
> 100 )
2965 gui_mch_init_font(char_u
*vim_font_name
, int fontset
)
2968 char_u
*font_name
= NULL
;
2969 int_u font_flags
= 0;
2970 int_u font_size
= 12;
2975 if( vim_font_name
== NULL
)
2978 vim_font_name
= "PC Terminal";
2981 if( STRCMP( vim_font_name
, "*" ) == 0 )
2983 font_tag
= PtFontSelection( gui
.vimWindow
, NULL
, NULL
,
2984 "pcterm12", -1, PHFONT_FIXED
, NULL
);
2986 if( font_tag
== NULL
)
2989 gui_mch_free_font( gui
.norm_font
);
2990 gui
.norm_font
= font_tag
;
2992 PfQueryFontInfo( font_tag
, &info
);
2993 font_name
= vim_strsave( info
.font
);
2997 if( gui_ph_parse_font_name( vim_font_name
, &font_name
, &font_flags
,
2998 &font_size
) == FALSE
)
3001 font_tag
= gui_ph_get_font( font_name
, font_flags
, font_size
, 0 );
3002 if( font_tag
== NULL
)
3004 vim_free( font_name
);
3008 gui_mch_free_font( gui
.norm_font
);
3009 gui
.norm_font
= font_tag
;
3012 gui_mch_free_font( gui
.bold_font
);
3013 gui
.bold_font
= gui_ph_get_font( font_name
, font_flags
| PF_STYLE_BOLD
,
3014 font_size
, PF_STYLE_BOLD
);
3016 gui_mch_free_font( gui
.ital_font
);
3017 gui
.ital_font
= gui_ph_get_font( font_name
, font_flags
| PF_STYLE_ITALIC
,
3018 font_size
, PF_STYLE_ITALIC
);
3020 /* This extent was brought to you by the letter 'g' */
3021 PfExtentText( &extent
, NULL
, font_tag
, "g", 1 );
3023 gui
.char_width
= extent
.lr
.x
- extent
.ul
.x
+ 1;
3024 gui
.char_height
= (- extent
.ul
.y
) + extent
.lr
.y
+ 1;
3025 gui
.char_ascent
= - extent
.ul
.y
;
3027 vim_free( font_name
);
3032 * Adjust gui.char_height (after 'linespace' was changed).
3035 gui_mch_adjust_charheight(void)
3039 PfQueryFontInfo( gui
.norm_font
, &info
);
3041 gui
.char_height
= - info
.ascender
+ info
.descender
+ p_linespace
;
3042 gui
.char_ascent
= - info
.ascender
+ p_linespace
/ 2;
3048 gui_mch_get_font(char_u
*vim_font_name
, int report_error
)
3052 int_u font_size
= 12;
3053 int_u font_flags
= 0;
3055 if( gui_ph_parse_font_name( vim_font_name
, &font_name
, &font_flags
,
3056 &font_size
) != FALSE
)
3058 font_tag
= gui_ph_get_font( font_name
, font_flags
, font_size
, -1 );
3059 vim_free( font_name
);
3061 if( font_tag
!= NULL
)
3062 return( (GuiFont
) font_tag
);
3066 EMSG2(e_font
, vim_font_name
);
3071 #if defined(FEAT_EVAL) || defined(PROTO)
3073 * Return the name of font "font" in allocated memory.
3074 * Don't know how to get the actual name, thus use the provided name.
3077 gui_mch_get_fontname(font
, name
)
3083 return vim_strsave(name
);
3088 gui_mch_set_font(GuiFont font
)
3094 gui_mch_free_font(GuiFont font
)