|
|
@ -48,9 +48,9 @@ class KSessionManaged;
|
|
|
|
class KStyle;
|
|
|
|
class KStyle;
|
|
|
|
class KURL;
|
|
|
|
class KURL;
|
|
|
|
|
|
|
|
|
|
|
|
#define kapp KApplication::kApplication()
|
|
|
|
#define kapp TDEApplication::kApplication()
|
|
|
|
|
|
|
|
|
|
|
|
class KApplicationPrivate;
|
|
|
|
class TDEApplicationPrivate;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Controls and provides information to all KDE applications.
|
|
|
|
* Controls and provides information to all KDE applications.
|
|
|
@ -68,10 +68,10 @@ class KApplicationPrivate;
|
|
|
|
* @li Installs a signal handler for the SIGCHLD signal in order to
|
|
|
|
* @li Installs a signal handler for the SIGCHLD signal in order to
|
|
|
|
* avoid zombie children. If you want to catch this signal yourself or
|
|
|
|
* avoid zombie children. If you want to catch this signal yourself or
|
|
|
|
* don't want it to be caught at all, you have set a new signal handler
|
|
|
|
* don't want it to be caught at all, you have set a new signal handler
|
|
|
|
* (or SIG_IGN) after KApplication's constructor has run.
|
|
|
|
* (or SIG_IGN) after TDEApplication's constructor has run.
|
|
|
|
* @li Installs an empty signal handler for the SIGPIPE signal using
|
|
|
|
* @li Installs an empty signal handler for the SIGPIPE signal using
|
|
|
|
* installSigpipeHandler(). If you want to catch this signal
|
|
|
|
* installSigpipeHandler(). If you want to catch this signal
|
|
|
|
* yourself, you have set a new signal handler after KApplication's
|
|
|
|
* yourself, you have set a new signal handler after TDEApplication's
|
|
|
|
* constructor has run.
|
|
|
|
* constructor has run.
|
|
|
|
* @li It can start new services
|
|
|
|
* @li It can start new services
|
|
|
|
*
|
|
|
|
*
|
|
|
@ -93,7 +93,7 @@ class KApplicationPrivate;
|
|
|
|
* @short Controls and provides information to all KDE applications.
|
|
|
|
* @short Controls and provides information to all KDE applications.
|
|
|
|
* @author Matthias Kalle Dalheimer <kalle@kde.org>
|
|
|
|
* @author Matthias Kalle Dalheimer <kalle@kde.org>
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
class TDECORE_EXPORT KApplication : public TQApplication, public KInstance
|
|
|
|
class TDECORE_EXPORT TDEApplication : public TQApplication, public KInstance
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
Q_OBJECT
|
|
|
@ -115,9 +115,9 @@ public:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* If ARGB (transparent) widgets are to be used in your application,
|
|
|
|
* If ARGB (transparent) widgets are to be used in your application,
|
|
|
|
* please use
|
|
|
|
* please use
|
|
|
|
* KApplication app(KApplication::openX11RGBADisplay());
|
|
|
|
* TDEApplication app(TDEApplication::openX11RGBADisplay());
|
|
|
|
* or
|
|
|
|
* or
|
|
|
|
* KApplication app(KApplication::openX11RGBADisplay(), useStyles);
|
|
|
|
* TDEApplication app(TDEApplication::openX11RGBADisplay(), useStyles);
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param allowStyles Set to false to disable the loading on plugin based
|
|
|
|
* @param allowStyles Set to false to disable the loading on plugin based
|
|
|
|
* styles. This is only useful to applications that do not display a GUI
|
|
|
|
* styles. This is only useful to applications that do not display a GUI
|
|
|
@ -128,7 +128,7 @@ public:
|
|
|
|
* @param GUIenabled Set to false to disable all GUI stuff. This implies
|
|
|
|
* @param GUIenabled Set to false to disable all GUI stuff. This implies
|
|
|
|
* no styles either.
|
|
|
|
* no styles either.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
KApplication( bool allowStyles=true, bool GUIenabled=true);
|
|
|
|
TDEApplication( bool allowStyles=true, bool GUIenabled=true);
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -148,7 +148,7 @@ public:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @see RGBADisplay()
|
|
|
|
* @see RGBADisplay()
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
KApplication(Display *display, bool allowStyles);
|
|
|
|
TDEApplication(Display *display, bool allowStyles);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Constructor. Parses command-line arguments. Use this constructor when you
|
|
|
|
* Constructor. Parses command-line arguments. Use this constructor when you
|
|
|
@ -177,7 +177,7 @@ public:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @see RGBADisplay()
|
|
|
|
* @see RGBADisplay()
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
KApplication(Display *display, bool disable_argb, Qt::HANDLE visual, Qt::HANDLE colormap, bool allowStyles);
|
|
|
|
TDEApplication(Display *display, bool disable_argb, Qt::HANDLE visual, Qt::HANDLE colormap, bool allowStyles);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Constructor. Parses command-line arguments. Use this constructor when you
|
|
|
|
* Constructor. Parses command-line arguments. Use this constructor when you
|
|
|
@ -202,11 +202,11 @@ public:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @since KDE 3.3
|
|
|
|
* @since KDE 3.3
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
KApplication(Display *display, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0,
|
|
|
|
TDEApplication(Display *display, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0,
|
|
|
|
bool allowStyles=true);
|
|
|
|
bool allowStyles=true);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Constructor. Parses command-line arguments. Use this constructor to use KApplication
|
|
|
|
* Constructor. Parses command-line arguments. Use this constructor to use TDEApplication
|
|
|
|
* in a Motif or Xt program.
|
|
|
|
* in a Motif or Xt program.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param display Will be passed to Qt as the X display. The display must be valid and already
|
|
|
|
* @param display Will be passed to Qt as the X display. The display must be valid and already
|
|
|
@ -229,7 +229,7 @@ public:
|
|
|
|
* @param GUIenabled Set to false to disable all GUI stuff. This implies
|
|
|
|
* @param GUIenabled Set to false to disable all GUI stuff. This implies
|
|
|
|
* no styles either.
|
|
|
|
* no styles either.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
KApplication(Display *display, int& argc, char** argv, const TQCString& rAppName,
|
|
|
|
TDEApplication(Display *display, int& argc, char** argv, const TQCString& rAppName,
|
|
|
|
bool allowStyles=true, bool GUIenabled=true);
|
|
|
|
bool allowStyles=true, bool GUIenabled=true);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
@ -257,7 +257,7 @@ public:
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
// REMOVE FOR KDE 4.0 - using it only gives crashing applications because
|
|
|
|
// REMOVE FOR KDE 4.0 - using it only gives crashing applications because
|
|
|
|
// TDECmdLineArgs::init isn't called
|
|
|
|
// TDECmdLineArgs::init isn't called
|
|
|
|
KApplication(int& argc, char** argv,
|
|
|
|
TDEApplication(int& argc, char** argv,
|
|
|
|
const TQCString& rAppName, bool allowStyles=true, bool GUIenabled=true) KDE_DEPRECATED;
|
|
|
|
const TQCString& rAppName, bool allowStyles=true, bool GUIenabled=true) KDE_DEPRECATED;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -265,19 +265,19 @@ public:
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
static void addCmdLineOptions();
|
|
|
|
static void addCmdLineOptions();
|
|
|
|
|
|
|
|
|
|
|
|
virtual ~KApplication();
|
|
|
|
virtual ~TDEApplication();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Returns the current application object.
|
|
|
|
* Returns the current application object.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This is similar to the global TQApplication pointer tqApp. It
|
|
|
|
* This is similar to the global TQApplication pointer tqApp. It
|
|
|
|
* allows access to the single global KApplication object, since
|
|
|
|
* allows access to the single global TDEApplication object, since
|
|
|
|
* more than one cannot be created in the same application. It
|
|
|
|
* more than one cannot be created in the same application. It
|
|
|
|
* saves you the trouble of having to pass the pointer explicitly
|
|
|
|
* saves you the trouble of having to pass the pointer explicitly
|
|
|
|
* to every function that may require it.
|
|
|
|
* to every function that may require it.
|
|
|
|
* @return the current application object
|
|
|
|
* @return the current application object
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
static KApplication* kApplication() { return KApp; }
|
|
|
|
static TDEApplication* kApplication() { return KApp; }
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Returns the application session config object.
|
|
|
|
* Returns the application session config object.
|
|
|
@ -450,7 +450,7 @@ public:
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Disable automatic dcop registration
|
|
|
|
* Disable automatic dcop registration
|
|
|
|
* Must be called before creating a KApplication instance to have an effect.
|
|
|
|
* Must be called before creating a TDEApplication instance to have an effect.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
static void disableAutoDcopRegistration();
|
|
|
|
static void disableAutoDcopRegistration();
|
|
|
|
|
|
|
|
|
|
|
@ -951,10 +951,10 @@ public:
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
* @internal
|
|
|
|
* Opens the display
|
|
|
|
* Opens the display
|
|
|
|
* This can be used to initialize a KApplication with RGBA support like this:
|
|
|
|
* This can be used to initialize a TDEApplication with RGBA support like this:
|
|
|
|
* KApplication app(KApplication::openX11RGBADisplay());
|
|
|
|
* TDEApplication app(TDEApplication::openX11RGBADisplay());
|
|
|
|
* or
|
|
|
|
* or
|
|
|
|
* KApplication app(KApplication::openX11RGBADisplay(), useStyles);
|
|
|
|
* TDEApplication app(TDEApplication::openX11RGBADisplay(), useStyles);
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
static Display* openX11RGBADisplay();
|
|
|
|
static Display* openX11RGBADisplay();
|
|
|
|
|
|
|
|
|
|
|
@ -978,7 +978,7 @@ public:
|
|
|
|
* You must first call getX11RGBAInformation()
|
|
|
|
* You must first call getX11RGBAInformation()
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Note that getX11RGBAInformation() has already
|
|
|
|
* Note that getX11RGBAInformation() has already
|
|
|
|
* been called if you used the default KApplication
|
|
|
|
* been called if you used the default TDEApplication
|
|
|
|
* constructor.
|
|
|
|
* constructor.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Additionally, at least one application must have called
|
|
|
|
* Additionally, at least one application must have called
|
|
|
@ -994,7 +994,7 @@ public:
|
|
|
|
* Enables style plugins.
|
|
|
|
* Enables style plugins.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This is useful only to applications that normally
|
|
|
|
* This is useful only to applications that normally
|
|
|
|
* do not display a GUI and create the KApplication with
|
|
|
|
* do not display a GUI and create the TDEApplication with
|
|
|
|
* allowStyles set to false.
|
|
|
|
* allowStyles set to false.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
void enableStyles();
|
|
|
|
void enableStyles();
|
|
|
@ -1215,7 +1215,7 @@ public:
|
|
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
public slots:
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Tells KApplication about one more operation that should be finished
|
|
|
|
* Tells TDEApplication about one more operation that should be finished
|
|
|
|
* before the application exits. The standard behavior is to exit on the
|
|
|
|
* before the application exits. The standard behavior is to exit on the
|
|
|
|
* "last window closed" event, but some events should outlive the last window closed
|
|
|
|
* "last window closed" event, but some events should outlive the last window closed
|
|
|
|
* (e.g. a file copy for a file manager, or 'compacting folders on exit' for a mail client).
|
|
|
|
* (e.g. a file copy for a file manager, or 'compacting folders on exit' for a mail client).
|
|
|
@ -1223,7 +1223,7 @@ public slots:
|
|
|
|
void ref();
|
|
|
|
void ref();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Tells KApplication that one operation such as those described in ref() just finished.
|
|
|
|
* Tells TDEApplication that one operation such as those described in ref() just finished.
|
|
|
|
* The application exits if the counter is back to 0.
|
|
|
|
* The application exits if the counter is back to 0.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
void deref();
|
|
|
|
void deref();
|
|
|
@ -1232,13 +1232,13 @@ protected:
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @internal Used by KUniqueApplication
|
|
|
|
* @internal Used by KUniqueApplication
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
KApplication( bool allowStyles, bool GUIenabled, KInstance* _instance );
|
|
|
|
TDEApplication( bool allowStyles, bool GUIenabled, KInstance* _instance );
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @internal Used by KUniqueApplication
|
|
|
|
* @internal Used by KUniqueApplication
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
KApplication( Display *display, Qt::HANDLE visual, Qt::HANDLE colormap,
|
|
|
|
TDEApplication( Display *display, Qt::HANDLE visual, Qt::HANDLE colormap,
|
|
|
|
bool allowStyles, KInstance* _instance );
|
|
|
|
bool allowStyles, KInstance* _instance );
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -1252,7 +1252,7 @@ protected:
|
|
|
|
int kipcEventMask;
|
|
|
|
int kipcEventMask;
|
|
|
|
|
|
|
|
|
|
|
|
/// Current application object.
|
|
|
|
/// Current application object.
|
|
|
|
static KApplication *KApp;
|
|
|
|
static TDEApplication *KApp;
|
|
|
|
int pArgc;
|
|
|
|
int pArgc;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -1261,8 +1261,8 @@ protected:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param slot is the slot as returned using the TQT_SLOT() macro, for example TQT_SLOT( cut() )
|
|
|
|
* @param slot is the slot as returned using the TQT_SLOT() macro, for example TQT_SLOT( cut() )
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This method can be used in KApplication subclasses to implement application wide
|
|
|
|
* This method can be used in TDEApplication subclasses to implement application wide
|
|
|
|
* edit actions not supported by the KApplication class. For example (in your subclass):
|
|
|
|
* edit actions not supported by the TDEApplication class. For example (in your subclass):
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* \code
|
|
|
|
* void MyApplication::deselect()
|
|
|
|
* void MyApplication::deselect()
|
|
|
@ -1386,7 +1386,7 @@ public:
|
|
|
|
* Installs a handler for the SIGPIPE signal. It is thrown when you write to
|
|
|
|
* Installs a handler for the SIGPIPE signal. It is thrown when you write to
|
|
|
|
* a pipe or socket that has been closed.
|
|
|
|
* a pipe or socket that has been closed.
|
|
|
|
* The handler is installed automatically in the constructor, but you may
|
|
|
|
* The handler is installed automatically in the constructor, but you may
|
|
|
|
* need it if your application or component does not have a KApplication
|
|
|
|
* need it if your application or component does not have a TDEApplication
|
|
|
|
* instance.
|
|
|
|
* instance.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
static void installSigpipeHandler();
|
|
|
|
static void installSigpipeHandler();
|
|
|
@ -1401,7 +1401,7 @@ public:
|
|
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
signals:
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Emitted when KApplication has changed its palette due to a KControl request.
|
|
|
|
* Emitted when TDEApplication has changed its palette due to a KControl request.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Normally, widgets will update their palette automatically, but you
|
|
|
|
* Normally, widgets will update their palette automatically, but you
|
|
|
|
* should connect to this to program special behavior.
|
|
|
|
* should connect to this to program special behavior.
|
|
|
@ -1409,7 +1409,7 @@ signals:
|
|
|
|
void kdisplayPaletteChanged();
|
|
|
|
void kdisplayPaletteChanged();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Emitted when KApplication has changed its GUI style in response to a KControl request.
|
|
|
|
* Emitted when TDEApplication has changed its GUI style in response to a KControl request.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Normally, widgets will update their styles automatically (as they would
|
|
|
|
* Normally, widgets will update their styles automatically (as they would
|
|
|
|
* respond to an explicit setGUIStyle() call), but you should connect to
|
|
|
|
* respond to an explicit setGUIStyle() call), but you should connect to
|
|
|
@ -1418,7 +1418,7 @@ signals:
|
|
|
|
void kdisplayStyleChanged();
|
|
|
|
void kdisplayStyleChanged();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Emitted when KApplication has changed its font in response to a KControl request.
|
|
|
|
* Emitted when TDEApplication has changed its font in response to a KControl request.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Normally widgets will update their fonts automatically, but you should
|
|
|
|
* Normally widgets will update their fonts automatically, but you should
|
|
|
|
* connect to this to monitor global font changes, especially if you are
|
|
|
|
* connect to this to monitor global font changes, especially if you are
|
|
|
@ -1431,7 +1431,7 @@ signals:
|
|
|
|
void kdisplayFontChanged();
|
|
|
|
void kdisplayFontChanged();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Emitted when KApplication has changed either its GUI style, its font or its palette
|
|
|
|
* Emitted when TDEApplication has changed either its GUI style, its font or its palette
|
|
|
|
* in response to a kdisplay request. Normally, widgets will update their styles
|
|
|
|
* in response to a kdisplay request. Normally, widgets will update their styles
|
|
|
|
* automatically, but you should connect to this to program special
|
|
|
|
* automatically, but you should connect to this to program special
|
|
|
|
* behavior. */
|
|
|
|
* behavior. */
|
|
|
@ -1451,7 +1451,7 @@ signals:
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Emitted when the global settings have been changed - see KGlobalSettings
|
|
|
|
* Emitted when the global settings have been changed - see KGlobalSettings
|
|
|
|
* KApplication takes care of calling reparseConfiguration on KGlobal::config()
|
|
|
|
* TDEApplication takes care of calling reparseConfiguration on KGlobal::config()
|
|
|
|
* so that applications/classes using this only have to re-read the configuration
|
|
|
|
* so that applications/classes using this only have to re-read the configuration
|
|
|
|
* @param category the category among the enum above
|
|
|
|
* @param category the category among the enum above
|
|
|
|
*/
|
|
|
|
*/
|
|
|
@ -1536,12 +1536,12 @@ private:
|
|
|
|
|
|
|
|
|
|
|
|
int captionLayout;
|
|
|
|
int captionLayout;
|
|
|
|
|
|
|
|
|
|
|
|
KApplication(const KApplication&);
|
|
|
|
TDEApplication(const TDEApplication&);
|
|
|
|
KApplication& operator=(const KApplication&);
|
|
|
|
TDEApplication& operator=(const TDEApplication&);
|
|
|
|
protected:
|
|
|
|
protected:
|
|
|
|
virtual void virtual_hook( int id, void* data );
|
|
|
|
virtual void virtual_hook( int id, void* data );
|
|
|
|
private:
|
|
|
|
private:
|
|
|
|
KApplicationPrivate* d;
|
|
|
|
TDEApplicationPrivate* d;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -1572,7 +1572,7 @@ class KSessionManagedPrivate;
|
|
|
|
|
|
|
|
|
|
|
|
KSessionManaged makes it possible to provide implementations for
|
|
|
|
KSessionManaged makes it possible to provide implementations for
|
|
|
|
TQApplication::commitData() and TQApplication::saveState(), without
|
|
|
|
TQApplication::commitData() and TQApplication::saveState(), without
|
|
|
|
subclassing KApplication. KMainWindow internally makes use of this.
|
|
|
|
subclassing TDEApplication. KMainWindow internally makes use of this.
|
|
|
|
|
|
|
|
|
|
|
|
You don't need to do anything with this class when using
|
|
|
|
You don't need to do anything with this class when using
|
|
|
|
KMainWindow. Instead, use KMainWindow::saveProperties(),
|
|
|
|
KMainWindow. Instead, use KMainWindow::saveProperties(),
|
|
|
@ -1591,7 +1591,7 @@ public:
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
See TQApplication::saveState() for documentation.
|
|
|
|
See TQApplication::saveState() for documentation.
|
|
|
|
|
|
|
|
|
|
|
|
This function is just a convenience version to avoid subclassing KApplication.
|
|
|
|
This function is just a convenience version to avoid subclassing TDEApplication.
|
|
|
|
|
|
|
|
|
|
|
|
Return true to indicate a successful state save or false to
|
|
|
|
Return true to indicate a successful state save or false to
|
|
|
|
indicate a problem and to halt the shutdown process (will
|
|
|
|
indicate a problem and to halt the shutdown process (will
|
|
|
@ -1601,7 +1601,7 @@ public:
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
See TQApplication::commitData() for documentation.
|
|
|
|
See TQApplication::commitData() for documentation.
|
|
|
|
|
|
|
|
|
|
|
|
This function is just a convenience version to avoid subclassing KApplication.
|
|
|
|
This function is just a convenience version to avoid subclassing TDEApplication.
|
|
|
|
|
|
|
|
|
|
|
|
Return true to indicate a successful commit of data or false to
|
|
|
|
Return true to indicate a successful commit of data or false to
|
|
|
|
indicate a problem and to halt the shutdown process (will
|
|
|
|
indicate a problem and to halt the shutdown process (will
|
|
|
|