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 wszFont
[] = {'f','o','n','t',0};
97 static const WCHAR wszSize
[] = {'s','i','z','e',0};
99 void set_dirty(HTMLDocument
*This
, VARIANT_BOOL dirty
)
103 if(This
->usermode
!= EDITMODE
|| !This
->nscontainer
|| !This
->nscontainer
->editor
)
107 nsres
= nsIEditor_IncrementModificationCount(This
->nscontainer
->editor
, 1);
109 ERR("IncrementModificationCount failed: %08x\n", nsres
);
111 nsres
= nsIEditor_ResetModificationCount(This
->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
->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
->usermode
!= EDITMODE
|| This
->readystate
< READYSTATE_INTERACTIVE
)
154 return OLECMDF_SUPPORTED
;
156 if(This
->nscontainer
&& nscmd
) {
157 nsparam
= create_nscommand_params();
158 get_ns_command_state(This
->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
->nscontainer
)
175 nsparam
= create_nscommand_params();
176 nsICommandParams_SetCStringValue(nsparam
, NSSTATE_ATTRIBUTE
, align_str
);
178 do_ns_command(This
->nscontainer
, 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
->usermode
!= EDITMODE
|| This
->readystate
< READYSTATE_INTERACTIVE
)
189 return OLECMDF_SUPPORTED
;
191 if(This
->nscontainer
) {
192 nsparam
= create_nscommand_params();
193 get_ns_command_state(This
->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 nsIDOMWindow
*dom_window
;
208 nsISelection
*nsselection
= NULL
;
211 if(!This
->nscontainer
)
214 nsres
= nsIWebBrowser_GetContentDOMWindow(This
->nscontainer
->webbrowser
, &dom_window
);
218 nsIDOMWindow_GetSelection(dom_window
, &nsselection
);
219 nsIDOMWindow_Release(dom_window
);
225 static void remove_child_attr(nsIDOMElement
*elem
, LPCWSTR tag
, nsAString
*attr_str
)
228 PRUint32 child_cnt
, i
;
229 nsIDOMNode
*child_node
;
230 nsIDOMNodeList
*node_list
;
233 nsIDOMElement_HasChildNodes(elem
, &has_children
);
237 nsIDOMElement_GetChildNodes(elem
, &node_list
);
238 nsIDOMNodeList_GetLength(node_list
, &child_cnt
);
240 for(i
=0; i
<child_cnt
; i
++) {
241 nsIDOMNodeList_Item(node_list
, i
, &child_node
);
243 nsIDOMNode_GetNodeType(child_node
, &node_type
);
244 if(node_type
== ELEMENT_NODE
) {
245 nsIDOMElement
*child_elem
;
247 const PRUnichar
*ctag
;
249 nsIDOMNode_QueryInterface(child_node
, &IID_nsIDOMElement
, (void**)&child_elem
);
251 nsAString_Init(&tag_str
, NULL
);
252 nsIDOMElement_GetTagName(child_elem
, &tag_str
);
253 nsAString_GetData(&tag_str
, &ctag
);
255 if(!strcmpiW(ctag
, tag
))
256 /* FIXME: remove node if there are no more attributes */
257 nsIDOMElement_RemoveAttribute(child_elem
, attr_str
);
259 nsAString_Finish(&tag_str
);
261 remove_child_attr(child_elem
, tag
, attr_str
);
263 nsIDOMNode_Release(child_elem
);
266 nsIDOMNode_Release(child_node
);
269 nsIDOMNodeList_Release(node_list
);
272 static void get_font_size(HTMLDocument
*This
, WCHAR
*ret
)
274 nsISelection
*nsselection
= get_ns_selection(This
);
275 nsIDOMElement
*elem
= NULL
;
276 nsIDOMNode
*node
= NULL
, *tmp_node
;
287 nsISelection_GetFocusNode(nsselection
, &node
);
288 nsISelection_Release(nsselection
);
291 nsres
= nsIDOMNode_GetNodeType(node
, &node_type
);
292 if(NS_FAILED(nsres
) || node_type
== DOCUMENT_NODE
)
295 if(node_type
== ELEMENT_NODE
) {
296 nsIDOMNode_QueryInterface(node
, &IID_nsIDOMElement
, (void**)&elem
);
298 nsAString_Init(&tag_str
, NULL
);
299 nsIDOMElement_GetTagName(elem
, &tag_str
);
300 nsAString_GetData(&tag_str
, &tag
);
302 if(!strcmpiW(tag
, wszFont
)) {
303 nsAString size_str
, val_str
;
306 TRACE("found font tag %p\n", elem
);
308 nsAString_Init(&size_str
, wszSize
);
309 nsAString_Init(&val_str
, NULL
);
311 nsIDOMElement_GetAttribute(elem
, &size_str
, &val_str
);
312 nsAString_GetData(&val_str
, &val
);
315 TRACE("found size %s\n", debugstr_w(val
));
319 nsAString_Finish(&size_str
);
320 nsAString_Finish(&val_str
);
323 nsAString_Finish(&tag_str
);
325 nsIDOMElement_Release(elem
);
332 nsIDOMNode_GetParentNode(node
, &node
);
333 nsIDOMNode_Release(tmp_node
);
337 nsIDOMNode_Release(node
);
340 static void set_font_size(HTMLDocument
*This
, LPCWSTR size
)
342 nsISelection
*nsselection
;
346 PRInt32 range_cnt
= 0;
352 WARN("NULL nsdoc\n");
356 nsselection
= get_ns_selection(This
);
360 nsISelection_GetRangeCount(nsselection
, &range_cnt
);
362 FIXME("range_cnt %d not supprted\n", range_cnt
);
364 nsISelection_Release(nsselection
);
369 nsAString_Init(&font_str
, wszFont
);
370 nsAString_Init(&size_str
, wszSize
);
371 nsAString_Init(&val_str
, size
);
373 nsIDOMDocument_CreateElement(This
->nsdoc
, &font_str
, &elem
);
374 nsIDOMElement_SetAttribute(elem
, &size_str
, &val_str
);
376 nsISelection_GetRangeAt(nsselection
, 0, &range
);
377 nsISelection_GetIsCollapsed(nsselection
, &collapsed
);
378 nsISelection_RemoveAllRanges(nsselection
);
380 nsIDOMRange_SurroundContents(range
, (nsIDOMNode
*)elem
);
383 nsISelection_Collapse(nsselection
, (nsIDOMNode
*)elem
, 0);
385 /* Remove all size attributes from the range */
386 remove_child_attr(elem
, wszFont
, &size_str
);
387 nsISelection_SelectAllChildren(nsselection
, (nsIDOMNode
*)elem
);
390 nsISelection_Release(nsselection
);
391 nsIDOMRange_Release(range
);
392 nsIDOMElement_Release(elem
);
394 nsAString_Finish(&font_str
);
395 nsAString_Finish(&size_str
);
396 nsAString_Finish(&val_str
);
398 set_dirty(This
, VARIANT_TRUE
);
401 static void handle_arrow_key(HTMLDocument
*This
, nsIDOMKeyEvent
*event
, const char * const cmds
[4])
406 nsIDOMKeyEvent_GetCtrlKey(event
, &b
);
410 nsIDOMKeyEvent_GetShiftKey(event
, &b
);
415 do_ns_editor_command(This
->nscontainer
, cmds
[i
]);
417 nsIDOMKeyEvent_PreventDefault(event
);
420 void handle_edit_event(HTMLDocument
*This
, nsIDOMEvent
*event
)
422 nsIDOMKeyEvent
*key_event
;
425 nsIDOMEvent_QueryInterface(event
, &IID_nsIDOMKeyEvent
, (void**)&key_event
);
427 nsIDOMKeyEvent_GetKeyCode(key_event
, &code
);
431 static const char * const cmds
[] = {
434 NSCMD_SELECTCHARPREVIOUS
,
435 NSCMD_SELECTWORDPREVIOUS
439 handle_arrow_key(This
, key_event
, cmds
);
443 static const char * const cmds
[] = {
446 NSCMD_SELECTCHARNEXT
,
451 handle_arrow_key(This
, key_event
, cmds
);
455 static const char * const cmds
[] = {
458 NSCMD_SELECTLINEPREVIOUS
,
463 handle_arrow_key(This
, key_event
, cmds
);
467 static const char * const cmds
[] = {
470 NSCMD_SELECTLINENEXT
,
475 handle_arrow_key(This
, key_event
, cmds
);
478 case DOM_VK_DELETE
: {
479 static const char * const cmds
[] = {
480 NSCMD_DELETECHARFORWARD
,
481 NSCMD_DELETEWORDFORWARD
,
486 handle_arrow_key(This
, key_event
, cmds
);
490 static const char * const cmds
[] = {
493 NSCMD_SELECTBEGINLINE
,
498 handle_arrow_key(This
, key_event
, cmds
);
502 static const char * const cmds
[] = {
510 handle_arrow_key(This
, key_event
, cmds
);
515 nsIDOMKeyEvent_Release(key_event
);
518 void handle_edit_load(HTMLDocument
*This
)
520 This
->nscontainer
->reset_focus
= GetFocus();
521 get_editor_controller(This
->nscontainer
);
524 static void set_ns_fontname(NSContainer
*This
, const char *fontname
)
526 nsICommandParams
*nsparam
= create_nscommand_params();
528 nsICommandParams_SetCStringValue(nsparam
, NSSTATE_ATTRIBUTE
, fontname
);
529 do_ns_command(This
, NSCMD_FONTFACE
, nsparam
);
530 nsICommandParams_Release(nsparam
);
533 static HRESULT
exec_delete(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
535 TRACE("(%p)->(%p %p)\n", This
, in
, out
);
537 if(This
->nscontainer
)
538 do_ns_editor_command(This
->nscontainer
, NSCMD_DELETECHARFORWARD
);
540 update_doc(This
, UPDATE_UI
);
544 static HRESULT
exec_fontname(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
546 TRACE("(%p)->(%p %p)\n", This
, in
, out
);
548 if(!This
->nscontainer
) {
549 update_doc(This
, UPDATE_UI
);
556 if(V_VT(in
) != VT_BSTR
) {
557 FIXME("Unsupported vt=%d\n", V_VT(out
));
561 TRACE("%s\n", debugstr_w(V_BSTR(in
)));
563 stra
= heap_strdupWtoA(V_BSTR(in
));
564 set_ns_fontname(This
->nscontainer
, stra
);
567 update_doc(This
, UPDATE_UI
);
571 nsICommandParams
*nsparam
;
580 nsparam
= create_nscommand_params();
582 nsres
= get_ns_command_state(This
->nscontainer
, NSCMD_FONTFACE
, nsparam
);
586 nsICommandParams_GetCStringValue(nsparam
, NSSTATE_ATTRIBUTE
, &stra
);
587 nsICommandParams_Release(nsparam
);
589 len
= MultiByteToWideChar(CP_ACP
, 0, stra
, -1, NULL
, 0);
590 strw
= heap_alloc(len
*sizeof(WCHAR
));
591 MultiByteToWideChar(CP_ACP
, 0, stra
, -1, strw
, -1);
594 V_BSTR(out
) = SysAllocString(strw
);
601 static HRESULT
exec_forecolor(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
603 TRACE("(%p)->(%p %p)\n", This
, in
, out
);
606 if(V_VT(in
) == VT_I4
) {
607 nsICommandParams
*nsparam
= create_nscommand_params();
610 sprintf(color_str
, "#%02x%02x%02x",
611 V_I4(in
)&0xff, (V_I4(in
)>>8)&0xff, (V_I4(in
)>>16)&0xff);
613 nsICommandParams_SetCStringValue(nsparam
, NSSTATE_ATTRIBUTE
, color_str
);
614 do_ns_command(This
->nscontainer
, NSCMD_FONTCOLOR
, nsparam
);
616 nsICommandParams_Release(nsparam
);
618 FIXME("unsupported in vt=%d\n", V_VT(in
));
621 update_doc(This
, UPDATE_UI
);
625 FIXME("unsupported out\n");
632 static HRESULT
exec_fontsize(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
634 TRACE("(%p)->(%p %p)\n", This
, in
, out
);
639 get_font_size(This
, val
);
641 V_I4(out
) = strtolW(val
, NULL
, 10);
648 static const WCHAR format
[] = {'%','d',0};
649 wsprintfW(size
, format
, V_I4(in
));
650 set_font_size(This
, size
);
654 set_font_size(This
, V_BSTR(in
));
657 FIXME("unsupported vt %d\n", V_VT(in
));
660 update_doc(This
, UPDATE_UI
);
666 static HRESULT
exec_font(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
669 FIXME("(%p)->(%p %p)\n", This
, in
, out
);
673 static HRESULT
exec_selectall(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
675 TRACE("(%p)\n", This
);
678 FIXME("unsupported args\n");
680 if(This
->nscontainer
)
681 do_ns_command(This
->nscontainer
, NSCMD_SELECTALL
, NULL
);
683 update_doc(This
, UPDATE_UI
);
687 static HRESULT
exec_bold(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
689 TRACE("(%p)\n", This
);
692 FIXME("unsupported args\n");
694 if(This
->nscontainer
)
695 do_ns_command(This
->nscontainer
, NSCMD_BOLD
, NULL
);
697 update_doc(This
, UPDATE_UI
);
701 static HRESULT
exec_italic(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
703 TRACE("(%p)\n", This
);
706 FIXME("unsupported args\n");
708 if(This
->nscontainer
)
709 do_ns_command(This
->nscontainer
, NSCMD_ITALIC
, NULL
);
711 update_doc(This
, UPDATE_UI
);
715 static HRESULT
query_justify(HTMLDocument
*This
, OLECMD
*cmd
)
718 case IDM_JUSTIFYCENTER
:
719 TRACE("(%p) IDM_JUSTIFYCENTER\n", This
);
720 cmd
->cmdf
= query_align_status(This
, NSALIGN_CENTER
);
722 case IDM_JUSTIFYLEFT
:
723 TRACE("(%p) IDM_JUSTIFYLEFT\n", This
);
724 /* FIXME: We should set OLECMDF_LATCHED only if it's set explicitly. */
725 if(This
->usermode
!= EDITMODE
|| This
->readystate
< READYSTATE_INTERACTIVE
)
726 cmd
->cmdf
= OLECMDF_SUPPORTED
;
728 cmd
->cmdf
= OLECMDF_SUPPORTED
| OLECMDF_ENABLED
;
730 case IDM_JUSTIFYRIGHT
:
731 TRACE("(%p) IDM_JUSTIFYRIGHT\n", This
);
732 cmd
->cmdf
= query_align_status(This
, NSALIGN_RIGHT
);
739 static HRESULT
exec_justifycenter(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
741 TRACE("(%p)\n", This
);
744 FIXME("unsupported args\n");
746 set_ns_align(This
, NSALIGN_CENTER
);
747 update_doc(This
, UPDATE_UI
);
751 static HRESULT
exec_justifyleft(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
753 TRACE("(%p)\n", This
);
756 FIXME("unsupported args\n");
758 set_ns_align(This
, NSALIGN_LEFT
);
759 update_doc(This
, UPDATE_UI
);
763 static HRESULT
exec_justifyright(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
765 TRACE("(%p)\n", This
);
768 FIXME("unsupported args\n");
770 set_ns_align(This
, NSALIGN_RIGHT
);
771 update_doc(This
, UPDATE_UI
);
775 static HRESULT
exec_underline(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
777 TRACE("(%p)\n", This
);
780 FIXME("unsupported args\n");
782 if(This
->nscontainer
)
783 do_ns_command(This
->nscontainer
, NSCMD_UNDERLINE
, NULL
);
785 update_doc(This
, UPDATE_UI
);
789 static HRESULT
exec_horizontalline(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
791 TRACE("(%p)\n", This
);
794 FIXME("unsupported args\n");
796 if(This
->nscontainer
)
797 do_ns_command(This
->nscontainer
, NSCMD_INSERTHR
, NULL
);
799 update_doc(This
, UPDATE_UI
);
803 static HRESULT
exec_orderlist(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
805 TRACE("(%p)\n", This
);
808 FIXME("unsupported args\n");
810 if(This
->nscontainer
)
811 do_ns_command(This
->nscontainer
, NSCMD_OL
, NULL
);
813 update_doc(This
, UPDATE_UI
);
817 static HRESULT
exec_unorderlist(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
819 TRACE("(%p)\n", This
);
822 FIXME("unsupported args\n");
824 if(This
->nscontainer
)
825 do_ns_command(This
->nscontainer
, NSCMD_UL
, NULL
);
827 update_doc(This
, UPDATE_UI
);
831 static HRESULT
exec_indent(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
833 TRACE("(%p)\n", This
);
836 FIXME("unsupported args\n");
838 if(This
->nscontainer
)
839 do_ns_command(This
->nscontainer
, NSCMD_INDENT
, NULL
);
841 update_doc(This
, UPDATE_UI
);
845 static HRESULT
exec_outdent(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
847 TRACE("(%p)\n", This
);
850 FIXME("unsupported args\n");
852 if(This
->nscontainer
)
853 do_ns_command(This
->nscontainer
, NSCMD_OUTDENT
, NULL
);
855 update_doc(This
, UPDATE_UI
);
859 static HRESULT
exec_composesettings(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
863 if(out
|| !in
|| V_VT(in
) != VT_BSTR
) {
864 WARN("invalid arg\n");
868 TRACE("(%p)->(%x %s)\n", This
, cmdexecopt
, debugstr_w(V_BSTR(in
)));
870 update_doc(This
, UPDATE_UI
);
874 exec_bold(This
, cmdexecopt
, NULL
, NULL
);
875 ptr
= strchrW(ptr
, ',');
880 exec_italic(This
, cmdexecopt
, NULL
, NULL
);
881 ptr
= strchrW(ptr
, ',');
886 exec_underline(This
, cmdexecopt
, NULL
, NULL
);
887 ptr
= strchrW(ptr
, ',');
891 if(isdigitW(*++ptr
)) {
897 exec_fontsize(This
, cmdexecopt
, &v
, NULL
);
899 ptr
= strchrW(ptr
, ',');
904 FIXME("set font color\n");
905 ptr
= strchrW(ptr
, ',');
910 FIXME("set background color\n");
911 ptr
= strchrW(ptr
, ',');
920 V_BSTR(&v
) = SysAllocString(ptr
);
922 exec_fontname(This
, cmdexecopt
, &v
, NULL
);
924 SysFreeString(V_BSTR(&v
));
930 HRESULT
editor_exec_copy(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
932 update_doc(This
, UPDATE_UI
);
934 if(!This
->nscontainer
)
937 do_ns_editor_command(This
->nscontainer
, NSCMD_COPY
);
941 HRESULT
editor_exec_cut(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
943 update_doc(This
, UPDATE_UI
);
945 if(!This
->nscontainer
)
948 do_ns_editor_command(This
->nscontainer
, NSCMD_CUT
);
952 HRESULT
editor_exec_paste(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
954 update_doc(This
, UPDATE_UI
);
956 if(!This
->nscontainer
)
959 do_ns_editor_command(This
->nscontainer
, NSCMD_PASTE
);
963 static HRESULT
exec_setdirty(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
965 TRACE("(%p)->(%08x %p %p)\n", This
, cmdexecopt
, in
, out
);
970 if(V_VT(in
) == VT_BOOL
)
971 set_dirty(This
, V_BOOL(in
));
973 FIXME("unsupported vt=%d\n", V_VT(in
));
978 static HRESULT
query_edit_status(HTMLDocument
*This
, OLECMD
*cmd
)
982 TRACE("CGID_MSHTML: IDM_DELETE\n");
983 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
986 TRACE("CGID_MSHTML: IDM_FONTNAME\n");
987 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
990 TRACE("CGID_MSHTML: IDM_FONTSIZE\n");
991 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
994 TRACE("CGID_MSHTML: IDM_BOLD\n");
995 cmd
->cmdf
= query_ns_edit_status(This
, NSCMD_BOLD
);
998 TRACE("CGID_MSHTML: IDM_FORECOLOR\n");
999 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
1002 TRACE("CGID_MSHTML: IDM_ITALIC\n");
1003 cmd
->cmdf
= query_ns_edit_status(This
, NSCMD_ITALIC
);
1006 TRACE("CGID_MSHTML: IDM_UNDERLINE\n");
1007 cmd
->cmdf
= query_ns_edit_status(This
, NSCMD_UNDERLINE
);
1009 case IDM_HORIZONTALLINE
:
1010 TRACE("CGID_MSHTML: IDM_HORIZONTALLINE\n");
1011 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
1014 TRACE("CGID_MSHTML: IDM_ORDERLIST\n");
1015 cmd
->cmdf
= query_ns_edit_status(This
, NSCMD_OL
);
1017 case IDM_UNORDERLIST
:
1018 TRACE("CGID_MSHTML: IDM_HORIZONTALLINE\n");
1019 cmd
->cmdf
= query_ns_edit_status(This
, NSCMD_UL
);
1022 TRACE("CGID_MSHTML: IDM_INDENT\n");
1023 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
1026 TRACE("CGID_MSHTML: IDM_OUTDENT\n");
1027 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
1030 TRACE("CGID_MSHTML: IDM_HYPERLINK\n");
1031 cmd
->cmdf
= query_ns_edit_status(This
, NULL
);
1038 static INT_PTR CALLBACK
hyperlink_dlgproc(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
1040 static const WCHAR wszOther
[] = {'(','o','t','h','e','r',')',0};
1046 static const WCHAR wszFile
[] = {'f','i','l','e',':',0};
1047 static const WCHAR wszFtp
[] = {'f','t','p',':',0};
1048 static const WCHAR wszHttp
[] = {'h','t','t','p',':',0};
1049 static const WCHAR wszHttps
[] = {'h','t','t','p','s',':',0};
1050 static const WCHAR wszMailto
[] = {'m','a','i','l','t','o',':',0};
1051 static const WCHAR wszNews
[] = {'n','e','w','s',':',0};
1053 HWND hwndCB
= GetDlgItem(hwnd
, IDC_TYPE
);
1054 HWND hwndURL
= GetDlgItem(hwnd
, IDC_URL
);
1057 SetWindowLongPtrW(hwnd
, DWLP_USER
, lparam
);
1059 SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszOther
);
1060 SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszFile
);
1061 SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszFtp
);
1062 def_idx
= SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszHttp
);
1063 SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszHttps
);
1064 SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszMailto
);
1065 SendMessageW(hwndCB
, CB_INSERTSTRING
, -1, (LPARAM
)wszNews
);
1066 SendMessageW(hwndCB
, CB_SETCURSEL
, def_idx
, 0);
1068 /* force the updating of the URL edit box */
1069 SendMessageW(hwnd
, WM_COMMAND
, MAKEWPARAM(IDC_TYPE
, CBN_SELCHANGE
), (LPARAM
)hwndCB
);
1072 len
= SendMessageW(hwndURL
, WM_GETTEXTLENGTH
, 0, 0);
1073 SendMessageW(hwndURL
, EM_SETSEL
, 0, len
);
1080 case MAKEWPARAM(IDCANCEL
, BN_CLICKED
):
1081 EndDialog(hwnd
, wparam
);
1083 case MAKEWPARAM(IDOK
, BN_CLICKED
):
1085 BSTR
*url
= (BSTR
*)GetWindowLongPtrW(hwnd
, DWLP_USER
);
1086 HWND hwndURL
= GetDlgItem(hwnd
, IDC_URL
);
1087 INT len
= GetWindowTextLengthW(hwndURL
);
1088 *url
= SysAllocStringLen(NULL
, len
+ 1);
1089 GetWindowTextW(hwndURL
, *url
, len
+ 1);
1090 EndDialog(hwnd
, wparam
);
1093 case MAKEWPARAM(IDC_TYPE
, CBN_SELCHANGE
):
1095 HWND hwndURL
= GetDlgItem(hwnd
, IDC_URL
);
1101 static const WCHAR wszSlashSlash
[] = {'/','/'};
1103 /* get string of currently selected hyperlink type */
1104 item
= SendMessageW((HWND
)lparam
, CB_GETCURSEL
, 0, 0);
1105 len
= SendMessageW((HWND
)lparam
, CB_GETLBTEXTLEN
, item
, 0);
1106 type
= HeapAlloc(GetProcessHeap(), 0, (len
+ 1) * sizeof(WCHAR
));
1107 SendMessageW((HWND
)lparam
, CB_GETLBTEXT
, item
, (LPARAM
)type
);
1109 if (!strcmpW(type
, wszOther
))
1112 /* get current URL */
1113 len
= GetWindowTextLengthW(hwndURL
);
1114 url
= HeapAlloc(GetProcessHeap(), 0, (len
+ strlenW(type
) + 3) * sizeof(WCHAR
));
1115 GetWindowTextW(hwndURL
, url
, len
+ 1);
1117 /* strip off old protocol */
1118 p
= strchrW(url
, ':');
1119 if (p
&& p
[1] == '/' && p
[2] == '/')
1122 memmove(url
+ (*type
!= '\0' ? strlenW(type
) + 2 : 0), p
, (len
+ 1 - (p
- url
)) * sizeof(WCHAR
));
1124 /* add new protocol */
1127 memcpy(url
, type
, strlenW(type
) * sizeof(WCHAR
));
1128 memcpy(url
+ strlenW(type
), wszSlashSlash
, sizeof(wszSlashSlash
));
1131 SetWindowTextW(hwndURL
, url
);
1133 HeapFree(GetProcessHeap(), 0, url
);
1134 HeapFree(GetProcessHeap(), 0, type
);
1140 EndDialog(hwnd
, IDCANCEL
);
1147 static HRESULT
exec_hyperlink(HTMLDocument
*This
, DWORD cmdexecopt
, VARIANT
*in
, VARIANT
*out
)
1149 nsAString a_str
, href_str
, ns_url
;
1150 nsIHTMLEditor
*html_editor
;
1151 nsIDOMElement
*anchor_elem
;
1152 PRBool insert_link_at_caret
;
1153 nsISelection
*nsselection
;
1156 HRESULT hres
= E_FAIL
;
1158 static const WCHAR wszA
[] = {'a',0};
1159 static const WCHAR wszHref
[] = {'h','r','e','f',0};
1161 TRACE("%p, 0x%x, %p, %p\n", This
, cmdexecopt
, in
, out
);
1163 if (cmdexecopt
== OLECMDEXECOPT_DONTPROMPTUSER
)
1165 if (!in
|| V_VT(in
) != VT_BSTR
)
1167 WARN("invalid arg\n");
1168 return E_INVALIDARG
;
1174 ret
= DialogBoxParamW(hInst
, MAKEINTRESOURCEW(IDD_HYPERLINK
), NULL
/* FIXME */, hyperlink_dlgproc
, (LPARAM
)&url
);
1176 return OLECMDERR_E_CANCELED
;
1180 WARN("NULL nsdoc\n");
1181 return E_UNEXPECTED
;
1184 nsselection
= get_ns_selection(This
);
1188 nsAString_Init(&a_str
, wszA
);
1189 nsAString_Init(&href_str
, wszHref
);
1190 nsAString_Init(&ns_url
, url
);
1192 /* create an element for the link */
1193 nsIDOMDocument_CreateElement(This
->nsdoc
, &a_str
, &anchor_elem
);
1194 nsIDOMElement_SetAttribute(anchor_elem
, &href_str
, &ns_url
);
1196 nsAString_Finish(&href_str
);
1197 nsAString_Finish(&a_str
);
1199 nsISelection_GetIsCollapsed(nsselection
, &insert_link_at_caret
);
1201 /* create an element with text of URL */
1202 if (insert_link_at_caret
) {
1203 nsIDOMNode
*text_node
, *unused_node
;
1205 nsIDOMDocument_CreateTextNode(This
->nsdoc
, &ns_url
, (nsIDOMText
**)&text_node
);
1207 /* wrap the <a> tags around the text element */
1208 nsIDOMElement_AppendChild(anchor_elem
, text_node
, &unused_node
);
1209 nsIDOMNode_Release(text_node
);
1210 nsIDOMNode_Release(unused_node
);
1213 nsAString_Finish(&ns_url
);
1215 nsIEditor_QueryInterface(This
->nscontainer
->editor
, &IID_nsIHTMLEditor
, (void **)&html_editor
);
1219 if (insert_link_at_caret
) {
1220 /* add them to the document at the caret position */
1221 nsres
= nsIHTMLEditor_InsertElementAtSelection(html_editor
, anchor_elem
, FALSE
);
1222 nsISelection_SelectAllChildren(nsselection
, (nsIDOMNode
*)anchor_elem
);
1223 }else /* add them around the selection using the magic provided to us by nsIHTMLEditor */
1224 nsres
= nsIHTMLEditor_InsertLinkAroundSelection(html_editor
, anchor_elem
);
1226 nsIHTMLEditor_Release(html_editor
);
1227 hres
= NS_SUCCEEDED(nsres
) ? S_OK
: E_FAIL
;
1230 nsISelection_Release(nsselection
);
1231 nsIDOMElement_Release(anchor_elem
);
1233 if (cmdexecopt
!= OLECMDEXECOPT_DONTPROMPTUSER
)
1236 TRACE("-- 0x%08x\n", hres
);
1240 static HRESULT
query_selall_status(HTMLDocument
*This
, OLECMD
*cmd
)
1242 TRACE("(%p)->(%p)\n", This
, cmd
);
1244 cmd
->cmdf
= OLECMDF_SUPPORTED
|OLECMDF_ENABLED
;
1248 const cmdtable_t editmode_cmds
[] = {
1249 {IDM_DELETE
, query_edit_status
, exec_delete
},
1250 {IDM_FONTNAME
, query_edit_status
, exec_fontname
},
1251 {IDM_FONTSIZE
, query_edit_status
, exec_fontsize
},
1252 {IDM_SELECTALL
, query_selall_status
, exec_selectall
},
1253 {IDM_FORECOLOR
, query_edit_status
, exec_forecolor
},
1254 {IDM_BOLD
, query_edit_status
, exec_bold
},
1255 {IDM_ITALIC
, query_edit_status
, exec_italic
},
1256 {IDM_JUSTIFYCENTER
, query_justify
, exec_justifycenter
},
1257 {IDM_JUSTIFYRIGHT
, query_justify
, exec_justifyright
},
1258 {IDM_JUSTIFYLEFT
, query_justify
, exec_justifyleft
},
1259 {IDM_FONT
, NULL
, exec_font
},
1260 {IDM_UNDERLINE
, query_edit_status
, exec_underline
},
1261 {IDM_HORIZONTALLINE
, query_edit_status
, exec_horizontalline
},
1262 {IDM_ORDERLIST
, query_edit_status
, exec_orderlist
},
1263 {IDM_UNORDERLIST
, query_edit_status
, exec_unorderlist
},
1264 {IDM_INDENT
, query_edit_status
, exec_indent
},
1265 {IDM_OUTDENT
, query_edit_status
, exec_outdent
},
1266 {IDM_COMPOSESETTINGS
, NULL
, exec_composesettings
},
1267 {IDM_HYPERLINK
, query_edit_status
, exec_hyperlink
},
1268 {IDM_SETDIRTY
, NULL
, exec_setdirty
},
1272 void init_editor(HTMLDocument
*This
)
1274 update_doc(This
, UPDATE_UI
);
1276 if(!This
->nscontainer
)
1279 set_ns_fontname(This
->nscontainer
, "Times New Roman");
1282 HRESULT
editor_is_dirty(HTMLDocument
*This
)
1286 if(!This
->nscontainer
|| !This
->nscontainer
->editor
)
1289 nsIEditor_GetDocumentModified(This
->nscontainer
->editor
, &modified
);
1291 return modified
? S_OK
: S_FALSE
;