Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Hunger
qt-creator
Commits
21787ca4
Commit
21787ca4
authored
16 years ago
by
hjk
Committed by
Roberto Raggi
16 years ago
Browse files
Options
Downloads
Patches
Plain Diff
handle PageUp, PageDown, Ctrl-F, Ctrl-B
parent
56898268
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/fakevim/handler.cpp
+46
-8
46 additions, 8 deletions
src/plugins/fakevim/handler.cpp
with
46 additions
and
8 deletions
src/plugins/fakevim/handler.cpp
+
46
−
8
View file @
21787ca4
...
...
@@ -64,6 +64,7 @@ using namespace FakeVim::Internal;
// FakeVimHandler
//
///////////////////////////////////////////////////////////////////////
const
int
ParagraphSeparator
=
0x00002029
;
using
namespace
Qt
;
...
...
@@ -110,6 +111,12 @@ public:
int
rightDist
()
const
{
return
m_tc
.
block
().
length
()
-
leftDist
()
-
1
;
}
bool
atEol
()
const
{
return
m_tc
.
atBlockEnd
()
&&
m_tc
.
block
().
length
()
>
1
;
}
// all zero-based counting
int
cursorLineOnScreen
()
const
;
int
linesOnScreen
()
const
;
int
cursorLineInDocument
()
const
;
void
scrollToLineInDocument
(
int
line
);
void
moveToFirstNonBlankOnLine
();
FakeVimHandler
*
q
;
...
...
@@ -255,14 +262,7 @@ void FakeVimHandler::Private::handleCommandMode(int key, const QString &text)
}
else
if
(
m_submode
==
ZSubMode
)
{
if
(
key
==
Key_Return
)
{
// cursor line to top of window, cursor on first non-blank
QRect
rect
=
m_editor
->
cursorRect
();
int
blocksUp
=
rect
.
y
()
/
rect
.
height
();
int
blockNumber
=
m_tc
.
block
().
blockNumber
();
QScrollBar
*
scrollBar
=
m_editor
->
verticalScrollBar
();
if
(
blockNumber
!=
blocksUp
)
{
scrollBar
->
setValue
(
scrollBar
->
value
()
*
blockNumber
/
(
blockNumber
-
blocksUp
));
}
scrollToLineInDocument
(
cursorLineInDocument
());
moveToFirstNonBlankOnLine
();
finishMovement
();
}
else
{
...
...
@@ -380,6 +380,12 @@ void FakeVimHandler::Private::handleCommandMode(int key, const QString &text)
finishMovement
();
}
else
if
(
key
==
'z'
)
{
m_submode
=
ZSubMode
;
}
else
if
(
key
==
Key_PageDown
||
key
==
control
(
'f'
))
{
m_tc
.
movePosition
(
Down
,
KeepAnchor
,
count
()
*
(
linesOnScreen
()
-
2
));
finishMovement
();
}
else
if
(
key
==
Key_PageUp
||
key
==
control
(
'b'
))
{
m_tc
.
movePosition
(
Up
,
KeepAnchor
,
count
()
*
(
linesOnScreen
()
-
2
));
finishMovement
();
}
else
if
(
key
==
Key_Backspace
)
{
m_tc
.
deletePreviousChar
();
}
else
if
(
key
==
Key_Delete
)
{
...
...
@@ -408,6 +414,12 @@ void FakeVimHandler::Private::handleInsertMode(int key, const QString &text)
m_tc
.
deletePreviousChar
();
}
else
if
(
key
==
Key_Delete
)
{
m_tc
.
deleteChar
();
}
else
if
(
key
==
Key_PageDown
||
key
==
control
(
'f'
))
{
m_tc
.
movePosition
(
Down
,
KeepAnchor
,
count
()
*
(
linesOnScreen
()
-
2
));
finishMovement
();
}
else
if
(
key
==
Key_PageUp
||
key
==
control
(
'b'
))
{
m_tc
.
movePosition
(
Up
,
KeepAnchor
,
count
()
*
(
linesOnScreen
()
-
2
));
finishMovement
();
}
else
{
m_tc
.
insertText
(
text
);
}
...
...
@@ -503,6 +515,32 @@ void FakeVimHandler::Private::moveToFirstNonBlankOnLine()
}
}
int
FakeVimHandler
::
Private
::
cursorLineOnScreen
()
const
{
QRect
rect
=
m_editor
->
cursorRect
();
return
rect
.
y
()
/
rect
.
height
();
}
int
FakeVimHandler
::
Private
::
linesOnScreen
()
const
{
QRect
rect
=
m_editor
->
cursorRect
();
//qDebug() << m_editor->height() / rect.height();
return
m_editor
->
height
()
/
rect
.
height
();
}
int
FakeVimHandler
::
Private
::
cursorLineInDocument
()
const
{
//qDebug() << "CURSOR LINE IN DOCUMENT " << m_tc.block().blockNumber();
return
m_tc
.
block
().
blockNumber
();
}
void
FakeVimHandler
::
Private
::
scrollToLineInDocument
(
int
line
)
{
// FIXME: works only for QPlainTextEdit
QScrollBar
*
scrollBar
=
m_editor
->
verticalScrollBar
();
scrollBar
->
setValue
(
line
);
}
///////////////////////////////////////////////////////////////////////
//
// FakeVimHandler
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment