Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8f897239
Commit
8f897239
authored
Mar 06, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLTextAreaElement implementation.
parent
54cce2e7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
0 deletions
+36
-0
Makefile.in
dlls/mshtml/Makefile.in
+1
-0
htmlelem.c
dlls/mshtml/htmlelem.c
+3
-0
htmltextarea.c
dlls/mshtml/htmltextarea.c
+0
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-0
nsiface.idl
dlls/mshtml/nsiface.idl
+31
-0
No files found.
dlls/mshtml/Makefile.in
View file @
8f897239
...
@@ -16,6 +16,7 @@ C_SRCS = \
...
@@ -16,6 +16,7 @@ C_SRCS = \
htmlinput.c
\
htmlinput.c
\
htmlnode.c
\
htmlnode.c
\
htmlselect.c
\
htmlselect.c
\
htmltextarea.c
\
main.c
\
main.c
\
navigate.c
\
navigate.c
\
nsembed.c
\
nsembed.c
\
...
...
dlls/mshtml/htmlelem.c
View file @
8f897239
...
@@ -924,6 +924,7 @@ void HTMLElement_Create(HTMLDOMNode *node)
...
@@ -924,6 +924,7 @@ void HTMLElement_Create(HTMLDOMNode *node)
static
const
WCHAR
wszINPUT
[]
=
{
'I'
,
'N'
,
'P'
,
'U'
,
'T'
,
0
};
static
const
WCHAR
wszINPUT
[]
=
{
'I'
,
'N'
,
'P'
,
'U'
,
'T'
,
0
};
static
const
WCHAR
wszSELECT
[]
=
{
'S'
,
'E'
,
'L'
,
'E'
,
'C'
,
'T'
,
0
};
static
const
WCHAR
wszSELECT
[]
=
{
'S'
,
'E'
,
'L'
,
'E'
,
'C'
,
'T'
,
0
};
static
const
WCHAR
wszTEXTAREA
[]
=
{
'T'
,
'E'
,
'X'
,
'T'
,
'A'
,
'R'
,
'E'
,
'A'
,
0
};
ret
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
HTMLElement
));
ret
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
HTMLElement
));
ret
->
lpHTMLElementVtbl
=
&
HTMLElementVtbl
;
ret
->
lpHTMLElementVtbl
=
&
HTMLElementVtbl
;
...
@@ -948,6 +949,8 @@ void HTMLElement_Create(HTMLDOMNode *node)
...
@@ -948,6 +949,8 @@ void HTMLElement_Create(HTMLDOMNode *node)
HTMLInputElement_Create
(
ret
);
HTMLInputElement_Create
(
ret
);
else
if
(
!
strcmpW
(
class_name
,
wszSELECT
))
else
if
(
!
strcmpW
(
class_name
,
wszSELECT
))
HTMLSelectElement_Create
(
ret
);
HTMLSelectElement_Create
(
ret
);
else
if
(
!
strcmpW
(
class_name
,
wszTEXTAREA
))
HTMLTextAreaElement_Create
(
ret
);
nsAString_Finish
(
&
class_name_str
);
nsAString_Finish
(
&
class_name_str
);
}
}
...
...
dlls/mshtml/htmltextarea.c
0 → 100644
View file @
8f897239
This diff is collapsed.
Click to expand it.
dlls/mshtml/mshtml_private.h
View file @
8f897239
...
@@ -214,6 +214,7 @@ IHlink *Hlink_Create(void);
...
@@ -214,6 +214,7 @@ IHlink *Hlink_Create(void);
void
HTMLElement_Create
(
HTMLDOMNode
*
);
void
HTMLElement_Create
(
HTMLDOMNode
*
);
void
HTMLInputElement_Create
(
HTMLElement
*
);
void
HTMLInputElement_Create
(
HTMLElement
*
);
void
HTMLSelectElement_Create
(
HTMLElement
*
);
void
HTMLSelectElement_Create
(
HTMLElement
*
);
void
HTMLTextAreaElement_Create
(
HTMLElement
*
);
HTMLDOMNode
*
get_node
(
HTMLDocument
*
,
nsIDOMNode
*
);
HTMLDOMNode
*
get_node
(
HTMLDocument
*
,
nsIDOMNode
*
);
void
release_nodes
(
HTMLDocument
*
);
void
release_nodes
(
HTMLDocument
*
);
...
...
dlls/mshtml/nsiface.idl
View file @
8f897239
...
@@ -542,6 +542,37 @@ interface nsIDOMHTMLSelectElement : nsIDOMHTMLElement
...
@@ -542,6 +542,37 @@ interface nsIDOMHTMLSelectElement : nsIDOMHTMLElement
[
[
object,
object,
uuid(a6cf9094-15b3-11d2-932e-00805f8add32)
]
interface nsIDOMHTMLTextAreaElement : nsIDOMHTMLElement
{
nsresult GetDefaultValue(nsAString *aDefaultValue);
nsresult SetDefaultValue(const nsAString *aDefaultValue);
nsresult GetForm(nsIDOMHTMLFormElement **aForm);
nsresult GetAccessKey(nsAString *aAccessKey);
nsresult SetAccessKey(const nsAString *aAccessKey);
nsresult GetCols(PRInt32 *aCols);
nsresult SetCols(PRInt32 aCols);
nsresult GetDisabled(PRBool *aDisabled);
nsresult SetDisabled(PRBool aDisabled);
nsresult GetName(nsAString *aName);
nsresult SetName(const nsAString *aName);
nsresult GetReadOnly(PRBool *aReadOnly);
nsresult SetReadOnly(PRBool aReadOnly);
nsresult GetRows(PRInt32 *aRows);
nsresult SetRows(PRInt32 aRows);
nsresult GetTabIndex(PRInt32 *aTabIndex);
nsresult SetTabIndex(PRInt32 aTabIndex);
nsresult GetType(nsAString *aType);
nsresult GetValue(nsAString *aValue);
nsresult SetValue(const nsAString *aValue);
nsresult Blur();
nsresult Focus();
nsresult Select();
}
[
object,
uuid(94928ab3-8b63-11d3-989d-001083010e9b)
uuid(94928ab3-8b63-11d3-989d-001083010e9b)
]
]
interface nsIURIContentListener : nsISupports
interface nsIURIContentListener : nsISupports
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment