KDevelop API Documentation

QEditorView Class Reference

#include <qeditor_view.h>

Inheritance diagram for QEditorView:

Inheritance graph
[legend]
Collaboration diagram for QEditorView:

Collaboration graph
[legend]
List of all members.

Public Slots

void configChanged ()
void gotoLine ()
void setLanguage (const QString &)
void doFind ()
void doReplace ()
void indent ()
void ensureTextIsVisible (QTextParagraph *)
void expandBlock (QTextParagraph *)
void collapseBlock (QTextParagraph *)
void expandAllBlocks ()
void collapseAllBlocks ()
virtual void copy () const
 copies selected text
virtual void cut ()
 copies selected text
virtual void paste ()
 copies selected text
virtual void selectAll ()
 select all text

Signals

void cursorPositionChanged ()
void completionAborted ()
 This signal is emitted when the completion list disappears and no completion has been done.
void completionDone ()
 This signal is emitted when the completion list disappears and a completion has been inserted into text.
void completionDone (KTextEditor::CompletionEntry)
 This signal is the same as completionDone(), but additionally it carries the information which completion item was used.
void argHintHidden ()
 This signal is emitted when the argument hint disappears.
void filterInsertString (KTextEditor::CompletionEntry *, QString *)
 This signal is emitted just before a completion takes place.
void aboutToShowCompletionBox ()
void needTextHint (int line, int column, QString &)
void newStatus ()

Public Member Functions

 QEditorView (QEditorPart *, QWidget *=0, const char *=0)
 find/replace adapted from KOffice KoText Copyright (C) 1998, 1999 Reginald Stadlbauer <reggie@kde.org> Copyright (C) 2001, S.R.Haque <srhaque@iee.org> Copyright (C) 2001, David Faure <david@mandrakesoft.com>
virtual ~QEditorView ()
KTextEditor::Documentdocument () const
QEditorPartdoc () const
QEditoreditor () const
QString currentTextLine () const
void insertText (const QString &)
QString language () const
bool isMarkerWidgetVisible () const
void setMarkerWidgetVisible (bool)
MarkerWidgetmarkerWidget ()
bool isLineNumberWidgetVisible () const
void setLineNumberWidgetVisible (bool)
bool isLevelWidgetVisible () const
void setLevelWidgetVisible (bool)
int tabStop () const
void setTabStop (int)
virtual QPoint cursorCoordinates ()
 Get the current cursor coordinates in pixels.
virtual void cursorPosition (unsigned int *line, unsigned int *col)
 Get the cursor position.
virtual void cursorPositionReal (unsigned int *line, unsigned int *col)
 Get the cursor position, calculated with 1 character per tab.
virtual bool setCursorPosition (unsigned int line, unsigned int col)
 Set the cursor position.
virtual bool setCursorPositionReal (unsigned int line, unsigned int col)
 Set the cursor position, use 1 character per tab.
virtual unsigned int cursorLine ()
virtual unsigned int cursorColumn ()
virtual unsigned int cursorColumnReal ()
virtual void installPopup (class QPopupMenu *rmb_Menu)
 Install a Popup Menu.
virtual void showArgHint (QStringList functionList, const QString &strWrapping, const QString &strDelimiter)
 This shows an argument hint.
virtual void showCompletionBox (QValueList< KTextEditor::CompletionEntry > complList, int offset=0, bool casesensitive=true)
 This shows a completion list.
QString computeTextHint (int line, int column)
void enableTextHints (int timeout)
void disableTextHints ()

Protected Slots

void highlight (const QString &, int, int, const QRect &)
void replace (const QString &, int, int, int, const QRect &)

Protected Member Functions

void proceed ()
bool find_real (QTextParagraph *firstParag, int firstIndex, QTextParagraph *lastParag, int lastIndex)
bool process (const QString &)
void doRepaint ()
void internalEnsureVisibleBlock (QTextParagraph *)
void internalExpandBlock (QTextParagraph *)
void internalCollapseBlock (QTextParagraph *)

