• Skip to content
  • Skip to link menu
KDE 4.0 API Reference
  • KDE API Reference
  • kdelibs
  • Sitemap
  • Contact Us
 

KDECore

KDesktopFile Class Reference

#include <kdesktopfile.h>

Inheritance diagram for KDesktopFile:

Inheritance graph
[legend]

List of all members.


Detailed Description

KDE Desktop File Management.

This class implements KDE's support for the freedesktop.org Desktop Entry Spec.

Author:
Pietro Iglio <iglio@kde.org>
See also:
KConfigBase KConfig

Desktop Entry Spec

Definition at line 36 of file kdesktopfile.h.


Public Member Functions

 KDesktopFile (const char *resourceType, const QString &fileName)
 KDesktopFile (const QString &fileName)
virtual ~KDesktopFile ()
KConfigGroup desktopGroup () const
QString readType () const
QString readIcon () const
QString readName () const
QString readComment () const
QString readGenericName () const
QString readPath () const
QString readDevice () const
QString readUrl () const
QStringList readActions () const
KConfigGroup actionGroup (const QString &group)
const KConfigGroup actionGroup (const QString &group) const
bool hasActionGroup (const QString &group) const
bool hasLinkType () const
bool hasApplicationType () const
bool hasMimeTypeType () const
bool hasDeviceType () const
bool tryExec () const
QString readDocPath () const
QStringList sortOrder () const
KDesktopFile * copyTo (const QString &file) const
QString fileName () const
const char * resource () const

Static Public Member Functions

static bool isDesktopFile (const QString &path)
static bool isAuthorizedDesktopFile (const QString &path)
static QString locateLocal (const QString &path)

Constructor & Destructor Documentation

KDesktopFile::KDesktopFile ( const char *  resourceType,
const QString &  fileName 
) [explicit]

Constructs a KDesktopFile object and make it either read-write or read-only.

Parameters:
fileName The name or path of the desktop file. If it is not absolute, it will be located using the resource type resType.
readOnly Whether the object should be read-only.
resType Allows you to change what sort of resource to search for if fileName is not absolute. For instance, you might want to specify "config".

Definition at line 50 of file kdesktopfile.cpp.

KDesktopFile::KDesktopFile ( const QString &  fileName  )  [explicit]

Definition at line 59 of file kdesktopfile.cpp.

KDesktopFile::~KDesktopFile (  )  [virtual]

Destructs the KDesktopFile object.

Writes back any dirty configuration entries.

Definition at line 69 of file kdesktopfile.cpp.


Member Function Documentation

bool KDesktopFile::isDesktopFile ( const QString &  path  )  [static]

Checks whether this is really a desktop file.

The check is performed looking at the file extension (the file is not opened). Currently, the only valid extension is ".desktop".

Parameters:
path the path of the file to check
Returns:
true if the file appears to be a desktop file.

Definition at line 131 of file kdesktopfile.cpp.

bool KDesktopFile::isAuthorizedDesktopFile ( const QString &  path  )  [static]

Checks whether the user is authorized to run this desktop file.

By default users are authorized to run all desktop files but the KIOSK framework can be used to activate certain restrictions. See README.kiosk for more information.

Parameters:
path the file to check
Returns:
true if the user is authorized to run the file

Definition at line 137 of file kdesktopfile.cpp.

QString KDesktopFile::locateLocal ( const QString &  path  )  [static]

Returns the location where changes for the .desktop file path should be written to.

Definition at line 79 of file kdesktopfile.cpp.

KConfigGroup KDesktopFile::desktopGroup (  )  const

Definition at line 73 of file kdesktopfile.cpp.

QString KDesktopFile::readType (  )  const

Returns the value of the "Type=" entry.

Returns:
the type or QString() if not specified

Definition at line 162 of file kdesktopfile.cpp.

QString KDesktopFile::readIcon (  )  const

Returns the value of the "Icon=" entry.

Returns:
the icon or QString() if not specified

Definition at line 168 of file kdesktopfile.cpp.

QString KDesktopFile::readName (  )  const

Returns the value of the "Name=" entry.

Returns:
the name or QString() if not specified

Definition at line 174 of file kdesktopfile.cpp.

QString KDesktopFile::readComment (  )  const

Returns the value of the "Comment=" entry.

Returns:
the comment or QString() if not specified

Definition at line 180 of file kdesktopfile.cpp.

QString KDesktopFile::readGenericName (  )  const

Returns the value of the "GenericName=" entry.

Returns:
the generic name or QString() if not specified

Definition at line 186 of file kdesktopfile.cpp.

QString KDesktopFile::readPath (  )  const

Returns the value of the "Path=" entry.

Returns:
the path or QString() if not specified

Definition at line 192 of file kdesktopfile.cpp.

QString KDesktopFile::readDevice (  )  const

Returns the value of the "Dev=" entry.

Returns:
the device or QString() if not specified

Definition at line 200 of file kdesktopfile.cpp.

QString KDesktopFile::readUrl (  )  const

Returns the value of the "URL=" entry.

Returns:
the URL or QString() if not specified

Definition at line 206 of file kdesktopfile.cpp.

QStringList KDesktopFile::readActions (  )  const

Returns a list of the "Actions=" entries.

Returns:
the list of actions

Definition at line 223 of file kdesktopfile.cpp.

KConfigGroup KDesktopFile::actionGroup ( const QString &  group  ) 

Sets the desktop action group.

Parameters:
group the new action group

Definition at line 229 of file kdesktopfile.cpp.

const KConfigGroup KDesktopFile::actionGroup ( const QString &  group  )  const

Definition at line 234 of file kdesktopfile.cpp.

bool KDesktopFile::hasActionGroup ( const QString &  group  )  const

Returns true if the action group exists, false otherwise.

Parameters:
group the action group to test
Returns:
true if the action group exists

Definition at line 239 of file kdesktopfile.cpp.

bool KDesktopFile::hasLinkType (  )  const

Checks whether there is a "Type=Link" entry.

The link points to the "URL=" entry.

Returns:
true if there is a "Type=Link" entry

Definition at line 244 of file kdesktopfile.cpp.

bool KDesktopFile::hasApplicationType (  )  const

Checks whether there is an entry "Type=Application".

Returns:
true if there is a "Type=Application" entry

Definition at line 249 of file kdesktopfile.cpp.

bool KDesktopFile::hasMimeTypeType (  )  const

Checks whether there is an entry "Type=MimeType".

Returns:
true if there is a "Type=MimeType" entry

Definition at line 254 of file kdesktopfile.cpp.

bool KDesktopFile::hasDeviceType (  )  const

Checks whether there is an entry "Type=FSDevice".

Returns:
true if there is a "Type=FSDevice" entry

Definition at line 259 of file kdesktopfile.cpp.

bool KDesktopFile::tryExec (  )  const

Checks whether the TryExec field contains a binary which is found on the local system.

Returns:
true if TryExec contains an existing binary

Definition at line 264 of file kdesktopfile.cpp.

QString KDesktopFile::readDocPath (  )  const

Returns the value of the "X-DocPath=" Or "DocPath=" entry.

Returns:
The value of the "X-DocPath=" Or "DocPath=" entry.

Definition at line 345 of file kdesktopfile.cpp.

QStringList KDesktopFile::sortOrder (  )  const

Returns the entry of the "SortOrder=" entry.

Returns:
the filename as passed to the constructor.

the value of the "SortOrder=" entry.

the resource type as passed to the constructor.

Definition at line 336 of file kdesktopfile.cpp.

KDesktopFile * KDesktopFile::copyTo ( const QString &  file  )  const

Copies all entries from this config object to a new KDesktopFile object that will save itself to file.

Actual saving to file happens when the returned object is destructed or when sync() is called upon it.

Parameters:
file the new KDesktopFile object it will save itself to.

Definition at line 354 of file kdesktopfile.cpp.

QString KDesktopFile::fileName (  )  const

Definition at line 368 of file kdesktopfile.cpp.

const char * KDesktopFile::resource (  )  const

Definition at line 362 of file kdesktopfile.cpp.


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

KDECore

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

kdelibs

Skip menu "kdelibs"
  • DNSSD
  • Interfaces
  •   KHexEdit
  •   KMediaPlayer
  •   KSpeech
  •   KTextEditor
  • Kate
  • kconf_update
  • KDE3Support
  •   KUnitTest
  • KDECore
  • KDED
  • KDEsu
  • KDEUI
  • KDocTools
  • KFile
  • KHTML
  • KImgIO
  • KInit
  • KIO
  • KIOSlave
  • KJS
  •   WTF
  • KJSEmbed
  • KNewStuff
  • KParts
  • Kross
  • KUtils
  • Nepomuk
  •   core
  • Phonon
  •   Backend
  • Solid
  • Sonnet
  • ThreadWeaver
Generated for kdelibs by doxygen 1.5.4
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