diff options
author | Michele Calgaro <[email protected]> | 2024-02-07 11:07:16 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-02-08 11:03:00 +0900 |
commit | 2f2f4edb3d18206981682b38fa3f21a32d43de1d (patch) | |
tree | bab0257be50f3856fa76110a84c0883e5c4df466 /lib | |
parent | 43fd0a38af0135396d52cc9ace6900269824deae (diff) | |
download | tdevelop-2f2f4edb3d18206981682b38fa3f21a32d43de1d.tar.gz tdevelop-2f2f4edb3d18206981682b38fa3f21a32d43de1d.zip |
Replace Q_SIGNALS and Q_SLOTS
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 37ad15ad2c77711db7c9c4bbd62d5a1cb5749abc)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/interfaces/external/Mainpage.dox | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/interfaces/external/Mainpage.dox b/lib/interfaces/external/Mainpage.dox index 0febd41d..7c97cf16 100644 --- a/lib/interfaces/external/Mainpage.dox +++ b/lib/interfaces/external/Mainpage.dox @@ -10,14 +10,14 @@ GUI Designer integration framework. \section designerintegration Overview of GUI designer integration process Each KPart that wants to act as a GUI Designer must implement @ref KInterfaceDesigner::Designer -interface. It defines necessary Q_SIGNALS to communicate with an IDE and abstract virtual +interface. It defines necessary signals to communicate with an IDE and abstract virtual functions to determine designer type. If a part which can "design" user interface files of a certain mimetype implements this interface and sets itself as a default handler for that mimetype then it becomes automatically integrated into TDevelop IDE. -When a part is embedded into TDevelop shell, its Q_SIGNALS (defined in @ref +When a part is embedded into TDevelop shell, its signals (defined in @ref KInterfaceDesigner::Designer interface): @code void addedFunction(DesignerType type, const TQString &formName, Function function) @@ -26,7 +26,7 @@ KInterfaceDesigner::Designer interface): void editFunction(DesignerType type, const TQString &formName, const TQString &functionName) void editSource(DesignerType type, const TQString &formName); @endcode -are connected to corresponding Q_SLOTS of TDevelop designer integration engine which can be implemented in TDevelop language support plugin. +are connected to corresponding slots of TDevelop designer integration engine which can be implemented in TDevelop language support plugin. Each language support which wants to use integrated designer, must reimplement @code |