Private Member Functions

void setupActions ()

Private Attributes

QTextParagraph * m_currentParag
KoFindDialogm_findDialog
KoReplaceDialogm_replaceDialog
KoFindm_find
KoReplacem_replace
long m_options
int m_offset
QEditorPartm_document
QEditorm_editor
QEditorCodeCompletionm_pCodeCompletion
LineNumberWidgetm_lineNumberWidget
MarkerWidgetm_markerWidget
LevelWidgetm_levelWidget
QEditorTextHintm_textHintToolTip

Constructor & Destructor Documentation

QEditorView::QEditorView QEditorPart document,
QWidget parent = 0,
const char *  name = 0
 

find/replace adapted from KOffice KoText Copyright (C) 1998, 1999 Reginald Stadlbauer <reggie@kde.org> Copyright (C) 2001, S.R.Haque <srhaque@iee.org> Copyright (C) 2001, David Faure <david@mandrakesoft.com>

Definition at line 58 of file qeditor_view.cpp.

References argHintHidden(), collapseBlock(), completionAborted(), completionDone(), configChanged(), cursorPositionChanged(), doc(), doRepaint(), ensureTextIsVisible(), expandBlock(), filterInsertString(), m_currentParag, m_editor, m_find, m_findDialog, m_levelWidget, m_lineNumberWidget, m_markerWidget, m_offset, m_options, m_pCodeCompletion, m_replace, m_replaceDialog, newStatus(), QEditorPartFactory::registerView(), KXMLGUIClient::setInstance(), setupActions(), and KXMLGUIClient::setXMLFile().

QEditorView::~QEditorView  )  [virtual]
 

Definition at line 135 of file qeditor_view.cpp.

References QEditorPartFactory::deregisterView(), and m_pCodeCompletion.


Member Function Documentation

void QEditorView::aboutToShowCompletionBox  )  [signal]
 

Referenced by showCompletionBox().

void QEditorView::argHintHidden  )  [virtual, signal]
 

This signal is emitted when the argument hint disappears.

This is the case e.g. when the user moves the cursor somewhere else.

IMPORTANT: Please check if a connect to this signal worked, and implement some fallback when the implementation doesn't support it

IMPORTANT FOR IMPLEMENTERS: When you don't support this signal, please just override the inherited function, if you support it, declare it as a signal

Implements KTextEditor::CodeCompletionInterface.

Referenced by QEditorView().

void QEditorView::collapseAllBlocks  )  [slot]
 

Definition at line 771 of file qeditor_view.cpp.

References QEditor::document(), doRepaint(), internalCollapseBlock(), ParagData::isBlockStart(), m_editor, and QEditor::refresh().

Referenced by setupActions().

void QEditorView::collapseBlock QTextParagraph *   )  [slot]
 

Definition at line 657 of file qeditor_view.cpp.

References doRepaint(), internalCollapseBlock(), m_editor, and QEditor::refresh().

Referenced by QEditorView().

void QEditorView::completionAborted  )  [virtual, signal]
 

This signal is emitted when the completion list disappears and no completion has been done.

This is the case e.g. when the user presses Escape.

IMPORTANT: Please check if a connect to this signal worked, and implement some fallback when the implementation doesn't support it

IMPORTANT FOR IMPLEMENTERS: When you don't support this signal, please just override the inherited function, if you support it, declare it as a signal

Implements KTextEditor::CodeCompletionInterface.

Referenced by QEditorView().

void QEditorView::completionDone KTextEditor::CompletionEntry   )  [signal]
 

This signal is the same as completionDone(), but additionally it carries the information which completion item was used.

IMPORTANT: Please check if a connect to this signal worked, and implement some fallback when the implementation doesn't support it

IMPORTANT: The pointer to the CompleteionEntry, is only valid in the slots connected to this signal when the connected slots are left, the data element may be destroyed, depending on the implementation

IMPORTANT FOR IMPLEMENTERS: When you don't support this signal, please just override the inherited function, if you support it, declare it as a signal.

void QEditorView::completionDone  )  [virtual, signal]
 

This signal is emitted when the completion list disappears and a completion has been inserted into text.

This is the case e.g. when the user presses Return on a selected item in the completion list.

IMPORTANT: Please check if a connect to this signal worked, and implement some fallback when the implementation doesn't support it

IMPORTANT FOR IMPLEMENTERS: When you don't support this signal, please just override the inherited function, if you support it, declare it as a signal

Implements KTextEditor::CodeCompletionInterface.

Referenced by QEditorView().

QString QEditorView::computeTextHint int  line,
int  column
 

Definition at line 786 of file qeditor_view.cpp.

References needTextHint().

Referenced by QEditorTextHint::maybeTip().

void QEditorView::configChanged  )  [slot]
 

Definition at line 142 of file qeditor_view.cpp.

References QEditor::configChanged(), m_editor, setLevelWidgetVisible(), setLineNumberWidgetVisible(), and setMarkerWidgetVisible().

Referenced by QEditorPart::configDialog(), QEditorView(), and QEditorPart::readConfig().

void QEditorView::copy  )  const [virtual, slot]
 

copies selected text

Implements KTextEditor::ClipboardInterface.

Definition at line 294 of file qeditor_view.cpp.

References m_editor.

Referenced by QEditorBrowserExtension::copy(), and setupActions().

QString QEditorView::currentTextLine  )  const
 

Definition at line 329 of file qeditor_view.cpp.

References m_editor.

Referenced by QEditorCodeCompletion::eventFilter(), and QEditorCodeCompletion::updateBox().

unsigned int QEditorView::cursorColumn  )  [virtual]
 

Implements KTextEditor::ViewCursorInterface.

Definition at line 268 of file qeditor_view.cpp.

References m_editor, and text().

Referenced by cursorPosition().

unsigned int QEditorView::cursorColumnReal  )  [virtual]
 

Implements KTextEditor::ViewCursorInterface.

Definition at line 287 of file qeditor_view.cpp.

References m_editor.

Referenced by cursorPositionReal(), QEditorCodeCompletion::eventFilter(), and QEditorCodeCompletion::updateBox().

QPoint QEditorView::cursorCoordinates  )  [virtual]
 

Get the current cursor coordinates in pixels.

Implements KTextEditor::ViewCursorInterface.

Definition at line 211 of file qeditor_view.cpp.

References m_editor, and QEditor::textCursor().

Referenced by QEditorCodeCompletion::showArgHint().

unsigned int QEditorView::cursorLine  )  [virtual]
 

Implements KTextEditor::ViewCursorInterface.

Definition at line 261 of file qeditor_view.cpp.

References m_editor.

Referenced by cursorPosition(), and cursorPositionReal().

void QEditorView::cursorPosition unsigned int *  line,
unsigned int *  col
[virtual]
 

Get the cursor position.

Implements KTextEditor::ViewCursorInterface.

Definition at line 223 of file qeditor_view.cpp.

References cursorColumn(), and cursorLine().

void QEditorView::cursorPositionChanged  )  [virtual, signal]
 

Implements KTextEditor::ViewCursorInterface.

Referenced by QEditorView().

void QEditorView::cursorPositionReal unsigned int *  line,
unsigned int *  col
[virtual]
 

Get the cursor position, calculated with 1 character per tab.

Implements KTextEditor::ViewCursorInterface.

Definition at line 229 of file qeditor_view.cpp.

References cursorColumnReal(), and cursorLine().

Referenced by QEditorCodeCompletion::showArgHint(), QEditorCodeCompletion::showCompletionBox(), and QEditorCodeCompletion::slotCursorPosChanged().

void QEditorView::cut  )  [virtual, slot]
 

copies selected text

Implements KTextEditor::ClipboardInterface.

Definition at line 299 of file qeditor_view.cpp.

References m_editor.

Referenced by setupActions().

void QEditorView::disableTextHints  )  [virtual]
 

