KDECore
KAutostart Class Reference
KAutostart provides a programmatic means to control the state of autostart services on a per-user basis. More...
#include <kautostart.h>

Detailed Description
KAutostart provides a programmatic means to control the state of autostart services on a per-user basis.This is useful for applications that wish to offer a configurable means to allow the application to be autostarted.
By using this class you future-proof your applications against potential future or platform-specific changes to the autostart mechanism(s).
Typical usage might look like:
KAutostart autostart; // without an entryName arg, gets name from KAboutData autostart.setAutostarts(true); // will now start up when the user logs in // set the value in our configuration settings to reflect whether or not // we will actually start up on log in config.setAutoStart(autostart.autoStarts());
Definition at line 49 of file kautostart.h.
Member Enumeration Documentation
Flags for each of the conditions that may affect whether or not a service actually autostarted on login.
Definition at line 80 of file kautostart.h.
Enumerates the various autostart phases that occur during start-up.
- Enumerator:
Definition at line 93 of file kautostart.h.
Constructor & Destructor Documentation
Creates a new KAutostart object that represents the autostart service "entryName".
If the service already exists in the system then the values associated with that service, such as the executable command, will be loaded as well.
Note that unless this service is explicitly set to autostart, simply creating a KAutostart object will not result in the service being autostarted on next log in.
If no such service is already registered and the command to be executed on startup is not the same as entryName, then you will want to set the associated command with setExec(const QString&)
- See also:
- setExec
- Parameters:
-
entryName the name used to identify the service. If none is provided then it uses the name registered with KAboutData. parent QObject
Definition at line 49 of file kautostart.cpp.
KAutostart::~KAutostart | ( | ) |
Definition at line 75 of file kautostart.cpp.
Member Function Documentation
void KAutostart::addToAllowedEnvironments | ( | const QString & | environment | ) |
Adds an environment to the list of environments this service may start in.
Definition at line 193 of file kautostart.cpp.
void KAutostart::addToExcludedEnvironments | ( | const QString & | environment | ) |
Adds an environment to the list of environments this service may not be autostarted in.
- See also:
- removeFromExcludedEnvironments()
Definition at line 230 of file kautostart.cpp.
QStringList KAutostart::allowedEnvironments | ( | ) | const |
Returns the list of environments (e.g.
"KDE") this service is allowed to start in.
This does not take other autostart conditions into account. If any environment is added to the allowed environments list, then only those environments will be allowed to autoload the service. If an environment is marked as both allowed and excluded, it will be excluded.
- See also:
- setAllowedEnvironments()
Definition at line 183 of file kautostart.cpp.
bool KAutostart::autostarts | ( | const QString & | environment = QString() , |
|
Conditions | check = NoConditions | |||
) | const |
Returns whether or not the service represented by entryName in the autostart system is set to autostart at login or not.
- Parameters:
-
environment if provided the check will be performed as if being loaded in that environment check autostart conditions to check for (see commandToCheck())
- See also:
- setAutostarts()
Definition at line 85 of file kautostart.cpp.
QString KAutostart::command | ( | ) | const |
Returns the associated command for this autostart service.
- See also:
- setCommand()
Definition at line 107 of file kautostart.cpp.
QString KAutostart::commandToCheck | ( | ) | const |
Returns the executable to check for when attempting to autostart this service.
If the executable is not found in the user's environment, it will not autostart.
- See also:
- setCommandToCheck()
Definition at line 132 of file kautostart.cpp.
QStringList KAutostart::excludedEnvironments | ( | ) | const |
Returns the list of environments this service is explicitly not allowed to start in.
This does not take other autostart conditions such as into account. If the same environment is also marked as allowed, it will still be excluded.
- See also:
- setExcludedEnvironments()
Definition at line 220 of file kautostart.cpp.
bool KAutostart::isServiceRegistered | ( | const QString & | entryName | ) | [static] |
Checks whether or not a service by the given name entryName
is registered with the autostart system.
Does not check whether or not it is set to actually autostart or not.
- Parameters:
-
entryName the name of the service to check for
Definition at line 127 of file kautostart.cpp.
void KAutostart::removeFromAllowedEnvironments | ( | const QString & | environment | ) |
Removes an environment to the list of environments this service may start in.
- See also:
- addToAllowedEnvironments()
Definition at line 206 of file kautostart.cpp.
void KAutostart::removeFromExcludedEnvironments | ( | const QString & | environment | ) |
Removes an environment to the list of environments this service may not be autostarted in.
- See also:
- addToExcludedEnvironments()
Definition at line 243 of file kautostart.cpp.
void KAutostart::setAllowedEnvironments | ( | const QStringList & | environments | ) |
Sets the environments this service is allowed to start in.
Definition at line 188 of file kautostart.cpp.
void KAutostart::setAutostarts | ( | bool | autostart | ) |
Sets the given exec to start automatically at login.
- Parameters:
-
autostart will register with the autostart facility when true and deregister when false
- See also:
- autostarts()
Definition at line 80 of file kautostart.cpp.
void KAutostart::setCommand | ( | const QString & | command | ) |
Set the associated command for this autostart service.
- See also:
- command()
Definition at line 112 of file kautostart.cpp.
void KAutostart::setCommandToCheck | ( | const QString & | exec | ) |
Sets the executable to check for the existence of when autostarting this service.
- See also:
- commandToCheck()
Definition at line 137 of file kautostart.cpp.
void KAutostart::setExcludedEnvironments | ( | const QStringList & | environments | ) |
Sets the environments this service is not allowed to start in.
Definition at line 225 of file kautostart.cpp.
void KAutostart::setStartPhase | ( | KAutostart::StartPhase | phase | ) |
Sets the service (by name) this service should be started after.
Note that this is KDE specific and may not work in other environments.
- See also:
- StartPhase, startPhase()
Definition at line 166 of file kautostart.cpp.
void KAutostart::setVisibleName | ( | const QString & | entryName | ) |
Sets the user-visible name for this autostart service.
- See also:
- visibleName()
Definition at line 122 of file kautostart.cpp.
KAutostart::StartPhase KAutostart::startPhase | ( | ) | const |
Returns the autostart phase this service is started in.
Note that this is KDE specific and may not work in other environments.
- See also:
- StartPhase, setStartPhase()
Definition at line 161 of file kautostart.cpp.
QString KAutostart::visibleName | ( | ) | const |
Returns the user-visible name this autostart service is registered as.
- See also:
- setVisibleName(), setEntryName()
Definition at line 117 of file kautostart.cpp.
The documentation for this class was generated from the following files: