11#ifndef KATE_VIEW_HELPERS_H
12#define KATE_VIEW_HELPERS_H
16#include <KSelectAction>
27#include "katetextline.h"
28#include <ktexteditor/cursor.h>
29#include <ktexteditor/message.h>
42class KateViewInternal;
45#define MAXFOLDINGCOLORS 16
69 ~KateMessageLayout()
override;
72 int count()
const override;
74 void setGeometry(
const QRect &rect)
override;
75 QSize sizeHint()
const override;
84 ItemWrapper() =
default;
111 ~KateScrollBar()
override;
112 QSize sizeHint()
const override;
116 inline bool showMarks()
const
120 inline void setShowMarks(
bool b)
126 inline bool showMiniMap()
const
128 return m_showMiniMap;
130 void setShowMiniMap(
bool b);
132 inline bool miniMapAll()
const
136 inline void setMiniMapAll(
bool b)
143 inline bool miniMapWidth()
const
145 return m_miniMapWidth;
147 inline void setMiniMapWidth(
int width)
149 m_miniMapWidth =
width;
154 inline void queuePixmapUpdate()
156 m_updateTimer.start();
160 void sliderMMBMoved(
int value);
171#if QT_VERSION >= QT_VERSION_CHECK(6, 10, 0)
176 void sliderMaybeMoved(
int value);
183 void showTextPreview();
186 void showTextPreviewDelayed();
187 void hideTextPreview();
190 void recomputeMarksPositions();
195 int minimapYToStdY(
int y);
197 struct ColumnRangeWithColor {
208 bool m_middleMouseDown;
209 bool m_leftMouseDown;
211 KTextEditor::ViewPrivate *m_view;
213 class KateViewInternal *m_viewInternal;
215 QTimer m_delayTextPreviewTimer;
222 bool m_needsUpdateOnShow;
227 QRect m_stdGroveRect;
228 QRect m_mapGroveRect;
232 QLabel m_tooltipLineNoInfo;
237 static const unsigned char characterOpacity[256];
240class KateIconBorder :
public QWidget
245 KateIconBorder(KateViewInternal *internalView,
QWidget *
parent);
246 ~KateIconBorder()
override;
248 QSize sizeHint()
const override;
251 int lineNumberWidth()
const;
253 void setIconBorderOn(
bool enable);
254 void setLineNumbersOn(
bool enable);
255 void setRelLineNumbersOn(
bool enable);
256 void setAnnotationBorderOn(
bool enable);
257 void setDynWrapIndicators(
int state);
258 int dynWrapIndicators()
const
260 return m_dynWrapIndicators;
262 bool dynWrapIndicatorsOn()
const
264 return m_dynWrapIndicatorsOn;
266 void setFoldingMarkersOn(
bool enable);
267 void toggleIconBorder()
269 setIconBorderOn(!iconBorderOn());
271 void toggleLineNumbers()
273 setLineNumbersOn(!lineNumbersOn());
275 void toggleFoldingMarkers()
277 setFoldingMarkersOn(!foldingMarkersOn());
279 inline bool iconBorderOn()
const
281 return m_iconBorderOn;
283 inline bool lineNumbersOn()
const
285 return m_lineNumbersOn;
287 inline bool viRelNumbersOn()
const
289 return m_relLineNumbersOn;
291 inline bool foldingMarkersOn()
const
293 return m_foldingMarkersOn;
295 inline bool annotationBorderOn()
const
297 return m_annotationBorderOn;
300 void updateForCursorLineChange();
310 BorderArea positionToArea(
const QPoint &)
const;
312 KTextEditor::AbstractAnnotationItemDelegate *annotationItemDelegate()
const;
313 void setAnnotationItemDelegate(KTextEditor::AbstractAnnotationItemDelegate *delegate);
314 inline bool uniformAnnotationItemSizes()
const
316 return m_hasUniformAnnotationItemSizes;
318 inline void setAnnotationUniformItemSizes(
bool enable)
320 m_hasUniformAnnotationItemSizes = enable;
324 void updateAnnotationBorderWidth();
325 void updateAnnotationLine(
int line);
326 void annotationModelChanged(KTextEditor::AnnotationModel *oldmodel, KTextEditor::AnnotationModel *newmodel);
327 void displayRangeChanged();
330 void dragEnterEvent(QDragEnterEvent *)
override;
331 void dragMoveEvent(QDragMoveEvent *
event)
override;
332 void dropEvent(QDropEvent *
event)
override;
333 void paintEvent(QPaintEvent *)
override;
336 void mousePressEvent(QMouseEvent *)
override;
337 void mouseMoveEvent(QMouseEvent *)
override;
338 void mouseReleaseEvent(QMouseEvent *)
override;
339 void mouseDoubleClickEvent(QMouseEvent *)
override;
340 void contextMenuEvent(QContextMenuEvent *e)
override;
341 void leaveEvent(QEvent *
event)
override;
342 void wheelEvent(QWheelEvent *e)
override;
344 void enterEvent(QEnterEvent *e)
override;
346 void showMarkMenu(uint line,
const QPoint &
pos);
348 void hideAnnotationTooltip();
349 void removeAnnotationHovering();
350 void showAnnotationMenu(
int line,
const QPoint &
pos);
351 void calcAnnotationBorderWidth();
353 void initStyleOption(KTextEditor::StyleOptionAnnotationItem *styleOption)
const;
354 void setStyleOptionLineData(KTextEditor::StyleOptionAnnotationItem *styleOption,
357 const KTextEditor::AnnotationModel *model,
358 const QString &annotationGroupIdentifier)
const;
359 QRect annotationLineRectInView(
int line)
const;
362 KTextEditor::ViewPrivate *m_view;
363 KTextEditor::DocumentPrivate *m_doc;
364 KateViewInternal *m_viewInternal;
366 bool m_iconBorderOn : 1;
367 bool m_lineNumbersOn : 1;
368 bool m_relLineNumbersOn : 1;
369 bool m_updateRelLineNumbers : 1;
370 bool m_foldingMarkersOn : 1;
371 bool m_dynWrapIndicatorsOn : 1;
372 bool m_annotationBorderOn : 1;
373 bool m_updatePositionToArea : 1;
374 bool m_mouseOver =
false;
376 typedef QPair<int, KateIconBorder::BorderArea> AreaPosition;
377 std::vector<AreaPosition> m_positionToArea;
379 const int m_separatorWidth = 2;
380 const int m_modAreaWidth = 3;
381 qreal m_maxCharWidth = 0.0;
382 int m_lineNumberAreaWidth = 0;
383 int m_iconAreaWidth = 0;
384 int m_foldingAreaWidth = 0;
385 int m_annotationAreaWidth = 0;
386 const QChar m_dynWrapIndicatorChar = QChar(0x21AA);
387 int m_dynWrapIndicators = 0;
388 int m_lastClickedLine = -1;
390 KTextEditor::AbstractAnnotationItemDelegate *m_annotationItemDelegate;
391 bool m_hasUniformAnnotationItemSizes =
false;
392 bool m_isDefaultAnnotationItemDelegate =
true;
394 QPointer<KateTextPreview> m_foldingPreview;
395 KTextEditor::MovingRange *m_foldingRange =
nullptr;
396 int m_currentLine = -1;
397 QTimer m_antiFlickerTimer;
398 void highlightFoldingDelayed(
int line);
402 void highlightFolding();
403 void handleDestroyedAnnotationItemDelegate();
404 void delayedUpdateOfSizeWithRepaint();
407 QString m_hoveredAnnotationGroupIdentifier;
413 KateViewEncodingAction(KTextEditor::DocumentPrivate *_doc, KTextEditor::ViewPrivate *_view,
const QString &
text,
QObject *
parent,
bool saveAsMode =
false);
415 bool setCurrentCodec(
const QString &codec);
419 void subActionTriggered(
QAction *);
421 KTextEditor::DocumentPrivate *doc;
422 KTextEditor::ViewPrivate *view;
424 const bool m_saveAsMode;
427 void setEncoding(
const QString &e);
428 void slotAboutToShow();
433class KateViewBarWidget :
public QWidget
436 friend class KateViewBar;
439 explicit KateViewBarWidget(
bool addCloseButton,
QWidget *
parent =
nullptr);
441 virtual void closed()
446 KateViewBar *viewBar()
457 return m_centralWidget;
463 QToolButton *closeButton()
465 return m_closeButton;
473 void setAssociatedViewBar(KateViewBar *bar)
479 QWidget *m_centralWidget =
nullptr;
480 KateViewBar *m_viewBar =
nullptr;
481 QToolButton *m_closeButton =
nullptr;
484class KateViewBar :
public QWidget
489 KateViewBar(
bool external,
QWidget *
parent, KTextEditor::ViewPrivate *view);
496 void addBarWidget(KateViewBarWidget *newBarWidget);
504 void removeBarWidget(KateViewBarWidget *barWidget);
509 bool hasBarWidget(KateViewBarWidget *barWidget)
const;
515 void showBarWidget(KateViewBarWidget *barWidget);
527 void addPermanentBarWidget(KateViewBarWidget *barWidget);
535 void removePermanentBarWidget(KateViewBarWidget *barWidget);
539 bool barWidgetVisible()
const;
545 void hideCurrentBarWidget();
548 void keyPressEvent(QKeyEvent *
event)
override;
549 void hideEvent(QHideEvent *
event)
override;
555 void setViewBarVisible(
bool visible);
560 KTextEditor::ViewPrivate *m_view;
561 QStackedWidget *m_stack;
562 KateViewBarWidget *m_permanentBarWidget;
563 QVBoxLayout *m_layout;
566class KateCommandLineBar :
public KateViewBarWidget
569 explicit KateCommandLineBar(KTextEditor::ViewPrivate *view,
QWidget *
parent =
nullptr);
570 ~KateCommandLineBar()
override;
572 void setText(
const QString &text,
bool selected =
true);
573 void execute(
const QString &text);
576 static void showHelpPage();
579 class KateCmdLineEdit *m_lineEdit;
587 KateCmdLineEdit(KateCommandLineBar *bar, KTextEditor::ViewPrivate *view);
588 bool event(QEvent *e)
override;
590 void hideEvent(QHideEvent *e)
override;
593 void hideRequested();
596 void slotReturnPressed(
const QString &cmd);
602 void focusInEvent(QFocusEvent *ev)
override;
603 void keyPressEvent(QKeyEvent *ev)
override;
616 void fromHistory(
bool up);
617 QString helptext(
const QPoint &)
const;
619 KTextEditor::ViewPrivate *m_view;
620 KateCommandLineBar *m_bar;
625 KTextEditor::Command *m_command;
626 class KateCmdLnWhatsThis *m_help;
641 void updateMenu(KTextEditor::ViewPrivate *view);
646 QPointer<KTextEditor::ViewPrivate> m_view;
648 QActionGroup *m_group;
652 void slotAboutToShow();
A delegate for rendering line annotation information and handling events.
An model for providing line annotation information.
An Editor command line command.
Backend of KTextEditor::Document related public KTextEditor interfaces.
MessagePosition
Message position used to place the message either above or below of the KTextEditor::View.
@ AboveView
show message above view.
A range that is bound to a specific Document, and maintains its position.
The style option set for an annotation item, as painted by AbstractAnnotationItemDelegate.
This class represents one visible line of text; with dynamic wrapping, many KateTextLayouts can be ne...
The KTextEditor namespace contains all the public API that is required to use the KTextEditor compone...
QLayoutItem(Qt::Alignment alignment)
virtual bool event(QEvent *e)
QObject * parent() const const