Implements KTextEditor::TextHintInterface.

Definition at line 805 of file qeditor_view.cpp.

References m_textHintToolTip.

QEditorPart* QEditorView::doc  )  const [inline]
 

Definition at line 69 of file qeditor_view.h.

Referenced by QEditorArgHint::cursorPositionChanged(), QEditorView(), and setupActions().

KTextEditor::Document * QEditorView::document  )  const [virtual]
 

Implements KTextEditor::View.

Definition at line 206 of file qeditor_view.cpp.

void QEditorView::doFind  )  [slot]
 

Definition at line 476 of file qeditor_view.cpp.

References KoFind::abort(), highlight(), m_editor, m_find, KoFindDialog::m_find, m_findDialog, m_options, KoFindDialog::options(), KoFindDialog::pattern(), proceed(), and KComboBox::setEditURL().

Referenced by setupActions().

void QEditorView::doRepaint  )  [protected]
 

Definition at line 666 of file qeditor_view.cpp.

References LevelWidget::doRepaint(), LineNumberWidget::doRepaint(), MarkerWidget::doRepaint(), m_levelWidget, m_lineNumberWidget, and m_markerWidget.

Referenced by collapseAllBlocks(), collapseBlock(), ensureTextIsVisible(), expandAllBlocks(), expandBlock(), and QEditorView().

void QEditorView::doReplace  )  [slot]
 

Definition at line 496 of file qeditor_view.cpp.

References KoReplace::abort(), highlight(), m_editor, KoFindDialog::m_find, m_options, m_replace, m_replaceDialog, KoReplaceDialog::options(), KoFindDialog::pattern(), proceed(), replace(), KoReplaceDialog::replacement(), and KComboBox::setEditURL().

Referenced by setupActions().

QEditor* QEditorView::editor  )  const [inline]
 

Definition at line 70 of file qeditor_view.h.

Referenced by QEditorPart::addMark(), QEditorPart::clear(), QEditorPart::clearMarks(), QEditorPart::clearSelection(), QEditorPart::colorizer(), QEditorPart::createCursor(), QEditorCodeCompletion::eventFilter(), QEditorPart::hasSelection(), QEditorPart::indenter(), QEditorPart::insertLine(), QEditorPart::insertText(), QEditorPart::length(), QEditorPart::lineLength(), QEditorPart::mark(), QEditorPart::marks(), QEditorTextHint::maybeTip(), QEditorPart::numLines(), QEditorPart::openFile(), QEditorCodeCompletion::QEditorCodeCompletion(), QEditorPart::redo(), QEditorPart::removeLine(), QEditorPart::removeMark(), QEditorPart::removeSelectedText(), QEditorPart::removeText(), QEditorPart::saveFile(), QEditorPart::selectAll(), QEditorPart::selection(), QEditorPart::setMark(), QEditorPart::setModified(), QEditorPart::setReadWrite(), QEditorPart::setSelection(), QEditorPart::setText(), QEditorPart::setUndoSteps(), setupActions(), QEditorPart::text(), QEditorPart::textLine(), QEditorPart::undo(), QEditorPart::undoSteps(), and QEditorCodeCompletion::updateBox().

void QEditorView::enableTextHints int  timeout  )  [virtual]
 

Implements KTextEditor::TextHintInterface.

Definition at line 793 of file qeditor_view.cpp.

References m_textHintToolTip.

void QEditorView::ensureTextIsVisible QTextParagraph *   )  [slot]
 

Definition at line 548 of file qeditor_view.cpp.

References doRepaint(), internalEnsureVisibleBlock(), m_editor, and QEditor::refresh().

Referenced by QEditorView(), setCursorPosition(), and setCursorPositionReal().

void QEditorView::expandAllBlocks  )  [slot]
 

Definition at line 756 of file qeditor_view.cpp.

References QEditor::document(), doRepaint(), internalExpandBlock(), ParagData::isBlockStart(), m_editor, and QEditor::refresh().

Referenced by setupActions().

