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
10e676ab
Commit
10e676ab
authored
May 01, 2008
by
Dylan Smith
Committed by
Alexandre Julliard
May 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
richedit: Updated editor.h to reflect the contents of source files.
parent
c1e68642
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
editor.h
dlls/riched20/editor.h
+11
-8
No files found.
dlls/riched20/editor.h
View file @
10e676ab
...
...
@@ -189,9 +189,6 @@ void ME_InsertTextFromCursor(ME_TextEditor *editor, int nCursor,
void
ME_InsertEndRowFromCursor
(
ME_TextEditor
*
editor
,
int
nCursor
);
BOOL
ME_ArrowKey
(
ME_TextEditor
*
ed
,
int
nVKey
,
BOOL
extend
,
BOOL
ctrl
);
void
ME_InitContext
(
ME_Context
*
c
,
ME_TextEditor
*
editor
,
HDC
hDC
);
void
ME_DestroyContext
(
ME_Context
*
c
,
HWND
release
);
ME_Style
*
GetInsertStyle
(
ME_TextEditor
*
editor
,
int
nCursor
);
void
ME_MustBeWrapped
(
ME_Context
*
c
,
ME_DisplayItem
*
para
);
void
ME_GetCursorCoordinates
(
ME_TextEditor
*
editor
,
ME_Cursor
*
pCursor
,
int
*
x
,
int
*
y
,
int
*
height
);
...
...
@@ -209,6 +206,10 @@ int ME_GetTextLengthEx(ME_TextEditor *editor, const GETTEXTLENGTHEX *how);
ME_Style
*
ME_GetSelectionInsertStyle
(
ME_TextEditor
*
editor
);
BOOL
ME_UpdateSelection
(
ME_TextEditor
*
editor
,
const
ME_Cursor
*
pTempCursor
);
/* context.c */
void
ME_InitContext
(
ME_Context
*
c
,
ME_TextEditor
*
editor
,
HDC
hDC
);
void
ME_DestroyContext
(
ME_Context
*
c
,
HWND
release
);
/* wrap.c */
BOOL
ME_WrapMarkedParagraphs
(
ME_TextEditor
*
editor
);
void
ME_InvalidateMarkedParagraphs
(
ME_TextEditor
*
editor
);
...
...
@@ -272,11 +273,6 @@ 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
,
const
ME_DisplayItem
*
pdi
);
void
ME_CommitUndo
(
ME_TextEditor
*
editor
);
void
ME_Undo
(
ME_TextEditor
*
editor
);
void
ME_Redo
(
ME_TextEditor
*
editor
);
void
ME_EmptyUndoStack
(
ME_TextEditor
*
editor
);
int
ME_GetTextW
(
ME_TextEditor
*
editor
,
WCHAR
*
buffer
,
int
nStart
,
int
nChars
,
BOOL
bCRLF
);
ME_DisplayItem
*
ME_FindItemAtOffset
(
ME_TextEditor
*
editor
,
ME_DIType
nItemType
,
int
nOffset
,
int
*
nItemOffset
);
void
ME_StreamInFill
(
ME_InStream
*
stream
);
...
...
@@ -284,6 +280,13 @@ int ME_AutoURLDetect(ME_TextEditor *editor, WCHAR curChar);
extern
int
me_debug
;
extern
void
DoWrap
(
ME_TextEditor
*
editor
);
/* undo.c */
ME_UndoItem
*
ME_AddUndoItem
(
ME_TextEditor
*
editor
,
ME_DIType
type
,
const
ME_DisplayItem
*
pdi
);
void
ME_CommitUndo
(
ME_TextEditor
*
editor
);
void
ME_Undo
(
ME_TextEditor
*
editor
);
void
ME_Redo
(
ME_TextEditor
*
editor
);
void
ME_EmptyUndoStack
(
ME_TextEditor
*
editor
);
/* writer.c */
LRESULT
ME_StreamOutRange
(
ME_TextEditor
*
editor
,
DWORD
dwFormat
,
int
nStart
,
int
nTo
,
EDITSTREAM
*
stream
);
LRESULT
ME_StreamOut
(
ME_TextEditor
*
editor
,
DWORD
dwFormat
,
EDITSTREAM
*
stream
);
...
...
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