• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • interfaces
 

interfaces

  • interfaces
  • kregexpeditor
kregexpeditorinterface.h
1#ifndef __kregexpeditorinterface_h__
2#define __kregexpeditorinterface_h__
3
4#include <tqstring.h>
5
71class KRegExpEditorInterface
72{
73public:
78 virtual TQString regExp() const = 0;
79
80protected:
81// These are signals: in classes that actually implement the interface.
82
86 virtual void canUndo( bool ) = 0;
87
91 virtual void canRedo( bool ) = 0;
92
99 virtual void changes( bool ) = 0;
100
101public:
102// These are public slots: in classes that implement the interface.
103
108 virtual void setRegExp( const TQString &regexp ) = 0;
109 virtual void redo() = 0;
110 virtual void undo() = 0;
111
119 virtual void setMatchText( const TQString& ) = 0;
120
133 virtual void doSomething( TQString method, void* arguments ) = 0;
134};
135
136#endif
137
KRegExpEditorInterface
A graphical editor for regular expressions.
Definition: kregexpeditorinterface.h:72
KRegExpEditorInterface::canRedo
virtual void canRedo(bool)=0
This signal tells whether redo is available.
KRegExpEditorInterface::setMatchText
virtual void setMatchText(const TQString &)=0
Set text to use when showing matches.
KRegExpEditorInterface::doSomething
virtual void doSomething(TQString method, void *arguments)=0
This method allows for future changes that will not break binary compatibility.
KRegExpEditorInterface::changes
virtual void changes(bool)=0
This signal is emited whenever the regular expression changes.
KRegExpEditorInterface::canUndo
virtual void canUndo(bool)=0
This signal tells whether undo is available.
KRegExpEditorInterface::regExp
virtual TQString regExp() const =0
returns the regular expression of the editor in Qt3 QRegExp syntax.
KRegExpEditorInterface::setRegExp
virtual void setRegExp(const TQString &regexp)=0
Set the regular expression for the editor.

interfaces

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

interfaces

Skip menu "interfaces"
  • arts
  • dcop
  • dnssd
  • interfaces
  •   kspeech
  •     interface
  •     library
  •   tdetexteditor
  • kate
  • kded
  • kdoctools
  • kimgio
  • kjs
  • libtdemid
  • libtdescreensaver
  • tdeabc
  • tdecmshell
  • tdecore
  • tdefx
  • tdehtml
  • tdeinit
  • tdeio
  •   bookmarks
  •   httpfilter
  •   kpasswdserver
  •   kssl
  •   tdefile
  •   tdeio
  •   tdeioexec
  • tdeioslave
  •   http
  • tdemdi
  •   tdemdi
  • tdenewstuff
  • tdeparts
  • tdeprint
  • tderandr
  • tderesources
  • tdespell2
  • tdesu
  • tdeui
  • tdeunittest
  • tdeutils
  • tdewallet
Generated for interfaces by doxygen 1.9.4
This website is maintained by Timothy Pearson.