2 * Copyright 2006-2007 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wine/debug.h"
31 #include "wine/unicode.h"
33 #include "mshtml_private.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
38 #define NSCMD_ALIGN "cmd_align"
39 #define NSCMD_BEGINLINE "cmd_beginLine"
40 #define NSCMD_BOLD "cmd_bold"
41 #define NSCMD_CHARNEXT "cmd_charNext"
42 #define NSCMD_CHARPREVIOUS "cmd_charPrevious"
43 #define NSCMD_COPY "cmd_copy"
44 #define NSCMD_CUT "cmd_cut"
45 #define NSCMD_DELETECHARFORWARD "cmd_deleteCharForward"
46 #define NSCMD_DELETEWORDFORWARD "cmd_deleteWordForward"
47 #define NSCMD_ENDLINE "cmd_endLine"
48 #define NSCMD_FONTCOLOR "cmd_fontColor"
49 #define NSCMD_FONTFACE "cmd_fontFace"
50 #define NSCMD_INDENT "cmd_indent"
51 #define NSCMD_INSERTHR "cmd_insertHR"
52 #define NSCMD_INSERTLINKNOUI "cmd_insertLinkNoUI"
53 #define NSCMD_ITALIC "cmd_italic"
54 #define NSCMD_LINENEXT "cmd_lineNext"
55 #define NSCMD_LINEPREVIOUS "cmd_linePrevious"
56 #define NSCMD_MOVEBOTTOM "cmd_moveBottom"
57 #define NSCMD_MOVEPAGEDOWN "cmd_movePageDown"
58 #define NSCMD_MOVEPAGEUP "cmd_movePageUp"
59 #define NSCMD_MOVETOP "cmd_moveTop"
60 #define NSCMD_OL "cmd_ol"
61 #define NSCMD_OUTDENT "cmd_outdent"
62 #define NSCMD_PASTE "cmd_paste"
63 #define NSCMD_SELECTALL "cmd_selectAll"
64 #define NSCMD_SELECTBEGINLINE "cmd_selectBeginLine"
65 #define NSCMD_SELECTBOTTOM "cmd_selectBottom"
66 #define NSCMD_SELECTCHARNEXT "cmd_selectCharNext"
67 #define NSCMD_SELECTCHARPREVIOUS "cmd_selectCharPrevious"
68 #define NSCMD_SELECTENDLINE "cmd_selectEndLine"
69 #define NSCMD_SELECTLINENEXT "cmd_selectLineNext"
70 #define NSCMD_SELECTLINEPREVIOUS "cmd_selectLinePrevious"
71 #define NSCMD_SELECTPAGEDOWN "cmd_selectPageDown"
72 #define NSCMD_SELECTPAGEUP "cmd_selectPageUp"
73 #define NSCMD_SELECTTOP "cmd_selectTop"
74 #define NSCMD_SELECTWORDNEXT "cmd_selectWordNext"
75 #define NSCMD_SELECTWORDPREVIOUS "cmd_selectWordPrevious"
76 #define NSCMD_UL "cmd_ul"
77 #define NSCMD_UNDERLINE "cmd_underline"
78 #define NSCMD_WORDNEXT "cmd_wordNext"
79 #define NSCMD_WORDPREVIOUS "cmd_wordPrevious"
81 #define NSSTATE_ATTRIBUTE "state_attribute"
82 #define NSSTATE_ALL "state_all"
84 #define NSALIGN_CENTER "center"
85 #define NSALIGN_LEFT "left"
86 #define NSALIGN_RIGHT "right"
88 #define DOM_VK_LEFT VK_LEFT
89 #define DOM_VK_UP VK_UP
90 #define DOM_VK_RIGHT VK_RIGHT
91 #define DOM_VK_DOWN VK_DOWN
92 #define DOM_VK_DELETE VK_DELETE
93 #define DOM_VK_HOME VK_HOME
94 #define DOM_VK_END VK_END
96 static const WCHAR fontW
[] = {'f','o','n','t',0};
97 static const WCHAR sizeW
[] = {'s','i','z','e',0};
99 void set_dirty(HTMLDocument
*This
, VARIANT_BOOL dirty
)
103 if(This
->doc_obj
->usermode
!= EDITMODE
|| !This
->doc_obj
->nscontainer
|| !This
->doc_obj
->nscontainer
->editor
)
107 nsres
= nsIEditor_IncrementModificationCount(This
->doc_obj
->nscontainer
->editor
, 1);
109 ERR("IncrementModificationCount failed: %08x\n", nsres
);
111 nsres
= nsIEditor_ResetModificationCount(This
->doc_obj
->nscontainer
->editor
);
113 ERR("ResetModificationCount failed: %08x\n", nsres
);
117 static void do_ns_editor_command(NSContainer
*This
, const char *cmd
)
121 if(!This
->editor_controller
)
124 nsres
= nsIController_DoCommand(This
->editor_controller
, cmd
);
126 ERR("DoCommand(%s) failed: %08x\n", debugstr_a(cmd
), nsres
);
129 static nsresult
get_ns_command_state(NSContainer
*This
, const char *cmd
, nsICommandParams
*nsparam
)
131 nsICommandManager
*cmdmgr
;
134 nsres
= get_nsinterface((nsISupports
*)This
->webbrowser
, &IID_nsICommandManager
, (void**)&cmdmgr
);
135 if(NS_FAILED(nsres
)) {
136 ERR("Could not get nsICommandManager: %08x\n", nsres
);
140 nsres
= nsICommandManager_GetCommandState(cmdmgr
, cmd
, This
->doc
->basedoc
.window
->nswindow
, nsparam
);
142 ERR("GetCommandState(%s) failed: %08x\n", debugstr_a(cmd
), nsres
);
144 nsICommandManager_Release(cmdmgr
);
148 static DWORD
query_ns_edit_status(HTMLDocument
*This
, const char *nscmd
)
150 nsICommandParams
*nsparam
;
153 if(This
->doc_obj
->usermode
!= EDITMODE
|| This
->window
->readystate
< READYSTATE_INTERACTIVE
)
154 return OLECMDF_SUPPORTED
;
156 if(This
->doc_obj
->nscontainer
&& nscmd
) {
157 nsparam
= create_nscommand_params();
158 get_ns_command_state(This
->doc_obj
->nscontainer
, nscmd
, nsparam
);
160 nsICommandParams_GetBooleanValue(nsparam
, NSSTATE_ALL
, &b
);
162 nsICommandParams_Release(nsparam
);
165 return OLECMDF_SUPPORTED
| OLECMDF_ENABLED
| (b
? OLECMDF_LATCHED
: 0);
168 static void set_ns_align(HTMLDocument
*This
, const char *align_str
)
170 nsICommandParams
*nsparam
;
172 if(!This
->doc_obj
->nscontainer
)
175 nsparam
= create_nscommand_params();
176 nsICommandParams_SetCStringValue(nsparam
, NSSTATE_ATTRIBUTE
, align_str
);
178 do_ns_command(This
, NSCMD_ALIGN
, nsparam
);
180 nsICommandParams_Release(nsparam
);
183 static DWORD
query_align_status(HTMLDocument
*This
, const char *align_str
)
185 nsICommandParams
*nsparam
;
188 if(This
->doc_obj
->usermode
!= EDITMODE
|| This
->window
->readystate
< READYSTATE_INTERACTIVE
)
189 return OLECMDF_SUPPORTED
;
191 if(This
->doc_obj
->nscontainer
) {
192 nsparam
= create_nscommand_params();
193 get_ns_command_state(This
->doc_obj
->nscontainer
, NSCMD_ALIGN
, nsparam
);
195 nsICommandParams_GetCStringValue(nsparam
, NSSTATE_ATTRIBUTE
, &align
);
197 nsICommandParams_Release(nsparam
);
200 return OLECMDF_SUPPORTED
| OLECMDF_ENABLED
201 | (align
&& !strcmp(align_str
, align
) ? OLECMDF_LATCHED
: 0);
205 static nsISelection
*get_ns_selection(HTMLDocument
*This
)
207 nsISelection
*nsselection
= NULL
;
210 nsres
= nsIDOMWindow_GetSelection(This
->window
->nswindow
, &nsselection
);
212 ERR("GetSelection failed %08x\n", nsres
);
218 static void remove_child_attr(nsIDOMElement
*elem
, LPCWSTR tag
, nsAString
*attr_str
)
221 PRUint32 child_cnt
, i
;
222 nsIDOMNode
*child_node
;
223 nsIDOMNodeList
*node_list
;
226 nsIDOMElement_HasChildNodes(elem
, &has_children
);
230 nsIDOMElement_GetChildNodes(elem
, &node_list
);
231 nsIDOMNodeList_GetLength(node_list
, &child_cnt
);
233 for(i
=0; i
<child_cnt
; i
++) {
234 nsIDOMNodeList_Item(node_list
, i
, &child_node
);
236 nsIDOMNode_GetNodeType(child_node
, &node_type
);
237 if(node_type
== ELEMENT_NODE
) {
238 nsIDOMElement
*child_elem
;
240 const PRUnichar
*ctag
;
242 nsIDOMNode_QueryInterface(child_node
, &IID_nsIDOMElement
, (void**)&child_elem
);
244 nsAString_Init(&tag_str
, NULL
);
245 nsIDOMElement_GetTagName(child_elem
, &tag_str
);
246 nsAString_GetData(&tag_str
, &ctag
);
248 if(!strcmpiW(ctag
, tag
))
249 /* FIXME: remove node if there are no more attributes */
250 nsIDOMElement_RemoveAttribute(child_elem
, attr_str
);
252 nsAString_Finish(&tag_str
);
254 remove_child_attr(child_elem
, tag
, attr_str
);
256 nsIDOMNode_Release(child_elem
);
259 nsIDOMNode_Release(child_node
);
262 nsIDOMNodeList_Release(node_list
);
265 static void get_font_size(HTMLDocument
*This
, WCHAR
*ret
)
267 nsISelection
*nsselection
= get_ns_selection(This
);
268 nsIDOMElement
*elem
= NULL
;
269 nsIDOMNode
*node
= NULL
, *tmp_node
;
280 nsISelection_GetFocusNode(nsselection
, &node
);
281 nsISelection_Release(nsselection
);
284 nsres
= nsIDOMNode_GetNodeType(node
, &node_type
);
285 if(NS_FAILED(nsres
) || node_type
== DOCUMENT_NODE
)
288 if(node_type
== ELEMENT_NODE
) {
289 nsIDOMNode_QueryInterface(node
, &IID_nsIDOMElement
, (void**)&elem
);
291 nsAString_Init(&tag_str
, NULL
);
292 nsIDOMElement_GetTagName(elem
, &tag_str
);
293 nsAString_GetData(&tag_str
, &tag
);
295 if(!strcmpiW(tag
, fontW
)) {
296 nsAString size_str
, val_str
;
299 TRACE("found font tag %p\n", elem
);
301 nsAString_Init(&size_str
, sizeW
);
302 nsAString_Init(&val_str
, NULL
);
304 nsIDOMElement_GetAttribute(elem
, &size_str
, &val_str
);
305 nsAString_GetData(&val_str
, &val
);
308 TRACE("found size %s\n", debugstr_w(val
));
312 nsAString_Finish(&size_str
);
313 nsAString_Finish(&val_str
);
316 nsAString_Finish(&tag_str
);
318 nsIDOMElement_Release(elem
);
325 nsIDOMNode_GetParentNode(node
, &node
);
326 nsIDOMNode_Release(tmp_node
);
330 nsIDOMNode_Release(node
);
333 static void set_font_size(HTMLDocument
*This
, LPCWSTR size
)
335 nsISelection
*nsselection
;
337 nsIDOMHTMLElement
*elem
;
339 PRInt32 range_cnt
= 0;
343 if(!This
->doc_node
->nsdoc
) {
344 WARN("NULL nsdoc\n");
348 nsselection
= get_ns_selection(This
);
352 nsISelection_GetRangeCount(nsselection
, &range_cnt
);
354 FIXME("range_cnt %d not supprted\n", range_cnt
);
356 nsISelection_Release(nsselection
);
361 create_nselem(This
->doc_node
, fontW
, &elem
);
363 nsAString_Init(&size_str
, sizeW
);
364 nsAString_Init(&val_str
, size
);
366 nsIDOMElement_SetAttribute(elem
, &size_str
, &val_str
);
368 nsISelection_GetRangeAt(nsselection
, 0, &range
);
369 nsISelection_GetIsCollapsed(nsselection
, &collapsed
);
370 nsISelection_RemoveAllRanges(nsselection
);
372 nsIDOMRange_SurroundContents(range
, (nsIDOMNode
*)elem
);
375 nsISelection_Collapse(nsselection
, (nsIDOMNode
*)elem
, 0);
377 /* Remove all size attributes from the range */
378 remove_child_attr((nsIDOMElement
*)elem
, fontW
, &size_str
);
379 nsISelection_SelectAllChildren(nsselection
, (nsIDOMNode
*)elem
);
382 nsISelection_Release(nsselection
);
383 nsIDOMRange_Release(range
);
384 nsIDOMElement_Release(elem
);
386 nsAString_Finish(&size_str
);
387 nsAString_Finish(&val_str
);
389 set_dirty(This
, VARIANT_TRUE
);
392 static void handle_arrow_key(HTMLDocument
*This
, nsIDOMKeyEvent
*event
, const char * const cmds
[4])
397 nsIDOMKeyEvent_GetCtrlKey(event
, &b
);
401 nsIDOMKeyEvent_GetShiftKey(event
, &b
);
406 do_ns_editor_command(This
->doc_obj
->nscontainer
, cmds
[i
]);
408 nsIDOMKeyEvent_PreventDefault(event
);
411 void handle_edit_event(HTMLDocument
*This
, nsIDOMEvent
*event
)
413 nsIDOMKeyEvent
*key_event
;
416 nsIDOMEvent_QueryInterface(event
, &IID_nsIDOMKeyEvent
, (void**)&key_event
);
418 nsIDOMKeyEvent_GetKeyCode(key_event
, &code
);
422 static const char * const cmds
[] = {
425 NSCMD_SELECTCHARPREVIOUS
,
426 NSCMD_SELECTWORDPREVIOUS
430 handle_arrow_key(This
, key_event
, cmds
);
434 static const char * const cmds
[] = {
437 NSCMD_SELECTCHARNEXT
,
442 handle_arrow_key(This
, key_event
, cmds
);
446 static const char * const cmds
[] = {
449 NSCMD_SELECTLINEPREVIOUS
,
454 handle_arrow_key(This
, key_event
, cmds
);
458 static const char * const cmds
[] = {
461 NSCMD_SELECTLINENEXT
,
466 handle_arrow_key(This
, key_event
, cmds
);
469 case DOM_VK_DELETE
: {
470 static const char * const cmds
[] = {
471 NSCMD_DELETECHARFORWARD
,
472 NSCMD_DELETEWORDFORWARD
,
477 handle_arrow_key(This
, key_event
, cmds
);
481 static const char * const cmds
[] = {
484 NSCMD_SELECTBEGINLINE
,
489 handle_arrow_key(This
, key_event
, cmds
);
493 static const char * const cmds
[] = {
501 handle_arrow_key(This
, key_event
, cmds
);
506 nsIDOMKeyEvent_Release(key_event
);
509 void handle_edit_load(HTMLDocument
*This
)
511 This
->doc_obj
->nscontainer
->reset_focus
= GetFocus();
512 get_editor_controller(This
->doc_obj
->nscontainer
);
515 static void set_ns_fontname(HTMLDocument
*This
, const char *fontname
)
517 nsICommandParams
*nsparam
= create_nscommand_params();
519 nsICommandParams_SetCStringValue(nsparam
, NSSTATE_ATTRIBUTE
, fontname
);
520 do_ns_command(This
, NSCMD_FONTFACE
, nsparam
);
521 nsICommandParams_Release(nsparam
);
524 static HRESULT
exec_delete(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
526 TRACE("(%p)->(%p %p)\n", This
, in
, out
);
528 if(This
->doc_obj
->nscontainer
)
529 do_ns_editor_command(This
->doc_obj
->nscontainer
, NSCMD_DELETECHARFORWARD
);
531 update_doc(This
, UPDATE_UI
);
535 static HRESULT
exec_fontname(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
537 TRACE("(%p)->(%p %p)\n", This
, in
, out
);
539 if(!This
->doc_obj
->nscontainer
) {
540 update_doc(This
, UPDATE_UI
);
547 if(V_VT(in
) != VT_BSTR
) {
548 FIXME("Unsupported vt=%d\n", V_VT(out
));
552 TRACE("%s\n", debugstr_w(V_BSTR(in
)));
554 stra
= heap_strdupWtoA(V_BSTR(in
));
555 set_ns_fontname(This
, stra
);
558 update_doc(This
, UPDATE_UI
);
562 nsICommandParams
*nsparam
;
571 nsparam
= create_nscommand_params();
573 nsres
= get_ns_command_state(This
->doc_obj
->nscontainer
, NSCMD_FONTFACE
, nsparam
);
577 nsICommandParams_GetCStringValue(nsparam
, NSSTATE_ATTRIBUTE
, &stra
);
578 nsICommandParams_Release(nsparam
);
580 len
= MultiByteToWideChar(CP_ACP
, 0, stra
, -1, NULL
, 0);
581 strw
= heap_alloc(len
*sizeof(WCHAR
));
582 MultiByteToWideChar(CP_ACP
, 0, stra
, -1, strw
, len
);
585 V_BSTR(out
) = SysAllocString(strw
);
592 static HRESULT
exec_forecolor(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
594 TRACE("(%p)->(%p %p)\n", This
, in
, out
);
597 if(V_VT(in
) == VT_I4
) {
598 nsICommandParams
*nsparam
= create_nscommand_params();
601 sprintf(color_str
, "#%02x%02x%02x",
602 V_I4(in
)&0xff, (V_I4(in
)>>8)&0xff, (V_I4(in
)>>16)&0xff);
604 nsICommandParams_SetCStringValue(nsparam
, NSSTATE_ATTRIBUTE
, color_str
);
605 do_ns_command(This
, NSCMD_FONTCOLOR
, nsparam
);
607 nsICommandParams_Release(nsparam
);
609 FIXME("unsupported in vt=%d\n", V_VT(in
));
612 update_doc(This
, UPDATE_UI
);
616 FIXME("unsupported out\n");
623 static HRESULT
exec_fontsize(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
625 TRACE("(%p)->(%p %p)\n", This
, in
, out
);
630 get_font_size(This
, val
);
632 V_I4(out
) = strtolW(val
, NULL
, 10);
639 static const WCHAR format
[] = {'%','d',0};
640 wsprintfW(size
, format
, V_I4(in
));
641 set_font_size(This
, size
);
645 set_font_size(This
, V_BSTR(in
));
648 FIXME("unsupported vt %d\n", V_VT(in
));
651 update_doc(This
, UPDATE_UI
);
657 static HRESULT
exec_font(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
660 FIXME("(%p)->(%p %p)\n", This
, in
, out
);
664 static HRESULT
exec_selectall(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
666 TRACE("(%p)\n", This
);
669 FIXME("unsupported args\n");
671 if(This
->doc_obj
->nscontainer
)
672 do_ns_command(This
, NSCMD_SELECTALL
, NULL
);
674 update_doc(This
, UPDATE_UI
);
678 static HRESULT
exec_bold(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
680 TRACE("(%p)\n", This
);
683 FIXME("unsupported args\n");
685 if(This
->doc_obj
->nscontainer
)
686 do_ns_command(This
, NSCMD_BOLD
, NULL
);
688 update_doc(This
, UPDATE_UI
);
692 static HRESULT
exec_italic(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
694 TRACE("(%p)\n", This
);
697 FIXME("unsupported args\n");
699 if(This
->doc_obj
->nscontainer
)
700 do_ns_command(This
, NSCMD_ITALIC
, NULL
);
702 update_doc(This
, UPDATE_UI
);
706 static HRESULT
query_justify(HTMLDocument
*This
, OLECMD
*cmd
)
709 case IDM_JUSTIFYCENTER
:
710 TRACE("(%p) IDM_JUSTIFYCENTER\n", This
);
711 cmd
->cmdf
= query_align_status(This
, NSALIGN_CENTER
);
713 case IDM_JUSTIFYLEFT
:
714 TRACE("(%p) IDM_JUSTIFYLEFT\n", This
);
715 /* FIXME: We should set OLECMDF_LATCHED only if it's set explicitly. */
716 if(This
->doc_obj
->usermode
!= EDITMODE
|| This
->window
->readystate
< READYSTATE_INTERACTIVE
)
717 cmd
->cmdf
= OLECMDF_SUPPORTED
;
719 cmd
->cmdf
= OLECMDF_SUPPORTED
| OLECMDF_ENABLED
;
721 case IDM_JUSTIFYRIGHT
:
722 TRACE("(%p) IDM_JUSTIFYRIGHT\n", This
);
723 cmd
->cmdf
= query_align_status(This
, NSALIGN_RIGHT
);
730 static HRESULT
exec_justifycenter(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
732 TRACE("(%p)\n", This
);
735 FIXME("unsupported args\n");
737 set_ns_align(This
, NSALIGN_CENTER
);
738 update_doc(This
, UPDATE_UI
);
742 static HRESULT
exec_justifyleft(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
744 TRACE("(%p)\n", This
);
747 FIXME("unsupported args\n");
749 set_ns_align(This
, NSALIGN_LEFT
);
750 update_doc(This
, UPDATE_UI
);
754 static HRESULT
exec_justifyright(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
756 TRACE("(%p)\n", This
);
759 FIXME("unsupported args\n");
761 set_ns_align(This
, NSALIGN_RIGHT
);
762 update_doc(This
, UPDATE_UI
);
766 static HRESULT
exec_underline(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
768 TRACE("(%p)\n", This
);
771 FIXME("unsupported args\n");
773 do_ns_command(This
, NSCMD_UNDERLINE
, NULL
);
774 update_doc(This
, UPDATE_UI
);
778 static HRESULT
exec_horizontalline(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
780 TRACE("(%p)\n", This
);
783 FIXME("unsupported args\n");
785 do_ns_command(This
, NSCMD_INSERTHR
, NULL
);
786 update_doc(This
, UPDATE_UI
);
790 static HRESULT
exec_orderlist(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
792 TRACE("(%p)\n", This
);
795 FIXME("unsupported args\n");
797 do_ns_command(This
, NSCMD_OL
, NULL
);
798 update_doc(This
, UPDATE_UI
);
802 static HRESULT
exec_unorderlist(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
804 TRACE("(%p)\n", This
);
807 FIXME("unsupported args\n");
809 do_ns_command(This
, NSCMD_UL
, NULL
);
810 update_doc(This
, UPDATE_UI
);
814 static HRESULT
exec_indent(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
816 TRACE("(%p)\n", This
);
819 FIXME("unsupported args\n");
821 do_ns_command(This
, NSCMD_INDENT
, NULL
);
822 update_doc(This
, UPDATE_UI
);
826 static HRESULT
exec_outdent(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
828 TRACE("(%p)\n", This
);
831 FIXME("unsupported args\n");
833 do_ns_command(This
, NSCMD_OUTDENT
, NULL
);
834 update_doc(This
, UPDATE_UI
);
838 static HRESULT
exec_composesettings(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
842 if(out
|| !in
|| V_VT(in
) != VT_BSTR
) {
843 WARN("invalid arg\n");
847 TRACE("(%p)->(%x %s)\n", This
, cmdexecopt
, debugstr_w(V_BSTR(in
)));
849 update_doc(This
, UPDATE_UI
);
853 exec_bold(This
, cmdexecopt
, NULL
, NULL
);
854 ptr
= strchrW(ptr
, ',');
859 exec_italic(This
, cmdexecopt
, NULL
, NULL
);
860 ptr
= strchrW(ptr
, ',');
865 exec_underline(This
, cmdexecopt
, NULL
, NULL
);
866 ptr
= strchrW(ptr
, ',');
870 if(isdigitW(*++ptr
)) {
876 exec_fontsize(This
, cmdexecopt
, &v
, NULL
);
878 ptr
= strchrW(ptr
, ',');
883 FIXME("set font color\n");
884 ptr
= strchrW(ptr
, ',');
889 FIXME("set background color\n");
890 ptr
= strchrW(ptr
, ',');
899 V_BSTR(&v
) = SysAllocString(ptr
);
901 exec_fontname(This
, cmdexecopt
, &v
, NULL
);
903 SysFreeString(V_BSTR(&v
));
909 HRESULT
editor_exec_copy(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
911 update_doc(This
, UPDATE_UI
);
913 if(!This
->doc_obj
->nscontainer
)
916 do_ns_editor_command(This
->doc_obj
->nscontainer
, NSCMD_COPY
);
920 HRESULT
editor_exec_cut(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
922 update_doc(This
, UPDATE_UI
);
924 if(!This
->doc_obj
->nscontainer
)
927 do_ns_editor_command(This
->doc_obj
->nscontainer
, NSCMD_CUT
);
931 HRESULT
editor_exec_paste(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
933 update_doc(This
, UPDATE_UI
);
935 if(!This
->doc_obj
->nscontainer
)
938 do_ns_editor_command(This
->doc_obj
->nscontainer
, NSCMD_PASTE
);
942 static HRESULT
exec_setdirty(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
944 TRACE("(%p)->(%08x %p %p)\n", This
, cmdexecopt
, in
, out
);
949 if(V_VT(in
) == VT_BOOL
)
950 set_dirty(This
, V_BOOL(in
));
952 FIXME("unsupported vt=%d\n", V_VT(in
));
957 static HRESULT
query_edit_status(HTMLDocument
*This
, OLECMD
*cmd
)
961 TRACE("CGID_MSHTML: IDM_DELETE\n");
962 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
965 TRACE("CGID_MSHTML: IDM_FONTNAME\n");
966 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
969 TRACE("CGID_MSHTML: IDM_FONTSIZE\n");
970 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
973 TRACE("CGID_MSHTML: IDM_BOLD\n");
974 cmd
->cmdf
= query_ns_edit_status(This
, NSCMD_BOLD
);
977 TRACE("CGID_MSHTML: IDM_FORECOLOR\n");
978 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
981 TRACE("CGID_MSHTML: IDM_ITALIC\n");
982 cmd
->cmdf
= query_ns_edit_status(This
, NSCMD_ITALIC
);
985 TRACE("CGID_MSHTML: IDM_UNDERLINE\n");
986 cmd
->cmdf
= query_ns_edit_status(This
, NSCMD_UNDERLINE
);
988 case IDM_HORIZONTALLINE
:
989 TRACE("CGID_MSHTML: IDM_HORIZONTALLINE\n");
990 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
993 TRACE("CGID_MSHTML: IDM_ORDERLIST\n");
994 cmd
->cmdf
= query_ns_edit_status(This
, NSCMD_OL
);
996 case IDM_UNORDERLIST
:
997 TRACE("CGID_MSHTML: IDM_HORIZONTALLINE\n");
998 cmd
->cmdf
= query_ns_edit_status(This
, NSCMD_UL
);
1001 TRACE("CGID_MSHTML: IDM_INDENT\n");
1002 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
1005 TRACE("CGID_MSHTML: IDM_OUTDENT\n");
1006 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
1009 TRACE("CGID_MSHTML: IDM_HYPERLINK\n");
1010 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
1017 static INT_PTR CALLBACK
hyperlink_dlgproc(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
1019 static const WCHAR wszOther
[] = {'(','o','t','h','e','r',')',0};
1025 static const WCHAR wszFile
[] = {'f','i','l','e',':',0};
1026 static const WCHAR wszFtp
[] = {'f','t','p',':',0};
1027 static const WCHAR wszHttp
[] = {'h','t','t','p',':',0};
1028 static const WCHAR wszHttps
[] = {'h','t','t','p','s',':',0};
1029 static const WCHAR wszMailto
[] = {'m','a','i','l','t','o',':',0};
1030 static const WCHAR wszNews
[] = {'n','e','w','s',':',0};
1032 HWND hwndCB
= GetDlgItem(hwnd
, IDC_TYPE
);
1033 HWND hwndURL
= GetDlgItem(hwnd
, IDC_URL
);
1036 SetWindowLongPtrW(hwnd
, DWLP_USER
, lparam
);
1038 SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszOther
);
1039 SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszFile
);
1040 SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszFtp
);
1041 def_idx
= SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszHttp
);
1042 SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszHttps
);
1043 SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszMailto
);
1044 SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszNews
);
1045 SendMessageW(hwndCB
, CB_SETCURSEL
, def_idx
, 0);
1047 /* force the updating of the URL edit box */
1048 SendMessageW(hwnd
, WM_COMMAND
, MAKEWPARAM(IDC_TYPE
, CBN_SELCHANGE
), (LPARAM
)hwndCB
);
1051 len
= SendMessageW(hwndURL
, WM_GETTEXTLENGTH
, 0, 0);
1052 SendMessageW(hwndURL
, EM_SETSEL
, 0, len
);
1059 case MAKEWPARAM(IDCANCEL
, BN_CLICKED
):
1060 EndDialog(hwnd
, wparam
);
1062 case MAKEWPARAM(IDOK
, BN_CLICKED
):
1064 BSTR
*url
= (BSTR
*)GetWindowLongPtrW(hwnd
, DWLP_USER
);
1065 HWND hwndURL
= GetDlgItem(hwnd
, IDC_URL
);
1066 INT len
= GetWindowTextLengthW(hwndURL
);
1067 *url
= SysAllocStringLen(NULL
, len
+ 1);
1068 GetWindowTextW(hwndURL
, *url
, len
+ 1);
1069 EndDialog(hwnd
, wparam
);
1072 case MAKEWPARAM(IDC_TYPE
, CBN_SELCHANGE
):
1074 HWND hwndURL
= GetDlgItem(hwnd
, IDC_URL
);
1080 static const WCHAR wszSlashSlash
[] = {'/','/'};
1082 /* get string of currently selected hyperlink type */
1083 item
= SendMessageW((HWND
)lparam
, CB_GETCURSEL
, 0, 0);
1084 len
= SendMessageW((HWND
)lparam
, CB_GETLBTEXTLEN
, item
, 0);
1085 type
= HeapAlloc(GetProcessHeap(), 0, (len
+ 1) * sizeof(WCHAR
));
1086 SendMessageW((HWND
)lparam
, CB_GETLBTEXT
, item
, (LPARAM
)type
);
1088 if (!strcmpW(type
, wszOther
))
1091 /* get current URL */
1092 len
= GetWindowTextLengthW(hwndURL
);
1093 url
= HeapAlloc(GetProcessHeap(), 0, (len
+ strlenW(type
) + 3) * sizeof(WCHAR
));
1094 GetWindowTextW(hwndURL
, url
, len
+ 1);
1096 /* strip off old protocol */
1097 p
= strchrW(url
, ':');
1098 if (p
&& p
[1] == '/' && p
[2] == '/')
1101 memmove(url
+ (*type
!= '\0' ? strlenW(type
) + 2 : 0), p
, (len
+ 1 - (p
- url
)) * sizeof(WCHAR
));
1103 /* add new protocol */
1106 memcpy(url
, type
, strlenW(type
) * sizeof(WCHAR
));
1107 memcpy(url
+ strlenW(type
), wszSlashSlash
, sizeof(wszSlashSlash
));
1110 SetWindowTextW(hwndURL
, url
);
1112 HeapFree(GetProcessHeap(), 0, url
);
1113 HeapFree(GetProcessHeap(), 0, type
);
1119 EndDialog(hwnd
, IDCANCEL
);
1126 static HRESULT
exec_hyperlink(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
1128 nsAString href_str
, ns_url
;
1129 nsIHTMLEditor
*html_editor
;
1130 nsIDOMHTMLElement
*anchor_elem
;
1131 PRBool insert_link_at_caret
;
1132 nsISelection
*nsselection
;
1135 HRESULT hres
= E_FAIL
;
1137 static const WCHAR aW
[] = {'a',0};
1138 static const WCHAR hrefW
[] = {'h','r','e','f',0};
1140 TRACE("%p, 0x%x, %p, %p\n", This
, cmdexecopt
, in
, out
);
1142 if (cmdexecopt
== OLECMDEXECOPT_DONTPROMPTUSER
)
1144 if (!in
|| V_VT(in
) != VT_BSTR
)
1146 WARN("invalid arg\n");
1147 return E_INVALIDARG
;
1153 ret
= DialogBoxParamW(hInst
, MAKEINTRESOURCEW(IDD_HYPERLINK
), NULL
/* FIXME */, hyperlink_dlgproc
, (LPARAM
)&url
);
1155 return OLECMDERR_E_CANCELED
;
1158 if(!This
->doc_node
->nsdoc
) {
1159 WARN("NULL nsdoc\n");
1160 return E_UNEXPECTED
;
1163 nsselection
= get_ns_selection(This
);
1167 /* create an element for the link */
1168 create_nselem(This
->doc_node
, aW
, &anchor_elem
);
1170 nsAString_Init(&href_str
, hrefW
);
1171 nsAString_Init(&ns_url
, url
);
1172 nsIDOMElement_SetAttribute(anchor_elem
, &href_str
, &ns_url
);
1173 nsAString_Finish(&href_str
);
1175 nsISelection_GetIsCollapsed(nsselection
, &insert_link_at_caret
);
1177 /* create an element with text of URL */
1178 if (insert_link_at_caret
) {
1179 nsIDOMNode
*text_node
, *unused_node
;
1181 nsIDOMDocument_CreateTextNode(This
->doc_node
->nsdoc
, &ns_url
, (nsIDOMText
**)&text_node
);
1183 /* wrap the <a> tags around the text element */
1184 nsIDOMElement_AppendChild(anchor_elem
, text_node
, &unused_node
);
1185 nsIDOMNode_Release(text_node
);
1186 nsIDOMNode_Release(unused_node
);
1189 nsAString_Finish(&ns_url
);
1191 nsIEditor_QueryInterface(This
->doc_obj
->nscontainer
->editor
, &IID_nsIHTMLEditor
, (void **)&html_editor
);
1195 if (insert_link_at_caret
) {
1196 /* add them to the document at the caret position */
1197 nsres
= nsIHTMLEditor_InsertElementAtSelection(html_editor
, (nsIDOMElement
*)anchor_elem
, FALSE
);
1198 nsISelection_SelectAllChildren(nsselection
, (nsIDOMNode
*)anchor_elem
);
1199 }else /* add them around the selection using the magic provided to us by nsIHTMLEditor */
1200 nsres
= nsIHTMLEditor_InsertLinkAroundSelection(html_editor
, (nsIDOMElement
*)anchor_elem
);
1202 nsIHTMLEditor_Release(html_editor
);
1203 hres
= NS_SUCCEEDED(nsres
) ? S_OK
: E_FAIL
;
1206 nsISelection_Release(nsselection
);
1207 nsIDOMElement_Release(anchor_elem
);
1209 if (cmdexecopt
!= OLECMDEXECOPT_DONTPROMPTUSER
)
1212 TRACE("-- 0x%08x\n", hres
);
1216 static HRESULT
query_selall_status(HTMLDocument
*This
, OLECMD
*cmd
)
1218 TRACE("(%p)->(%p)\n", This
, cmd
);
1220 cmd
->cmdf
= OLECMDF_SUPPORTED
|OLECMDF_ENABLED
;
1224 const cmdtable_t editmode_cmds
[] = {
1225 {IDM_DELETE
, query_edit_status
, exec_delete
},
1226 {IDM_FONTNAME
, query_edit_status
, exec_fontname
},
1227 {IDM_FONTSIZE
, query_edit_status
, exec_fontsize
},
1228 {IDM_SELECTALL
, query_selall_status
, exec_selectall
},
1229 {IDM_FORECOLOR
, query_edit_status
, exec_forecolor
},
1230 {IDM_BOLD
, query_edit_status
, exec_bold
},
1231 {IDM_ITALIC
, query_edit_status
, exec_italic
},
1232 {IDM_JUSTIFYCENTER
, query_justify
, exec_justifycenter
},
1233 {IDM_JUSTIFYRIGHT
, query_justify
, exec_justifyright
},
1234 {IDM_JUSTIFYLEFT
, query_justify
, exec_justifyleft
},
1235 {IDM_FONT
, NULL
, exec_font
},
1236 {IDM_UNDERLINE
, query_edit_status
, exec_underline
},
1237 {IDM_HORIZONTALLINE
, query_edit_status
, exec_horizontalline
},
1238 {IDM_ORDERLIST
, query_edit_status
, exec_orderlist
},
1239 {IDM_UNORDERLIST
, query_edit_status
, exec_unorderlist
},
1240 {IDM_INDENT
, query_edit_status
, exec_indent
},
1241 {IDM_OUTDENT
, query_edit_status
, exec_outdent
},
1242 {IDM_COMPOSESETTINGS
, NULL
, exec_composesettings
},
1243 {IDM_HYPERLINK
, query_edit_status
, exec_hyperlink
},
1244 {IDM_SETDIRTY
, NULL
, exec_setdirty
},
1248 void init_editor(HTMLDocument
*This
)
1250 update_doc(This
, UPDATE_UI
);
1252 set_ns_fontname(This
, "Times New Roman");
1255 HRESULT
editor_is_dirty(HTMLDocument
*This
)
1259 if(!This
->doc_obj
->nscontainer
|| !This
->doc_obj
->nscontainer
->editor
)
1262 nsIEditor_GetDocumentModified(This
->doc_obj
->nscontainer
->editor
, &modified
);
1264 return modified
? S_OK
: S_FALSE
;