void QEditorView::expandBlock QTextParagraph *   )  [slot]
 

Definition at line 648 of file qeditor_view.cpp.

References doRepaint(), internalExpandBlock(), m_editor, and QEditor::refresh().

Referenced by QEditorView().

void QEditorView::filterInsertString KTextEditor::CompletionEntry ,
QString
[signal]
 

This signal is emitted just before a completion takes place.

You can use it to modify the KTextEditor::CompletionEntry. The modified entry will not be visible in the completion list (because that has just disappeared) but it will be used when the completion is inserted into the text.

IMPORTANT: Please check if a connect to this signal worked, and implement some fallback when the implementation doesn't support it

IMPORTANT FOR IMPLEMENTERS: When you don't support this signal, please just override the inherited function, if you support it, declare it as a signal

Referenced by QEditorView().

bool QEditorView::find_real QTextParagraph *  firstParag,
int  firstIndex,
QTextParagraph *  lastParag,
int  lastIndex
[protected]
 

Definition at line 424 of file qeditor_view.cpp.

References m_currentParag, m_offset, m_options, and process().

Referenced by proceed().

void QEditorView::gotoLine  )  [slot]
 

Definition at line 356 of file qeditor_view.cpp.

References m_editor, and GotoLineDialog::setEditor().

Referenced by setupActions().

void QEditorView::highlight const QString ,
int  ,
int  ,
const QRect
[protected, slot]
 

Definition at line 530 of file qeditor_view.cpp.

References m_currentParag, and m_editor.

Referenced by doFind(), and doReplace().

void QEditorView::indent  )  [slot]
 

Definition at line 351 of file qeditor_view.cpp.

References QEditor::indent(), and m_editor.

Referenced by setupActions().

void QEditorView::insertText const QString  ) 
 

Definition at line 336 of file qeditor_view.cpp.

References m_editor, and text().

Referenced by QEditorCodeCompletion::eventFilter().

void QEditorView::installPopup class QPopupMenu rmb_Menu  )  [virtual]
 

Install a Popup Menu.

The Popup Menu will be activated on a right mouse button press event.

Implements KTextEditor::PopupMenuInterface.

Definition at line 309 of file qeditor_view.cpp.

References m_editor, and QEditor::setApplicationMenu().

void QEditorView::internalCollapseBlock QTextParagraph *   )  [protected]
 

Definition at line 621 of file qeditor_view.cpp.

References ParagData::level(), and ParagData::setOpen().

Referenced by collapseAllBlocks(), and collapseBlock().

void QEditorView::internalEnsureVisibleBlock QTextParagraph *   )  [protected]
 

Definition at line 569 of file qeditor_view.cpp.

References internalExpandBlock(), and ParagData::level().

Referenced by ensureTextIsVisible().

void QEditorView::internalExpandBlock QTextParagraph *   )  [protected]
 

Definition at line 596 of file qeditor_view.cpp.

References ParagData::level(), and ParagData::setOpen().

Referenced by expandAllBlocks(), expandBlock(), and internalEnsureVisibleBlock().

bool QEditorView::isLevelWidgetVisible  )  const
 

Definition at line 181 of file qeditor_view.cpp.

References m_levelWidget.

bool QEditorView::isLineNumberWidgetVisible  )  const
 

Definition at line 166 of file qeditor_view.cpp.

References m_lineNumberWidget.

bool QEditorView::isMarkerWidgetVisible  )  const
 

Definition at line 151 of file qeditor_view.cpp.

References m_markerWidget.

QString QEditorView::language  )  const
 

Definition at line 346 of file qeditor_view.cpp.

References QEditor::language(), and m_editor.

MarkerWidget* QEditorView::markerWidget  )  [inline]
 

Definition at line 79 of file qeditor_view.h.

Referenced by QEditorPart::setMarksUserChangable().

void QEditorView::needTextHint int  line,
int  column,
QString
[virtual, signal]
 

Implements KTextEditor::TextHintInterface.

