summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KApplicationSignals.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KApplicationSignals.java')
-rw-r--r--kdejava/koala/org/kde/koala/KApplicationSignals.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/kdejava/koala/org/kde/koala/KApplicationSignals.java b/kdejava/koala/org/kde/koala/KApplicationSignals.java
index 705fb34a..2e2c276b 100644
--- a/kdejava/koala/org/kde/koala/KApplicationSignals.java
+++ b/kdejava/koala/org/kde/koala/KApplicationSignals.java
@@ -11,38 +11,38 @@ import org.kde.qt.TQEvent;
import org.kde.qt.TQWidget;
import org.kde.qt.TQPalette;
-public interface KApplicationSignals {
+public interface TDEApplicationSignals {
/**
- 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
should connect to this to program special behavior.
- @short Emitted when KApplication has changed its palette due to a KControl request.
+ @short Emitted when TDEApplication has changed its palette due to a KControl request.
*/
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
respond to an explicit setGUIStyle() call), but you should connect to
this to program special behavior.
- @short Emitted when KApplication has changed its GUI style in response to a KControl request.
+ @short Emitted when TDEApplication has changed its GUI style in response to a KControl request.
*/
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
connect to this to monitor global font changes, especially if you are
using explicit fonts.
Note: If you derive from a TQWidget-based class, a faster method is to
reimplement TQWidget.fontChange(). This is the preferred way
to get informed about font updates.
- @short Emitted when KApplication has changed its font in response to a KControl request.
+ @short Emitted when TDEApplication has changed its font in response to a KControl request.
*/
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
automatically, but you should connect to this to program special
- behavior. @short Emitted when KApplication has changed either its GUI style, its font or its palette in response to a kdisplay request.
+ behavior. @short Emitted when TDEApplication has changed either its GUI style, its font or its palette in response to a kdisplay request.
*/
void appearanceChanged();
/**
@@ -58,10 +58,10 @@ public interface KApplicationSignals {
void backgroundChanged(int desk);
/**
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
@param category the category among the enum above
- @short Emitted when the global settings have been changed - see KGlobalSettings KApplication takes care of calling reparseConfiguration on KGlobal.config() so that applications/classes using this only have to re-read the configuration
+ @short Emitted when the global settings have been changed - see KGlobalSettings TDEApplication takes care of calling reparseConfiguration on KGlobal.config() so that applications/classes using this only have to re-read the configuration
*/
void settingsChanged(int category);
/**