• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • applications API Reference
  • KDE Home
  • Contact Us
 

Kate

Public Member Functions | List of all members
KateScriptView Class Reference

#include <katescriptview.h>

Inheritance diagram for KateScriptView:
Inheritance graph
[legend]

Public Member Functions

 KateScriptView (QObject *parent=0)
 
Q_INVOKABLE void clearSelection ()
 
Q_INVOKABLE KTextEditor::Cursor cursorPosition ()
 
Q_INVOKABLE bool hasSelection ()
 
Q_INVOKABLE void removeSelectedText ()
 
Q_INVOKABLE void selectAll ()
 
Q_INVOKABLE QString selectedText ()
 
Q_INVOKABLE KTextEditor::Range selection ()
 
Q_INVOKABLE void setCursorPosition (int line, int column)
 
Q_INVOKABLE void setCursorPosition (const KTextEditor::Cursor &cursor)
 
Q_INVOKABLE void setSelection (const KTextEditor::Range &range)
 
void setView (KateView *view)
 
Q_INVOKABLE void setVirtualCursorPosition (int line, int column)
 
Q_INVOKABLE void setVirtualCursorPosition (const KTextEditor::Cursor &cursor)
 
KateView * view ()
 
Q_INVOKABLE KTextEditor::Cursor virtualCursorPosition ()
 
- Public Member Functions inherited from QObject
 QObject (QObject *parent)
 
 QObject (QObject *parent, const char *name)
 
virtual  ~QObject ()
 
bool blockSignals (bool block)
 
QObject * child (const char *objName, const char *inheritsClass, bool recursiveSearch) const
 
const QObjectList & children () const
 
const char * className () const
 
bool connect (const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type) const
 
void deleteLater ()
 
void destroyed (QObject *obj)
 
bool disconnect (const QObject *receiver, const char *method)
 
bool disconnect (const char *signal, const QObject *receiver, const char *method)
 
void dumpObjectInfo ()
 
void dumpObjectTree ()
 
QList< QByteArray > dynamicPropertyNames () const
 
virtual bool event (QEvent *e)
 
virtual bool eventFilter (QObject *watched, QEvent *event)
 
T findChild (const QString &name) const
 
QList< T > findChildren (const QRegExp &regExp) const
 
QList< T > findChildren (const QString &name) const
 
bool inherits (const char *className) const
 
void insertChild (QObject *object)
 
void installEventFilter (QObject *filterObj)
 
bool isA (const char *className) const
 
bool isWidgetType () const
 
void killTimer (int id)
 
virtual const QMetaObject * metaObject () const
 
void moveToThread (QThread *targetThread)
 
const char * name () const
 
const char * name (const char *defaultName) const
 
QString objectName () const
 
QObject * parent () const
 
QVariant property (const char *name) const
 
void removeChild (QObject *object)
 
void removeEventFilter (QObject *obj)
 
void setName (const char *name)
 
void setObjectName (const QString &name)
 
void setParent (QObject *parent)
 
bool setProperty (const char *name, const QVariant &value)
 
bool signalsBlocked () const
 
int startTimer (int interval)
 
QThread * thread () const
 

Additional Inherited Members

- Static Public Member Functions inherited from QObject
bool connect (const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type)
 
bool connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type)
 
bool disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *method)
 
bool disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method)
 
QString tr (const char *sourceText, const char *disambiguation, int n)
 
QString trUtf8 (const char *sourceText, const char *disambiguation, int n)
 
- Protected Member Functions inherited from QObject
bool checkConnectArgs (const char *signal, const QObject *object, const char *method)
 
virtual void childEvent (QChildEvent *event)
 
virtual void connectNotify (const char *signal)
 
virtual void customEvent (QEvent *event)
 
virtual void disconnectNotify (const char *signal)
 
int receivers (const char *signal) const
 
QObject * sender () const
 
int senderSignalIndex () const
 
virtual void timerEvent (QTimerEvent *event)
 
- Protected Member Functions inherited from QScriptable
QScriptValue argument (int index) const
 
int argumentCount () const
 
QScriptContext * context () const
 
QScriptEngine * engine () const
 
QScriptValue thisObject () const
 
- Static Protected Member Functions inherited from QObject
QByteArray normalizeSignalSlot (const char *signalSlot)
 
- Properties inherited from QObject
 objectName
 

Detailed Description

Thinish wrapping around KateView, exposing the methods we want exposed and adding some helper methods.

We inherit from QScriptable to have more thight access to the scripting engine.

setView must be called before using any other method. This is not checked for the sake of speed.

Definition at line 43 of file katescriptview.h.

Constructor & Destructor Documentation

KateScriptView::KateScriptView ( QObject *  parent = 0)

Properties are accessible with a nicer syntax from JavaScript.

This file is part of the KDE libraries Copyright (C) 2008 Paul Giannaros paul@.nosp@m.gian.nosp@m.naros.nosp@m..org Copyright (C) 2008 Christoph Cullmann cullm.nosp@m.ann@.nosp@m.kde.o.nosp@m.rg

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) version 3.

This library 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 Library General Public License for more details.

You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Definition at line 27 of file katescriptview.cpp.

Member Function Documentation

void KateScriptView::clearSelection ( )

Definition at line 103 of file katescriptview.cpp.

KTextEditor::Cursor KateScriptView::cursorPosition ( )

Definition at line 42 of file katescriptview.cpp.

bool KateScriptView::hasSelection ( )

Definition at line 78 of file katescriptview.cpp.

void KateScriptView::removeSelectedText ( )

Definition at line 93 of file katescriptview.cpp.

void KateScriptView::selectAll ( )

Definition at line 98 of file katescriptview.cpp.

QString KateScriptView::selectedText ( )

Definition at line 73 of file katescriptview.cpp.

KTextEditor::Range KateScriptView::selection ( )

Definition at line 83 of file katescriptview.cpp.

void KateScriptView::setCursorPosition ( int  line,
int  column 
)

Set the cursor position in the view.

Since
4.4

Definition at line 47 of file katescriptview.cpp.

void KateScriptView::setCursorPosition ( const KTextEditor::Cursor &  cursor)

Definition at line 53 of file katescriptview.cpp.

void KateScriptView::setSelection ( const KTextEditor::Range &  range)

Definition at line 88 of file katescriptview.cpp.

void KateScriptView::setView ( KateView *  view)

Definition at line 32 of file katescriptview.cpp.

void KateScriptView::setVirtualCursorPosition ( int  line,
int  column 
)

Definition at line 63 of file katescriptview.cpp.

void KateScriptView::setVirtualCursorPosition ( const KTextEditor::Cursor &  cursor)

Definition at line 68 of file katescriptview.cpp.

KateView * KateScriptView::view ( )

Definition at line 37 of file katescriptview.cpp.

KTextEditor::Cursor KateScriptView::virtualCursorPosition ( )

Definition at line 58 of file katescriptview.cpp.


The documentation for this class was generated from the following files:
  • katescriptview.h
  • katescriptview.cpp
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Sat May 9 2020 03:57:02 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

Kate

Skip menu "Kate"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

applications API Reference

Skip menu "applications API Reference"
  •   kate
  •       kate
  •   KTextEditor
  •   Kate
  • Konsole

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal