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

KIO

Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions
KUrlCompletion Class Reference

#include <kurlcompletion.h>

Inheritance diagram for KUrlCompletion:
Inheritance graph
[legend]

List of all members.

Public Types

enum  Mode { ExeCompletion = 1, FileCompletion, DirCompletion }

Public Member Functions

 KUrlCompletion ()
 KUrlCompletion (Mode)
virtual ~KUrlCompletion ()
virtual QString dir () const
virtual bool isRunning () const
virtual QString makeCompletion (const QString &text)
virtual Mode mode () const
QString replacedPath (const QString &text) const
virtual bool replaceEnv () const
virtual bool replaceHome () const
virtual void setDir (const QString &dir)
virtual void setMode (Mode mode)
virtual void setReplaceEnv (bool replace)
virtual void setReplaceHome (bool replace)
virtual void stop ()

Static Public Member Functions

static QString replacedPath (const QString &text, bool replaceHome, bool replaceEnv=true)

Protected Member Functions

virtual void customEvent (QEvent *e)
void postProcessMatch (QString *match) const
void postProcessMatches (QStringList *matches) const
void postProcessMatches (KCompletionMatches *matches) const

Detailed Description

This class does completion of URLs including user directories (~user) and environment variables.

Remote URLs are passed to KIO.

Completion of a single URL

Author:
David Smith <dsmith@algonet.se>

Member Enumeration Documentation

enum KUrlCompletion::Mode

Determines how completion is done.

  • ExeCompletion - executables in $PATH or with full path.
  • FileCompletion - all files with full path or in dir(), URLs are listed using KIO.
  • DirCompletion - Same as FileCompletion but only returns directories.
Enumerator:
ExeCompletion 
FileCompletion 
DirCompletion 

Definition at line 53 of file kurlcompletion.h.


Constructor & Destructor Documentation

KUrlCompletion::KUrlCompletion ( )

Constructs a KUrlCompletion object in FileCompletion mode.

Definition at line 496 of file kurlcompletion.cpp.

KUrlCompletion::KUrlCompletion ( Mode  _mode)

This overloaded constructor allows you to set the Mode to ExeCompletion or FileCompletion without using setMode.

Default is FileCompletion.

Definition at line 502 of file kurlcompletion.cpp.

KUrlCompletion::~KUrlCompletion ( ) [virtual]

Destructs the KUrlCompletion object.

Definition at line 510 of file kurlcompletion.cpp.


Member Function Documentation

void KUrlCompletion::customEvent ( QEvent *  e) [protected, virtual]

Definition at line 1319 of file kurlcompletion.cpp.

QString KUrlCompletion::dir ( ) const [virtual]

Returns the current directory, as it was given in setDir.

Returns:
the current directory (path or URL)

Definition at line 543 of file kurlcompletion.cpp.

bool KUrlCompletion::isRunning ( ) const [virtual]

Check whether asynchronous completion is in progress.

Returns:
true if asynchronous completion is in progress

Definition at line 668 of file kurlcompletion.cpp.

QString KUrlCompletion::makeCompletion ( const QString &  text) [virtual]

Finds completions to the given text.

Remote URLs are listed with KIO. For performance reasons, local files are listed with KIO only if KURLCOMPLETION_LOCAL_KIO is set. The completion is done asyncronously if KIO is used.

Returns the first match for user, environment, and local dir completion and QString() for asynchronous completion (KIO or threaded).

Parameters:
textthe text to complete
Returns:
the first match, or QString() if not found

Reimplemented from KCompletion.

Reimplemented in KShellCompletion.

Definition at line 583 of file kurlcompletion.cpp.

KUrlCompletion::Mode KUrlCompletion::mode ( ) const [virtual]

Returns the completion mode: exe or file completion (default FileCompletion).

Returns:
the completion mode

Definition at line 548 of file kurlcompletion.cpp.

void KUrlCompletion::postProcessMatch ( QString *  match) const [protected, virtual]

Reimplemented from KCompletion.

