KDECore
kauthorized.cpp File Reference
#include "kauthorized.h"#include <QtCore/QDir>#include <QtCore/QRegExp>#include <QList>#include <QCoreApplication>#include <kglobal.h>#include <ksharedconfig.h>#include <kprotocolinfo.h>#include <kstandarddirs.h>#include <stdlib.h>#include <unistd.h>#include <netdb.h>#include <kurl.h>#include <kconfiggroup.h>#include <QMutex>#include <QMutexLocker>#include <QtCore/QBool>Go to the source code of this file.
Defines | |
| #define | checkEqual(s, b) b = (s == "="); |
| #define | checkExactMatch(s, b) |
| #define | checkStartWildCard(s, b) |
| #define | MY_D KAuthorizedPrivate *d=authPrivate(); |
Functions | |
| static void | initUrlActionRestrictions () |
Variables | |
| bool | kde_kiosk_exception |
Define Documentation
| #define checkEqual | ( | s, | |||
| b | ) | b = (s == "="); |
Definition at line 62 of file kauthorized.cpp.
| #define checkExactMatch | ( | s, | |||
| b | ) |
Value:
if (s.isEmpty()) b = true; \ else if (s[s.length()-1] == '!') \ { b = false; s.truncate(s.length()-1); } \ else b = true;
Definition at line 52 of file kauthorized.cpp.
| #define checkStartWildCard | ( | s, | |||
| b | ) |
Value:
if (s.isEmpty()) b = true; \ else if (s[0] == '*') \ { b = true; s = s.mid(1); } \ else b = false;
Definition at line 57 of file kauthorized.cpp.
| #define MY_D KAuthorizedPrivate *d=authPrivate(); |
Definition at line 215 of file kauthorized.cpp.
Function Documentation
| static void initUrlActionRestrictions | ( | ) | [static] |
Definition at line 261 of file kauthorized.cpp.
Variable Documentation
Definition at line 158 of file kcomponentdata.cpp.
KDE 4.3 API Reference