Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
18ef6bc1
Commit
18ef6bc1
authored
Jul 15, 2020
by
Gustavo Carneiro
Browse files
Move HistoryScroll class to a new file.
parent
9af85cd2
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/CMakeLists.txt
View file @
18ef6bc1
...
...
@@ -65,6 +65,7 @@ set(konsoleprivate_SRCS ${sessionadaptors_SRCS}
Filter.cpp
History.cpp
HistoryFile.cpp
HistoryScroll.cpp
HistorySizeDialog.cpp
widgets/HistorySizeWidget.cpp
widgets/IncrementalSearchBar.cpp
...
...
src/History.cpp
View file @
18ef6bc1
...
...
@@ -58,23 +58,6 @@ using namespace Konsole;
at constant costs.
*/
// History Scroll abstract base class //////////////////////////////////////
HistoryScroll
::
HistoryScroll
(
HistoryType
*
t
)
:
_historyType
(
t
)
{
}
HistoryScroll
::~
HistoryScroll
()
{
delete
_historyType
;
}
bool
HistoryScroll
::
hasScroll
()
{
return
true
;
}
// History Scroll File //////////////////////////////////////
/*
...
...
src/History.h
View file @
18ef6bc1
...
...
@@ -33,56 +33,13 @@
// History
#include "HistoryFile.h"
#include "HistoryScroll.h"
// Konsole
#include "Character.h"
namespace
Konsole
{
//////////////////////////////////////////////////////////////////////
// Abstract base class for file and buffer versions
//////////////////////////////////////////////////////////////////////
class
HistoryType
;
class
KONSOLEPRIVATE_EXPORT
HistoryScroll
{
public:
explicit
HistoryScroll
(
HistoryType
*
);
virtual
~
HistoryScroll
();
virtual
bool
hasScroll
();
// access to history
virtual
int
getLines
()
=
0
;
virtual
int
getLineLen
(
int
lineno
)
=
0
;
virtual
void
getCells
(
int
lineno
,
int
colno
,
int
count
,
Character
res
[])
=
0
;
virtual
bool
isWrappedLine
(
int
lineNumber
)
=
0
;
// adding lines.
virtual
void
addCells
(
const
Character
a
[],
int
count
)
=
0
;
// convenience method - this is virtual so that subclasses can take advantage
// of QVector's implicit copying
virtual
void
addCellsVector
(
const
QVector
<
Character
>
&
cells
)
{
addCells
(
cells
.
data
(),
cells
.
size
());
}
virtual
void
addLine
(
bool
previousWrapped
=
false
)
=
0
;
//
// FIXME: Passing around constant references to HistoryType instances
// is very unsafe, because those references will no longer
// be valid if the history scroll is deleted.
//
const
HistoryType
&
getType
()
const
{
return
*
_historyType
;
}
protected:
HistoryType
*
_historyType
;
};
//////////////////////////////////////////////////////////////////////
// File-based history (e.g. file log, no limitation in length)
//////////////////////////////////////////////////////////////////////
...
...
src/HistoryScroll.cpp
0 → 100644
View file @
18ef6bc1
/*
This file is part of Konsole, an X terminal.
Copyright 1997,1998 by Lars Doelle <lars.doelle@on-line.de>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
*/
// Own
#include "HistoryScroll.h"
#include "History.h"
using
namespace
Konsole
;
HistoryScroll
::
HistoryScroll
(
HistoryType
*
t
)
:
_historyType
(
t
)
{
}
HistoryScroll
::~
HistoryScroll
()
{
delete
_historyType
;
}
bool
HistoryScroll
::
hasScroll
()
{
return
true
;
}
src/HistoryScroll.h
0 → 100644
View file @
18ef6bc1
/*
This file is part of Konsole, an X terminal.
Copyright 1997,1998 by Lars Doelle <lars.doelle@on-line.de>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
*/
#ifndef HISTORYSCROLL_H
#define HISTORYSCROLL_H
#include "konsoleprivate_export.h"
// Konsole
#include "Character.h"
// Qt
#include <QVector>
namespace
Konsole
{
//////////////////////////////////////////////////////////////////////
// Abstract base class for file and buffer versions
//////////////////////////////////////////////////////////////////////
class
HistoryType
;
class
KONSOLEPRIVATE_EXPORT
HistoryScroll
{
public:
explicit
HistoryScroll
(
HistoryType
*
);
virtual
~
HistoryScroll
();
virtual
bool
hasScroll
();
// access to history
virtual
int
getLines
()
=
0
;
virtual
int
getLineLen
(
int
lineno
)
=
0
;
virtual
void
getCells
(
int
lineno
,
int
colno
,
int
count
,
Character
res
[])
=
0
;
virtual
bool
isWrappedLine
(
int
lineNumber
)
=
0
;
// adding lines.
virtual
void
addCells
(
const
Character
a
[],
int
count
)
=
0
;
// convenience method - this is virtual so that subclasses can take advantage
// of QVector's implicit copying
virtual
void
addCellsVector
(
const
QVector
<
Character
>
&
cells
)
{
addCells
(
cells
.
data
(),
cells
.
size
());
}
virtual
void
addLine
(
bool
previousWrapped
=
false
)
=
0
;
//
// FIXME: Passing around constant references to HistoryType instances
// is very unsafe, because those references will no longer
// be valid if the history scroll is deleted.
//
const
HistoryType
&
getType
()
const
{
return
*
_historyType
;
}
protected:
HistoryType
*
_historyType
;
};
}
#endif
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