Reimplemented in KShellCompletion.

Definition at line 1256 of file kurlcompletion.cpp.

void KUrlCompletion::postProcessMatches ( QStringList *  matches) const [protected, virtual]

Reimplemented from KCompletion.

Reimplemented in KShellCompletion.

Definition at line 1305 of file kurlcompletion.cpp.

void KUrlCompletion::postProcessMatches ( KCompletionMatches *  matches) const [protected, virtual]

Reimplemented from KCompletion.

Reimplemented in KShellCompletion.

Definition at line 1312 of file kurlcompletion.cpp.

QString KUrlCompletion::replacedPath ( const QString &  text) const

Replaces username and/or environment variables, depending on the current settings and returns the filtered url.

Only works with local files, i.e. returns back the original string for non-local urls.

Parameters:
textthe text to process
Returns:
the path or URL resulting from this operation. If you want to convert it to a KUrl, use KUrl::fromPathOrUrl.

Definition at line 1360 of file kurlcompletion.cpp.

QString KUrlCompletion::replacedPath ( const QString &  text,
bool  replaceHome,
bool  replaceEnv = true 
) [static]

I'll let ossi add a real one to KShell :)

Definition at line 1346 of file kurlcompletion.cpp.

bool KUrlCompletion::replaceEnv ( ) const [virtual]

Checks whether environment variables are completed and whether they are replaced internally while finding completions.

Default is enabled.

Returns:
true if environment vvariables will be replaced

Definition at line 558 of file kurlcompletion.cpp.

bool KUrlCompletion::replaceHome ( ) const [virtual]

Returns whether ~username is completed and whether ~username is replaced internally with the user's home directory while finding completions.

Default is enabled.

Returns:
true to replace tilde with the home directory

Definition at line 568 of file kurlcompletion.cpp.

void KUrlCompletion::setDir ( const QString &  dir) [virtual]

Sets the current directory (used as base for completion).

Default = $HOME.

Parameters:
dirthe current directory, either as a path or URL

Definition at line 538 of file kurlcompletion.cpp.

void KUrlCompletion::setMode ( Mode  mode) [virtual]

Changes the completion mode: exe or file completion.

Parameters:
modethe new completion mode

Definition at line 553 of file kurlcompletion.cpp.

void KUrlCompletion::setReplaceEnv ( bool  replace) [virtual]

Enables/disables completion and replacement (internally) of environment variables in URLs.

Default is enabled.

Parameters:
replacetrue to replace environment variables

Definition at line 563 of file kurlcompletion.cpp.

void KUrlCompletion::setReplaceHome ( bool  replace) [virtual]

Enables/disables completion of ~username and replacement (internally) of ~username with the user's home directory.

Default is enabled.

Parameters:
replacetrue to replace tilde with the home directory

Definition at line 573 of file kurlcompletion.cpp.

void KUrlCompletion::stop ( ) [virtual]

Stops asynchronous completion.

Definition at line 678 of file kurlcompletion.cpp.


The documentation for this class was generated from the following files:
  • kurlcompletion.h
  • kurlcompletion.cpp

KIO

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

kdelibs

Skip menu "kdelibs"
  • DNSSD
  • Interfaces
  •   KHexEdit
  •   KMediaPlayer
  •   KSpeech
  •   KTextEditor
  • kconf_update
  • KDE3Support
  •   KUnitTest
  • KDECore
  • KDED
  • KDEsu
  • KDEUI
  • KDEWebKit
  • KDocTools
  • KFile
  • KHTML
  • KImgIO
  • KInit
  • kio
  • KIOSlave
  • KJS
  •   KJS-API
  •   WTF
  • kjsembed
  • KNewStuff
  • KParts
  • KPty
  • Kross
  • KUnitConversion
  • KUtils
  • Nepomuk
  • Plasma
  • Solid
  • Sonnet
  • ThreadWeaver
Generated for kdelibs by doxygen 1.7.5
This website is maintained by Adriaan de Groot and Allen Winter.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal