Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b150ea67
Commit
b150ea67
authored
Aug 16, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 17, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Constify some variables.
parent
106b9001
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
16 deletions
+16
-16
editor.h
dlls/riched20/editor.h
+4
-4
style.c
dlls/riched20/style.c
+6
-6
undo.c
dlls/riched20/undo.c
+1
-1
wrap.c
dlls/riched20/wrap.c
+1
-1
writer.c
dlls/riched20/writer.c
+4
-4
No files found.
dlls/riched20/editor.h
View file @
b150ea67
...
...
@@ -71,8 +71,8 @@ CHARFORMAT2W *ME_ToCF2W(CHARFORMAT2W *to, CHARFORMAT2W *from);
void
ME_CopyToCF2W
(
CHARFORMAT2W
*
to
,
CHARFORMAT2W
*
from
);
CHARFORMAT2W
*
ME_ToCFAny
(
CHARFORMAT2W
*
to
,
CHARFORMAT2W
*
from
);
void
ME_CopyToCFAny
(
CHARFORMAT2W
*
to
,
CHARFORMAT2W
*
from
);
void
ME_CopyCharFormat
(
CHARFORMAT2W
*
pDest
,
CHARFORMAT2W
*
pSrc
);
/* only works with 2W structs */
void
ME_CharFormatFromLogFont
(
HDC
hDC
,
LOGFONTW
*
lf
,
CHARFORMAT2W
*
fmt
);
/* ditto */
void
ME_CopyCharFormat
(
CHARFORMAT2W
*
pDest
,
const
CHARFORMAT2W
*
pSrc
);
/* only works with 2W structs */
void
ME_CharFormatFromLogFont
(
HDC
hDC
,
const
LOGFONTW
*
lf
,
CHARFORMAT2W
*
fmt
);
/* ditto */
/* list.c */
void
ME_InsertBefore
(
ME_DisplayItem
*
diWhere
,
ME_DisplayItem
*
diWhat
);
...
...
@@ -213,7 +213,7 @@ BOOL ME_UpdateSelection(ME_TextEditor *editor, const ME_Cursor *pTempCursor);
/* wrap.c */
void
ME_PrepareParagraphForWrapping
(
ME_Context
*
c
,
ME_DisplayItem
*
tp
);
ME_DisplayItem
*
ME_MakeRow
(
int
height
,
int
baseline
,
int
width
);
void
ME_InsertRowStart
(
ME_WrapContext
*
wc
,
ME_DisplayItem
*
pEnd
);
void
ME_InsertRowStart
(
ME_WrapContext
*
wc
,
const
ME_DisplayItem
*
pEnd
);
void
ME_WrapTextParagraph
(
ME_Context
*
c
,
ME_DisplayItem
*
tp
);
BOOL
ME_WrapMarkedParagraphs
(
ME_TextEditor
*
editor
);
void
ME_InvalidateMarkedParagraphs
(
ME_TextEditor
*
editor
);
...
...
@@ -268,7 +268,7 @@ ME_TextEditor *ME_MakeEditor(HWND hWnd);
void
ME_DestroyEditor
(
ME_TextEditor
*
editor
);
void
ME_SendOldNotify
(
ME_TextEditor
*
editor
,
int
nCode
);
void
ME_LinkNotify
(
ME_TextEditor
*
editor
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
);
ME_UndoItem
*
ME_AddUndoItem
(
ME_TextEditor
*
editor
,
ME_DIType
type
,
ME_DisplayItem
*
di
);
ME_UndoItem
*
ME_AddUndoItem
(
ME_TextEditor
*
editor
,
ME_DIType
type
,
const
ME_DisplayItem
*
p
di
);
void
ME_CommitUndo
(
ME_TextEditor
*
editor
);
void
ME_Undo
(
ME_TextEditor
*
editor
);
void
ME_Redo
(
ME_TextEditor
*
editor
);
...
...
dlls/riched20/style.c
View file @
b150ea67
...
...
@@ -181,7 +181,7 @@ ME_Style *ME_ApplyStyle(ME_Style *sSrc, CHARFORMAT2W *style)
return
s
;
}
void
ME_CopyCharFormat
(
CHARFORMAT2W
*
pDest
,
CHARFORMAT2W
*
pSrc
)
void
ME_CopyCharFormat
(
CHARFORMAT2W
*
pDest
,
const
CHARFORMAT2W
*
pSrc
)
{
/* using this with non-2W structs is forbidden */
assert
(
pSrc
->
cbSize
==
sizeof
(
CHARFORMAT2W
));
...
...
@@ -189,7 +189,7 @@ void ME_CopyCharFormat(CHARFORMAT2W *pDest, CHARFORMAT2W *pSrc)
CopyMemory
(
pDest
,
pSrc
,
sizeof
(
CHARFORMAT2W
));
}
static
void
ME_DumpStyleEffect
(
char
**
p
,
const
char
*
name
,
CHARFORMAT2W
*
fmt
,
int
mask
)
static
void
ME_DumpStyleEffect
(
char
**
p
,
const
char
*
name
,
const
CHARFORMAT2W
*
fmt
,
int
mask
)
{
*
p
+=
sprintf
(
*
p
,
"%-22s%s
\n
"
,
name
,
(
fmt
->
dwMask
&
mask
)
?
((
fmt
->
dwEffects
&
mask
)
?
"YES"
:
"no"
)
:
"N/A"
);
}
...
...
@@ -253,7 +253,7 @@ void ME_DumpStyleToBuf(CHARFORMAT2W *pFmt, char buf[2048])
static
void
ME_LogFontFromStyle
(
HDC
hDC
,
LOGFONTW
*
lf
,
ME_Style
*
s
,
int
nZoomNumerator
,
int
nZoomDenominator
)
ME_LogFontFromStyle
(
HDC
hDC
,
LOGFONTW
*
lf
,
const
ME_Style
*
s
,
int
nZoomNumerator
,
int
nZoomDenominator
)
{
int
rx
,
ry
;
rx
=
GetDeviceCaps
(
hDC
,
LOGPIXELSX
);
...
...
@@ -286,10 +286,10 @@ ME_LogFontFromStyle(HDC hDC, LOGFONTW *lf, ME_Style *s, int nZoomNumerator, int
lf
->
lfCharSet
=
s
->
fmt
.
bCharSet
;
}
void
ME_CharFormatFromLogFont
(
HDC
hDC
,
LOGFONTW
*
lf
,
CHARFORMAT2W
*
fmt
)
void
ME_CharFormatFromLogFont
(
HDC
hDC
,
const
LOGFONTW
*
lf
,
CHARFORMAT2W
*
fmt
)
{
int
rx
,
ry
;
ME_InitCharFormat2W
(
fmt
);
rx
=
GetDeviceCaps
(
hDC
,
LOGPIXELSX
);
ry
=
GetDeviceCaps
(
hDC
,
LOGPIXELSY
);
...
...
@@ -308,7 +308,7 @@ void ME_CharFormatFromLogFont(HDC hDC, LOGFONTW *lf, CHARFORMAT2W *fmt)
fmt
->
bCharSet
=
lf
->
lfCharSet
;
}
static
BOOL
ME_IsFontEqual
(
LOGFONTW
*
p1
,
LOGFONTW
*
p2
)
static
BOOL
ME_IsFontEqual
(
const
LOGFONTW
*
p1
,
const
LOGFONTW
*
p2
)
{
if
(
memcmp
(
p1
,
p2
,
sizeof
(
LOGFONTW
)
-
sizeof
(
p1
->
lfFaceName
)))
return
FALSE
;
...
...
dlls/riched20/undo.c
View file @
b150ea67
...
...
@@ -48,7 +48,7 @@ void ME_EmptyUndoStack(ME_TextEditor *editor)
}
}
ME_UndoItem
*
ME_AddUndoItem
(
ME_TextEditor
*
editor
,
ME_DIType
type
,
ME_DisplayItem
*
pdi
)
{
ME_UndoItem
*
ME_AddUndoItem
(
ME_TextEditor
*
editor
,
ME_DIType
type
,
const
ME_DisplayItem
*
pdi
)
{
if
(
editor
->
nUndoMode
==
umIgnore
)
return
NULL
;
else
if
(
editor
->
nUndoLimit
==
0
)
...
...
dlls/riched20/wrap.c
View file @
b150ea67
...
...
@@ -51,7 +51,7 @@ static void ME_BeginRow(ME_WrapContext *wc)
wc
->
pt
.
x
=
0
;
}
void
ME_InsertRowStart
(
ME_WrapContext
*
wc
,
ME_DisplayItem
*
pEnd
)
void
ME_InsertRowStart
(
ME_WrapContext
*
wc
,
const
ME_DisplayItem
*
pEnd
)
{
ME_DisplayItem
*
p
,
*
row
,
*
para
;
int
ascent
=
0
,
descent
=
0
,
width
=
0
,
shift
=
0
,
align
=
0
;
...
...
dlls/riched20/writer.c
View file @
b150ea67
...
...
@@ -25,7 +25,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(richedit);
static
BOOL
ME_StreamOutRTFText
(
ME_OutStream
*
pStream
,
WCHAR
*
text
,
LONG
nChars
);
ME_StreamOutRTFText
(
ME_OutStream
*
pStream
,
const
WCHAR
*
text
,
LONG
nChars
);
static
ME_OutStream
*
...
...
@@ -192,7 +192,7 @@ ME_StreamOutRTFHeader(ME_OutStream *pStream, int dwFormat)
static
BOOL
ME_StreamOutRTFFontAndColorTbl
(
ME_OutStream
*
pStream
,
ME_DisplayItem
*
pFirstRun
,
ME_DisplayItem
*
pLastRun
)
ME_StreamOutRTFFontAndColorTbl
(
ME_OutStream
*
pStream
,
ME_DisplayItem
*
pFirstRun
,
const
ME_DisplayItem
*
pLastRun
)
{
ME_DisplayItem
*
item
=
pFirstRun
;
ME_FontTableItem
*
table
=
pStream
->
fonttbl
;
...
...
@@ -282,7 +282,7 @@ ME_StreamOutRTFFontAndColorTbl(ME_OutStream *pStream, ME_DisplayItem *pFirstRun,
static
BOOL
ME_StreamOutRTFParaProps
(
ME_OutStream
*
pStream
,
ME_DisplayItem
*
para
)
ME_StreamOutRTFParaProps
(
ME_OutStream
*
pStream
,
const
ME_DisplayItem
*
para
)
{
PARAFORMAT2
*
fmt
=
para
->
member
.
para
.
pFmt
;
char
props
[
STREAMOUT_BUFFER_SIZE
]
=
""
;
...
...
@@ -579,7 +579,7 @@ ME_StreamOutRTFCharProps(ME_OutStream *pStream, CHARFORMAT2W *fmt)
static
BOOL
ME_StreamOutRTFText
(
ME_OutStream
*
pStream
,
WCHAR
*
text
,
LONG
nChars
)
ME_StreamOutRTFText
(
ME_OutStream
*
pStream
,
const
WCHAR
*
text
,
LONG
nChars
)
{
char
buffer
[
STREAMOUT_BUFFER_SIZE
];
int
pos
=
0
;
...
...
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