-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow QTermWidget to be used as a Qt Plugin (#469)
* Allow QTermWidget to be used as a Qt Plugin * Adding metadata to JSON file * Exporting interface file * Restore includes in qtermwidget.h * Adding Q_INTERFACES to the impl class * Adding factory method * Allowing retrieving the color schemes * Applying changes in the PR * Adding name to the copyright in ReadMe * Fix issue in .sip file
- Loading branch information
1 parent
41bd8de
commit 844b21a
Showing
7 changed files
with
203 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,12 +25,14 @@ Files: example/main.cpp | |
lib/kptyprocess.h | ||
lib/qtermwidget.cpp | ||
lib/qtermwidget.h | ||
lib/qtermwidget_interface.h | ||
Copyright: Author Adriaan de Groot <[email protected]> | ||
2010, KDE e.V <[email protected]> | ||
2002-2007, Oswald Buddenhagen <[email protected]> | ||
2006-2008, Robert Knight <[email protected]> | ||
2002, Waldo Bastian <[email protected]> | ||
2008, e_k <[email protected]> | ||
2022, Francesc Martinez <[email protected]> | ||
License: LGPL-2+ | ||
Files: cmake/FindUtf8Proc.cmake | ||
|
@@ -124,6 +126,7 @@ void | setTextCodec(QTextCodec *_codec_) | |
void | setWorkingDirectory(const QString &_dir_) | ||
void | startShellProgram() | ||
void | startTerminalTeletype() | ||
QStringList | availableColorSchemes() | ||
|
||
### Public Slots | ||
Type | Function | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"Name" : "QTermWidget", | ||
"Version" : "1.0.0", | ||
"Vendor" : "LXQt", | ||
"Copyright" : "(C) 2022 LXQt", | ||
"Url" : "https://github.com/lxqt/qtermwidget", | ||
"License" : "GPLv2" | ||
} |
Oops, something went wrong.