/usr/include/ktextedit.h is in kdelibs5-dev 4:4.8.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 | /* This file is part of the KDE libraries
Copyright (C) 2002 Carsten Pfeiffer <pfeiffer@kde.org>
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) any later version.
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.
*/
#ifndef KTEXTEDIT_H
#define KTEXTEDIT_H
#include <kdeui_export.h>
#include <sonnet/highlighter.h>
#include <QtGui/QTextEdit>
/**
* This interface is a workaround to keep binary compatibility in KDE4, because
* adding the virtual keyword to functions is not BC.
*
* Call KTextEdit::setSpellInterface() to set this interface to a KTextEdit,
* and some functions of KTextEdit will delegate their calls to this interface
* instead, which provides a way for derived classes to modifiy the behavior
* or those functions.
*
* @since 4.2
*
* TODO: Get rid of this class in KDE5 and add the methods to KTextEdit instead,
* by making them virtual there.
*/
class KTextEditSpellInterface
{
public:
/**
* @return true if spellchecking for the text edit is enabled.
*/
virtual bool isSpellCheckingEnabled() const = 0;
/**
* Sets whether to enable spellchecking for the KTextEdit.
* @param enable true if spellchecking should be enabled, false otherwise
*/
virtual void setSpellCheckingEnabled(bool enable) = 0;
/**
* Returns true if the given paragraph or block should be spellcheck.
* For example, a mail client does not want to check quoted text, and
* would return false here (by checking whether the block starts with a
* quote sign).
*/
virtual bool shouldBlockBeSpellChecked(const QString& block) const = 0;
virtual ~KTextEditSpellInterface() {}
};
/**
* @short A KDE'ified QTextEdit
*
* This is just a little subclass of QTextEdit, implementing
* some standard KDE features, like cursor auto-hiding, configurable
* wheelscrolling (fast-scroll or zoom), spell checking and deleting of entire
* words with Ctrl-Backspace or Ctrl-Delete.
*
* This text edit provides two ways of spell checking: background checking,
* which will mark incorrectly spelled words red, and a spell check dialog,
* which lets the user check and correct all incorrectly spelled words.
*
* Basic rule: whenever you want to use QTextEdit, use KTextEdit!
*
* \image html ktextedit.png "KDE Text Edit Widget"
*
* @see QTextEdit
* @author Carsten Pfeiffer <pfeiffer@kde.org>
*/
class KDEUI_EXPORT KTextEdit : public QTextEdit //krazy:exclude=qclasses
{
Q_OBJECT
Q_PROPERTY( QString clickMessage READ clickMessage WRITE setClickMessage )
Q_PROPERTY( bool checkSpellingEnabled READ checkSpellingEnabled WRITE setCheckSpellingEnabled )
Q_PROPERTY( QString spellCheckingLanguage READ spellCheckingLanguage WRITE setSpellCheckingLanguage )
public:
/**
* Constructs a KTextEdit object. See QTextEdit::QTextEdit
* for details.
*/
explicit KTextEdit( const QString& text, QWidget *parent = 0 );
/**
* Constructs a KTextEdit object. See QTextEdit::QTextEdit
* for details.
*/
explicit KTextEdit( QWidget *parent = 0 );
/**
* Destroys the KTextEdit object.
*/
~KTextEdit();
/**
* Reimplemented to set a proper "deactivated" background color.
*/
virtual void setReadOnly( bool readOnly );
/**
* Turns background spell checking for this text edit on or off.
* Note that spell checking is only available in read-writable KTextEdits.
*
* Enabling spell checking will set back the current highlighter to the one
* returned by createHighlighter().
*
* If a spell interface is set by setSpellInterface(),
* the call will be delegated to there instead.
*
* @see checkSpellingEnabled()
* @see isReadOnly()
* @see setReadOnly()
*/
void setCheckSpellingEnabled( bool check );
/**
* Returns true if background spell checking is enabled for this text edit.
* Note that it even returns true if this is a read-only KTextEdit,
* where spell checking is actually disabled.
* By default spell checking is disabled.
*
* If a spell interface is set by setSpellInterface(),
* the call will be delegated to there instead.
*
* @see setCheckSpellingEnabled()
*/
bool checkSpellingEnabled() const;
/**
* Selects the characters at the specified position. Any previous
* selection will be lost. The cursor is moved to the first character
* of the new selection.
*
* @param length The length of the selection, in number of characters
* @param pos The position of the first character of the selection
*/
void highlightWord( int length, int pos );
/**
* Allows to override the config file where the settings for spell checking,
* like the current language or encoding, are stored.
* By default, the global config file (kdeglobals) is used, to share
* spell check settings between all applications.
*
* This has to be called before any spell checking is initiated.
*
* @param fileName the URL of the config file which will be used to
* read spell settings
* @bug this has no effect for the spell dialog, only for the background
* check
*/
void setSpellCheckingConfigFileName(const QString &fileName);
/**
* Allows to create a specific highlighter if reimplemented.
*
* By default, it creates a normal highlighter, based on the config
* file given to setSpellCheckingConfigFileName().
*
* This highlighter is set each time spell checking is toggled on by
* calling setCheckSpellingEnabled(), but can later be overridden by calling
* setHighlighter().
*
* @see setHighlighter()
* @see highlighter()
* @see setSpellCheckingConfigFileName()
*/
virtual void createHighlighter();
/**
* Returns the current highlighter, which is 0 if spell checking is disabled.
* The default highlighter is the one created by createHighlighter(), but
* might be overridden by setHighlighter().
*
* @see setHighlighter()
* @see createHighlighter()
*/
Sonnet::Highlighter* highlighter() const;
/**
* Sets a custom backgound spell highlighter for this text edit.
* Normally, the highlighter returned by createHighlighter() will be
* used to detect and highlight incorrectly spelled words, but this
* function allows to set a custom highlighter.
*
* This has to be called after enabling spell checking with
* setCheckSpellingEnabled(), otherwise it has no effect.
*
* @see highlighter()
* @see createHighlighter()
* @param highLighter the new highlighter which will be used now
*/
void setHighlighter(Sonnet::Highlighter *_highLighter);
/**
* Return standard KTextEdit popupMenu
* @since 4.1
*/
QMenu *mousePopupMenu();
/**
* Enable find replace action.
* @since 4.1
*/
void enableFindReplace( bool enabled);
/**
* Sets the spell interface, which is used to delegate certain function
* calls to the interface.
* This is a workaround for binary compatibility and should be removed in
* KDE5.
*
* @since 4.2
*/
void setSpellInterface( KTextEditSpellInterface *spellInterface );
/**
* @return the spell checking language which was set by
* setSpellCheckingLanguage(), the spellcheck dialog or the spellcheck
* config dialog, or an empty string if that has never been called.
* @since 4.2
*/
const QString& spellCheckingLanguage() const;
/**
* This makes the text edit display a grayed-out hinting text as long as
* the user didn't enter any text. It is often used as indication about
* the purpose of the text edit.
* @since 4.4
*/
void setClickMessage(const QString &msg);
/**
* @return the message set with setClickMessage
* @since 4.4
*/
QString clickMessage() const;
Q_SIGNALS:
/**
* emit signal when we activate or not autospellchecking
*
* @since 4.1
*/
void checkSpellingChanged( bool );
/**
* Signal sends when spell checking is finished/stopped/completed
* @since 4.1
*/
void spellCheckStatus(const QString &);
/**
* Emitted when the user changes the language in the spellcheck dialog
* shown by checkSpelling() or when calling setSpellCheckingLanguage().
*
* @param language the new language the user selected
* @since 4.1
*/
void languageChanged(const QString &language);
/**
* Emitted before the context menu is displayed.
*
* The signal allows you to add your own entries into the
* the context menu that is created on demand.
*
* NOTE: Do not store the pointer to the QMenu
* provided through since it is created and deleted
* on demand.
*
* @param p the context menu about to be displayed
* @since 4.5
*/
void aboutToShowContextMenu(QMenu* menu);
public Q_SLOTS:
/**
* Set the spell check language which will be used for highlighting spelling
* mistakes and for the spellcheck dialog.
* The languageChanged() signal will be emitted when the new language is
* different from the old one.
*
* @since 4.1
*/
void setSpellCheckingLanguage(const QString &language);
/**
* Show a dialog to check the spelling. The spellCheckStatus() signal
* will be emitted when the spell checking dialog is closed.
*/
void checkSpelling();
/**
* Opens a Sonnet::ConfigDialog for this text edit. The config settings the
* user makes are read from and stored to the given config file.
* The spellcheck language of the config dialog is set to the current spellcheck
* language of the textedit. If the user changes the language in that dialog,
* the languageChanged() signal is emitted.
*
* @param configFileName The file which is used to store and load the config
* settings
* @param windowIcon the icon which is used for the titlebar of the spell dialog
* window. Can be empty, then no icon is set.
*
* @since 4.2
*/
void showSpellConfigDialog(const QString &configFileName,
const QString &windowIcon = QString());
/**
* Create replace dialogbox
* @since 4.1
*/
void replace();
protected Q_SLOTS:
/**
* @since 4.1
*/
void slotDoReplace();
void slotReplaceNext();
void slotDoFind();
void slotFind();
void slotFindNext();
void slotReplace();
/**
* @since 4.3
*/
void slotSpeakText();
protected:
/**
* Reimplemented to catch "delete word" shortcut events.
*/
virtual bool event(QEvent*);
/**
* Reimplemented to paint clickMessage.
*/
virtual void paintEvent(QPaintEvent *);
virtual void focusOutEvent(QFocusEvent *);
/**
* Reimplemented for internal reasons
*/
virtual void keyPressEvent( QKeyEvent* );
/**
* Reimplemented to instantiate a KDictSpellingHighlighter, if
* spellchecking is enabled.
*/
virtual void focusInEvent( QFocusEvent* );
/**
* Reimplemented to allow fast-wheelscrolling with Ctrl-Wheel
* or zoom.
*/
virtual void wheelEvent( QWheelEvent* );
/**
* Deletes a word backwards from the current cursor position,
* if available.
*/
virtual void deleteWordBack();
/**
* Deletes a word forwards from the current cursor position,
* if available.
*/
virtual void deleteWordForward();
/**
* Reimplemented from QTextEdit to add spelling related items
* when appropriate.
*/
virtual void contextMenuEvent( QContextMenuEvent* );
// TODO: KDE5: get rid of these as soon as BIC changes are allowed, they
// should be folded back into the normal public version, which
// should be made virtual.
// These methods just provide a way for derived classes to call
// the base class version of the normal methods.
/**
* Enable or disable the spellchecking. This is what setCheckSpellingEnabled()
* calls if there is no spell interface.
* @since 4.2
*/
void setCheckSpellingEnabledInternal(bool check);
/**
* Checks whether spellchecking is enabled or disabled. This is what
* checkSpellingEnabled calls if there is no spell interface.
* @since 4.2
*/
bool checkSpellingEnabledInternal() const;
private:
class Private;
Private *const d;
Q_PRIVATE_SLOT( d, void spellCheckerMisspelling( const QString&, int ) )
Q_PRIVATE_SLOT( d, void spellCheckerCorrected(const QString&, int,const QString&) )
Q_PRIVATE_SLOT( d, void spellCheckerCanceled())
Q_PRIVATE_SLOT( d, void spellCheckerAutoCorrect(const QString&,const QString&) )
Q_PRIVATE_SLOT( d, void spellCheckerFinished() )
Q_PRIVATE_SLOT( d, void undoableClear() )
Q_PRIVATE_SLOT( d, void toggleAutoSpellCheck() )
Q_PRIVATE_SLOT( d, void slotAllowTab() )
Q_PRIVATE_SLOT( d, void menuActivated( QAction* ) )
Q_PRIVATE_SLOT( d, void slotFindHighlight(const QString&, int, int))
Q_PRIVATE_SLOT( d, void slotReplaceText(const QString &, int, int, int))
};
#endif // KTEXTEDIT_H
|