Referenced by computeTextHint().

void QEditorView::newStatus  )  [signal]
 

Referenced by QEditorView().

void QEditorView::paste  )  [virtual, slot]
 

copies selected text

Implements KTextEditor::ClipboardInterface.

Definition at line 304 of file qeditor_view.cpp.

References m_editor.

Referenced by setupActions().

void QEditorView::proceed  )  [protected]
 

Definition at line 363 of file qeditor_view.cpp.

References QEditor::document(), find_real(), m_editor, m_options, and QEditor::textCursor().

Referenced by doFind(), and doReplace().

bool QEditorView::process const QString  )  [protected]
 

Definition at line 519 of file qeditor_view.cpp.

References KoFind::find(), m_find, m_replace, KoReplace::replace(), and text().

Referenced by find_real().

void QEditorView::replace const QString ,
int  ,
int  ,
int  ,
const QRect
[protected, slot]
 

Definition at line 536 of file qeditor_view.cpp.

References m_currentParag, m_editor, m_replaceDialog, and KoReplaceDialog::replacement().

Referenced by doReplace().

void QEditorView::selectAll  )  [virtual, slot]
 

select all text

Definition at line 673 of file qeditor_view.cpp.

References m_editor.

Referenced by setupActions().

bool QEditorView::setCursorPosition unsigned int  line,
unsigned int  col
[virtual]
 

Set the cursor position.

Implements KTextEditor::ViewCursorInterface.

Definition at line 235 of file qeditor_view.cpp.

References QEditor::document(), ensureTextIsVisible(), kdDebug(), and m_editor.

bool QEditorView::setCursorPositionReal unsigned int  line,
unsigned int  col
[virtual]
 

Set the cursor position, use 1 character per tab.

Implements KTextEditor::ViewCursorInterface.

Definition at line 250 of file qeditor_view.cpp.

References QEditor::document(), ensureTextIsVisible(), and m_editor.

void QEditorView::setLanguage const QString  )  [slot]
 

Definition at line 341 of file qeditor_view.cpp.

References m_editor, and QEditor::setLanguage().

Referenced by QEditorPart::setHlMode().

void QEditorView::setLevelWidgetVisible bool   ) 
 

Definition at line 186 of file qeditor_view.cpp.

References LevelWidget::doRepaint(), and m_levelWidget.

Referenced by configChanged().

void QEditorView::setLineNumberWidgetVisible bool   ) 
 

Definition at line 171 of file qeditor_view.cpp.

References LineNumberWidget::doRepaint(), and m_lineNumberWidget.

Referenced by configChanged().

void QEditorView::setMarkerWidgetVisible bool   ) 
 

Definition at line 156 of file qeditor_view.cpp.

References MarkerWidget::doRepaint(), and m_markerWidget.

Referenced by configChanged().

void QEditorView::setTabStop int   ) 
 

Definition at line 201 of file qeditor_view.cpp.

References m_editor, and QEditor::setTabStop().

void QEditorView::setupActions  )  [private]
 

Definition at line 678 of file qeditor_view.cpp.

References KXMLGUIClient::actionCollection(), collapseAllBlocks(), copy(), KStdAction::copy(), cut(), KStdAction::cut(), doc(), doFind(), doReplace(), editor(), expandAllBlocks(), KStdAction::find(), gotoLine(), KStdAction::gotoLine(), indent(), KStdAction::open(), paste(), KStdAction::pasteText(), KStdAction::redo(), KStdAction::replace(), KStdAction::save(), KStdAction::saveAs(), selectAll(), KStdAction::selectAll(), and KStdAction::undo().

Referenced by QEditorView().

void QEditorView::showArgHint QStringList  functionList,
const QString strWrapping,
const QString strDelimiter
[virtual]
 

This shows an argument hint.

Implements KTextEditor::CodeCompletionInterface.

Definition at line 314 of file qeditor_view.cpp.

References m_pCodeCompletion, and QEditorCodeCompletion::showArgHint().

void QEditorView::showCompletionBox QValueList< KTextEditor::CompletionEntry complList,
int  offset = 0,
bool  casesensitive = true
[virtual]
 

This shows a completion list.

offset is the real start of the text that should be completed. 0 means that the text starts at the current cursor position. if casesensitive is true, the popup will only contain completions that match the input text regarding case.

Definition at line 321 of file qeditor_view.cpp.

References aboutToShowCompletionBox(), m_pCodeCompletion, and QEditorCodeCompletion::showCompletionBox().

int QEditorView::tabStop  )  const
 

Definition at line 196 of file qeditor_view.cpp.

References m_editor, and QEditor::tabStop().


Member Data Documentation

QTextParagraph* QEditorView::m_currentParag [private]
 

Definition at line 121 of file qeditor_view.h.

Referenced by find_real(), highlight(), QEditorView(), and replace().

QEditorPart* QEditorView::m_document [private]
 

Definition at line 288 of file qeditor_view.h.

QEditor* QEditorView::m_editor [private]
 

Definition at line 289 of file qeditor_view.h.

Referenced by collapseAllBlocks(), collapseBlock(), configChanged(), copy(), currentTextLine(), cursorColumn(), cursorColumnReal(), cursorCoordinates(), cursorLine(), cut(), doFind(), doReplace(), ensureTextIsVisible(), expandAllBlocks(), expandBlock(), gotoLine(), highlight(), indent(), insertText(), installPopup(), language(), paste(), proceed(), QEditorView(), replace(), selectAll(), setCursorPosition(), setCursorPositionReal(), setLanguage(), setTabStop(), and tabStop().

KoFind* QEditorView::m_find [private]
 

Definition at line 124 of file qeditor_view.h.

Referenced by doFind(), process(), and QEditorView().

KoFindDialog* QEditorView::m_findDialog [private]
 

Definition at line 122 of file qeditor_view.h.

Referenced by doFind(), and QEditorView().

LevelWidget* QEditorView::m_levelWidget [private]
 

Definition at line 293 of file qeditor_view.h.

Referenced by doRepaint(), isLevelWidgetVisible(), QEditorView(), and setLevelWidgetVisible().

LineNumberWidget* QEditorView::m_lineNumberWidget [private]
 

Definition at line 291 of file qeditor_view.h.

Referenced by doRepaint(), isLineNumberWidgetVisible(), QEditorView(), and setLineNumberWidgetVisible().

MarkerWidget* QEditorView::m_markerWidget [private]
 

Definition at line 292 of file qeditor_view.h.

Referenced by doRepaint(), isMarkerWidgetVisible(), QEditorView(), and setMarkerWidgetVisible().

int QEditorView::m_offset [private]
 

Definition at line 127 of file qeditor_view.h.

Referenced by find_real(), and QEditorView().

long QEditorView::m_options [private]
 

Definition at line 126 of file qeditor_view.h.

Referenced by doFind(), doReplace(), find_real(), proceed(), and QEditorView().

QEditorCodeCompletion* QEditorView::m_pCodeCompletion [private]
 

Definition at line 290 of file qeditor_view.h.

Referenced by QEditorView(), showArgHint(), showCompletionBox(), and ~QEditorView().

KoReplace* QEditorView::m_replace [private]
 

Definition at line 125 of file qeditor_view.h.

Referenced by doReplace(), process(), and QEditorView().

KoReplaceDialog* QEditorView::m_replaceDialog [private]
 

Definition at line 123 of file qeditor_view.h.

Referenced by doReplace(), QEditorView(), and replace().

QEditorTextHint* QEditorView::m_textHintToolTip [private]
 

Definition at line 294 of file qeditor_view.h.

Referenced by disableTextHints(), and enableTextHints().


The documentation for this class was generated from the following files:
KDE Logo
This file is part of the documentation for KDevelop Version 3.1.2.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Wed Mar 23 00:28:57 2005 by doxygen 1.3.9.1 written by Dimitri van Heesch, © 1997-2003