From 10d461f8a8b11ea740680361c20c4a378811e8a4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 02:25:51 -0600 Subject: Additional kde to tde renaming --- examples/README | 2 +- examples/example_dcopexport.py | 2 +- examples/example_dcopext.py | 2 +- examples/kurldemo.py | 4 +- examples/menudemo.py | 4 +- examples/mimetype.py | 4 +- examples/pyKHTMLPart.py | 4 +- examples/pykde-sampler/HOWTO.samples | 2 +- examples/pykde-sampler/about.py | 2 +- examples/pykde-sampler/basic_widgets/__init__.py | 2 +- examples/pykde-sampler/basic_widgets/datepicker.py | 2 +- .../pykde-sampler/basic_widgets/historycombo.py | 4 +- examples/pykde-sampler/dialogs/__init__.py | 2 +- examples/pykde-sampler/dialogs/about/__init__.py | 2 +- examples/pykde-sampler/dialogs/about/aboutapp.py | 6 +- examples/pykde-sampler/dialogs/about/aboutkde.py | 4 +- examples/pykde-sampler/dialogs/bugreport.py | 4 +- examples/pykde-sampler/dialogs/color.py | 4 +- examples/pykde-sampler/dialogs/config.py | 6 +- examples/pykde-sampler/dialogs/edfind.py | 6 +- examples/pykde-sampler/dialogs/edreplace.py | 6 +- examples/pykde-sampler/dialogs/font.py | 6 +- examples/pykde-sampler/dialogs/input.py | 4 +- examples/pykde-sampler/dialogs/key.py | 4 +- examples/pykde-sampler/dialogs/msgbox.py | 4 +- examples/pykde-sampler/dialogs/passwd.py | 6 +- examples/pykde-sampler/dialogs/progress.py | 4 +- examples/pykde-sampler/dialogs/tip.py | 4 +- examples/pykde-sampler/gen_todo.py | 2 +- examples/pykde-sampler/icon_handling/__init__.py | 2 +- examples/pykde-sampler/icon_handling/misc.py | 6 +- examples/pykde-sampler/icon_handling/sizes.py | 4 +- examples/pykde-sampler/misc/__init__.py | 2 +- examples/pykde-sampler/misc/gradientselect.py | 6 +- examples/pykde-sampler/misc/passivepop.py | 6 +- examples/pykde-sampler/misc/window_info.py | 4 +- examples/pykde-sampler/qt_widgets/CONTRIB | 672 ++++++++++----------- examples/pykde-sampler/qt_widgets/__init__.py | 2 +- examples/pykde-sampler/qt_widgets/table.py | 2 +- examples/pykde-sampler/runner.py | 4 +- examples/pykde-sampler/sampler.py | 10 +- examples/systray.py | 4 +- examples/uikmdi.py | 4 +- examples/uimodules/uidialogs.py | 4 +- examples/uimodules/uimenus.py | 2 +- examples/uimodules/uimisc.py | 2 +- examples/uimodules/uiwidgets.py | 4 +- examples/uimodules/uixml.py | 2 +- examples/uiqxembed.py | 6 +- examples/uisampler.py | 4 +- examples/xmlmenudemo.py | 4 +- 51 files changed, 432 insertions(+), 432 deletions(-) (limited to 'examples') diff --git a/examples/README b/examples/README index 24a7ac3..71dc148 100644 --- a/examples/README +++ b/examples/README @@ -2,7 +2,7 @@ This subdirectory contains a few executable Python programs that demonstrate or test some features of PyKDE: -uisampler.py - demos of most of the kdeui widgets, +uisampler.py - demos of most of the tdeui widgets, including dialogs, menus (KAction, KStdAction, etc) widgets, and xml ui definition diff --git a/examples/example_dcopexport.py b/examples/example_dcopexport.py index 66aff6a..024b60f 100644 --- a/examples/example_dcopexport.py +++ b/examples/example_dcopexport.py @@ -34,7 +34,7 @@ copyright holder. # which was written by Torben Weis and Julian Rockey import sys -from kdecore import KApplication, KCmdLineArgs, KAboutData +from tdecore import KApplication, KCmdLineArgs, KAboutData from dcopexport import DCOPExObj from qt import QString, QStringList diff --git a/examples/example_dcopext.py b/examples/example_dcopext.py index 8f3801a..c68cd35 100644 --- a/examples/example_dcopext.py +++ b/examples/example_dcopext.py @@ -30,7 +30,7 @@ copyright holder. import sys, time import dcop import dcopext -from kdecore import KApplication, KCmdLineArgs, KAboutData +from tdecore import KApplication, KCmdLineArgs, KAboutData from qt import QString, QCString diff --git a/examples/kurldemo.py b/examples/kurldemo.py index d224b34..d10e338 100644 --- a/examples/kurldemo.py +++ b/examples/kurldemo.py @@ -31,8 +31,8 @@ urls = ["http://slashdot.org", "http://www.kde.org", "http://www.riverbankcomput import sys -from kdecore import KApplication, KCmdLineArgs, KAboutData, KURL -from kdeui import KMainWindow, KEdit +from tdecore import KApplication, KCmdLineArgs, KAboutData, KURL +from tdeui import KMainWindow, KEdit class MainWin (KMainWindow): def __init__ (self, *args): diff --git a/examples/menudemo.py b/examples/menudemo.py index 61a591a..b2b5603 100644 --- a/examples/menudemo.py +++ b/examples/menudemo.py @@ -43,8 +43,8 @@ import sys from qt import QPopupMenu, SIGNAL, QLabel, QIconSet -from kdecore import KApplication, KCmdLineArgs, KAboutData, i18n, KIcon, KIconLoader, KShortcut -from kdeui import KMainWindow, KMessageBox, KStdAction, KAction, KToggleAction, KFontSizeAction, KFontAction, KRadioAction,\ +from tdecore import KApplication, KCmdLineArgs, KAboutData, i18n, KIcon, KIconLoader, KShortcut +from tdeui import KMainWindow, KMessageBox, KStdAction, KAction, KToggleAction, KFontSizeAction, KFontAction, KRadioAction,\ KActionSeparator, KActionMenu, KWindowListMenu STATUSBAR_LEFT = 1 diff --git a/examples/mimetype.py b/examples/mimetype.py index d1926b0..f88009c 100644 --- a/examples/mimetype.py +++ b/examples/mimetype.py @@ -41,8 +41,8 @@ import sys from qt import QWidget, QButtonGroup, Qt, QLabel, QListView, QListViewItem -from kdecore import KApplication, KCmdLineArgs, KAboutData, KURL -from kdeui import KMainWindow, KTabCtl, KListBox +from tdecore import KApplication, KCmdLineArgs, KAboutData, KURL +from tdeui import KMainWindow, KTabCtl, KListBox from kio import KMimeType, KService, KServiceGroup, KServiceType, KTrader, KServiceTypeProfile, KServiceGroup class MainWin (KMainWindow): diff --git a/examples/pyKHTMLPart.py b/examples/pyKHTMLPart.py index 7629c11..f028bb7 100644 --- a/examples/pyKHTMLPart.py +++ b/examples/pyKHTMLPart.py @@ -43,9 +43,9 @@ lifted from the KDE classref. # If you import more classes, don't forget to add them here (some of these # are extras/not used) -from kdecore import KCmdLineArgs, KURL, KApplication, i18n, KAboutData, BarIcon, KLibLoader +from tdecore import KCmdLineArgs, KURL, KApplication, i18n, KAboutData, BarIcon, KLibLoader -from kdeui import KMainWindow, KMessageBox, KAction, KStdAction, KKeyDialog, KEditToolbar +from tdeui import KMainWindow, KMessageBox, KAction, KStdAction, KKeyDialog, KEditToolbar from qt import QString, QStringList diff --git a/examples/pykde-sampler/HOWTO.samples b/examples/pykde-sampler/HOWTO.samples index 7418054..966a92c 100644 --- a/examples/pykde-sampler/HOWTO.samples +++ b/examples/pykde-sampler/HOWTO.samples @@ -30,7 +30,7 @@ In side the module, add the following: - docParts - two-tuple (optional) default: None - example: ('kdeui', 'KAboutDialog') + example: ('tdeui', 'KAboutDialog') If specified, this sequence should contain two items, first item name of pykde module, second item name of class within the module. diff --git a/examples/pykde-sampler/about.py b/examples/pykde-sampler/about.py index 61fdd8a..ae35b99 100644 --- a/examples/pykde-sampler/about.py +++ b/examples/pykde-sampler/about.py @@ -5,7 +5,7 @@ Defines the 'about' function to create a KAboutData instance for the sampler application. """ from os.path import dirname, join -from kdecore import KAboutData +from tdecore import KAboutData appName = 'pykdesampler' diff --git a/examples/pykde-sampler/basic_widgets/__init__.py b/examples/pykde-sampler/basic_widgets/__init__.py index 2442375..8a32c63 100644 --- a/examples/pykde-sampler/basic_widgets/__init__.py +++ b/examples/pykde-sampler/basic_widgets/__init__.py @@ -5,7 +5,7 @@ helpText = """KDE provides a large set of basic widgets for application use. Select the children of this item to see for yourself.""" from qt import QFrame, QVBoxLayout -from kdeui import KTextEdit +from tdeui import KTextEdit class MainFrame(QFrame): diff --git a/examples/pykde-sampler/basic_widgets/datepicker.py b/examples/pykde-sampler/basic_widgets/datepicker.py index aa36de5..d32fb45 100644 --- a/examples/pykde-sampler/basic_widgets/datepicker.py +++ b/examples/pykde-sampler/basic_widgets/datepicker.py @@ -1,6 +1,6 @@ from qt import QFrame, QStringList, QVBoxLayout, SIGNAL, QLabel, QSizePolicy, Qt from qttable import QTable -from kdeui import KTextEdit, KDatePicker, KDateWidget +from tdeui import KTextEdit, KDatePicker, KDateWidget labelText = 'KDatePicker' diff --git a/examples/pykde-sampler/basic_widgets/historycombo.py b/examples/pykde-sampler/basic_widgets/historycombo.py index aa35b53..a71b72c 100644 --- a/examples/pykde-sampler/basic_widgets/historycombo.py +++ b/examples/pykde-sampler/basic_widgets/historycombo.py @@ -1,11 +1,11 @@ from qt import Qt, QFrame, QHBoxLayout, QVBoxLayout, QStringList, QLabel, \ SIGNAL, SLOT -from kdeui import KHistoryCombo, KTextEdit +from tdeui import KHistoryCombo, KTextEdit iconName = 'history' labelText = 'KHistoryCombo' -docParts = ('kdeui', 'KHistoryCombo') +docParts = ('tdeui', 'KHistoryCombo') helpText = ('An example of the KHistoryCombo widget.' '\n\n' 'Completion is enabled via the setHistoryItems call; when the second ' diff --git a/examples/pykde-sampler/dialogs/__init__.py b/examples/pykde-sampler/dialogs/__init__.py index c6f70f9..cdec131 100644 --- a/examples/pykde-sampler/dialogs/__init__.py +++ b/examples/pykde-sampler/dialogs/__init__.py @@ -7,7 +7,7 @@ helpText = ("KDE provides a convenient set of dialog boxes for application use. from qt import QFrame, QVBoxLayout -from kdeui import KTextEdit +from tdeui import KTextEdit class MainFrame(QFrame): diff --git a/examples/pykde-sampler/dialogs/about/__init__.py b/examples/pykde-sampler/dialogs/about/__init__.py index 4c40da7..d406216 100644 --- a/examples/pykde-sampler/dialogs/about/__init__.py +++ b/examples/pykde-sampler/dialogs/about/__init__.py @@ -6,7 +6,7 @@ helpText = ("KDE has multiple dialog types to display information about your " "and consistency. They're easy to use, and they're good for the environment!") from qt import QFrame, QVBoxLayout -from kdeui import KTextEdit +from tdeui import KTextEdit class MainFrame(QFrame): def __init__(self, parent=None): diff --git a/examples/pykde-sampler/dialogs/about/aboutapp.py b/examples/pykde-sampler/dialogs/about/aboutapp.py index afdd71a..585db60 100644 --- a/examples/pykde-sampler/dialogs/about/aboutapp.py +++ b/examples/pykde-sampler/dialogs/about/aboutapp.py @@ -2,14 +2,14 @@ iconName = 'about_kde' labelText = 'KAboutApplication' from qt import QFrame, QHBoxLayout, QVBoxLayout, SIGNAL -from kdecore import i18n -from kdeui import KAboutApplication, KPushButton, KTextEdit +from tdecore import i18n +from tdeui import KAboutApplication, KPushButton, KTextEdit helpText = ("Typically available via the applications 'Help' menu, this " "dialog presents the user with the applications About widget.") -docParts = ('kdeui', 'KAboutDialog') +docParts = ('tdeui', 'KAboutDialog') class MainFrame(QFrame): def __init__(self, parent=None): diff --git a/examples/pykde-sampler/dialogs/about/aboutkde.py b/examples/pykde-sampler/dialogs/about/aboutkde.py index 9c73f9d..08dd93e 100644 --- a/examples/pykde-sampler/dialogs/about/aboutkde.py +++ b/examples/pykde-sampler/dialogs/about/aboutkde.py @@ -2,8 +2,8 @@ iconName = 'about_kde' labelText = 'KAboutKDE' from qt import QFrame, QHBoxLayout, QVBoxLayout, SIGNAL -from kdecore import i18n -from kdeui import KAboutKDE, KPushButton, KTextEdit +from tdecore import i18n +from tdeui import KAboutKDE, KPushButton, KTextEdit helpText = ("Typically available via the applications 'Help' menu, this " diff --git a/examples/pykde-sampler/dialogs/bugreport.py b/examples/pykde-sampler/dialogs/bugreport.py index 6c41165..7cb3340 100644 --- a/examples/pykde-sampler/dialogs/bugreport.py +++ b/examples/pykde-sampler/dialogs/bugreport.py @@ -7,8 +7,8 @@ labelText = 'KBugReport' ##~ docItemName = 'KBugReport' from qt import QFrame, QHBoxLayout, QVBoxLayout, SIGNAL -from kdecore import i18n -from kdeui import KAboutDialog, KPushButton, KBugReport, KTextEdit +from tdecore import i18n +from tdeui import KAboutDialog, KPushButton, KBugReport, KTextEdit helpText = ("KDE provides a way to report bugs from applications. This dialog" diff --git a/examples/pykde-sampler/dialogs/color.py b/examples/pykde-sampler/dialogs/color.py index b749cce..dba8eb6 100644 --- a/examples/pykde-sampler/dialogs/color.py +++ b/examples/pykde-sampler/dialogs/color.py @@ -3,8 +3,8 @@ labelText = 'KColorDialog' from qt import QFrame, QHBoxLayout, QVBoxLayout, SIGNAL -from kdecore import i18n -from kdeui import KPushButton, KColorDialog, KColorPatch, KTextEdit +from tdecore import i18n +from tdeui import KPushButton, KColorDialog, KColorPatch, KTextEdit helpText = ("KDE provides a nifty common color selection dialog." diff --git a/examples/pykde-sampler/dialogs/config.py b/examples/pykde-sampler/dialogs/config.py index 74454ab..503c49a 100644 --- a/examples/pykde-sampler/dialogs/config.py +++ b/examples/pykde-sampler/dialogs/config.py @@ -1,11 +1,11 @@ from qt import QFrame, QHBoxLayout, QVBoxLayout, QTimer, SIGNAL, QString -from kdecore import i18n, KConfigSkeleton -from kdeui import KPushButton, KConfigDialog, KTextEdit +from tdecore import i18n, KConfigSkeleton +from tdeui import KPushButton, KConfigDialog, KTextEdit iconName = 'configure' labelText = 'KConfigDialog' -docParts = ('kdeui', 'KConfigDialog') +docParts = ('tdeui', 'KConfigDialog') helpText = ("") diff --git a/examples/pykde-sampler/dialogs/edfind.py b/examples/pykde-sampler/dialogs/edfind.py index 685902e..434c85f 100644 --- a/examples/pykde-sampler/dialogs/edfind.py +++ b/examples/pykde-sampler/dialogs/edfind.py @@ -1,11 +1,11 @@ from qt import QFrame, QHBoxLayout, QVBoxLayout, QTimer, SIGNAL, QFont, QString -from kdecore import i18n -from kdeui import KPushButton, KEdFind, KTextEdit +from tdecore import i18n +from tdeui import KPushButton, KEdFind, KTextEdit iconName = 'find' labelText = 'KEdFind' -docParts = ('kdeui', 'KEdFind') +docParts = ('tdeui', 'KEdFind') helpText = ("An example of the KEdFind dialog.") diff --git a/examples/pykde-sampler/dialogs/edreplace.py b/examples/pykde-sampler/dialogs/edreplace.py index df95614..8ba705a 100644 --- a/examples/pykde-sampler/dialogs/edreplace.py +++ b/examples/pykde-sampler/dialogs/edreplace.py @@ -1,10 +1,10 @@ from qt import QFrame, QHBoxLayout, QVBoxLayout, QTimer, SIGNAL, QFont, QString -from kdecore import i18n -from kdeui import KPushButton, KEdReplace, KTextEdit +from tdecore import i18n +from tdeui import KPushButton, KEdReplace, KTextEdit iconName = 'findreplace' labelText = 'KEdReplace' -docParts = ('kdeui', 'KEdReplace') +docParts = ('tdeui', 'KEdReplace') helpText = ("An example of the KEdReplace dialog.") diff --git a/examples/pykde-sampler/dialogs/font.py b/examples/pykde-sampler/dialogs/font.py index ae2189e..efa9af7 100644 --- a/examples/pykde-sampler/dialogs/font.py +++ b/examples/pykde-sampler/dialogs/font.py @@ -1,11 +1,11 @@ from qt import QFrame, QHBoxLayout, QVBoxLayout, QTimer, SIGNAL, QFont, QString -from kdecore import i18n -from kdeui import KPushButton, KFontDialog, KTextEdit +from tdecore import i18n +from tdeui import KPushButton, KFontDialog, KTextEdit iconName = 'fonts' labelText = 'KFontDialog' -docParts = ('kdeui', 'KFontDialog') +docParts = ('tdeui', 'KFontDialog') helpText = ("KDE provides a font dialog box for users to select (can you " "guess??) fonts. The button below displays a font dialog box. " "The font of this widget (the text widget you're reading) is used " diff --git a/examples/pykde-sampler/dialogs/input.py b/examples/pykde-sampler/dialogs/input.py index 30edc6f..c922178 100644 --- a/examples/pykde-sampler/dialogs/input.py +++ b/examples/pykde-sampler/dialogs/input.py @@ -2,8 +2,8 @@ iconName = 'editclear' labelText = 'KInputDialog' from qt import QFrame, QGridLayout, QLabel, QStringList, SIGNAL -from kdecore import i18n -from kdeui import KPushButton, KInputDialog, KTextEdit +from tdecore import i18n +from tdeui import KPushButton, KInputDialog, KTextEdit helpText = ("KInputDialog allows the programmer to display a simple dialog to " diff --git a/examples/pykde-sampler/dialogs/key.py b/examples/pykde-sampler/dialogs/key.py index 4c437da..d267733 100644 --- a/examples/pykde-sampler/dialogs/key.py +++ b/examples/pykde-sampler/dialogs/key.py @@ -2,8 +2,8 @@ iconName = 'configure_shortcuts' labelText = 'KKeyDialog' from qt import QFrame, QHBoxLayout, QVBoxLayout, SIGNAL -from kdecore import i18n -from kdeui import KPushButton, KKeyDialog, KTextEdit +from tdecore import i18n +from tdeui import KPushButton, KKeyDialog, KTextEdit helpText = ("Configuring keystroke shortcuts is simple with KActions and the " diff --git a/examples/pykde-sampler/dialogs/msgbox.py b/examples/pykde-sampler/dialogs/msgbox.py index a0b3c9a..57d4bc1 100644 --- a/examples/pykde-sampler/dialogs/msgbox.py +++ b/examples/pykde-sampler/dialogs/msgbox.py @@ -6,8 +6,8 @@ from traceback import print_exc from StringIO import StringIO from qt import QFrame, QGridLayout, QLabel, QStringList, SIGNAL -from kdecore import i18n -from kdeui import KGuiItem, KPushButton, KMessageBox, KTextEdit +from tdecore import i18n +from tdeui import KGuiItem, KPushButton, KMessageBox, KTextEdit helpText = ("The KMessageBox Python class wraps the static methods of its C++ " diff --git a/examples/pykde-sampler/dialogs/passwd.py b/examples/pykde-sampler/dialogs/passwd.py index 554093b..946d7ec 100644 --- a/examples/pykde-sampler/dialogs/passwd.py +++ b/examples/pykde-sampler/dialogs/passwd.py @@ -1,10 +1,10 @@ from qt import QFrame, QHBoxLayout, QVBoxLayout, SIGNAL -from kdecore import i18n -from kdeui import KPushButton, KPasswordDialog, KTextEdit +from tdecore import i18n +from tdeui import KPushButton, KPasswordDialog, KTextEdit iconName = 'password' labelText = 'KPasswordDialog' -docParts = ('kdeui', 'KPasswordDialog') +docParts = ('tdeui', 'KPasswordDialog') helpText = ("KDE provides two variations on the password dialog. The simple " "one shown here prompts for a password. The other type allows the " "user to enter a new password, and provides a second field to " diff --git a/examples/pykde-sampler/dialogs/progress.py b/examples/pykde-sampler/dialogs/progress.py index ba85b8e..bfa9d02 100644 --- a/examples/pykde-sampler/dialogs/progress.py +++ b/examples/pykde-sampler/dialogs/progress.py @@ -3,8 +3,8 @@ labelText = 'KProgressDialog' from qt import QFrame, QHBoxLayout, QVBoxLayout, QTimer, SIGNAL -from kdecore import i18n -from kdeui import KPushButton, KProgressDialog, KTextEdit +from tdecore import i18n +from tdeui import KPushButton, KProgressDialog, KTextEdit helpText = """KDE provides a ready-built dialog to display a bit of text and a diff --git a/examples/pykde-sampler/dialogs/tip.py b/examples/pykde-sampler/dialogs/tip.py index 29ac66b..1718c10 100644 --- a/examples/pykde-sampler/dialogs/tip.py +++ b/examples/pykde-sampler/dialogs/tip.py @@ -4,8 +4,8 @@ labelText = 'KTipDialog' import os from qt import QFrame, QHBoxLayout, QVBoxLayout, SIGNAL -from kdecore import i18n -from kdeui import KPushButton, KTipDatabase, KTipDialog, KTextEdit +from tdecore import i18n +from tdeui import KPushButton, KTipDatabase, KTipDialog, KTextEdit helpText = ("The KDE standard Tip-of-the-Day dialog.") diff --git a/examples/pykde-sampler/gen_todo.py b/examples/pykde-sampler/gen_todo.py index 02d73de..6abd5be 100644 --- a/examples/pykde-sampler/gen_todo.py +++ b/examples/pykde-sampler/gen_todo.py @@ -1,4 +1,4 @@ -mods = ['dcop', 'kdecore', 'kdefx', 'kdeprint', 'kdesu', 'kdeui', 'kfile', 'khtml', 'kio', 'kmdi', 'kparts', 'kspell', ] +mods = ['dcop', 'tdecore', 'tdefx', 'tdeprint', 'tdesu', 'tdeui', 'kfile', 'khtml', 'kio', 'kmdi', 'kparts', 'kspell', ] all = [] diff --git a/examples/pykde-sampler/icon_handling/__init__.py b/examples/pykde-sampler/icon_handling/__init__.py index f25a8f0..bf27f0a 100644 --- a/examples/pykde-sampler/icon_handling/__init__.py +++ b/examples/pykde-sampler/icon_handling/__init__.py @@ -7,7 +7,7 @@ helpText = ("KDE icons are nice. " from qt import QFrame, QVBoxLayout -from kdeui import KTextEdit +from tdeui import KTextEdit class MainFrame(QFrame): diff --git a/examples/pykde-sampler/icon_handling/misc.py b/examples/pykde-sampler/icon_handling/misc.py index 4c7f425..5167362 100644 --- a/examples/pykde-sampler/icon_handling/misc.py +++ b/examples/pykde-sampler/icon_handling/misc.py @@ -4,9 +4,9 @@ labelText = 'Misc.' from qt import QFrame, QHBoxLayout, QVBoxLayout, SIGNAL, QPoint -from kdecore import i18n -from kdeui import KAboutDialog, KPushButton, KBugReport, KTextEdit -from kdeui import KRootPermsIcon, KWritePermsIcon +from tdecore import i18n +from tdeui import KAboutDialog, KPushButton, KBugReport, KTextEdit +from tdeui import KRootPermsIcon, KWritePermsIcon helpText = ("Samples for the KRootPermsIcon and KWritePermsIcon classes." diff --git a/examples/pykde-sampler/icon_handling/sizes.py b/examples/pykde-sampler/icon_handling/sizes.py index b3f5e1c..37fabaf 100644 --- a/examples/pykde-sampler/icon_handling/sizes.py +++ b/examples/pykde-sampler/icon_handling/sizes.py @@ -4,8 +4,8 @@ labelText = 'Icon Sizing' from qt import QFrame, QHBoxLayout, QVBoxLayout, SIGNAL -from kdecore import i18n -from kdeui import KAboutDialog, KPushButton, KBugReport, KTextEdit +from tdecore import i18n +from tdeui import KAboutDialog, KPushButton, KBugReport, KTextEdit helpText = ("") diff --git a/examples/pykde-sampler/misc/__init__.py b/examples/pykde-sampler/misc/__init__.py index b0c9208..25780a4 100644 --- a/examples/pykde-sampler/misc/__init__.py +++ b/examples/pykde-sampler/misc/__init__.py @@ -5,7 +5,7 @@ iconName = 'misc' helpText = ("") from qt import QFrame, QVBoxLayout -from kdeui import KTextEdit +from tdeui import KTextEdit class MainFrame(QFrame): diff --git a/examples/pykde-sampler/misc/gradientselect.py b/examples/pykde-sampler/misc/gradientselect.py index 724dd52..5ef911d 100644 --- a/examples/pykde-sampler/misc/gradientselect.py +++ b/examples/pykde-sampler/misc/gradientselect.py @@ -1,10 +1,10 @@ from qt import QFrame, QHBoxLayout, QVBoxLayout, SIGNAL, QColor, QSizePolicy, QLabel -from kdecore import i18n -from kdeui import KPushButton, KGradientSelector, KTextEdit, KDualColorButton, KColorPatch +from tdecore import i18n +from tdeui import KPushButton, KGradientSelector, KTextEdit, KDualColorButton, KColorPatch iconName = 'colors' labelText = 'KGradientSelector' -docParts = ('kdeui', 'KGradientSelector') +docParts = ('tdeui', 'KGradientSelector') helpText = ("An example of the KGradientSelector widget." "\n" "Change the start and finish colors with the dual color button." diff --git a/examples/pykde-sampler/misc/passivepop.py b/examples/pykde-sampler/misc/passivepop.py index 81d383a..d38b4ec 100644 --- a/examples/pykde-sampler/misc/passivepop.py +++ b/examples/pykde-sampler/misc/passivepop.py @@ -1,10 +1,10 @@ from qt import Qt, QFrame, QHBoxLayout, QVBoxLayout, QLabel, SIGNAL -from kdeui import KPassivePopup, KTextEdit, KPushButton -from kdecore import KGlobal, KIcon +from tdeui import KPassivePopup, KTextEdit, KPushButton +from tdecore import KGlobal, KIcon iconName = 'popup' labelText = 'KPassivePopup' -docParts = ('kdeui', 'KPassivePopup') +docParts = ('tdeui', 'KPassivePopup') helpText = ('Examples of the KPassivePopup widget.') diff --git a/examples/pykde-sampler/misc/window_info.py b/examples/pykde-sampler/misc/window_info.py index 08bff22..497aa39 100644 --- a/examples/pykde-sampler/misc/window_info.py +++ b/examples/pykde-sampler/misc/window_info.py @@ -2,8 +2,8 @@ from qt import QFrame, QHBoxLayout, QVBoxLayout, SIGNAL -from kdeui import KWindowInfo, KPushButton, KTextEdit -from kdecore import i18n, KApplication +from tdeui import KWindowInfo, KPushButton, KTextEdit +from tdecore import i18n, KApplication iconName = 'misc' labelText = 'KWindowInfo' diff --git a/examples/pykde-sampler/qt_widgets/CONTRIB b/examples/pykde-sampler/qt_widgets/CONTRIB index e814d1e..cbdf61a 100644 --- a/examples/pykde-sampler/qt_widgets/CONTRIB +++ b/examples/pykde-sampler/qt_widgets/CONTRIB @@ -6,342 +6,342 @@ dcop,DCOPObjectProxy,,, dcop,DCOPRef,,, dcop,DCOPReply,,, dcop,DCOPStub,,, -kdecore,BarIcon,,, -kdecore,BarIconSet,,, -kdecore,DesktopIcon,,, -kdecore,DesktopIconSet,,, -kdecore,IconSize,,, -kdecore,KAboutData,,, -kdecore,KAboutPerson,,, -kdecore,KAboutTranslator,,, -kdecore,KAccel,,, -kdecore,KAccelAction,,, -kdecore,KAccelActions,,, -kdecore,KAccelBase,,, -kdecore,KAccelShortcutList,,, -kdecore,KApplication,,, -kdecore,KAsyncIO,,, -kdecore,KAudioPlayer,,, -kdecore,KBufferedIO,,, -kdecore,KCalendarSystem,,, -kdecore,KCalendarSystemFactory,,, -kdecore,KCatalogue,,, -kdecore,KCharsets,,, -kdecore,KClipboardSynchronizer,,, -kdecore,KCmdLineArgs,,, -kdecore,KCmdLineOptions,,, -kdecore,KCodecs,,, -kdecore,KCompletion,,, -kdecore,KCompletionBase,,, -kdecore,KConfig,,, -kdecore,KConfigBackEnd,,, -kdecore,KConfigBase,,, -kdecore,KConfigDialogManager,,, -kdecore,KConfigGroup,,, -kdecore,KConfigGroupSaver,,, -kdecore,KConfigINIBackEnd,,, -kdecore,KConfigSkeleton,,, -kdecore,KConfigSkeletonItem,,, -kdecore,KCrash,,, -kdecore,KDCOPPropertyProxy,,, -kdecore,KDE,,, -kdecore,KDesktopFile,,, -kdecore,KEntry,,, -kdecore,KEntryKey,,, -kdecore,KGlobal,,, -kdecore,KGlobalAccel,,, -kdecore,KGlobalSettings,,, -kdecore,KIDNA,,, -kdecore,KIPC,,, -kdecore,KIcon,,, -kdecore,KIconEffect,,, -kdecore,KIconLoader,,, -kdecore,KIconTheme,,, -kdecore,KInstance,,, -kdecore,KKey,,, -kdecore,KKeyNative,,, -kdecore,KKeySequence,,, -kdecore,KKeyServer,,, -kdecore,KLibFactory,,, -kdecore,KLibLoader,,, -kdecore,KLibrary,,, -kdecore,KLocale,,, -kdecore,KMD5,,, -kdecore,KMacroExpander,,, -kdecore,KMacroExpanderBase,,, -kdecore,KMimeSourceFactory,,, -kdecore,KMountPoint,,, -kdecore,KMultipleDrag,,, -kdecore,KNotifyClient,,, -kdecore,KPalette,,, -kdecore,KPixmapProvider,,, -kdecore,KProcIO,,, -kdecore,KProcess,,, -kdecore,KProcessController,,, -kdecore,KPty,,, -kdecore,KRFCDate,,, -kdecore,KRandomSequence,,, -kdecore,KRegExp,,, -kdecore,KRootProp,,, -kdecore,KSaveFile,,, -kdecore,KSelectionOwner,,, -kdecore,KSelectionWatcher,,, -kdecore,KServerSocket,,, -kdecore,KSessionManaged,,, -kdecore,KShared,,, -kdecore,KSharedConfig,,, -kdecore,KShell,,, -kdecore,KShellProcess,,, -kdecore,KShortcut,,, -kdecore,KShortcutList,,, -kdecore,KSimpleConfig,,, -kdecore,KSocket,,, -kdecore,KStandardDirs,,, -kdecore,KStartupInfo,,, -kdecore,KStartupInfoData,,, -kdecore,KStartupInfoId,,, -kdecore,KStaticDeleterBase,,, -kdecore,KStdAccel,,, -kdecore,KStringHandler,,, -kdecore,KTempDir,,, -kdecore,KTempFile,,, -kdecore,KURL,,, -kdecore,KURLDrag,,, -kdecore,KUniqueApplication,,, -kdecore,KWin,,, -kdecore,KWinModule,,, -kdecore,KZoneAllocator,,, -kdecore,MainBarIcon,,, -kdecore,MainBarIconSet,,, -kdecore,NET,,, -kdecore,NETIcon,,, -kdecore,NETPoint,,, -kdecore,NETRect,,, -kdecore,NETRootInfo,,, -kdecore,NETRootInfo2,,, -kdecore,NETSize,,, -kdecore,NETStrut,,, -kdecore,NETWinInfo,,, -kdecore,SmallIcon,,, -kdecore,SmallIconSet,,, -kdecore,UserIcon,,, -kdecore,UserIconSet,,, -kdecore,i18n,,, -kdecore,locate,,, -kdecore,locateLocal,,, -kdecore,testKEntryMap,,, -kdecore,urlcmp,,, -kdefx,KCPUInfo,,, -kdefx,KImageEffect,,, -kdefx,KPixmap,,, -kdefx,KPixmapEffect,,, -kdefx,KPixmapSplitter,,, -kdefx,KStyle,,, -kdefx,kColorBitmaps,,, -kdefx,kDrawBeButton,,, -kdefx,kDrawNextButton,,, -kdefx,kDrawRoundButton,,, -kdefx,kDrawRoundMask,,, -kdefx,kRoundMaskRegion,,, -kdeprint,DrBase,,, -kdeprint,DrBooleanOption,,, -kdeprint,DrChoiceGroup,,, -kdeprint,DrConstraint,,, -kdeprint,DrFloatOption,,, -kdeprint,DrGroup,,, -kdeprint,DrIntegerOption,,, -kdeprint,DrListOption,,, -kdeprint,DrMain,,, -kdeprint,DrPageSize,,, -kdeprint,DrStringOption,,, -kdeprint,KMJob,,, -kdeprint,KMJobManager,,, -kdeprint,KMManager,,, -kdeprint,KMObject,,, -kdeprint,KMPrinter,,, -kdeprint,KPReloadObject,,, -kdeprint,KPrintAction,,, -kdeprint,KPrintDialog,,, -kdeprint,KPrintDialogPage,,, -kdeprint,KPrinter,,, -kdeprint,pageNameToPageSize,,, -kdeprint,pageSizeToPageName,,, -kdeprint,rangeToSize,,, -kdesu,KCookie,,, -kdesu,KDEsuClient,,, -kdesu,PTY,,, -kdesu,PtyProcess,,, -kdesu,SshProcess,,, -kdesu,StubProcess,,, -kdesu,SuProcess,,, -kdeui,KAboutApplication,,, -kdeui,KAboutContainer,,, -kdeui,KAboutContributor,,, -kdeui,KAboutDialog,,, -kdeui,KAboutKDE,,, -kdeui,KAboutWidget,,, -kdeui,KAction,,, -kdeui,KActionCollection,,, -kdeui,KActionMenu,,, -kdeui,KActionPtrShortcutList,,, -kdeui,KActionSeparator,,, -kdeui,KActionShortcutList,,, -kdeui,KActiveLabel,,, -kdeui,KAnimWidget,,, -kdeui,KArrowButton,,, -kdeui,KAuthIcon,,, -kdeui,KBugReport,,, -kdeui,KButtonBox,,, -kdeui,KCModule,,, -kdeui,KCharSelect,,, -kdeui,KCharSelectTable,,, -kdeui,KColor,,, -kdeui,KColorButton,,, -kdeui,KColorCells,,, -kdeui,KColorCombo,,, -kdeui,KColorDialog,,, -kdeui,KColorDrag,,, -kdeui,KColorPatch,,, -kdeui,KComboBox,,, -kdeui,KCommand,,, -kdeui,KCommandHistory,,, -kdeui,KCompletionBox,,, -kdeui,KConfigDialog,,, -kdeui,KContextMenuManager,,, -kdeui,KCursor,,, -kdeui,KDCOPActionProxy,,, -kdeui,KDateInternalMonthPicker,,, -kdeui,KDateInternalWeekSelector,,, -kdeui,KDateInternalYearSelector,,, -kdeui,KDatePicker,,, -kdeui,KDateTable,,, -kdeui,KDateTimeWidget,,, -kdeui,KDateValidator,,, -kdeui,KDateWidget,,, -kdeui,KDialog,,, -kdeui,KDialogBase,,, -kdeui,KDialogQueue,,, -kdeui,KDockArea,,, -kdeui,KDockMainWindow,,, -kdeui,KDockManager,,, -kdeui,KDockTabGroup,,, -kdeui,KDockWidget,,, -kdeui,KDockWidgetAbstractHeader,,, -kdeui,KDockWidgetAbstractHeaderDrag,,, -kdeui,KDockWidgetHeader,,, -kdeui,KDockWidgetHeaderDrag,,, -kdeui,KDockWindow,,, -kdeui,KDoubleNumInput,,, -kdeui,KDoubleSpinBox,,, -kdeui,KDoubleValidator,,, -kdeui,KDualColorButton,,, -kdeui,KEdFind,,, -kdeui,KEdGotoLine,,, -kdeui,KEdReplace,,, -kdeui,KEdit,,, -kdeui,KEditListBox,,, -kdeui,KEditToolbar,,, -kdeui,KEditToolbarWidget,,, -kdeui,KFloatValidator,,, -kdeui,KFontAction,,, -kdeui,KFontChooser,,, -kdeui,KFontCombo,,, -kdeui,KFontDialog,,, -kdeui,KFontRequester,,, -kdeui,KFontSizeAction,,, -kdeui,KGradientSelector,,, -kdeui,KGuiItem,,, -kdeui,KHSSelector,,, -kdeui,KHelpMenu,,, -kdeui,KHistoryCombo,,, -kdeui,KIconView,,, -kdeui,KIconViewItem,,, -kdeui,KInputDialog,,, -kdeui,KIntNumInput,,, -kdeui,KIntSpinBox,,, -kdeui,KIntValidator,,, -kdeui,KJanusWidget,,, -kdeui,KKeyButton,,, -kdeui,KKeyChooser,,, -kdeui,KKeyDialog,,, -kdeui,KLed,,, -kdeui,KLineEdit,,, -kdeui,KLineEditDlg,,, -kdeui,KListAction,,, -kdeui,KListBox,,, -kdeui,KListView,,, -kdeui,KListViewItem,,, -kdeui,KMacroCommand,,, -kdeui,KMainWindow,,, -kdeui,KMainWindowInterface,,, -kdeui,KMenuBar,,, -kdeui,KMessageBox,,, -kdeui,KMimeTypeValidator,,, -kdeui,KNamedCommand,,, -kdeui,KNumInput,,, -kdeui,KPaletteTable,,, -kdeui,KPanelAppMenu,,, -kdeui,KPanelApplet,,, -kdeui,KPanelExtension,,, -kdeui,KPanelMenu,,, -kdeui,KPassivePopup,,, -kdeui,KPasswordDialog,,, -kdeui,KPasswordEdit,,, -kdeui,KPasteTextAction,,, -kdeui,KPixmapIO,,, -kdeui,KPopupFrame,,, -kdeui,KPopupMenu,,, -kdeui,KPopupTitle,,, -kdeui,KProgress,,, -kdeui,KProgressDialog,,, -kdeui,KPushButton,,, -kdeui,KRadioAction,,, -kdeui,KRecentFilesAction,,, -kdeui,KRestrictedLine,,, -kdeui,KRootPermsIcon,,, -kdeui,KRootPixmap,,, -kdeui,KRuler,,, -kdeui,KSelectAction,,, -kdeui,KSelector,,, -kdeui,KSeparator,,, -kdeui,KSplashScreen,,, -kdeui,KSqueezedTextLabel,,, -kdeui,KStatusBar,,, -kdeui,KStatusBarLabel,,, -kdeui,KStdAction,,, -kdeui,KStdGuiItem,,, -kdeui,KStringListValidator,,, -kdeui,KSystemTray,,, -kdeui,KTabBar,,, -kdeui,KTabCtl,,, -kdeui,KTabWidget,,, -kdeui,KTextBrowser,,, -kdeui,KTextEdit,,, -kdeui,KTimeWidget,,, -kdeui,KTipDatabase,,, -kdeui,KTipDialog,,, -kdeui,KToggleAction,,, -kdeui,KToggleFullScreenAction,,, -kdeui,KToggleToolBarAction,,, -kdeui,KToolBar,,, -kdeui,KToolBarButton,,, -kdeui,KToolBarPopupAction,,, -kdeui,KToolBarRadioGroup,,, -kdeui,KToolBarSeparator,,, -kdeui,KURLLabel,,, -kdeui,KValueSelector,,, -kdeui,KWidgetAction,,, -kdeui,KWindowInfo,,, -kdeui,KWindowListMenu,,, -kdeui,KWizard,,, -kdeui,KWordWrap,,, -kdeui,KWritePermsIcon,,, -kdeui,KXMLGUIBuilder,,, -kdeui,KXMLGUIClient,,, -kdeui,KXMLGUIFactory,,, -kdeui,KXYSelector,,, -kdeui,QXEmbed,,, -kdeui,testKActionList,,, +tdecore,BarIcon,,, +tdecore,BarIconSet,,, +tdecore,DesktopIcon,,, +tdecore,DesktopIconSet,,, +tdecore,IconSize,,, +tdecore,KAboutData,,, +tdecore,KAboutPerson,,, +tdecore,KAboutTranslator,,, +tdecore,KAccel,,, +tdecore,KAccelAction,,, +tdecore,KAccelActions,,, +tdecore,KAccelBase,,, +tdecore,KAccelShortcutList,,, +tdecore,KApplication,,, +tdecore,KAsyncIO,,, +tdecore,KAudioPlayer,,, +tdecore,KBufferedIO,,, +tdecore,KCalendarSystem,,, +tdecore,KCalendarSystemFactory,,, +tdecore,KCatalogue,,, +tdecore,KCharsets,,, +tdecore,KClipboardSynchronizer,,, +tdecore,KCmdLineArgs,,, +tdecore,KCmdLineOptions,,, +tdecore,KCodecs,,, +tdecore,KCompletion,,, +tdecore,KCompletionBase,,, +tdecore,KConfig,,, +tdecore,KConfigBackEnd,,, +tdecore,KConfigBase,,, +tdecore,KConfigDialogManager,,, +tdecore,KConfigGroup,,, +tdecore,KConfigGroupSaver,,, +tdecore,KConfigINIBackEnd,,, +tdecore,KConfigSkeleton,,, +tdecore,KConfigSkeletonItem,,, +tdecore,KCrash,,, +tdecore,KDCOPPropertyProxy,,, +tdecore,KDE,,, +tdecore,KDesktopFile,,, +tdecore,KEntry,,, +tdecore,KEntryKey,,, +tdecore,KGlobal,,, +tdecore,KGlobalAccel,,, +tdecore,KGlobalSettings,,, +tdecore,KIDNA,,, +tdecore,KIPC,,, +tdecore,KIcon,,, +tdecore,KIconEffect,,, +tdecore,KIconLoader,,, +tdecore,KIconTheme,,, +tdecore,KInstance,,, +tdecore,KKey,,, +tdecore,KKeyNative,,, +tdecore,KKeySequence,,, +tdecore,KKeyServer,,, +tdecore,KLibFactory,,, +tdecore,KLibLoader,,, +tdecore,KLibrary,,, +tdecore,KLocale,,, +tdecore,KMD5,,, +tdecore,KMacroExpander,,, +tdecore,KMacroExpanderBase,,, +tdecore,KMimeSourceFactory,,, +tdecore,KMountPoint,,, +tdecore,KMultipleDrag,,, +tdecore,KNotifyClient,,, +tdecore,KPalette,,, +tdecore,KPixmapProvider,,, +tdecore,KProcIO,,, +tdecore,KProcess,,, +tdecore,KProcessController,,, +tdecore,KPty,,, +tdecore,KRFCDate,,, +tdecore,KRandomSequence,,, +tdecore,KRegExp,,, +tdecore,KRootProp,,, +tdecore,KSaveFile,,, +tdecore,KSelectionOwner,,, +tdecore,KSelectionWatcher,,, +tdecore,KServerSocket,,, +tdecore,KSessionManaged,,, +tdecore,KShared,,, +tdecore,KSharedConfig,,, +tdecore,KShell,,, +tdecore,KShellProcess,,, +tdecore,KShortcut,,, +tdecore,KShortcutList,,, +tdecore,KSimpleConfig,,, +tdecore,KSocket,,, +tdecore,KStandardDirs,,, +tdecore,KStartupInfo,,, +tdecore,KStartupInfoData,,, +tdecore,KStartupInfoId,,, +tdecore,KStaticDeleterBase,,, +tdecore,KStdAccel,,, +tdecore,KStringHandler,,, +tdecore,KTempDir,,, +tdecore,KTempFile,,, +tdecore,KURL,,, +tdecore,KURLDrag,,, +tdecore,KUniqueApplication,,, +tdecore,KWin,,, +tdecore,KWinModule,,, +tdecore,KZoneAllocator,,, +tdecore,MainBarIcon,,, +tdecore,MainBarIconSet,,, +tdecore,NET,,, +tdecore,NETIcon,,, +tdecore,NETPoint,,, +tdecore,NETRect,,, +tdecore,NETRootInfo,,, +tdecore,NETRootInfo2,,, +tdecore,NETSize,,, +tdecore,NETStrut,,, +tdecore,NETWinInfo,,, +tdecore,SmallIcon,,, +tdecore,SmallIconSet,,, +tdecore,UserIcon,,, +tdecore,UserIconSet,,, +tdecore,i18n,,, +tdecore,locate,,, +tdecore,locateLocal,,, +tdecore,testKEntryMap,,, +tdecore,urlcmp,,, +tdefx,KCPUInfo,,, +tdefx,KImageEffect,,, +tdefx,KPixmap,,, +tdefx,KPixmapEffect,,, +tdefx,KPixmapSplitter,,, +tdefx,KStyle,,, +tdefx,kColorBitmaps,,, +tdefx,kDrawBeButton,,, +tdefx,kDrawNextButton,,, +tdefx,kDrawRoundButton,,, +tdefx,kDrawRoundMask,,, +tdefx,kRoundMaskRegion,,, +tdeprint,DrBase,,, +tdeprint,DrBooleanOption,,, +tdeprint,DrChoiceGroup,,, +tdeprint,DrConstraint,,, +tdeprint,DrFloatOption,,, +tdeprint,DrGroup,,, +tdeprint,DrIntegerOption,,, +tdeprint,DrListOption,,, +tdeprint,DrMain,,, +tdeprint,DrPageSize,,, +tdeprint,DrStringOption,,, +tdeprint,KMJob,,, +tdeprint,KMJobManager,,, +tdeprint,KMManager,,, +tdeprint,KMObject,,, +tdeprint,KMPrinter,,, +tdeprint,KPReloadObject,,, +tdeprint,KPrintAction,,, +tdeprint,KPrintDialog,,, +tdeprint,KPrintDialogPage,,, +tdeprint,KPrinter,,, +tdeprint,pageNameToPageSize,,, +tdeprint,pageSizeToPageName,,, +tdeprint,rangeToSize,,, +tdesu,KCookie,,, +tdesu,KDEsuClient,,, +tdesu,PTY,,, +tdesu,PtyProcess,,, +tdesu,SshProcess,,, +tdesu,StubProcess,,, +tdesu,SuProcess,,, +tdeui,KAboutApplication,,, +tdeui,KAboutContainer,,, +tdeui,KAboutContributor,,, +tdeui,KAboutDialog,,, +tdeui,KAboutKDE,,, +tdeui,KAboutWidget,,, +tdeui,KAction,,, +tdeui,KActionCollection,,, +tdeui,KActionMenu,,, +tdeui,KActionPtrShortcutList,,, +tdeui,KActionSeparator,,, +tdeui,KActionShortcutList,,, +tdeui,KActiveLabel,,, +tdeui,KAnimWidget,,, +tdeui,KArrowButton,,, +tdeui,KAuthIcon,,, +tdeui,KBugReport,,, +tdeui,KButtonBox,,, +tdeui,KCModule,,, +tdeui,KCharSelect,,, +tdeui,KCharSelectTable,,, +tdeui,KColor,,, +tdeui,KColorButton,,, +tdeui,KColorCells,,, +tdeui,KColorCombo,,, +tdeui,KColorDialog,,, +tdeui,KColorDrag,,, +tdeui,KColorPatch,,, +tdeui,KComboBox,,, +tdeui,KCommand,,, +tdeui,KCommandHistory,,, +tdeui,KCompletionBox,,, +tdeui,KConfigDialog,,, +tdeui,KContextMenuManager,,, +tdeui,KCursor,,, +tdeui,KDCOPActionProxy,,, +tdeui,KDateInternalMonthPicker,,, +tdeui,KDateInternalWeekSelector,,, +tdeui,KDateInternalYearSelector,,, +tdeui,KDatePicker,,, +tdeui,KDateTable,,, +tdeui,KDateTimeWidget,,, +tdeui,KDateValidator,,, +tdeui,KDateWidget,,, +tdeui,KDialog,,, +tdeui,KDialogBase,,, +tdeui,KDialogQueue,,, +tdeui,KDockArea,,, +tdeui,KDockMainWindow,,, +tdeui,KDockManager,,, +tdeui,KDockTabGroup,,, +tdeui,KDockWidget,,, +tdeui,KDockWidgetAbstractHeader,,, +tdeui,KDockWidgetAbstractHeaderDrag,,, +tdeui,KDockWidgetHeader,,, +tdeui,KDockWidgetHeaderDrag,,, +tdeui,KDockWindow,,, +tdeui,KDoubleNumInput,,, +tdeui,KDoubleSpinBox,,, +tdeui,KDoubleValidator,,, +tdeui,KDualColorButton,,, +tdeui,KEdFind,,, +tdeui,KEdGotoLine,,, +tdeui,KEdReplace,,, +tdeui,KEdit,,, +tdeui,KEditListBox,,, +tdeui,KEditToolbar,,, +tdeui,KEditToolbarWidget,,, +tdeui,KFloatValidator,,, +tdeui,KFontAction,,, +tdeui,KFontChooser,,, +tdeui,KFontCombo,,, +tdeui,KFontDialog,,, +tdeui,KFontRequester,,, +tdeui,KFontSizeAction,,, +tdeui,KGradientSelector,,, +tdeui,KGuiItem,,, +tdeui,KHSSelector,,, +tdeui,KHelpMenu,,, +tdeui,KHistoryCombo,,, +tdeui,KIconView,,, +tdeui,KIconViewItem,,, +tdeui,KInputDialog,,, +tdeui,KIntNumInput,,, +tdeui,KIntSpinBox,,, +tdeui,KIntValidator,,, +tdeui,KJanusWidget,,, +tdeui,KKeyButton,,, +tdeui,KKeyChooser,,, +tdeui,KKeyDialog,,, +tdeui,KLed,,, +tdeui,KLineEdit,,, +tdeui,KLineEditDlg,,, +tdeui,KListAction,,, +tdeui,KListBox,,, +tdeui,KListView,,, +tdeui,KListViewItem,,, +tdeui,KMacroCommand,,, +tdeui,KMainWindow,,, +tdeui,KMainWindowInterface,,, +tdeui,KMenuBar,,, +tdeui,KMessageBox,,, +tdeui,KMimeTypeValidator,,, +tdeui,KNamedCommand,,, +tdeui,KNumInput,,, +tdeui,KPaletteTable,,, +tdeui,KPanelAppMenu,,, +tdeui,KPanelApplet,,, +tdeui,KPanelExtension,,, +tdeui,KPanelMenu,,, +tdeui,KPassivePopup,,, +tdeui,KPasswordDialog,,, +tdeui,KPasswordEdit,,, +tdeui,KPasteTextAction,,, +tdeui,KPixmapIO,,, +tdeui,KPopupFrame,,, +tdeui,KPopupMenu,,, +tdeui,KPopupTitle,,, +tdeui,KProgress,,, +tdeui,KProgressDialog,,, +tdeui,KPushButton,,, +tdeui,KRadioAction,,, +tdeui,KRecentFilesAction,,, +tdeui,KRestrictedLine,,, +tdeui,KRootPermsIcon,,, +tdeui,KRootPixmap,,, +tdeui,KRuler,,, +tdeui,KSelectAction,,, +tdeui,KSelector,,, +tdeui,KSeparator,,, +tdeui,KSplashScreen,,, +tdeui,KSqueezedTextLabel,,, +tdeui,KStatusBar,,, +tdeui,KStatusBarLabel,,, +tdeui,KStdAction,,, +tdeui,KStdGuiItem,,, +tdeui,KStringListValidator,,, +tdeui,KSystemTray,,, +tdeui,KTabBar,,, +tdeui,KTabCtl,,, +tdeui,KTabWidget,,, +tdeui,KTextBrowser,,, +tdeui,KTextEdit,,, +tdeui,KTimeWidget,,, +tdeui,KTipDatabase,,, +tdeui,KTipDialog,,, +tdeui,KToggleAction,,, +tdeui,KToggleFullScreenAction,,, +tdeui,KToggleToolBarAction,,, +tdeui,KToolBar,,, +tdeui,KToolBarButton,,, +tdeui,KToolBarPopupAction,,, +tdeui,KToolBarRadioGroup,,, +tdeui,KToolBarSeparator,,, +tdeui,KURLLabel,,, +tdeui,KValueSelector,,, +tdeui,KWidgetAction,,, +tdeui,KWindowInfo,,, +tdeui,KWindowListMenu,,, +tdeui,KWizard,,, +tdeui,KWordWrap,,, +tdeui,KWritePermsIcon,,, +tdeui,KXMLGUIBuilder,,, +tdeui,KXMLGUIClient,,, +tdeui,KXMLGUIFactory,,, +tdeui,KXYSelector,,, +tdeui,QXEmbed,,, +tdeui,testKActionList,,, kfile,KApplicationPropsPlugin,,, kfile,KBindingPropsPlugin,,, kfile,KCombiView,,, diff --git a/examples/pykde-sampler/qt_widgets/__init__.py b/examples/pykde-sampler/qt_widgets/__init__.py index ffe7bed..3bbf9dc 100644 --- a/examples/pykde-sampler/qt_widgets/__init__.py +++ b/examples/pykde-sampler/qt_widgets/__init__.py @@ -5,7 +5,7 @@ helpText = """Qt provides a rich set of widgets for application use. Select the children of this item to see for yourself.""" from qt import QFrame, QVBoxLayout, SIGNAL -from kdeui import KTextEdit +from tdeui import KTextEdit class MainFrame(QFrame): diff --git a/examples/pykde-sampler/qt_widgets/table.py b/examples/pykde-sampler/qt_widgets/table.py index d6b6e3e..9945b7e 100644 --- a/examples/pykde-sampler/qt_widgets/table.py +++ b/examples/pykde-sampler/qt_widgets/table.py @@ -11,7 +11,7 @@ import os from qt import QFrame, QStringList, QVBoxLayout, SIGNAL from qttable import QTable -from kdeui import KTextEdit +from tdeui import KTextEdit contrib = os.path.join(os.path.split(__file__)[0], 'CONTRIB') diff --git a/examples/pykde-sampler/runner.py b/examples/pykde-sampler/runner.py index 8b1ad2c..43f89fd 100755 --- a/examples/pykde-sampler/runner.py +++ b/examples/pykde-sampler/runner.py @@ -3,8 +3,8 @@ """ import sys -from kdecore import KApplication, KCmdLineArgs -from kdeui import KMainWindow +from tdecore import KApplication, KCmdLineArgs +from tdeui import KMainWindow from qt import QVBoxLayout ## relative import -- cry me a river! diff --git a/examples/pykde-sampler/sampler.py b/examples/pykde-sampler/sampler.py index bacf634..4625519 100755 --- a/examples/pykde-sampler/sampler.py +++ b/examples/pykde-sampler/sampler.py @@ -14,12 +14,12 @@ from qt import SIGNAL, SLOT, PYSIGNAL, Qt from qt import QVBoxLayout, QLabel, QPixmap, QSplitter, QFrame, QDialog from qt import QSizePolicy, QHBoxLayout, QSpacerItem, QPushButton -from kdecore import i18n, KAboutData, KApplication, KCmdLineArgs, KGlobal -from kdecore import KGlobalSettings, KWin, KWinModule, KURL, KIcon +from tdecore import i18n, KAboutData, KApplication, KCmdLineArgs, KGlobal +from tdecore import KGlobalSettings, KWin, KWinModule, KURL, KIcon -from kdeui import KComboBox, KListView, KListViewItem, KTabWidget, KTextEdit -from kdeui import KMainWindow, KPushButton, KSplashScreen, KStdAction -from kdeui import KKeyDialog, KEditToolbar +from tdeui import KComboBox, KListView, KListViewItem, KTabWidget, KTextEdit +from tdeui import KMainWindow, KPushButton, KSplashScreen, KStdAction +from tdeui import KKeyDialog, KEditToolbar from kio import KTrader from kparts import createReadOnlyPart, createReadWritePart diff --git a/examples/systray.py b/examples/systray.py index 7391c9b..dda65bb 100644 --- a/examples/systray.py +++ b/examples/systray.py @@ -30,8 +30,8 @@ copyright holder. import sys from qt import QLabel -from kdecore import KApplication, KIcon, KIconLoader -from kdeui import KMainWindow, KSystemTray +from tdecore import KApplication, KIcon, KIconLoader +from tdeui import KMainWindow, KSystemTray class MainWin (KMainWindow): def __init__ (self, *args): diff --git a/examples/uikmdi.py b/examples/uikmdi.py index 3a213bc..95960ee 100644 --- a/examples/uikmdi.py +++ b/examples/uikmdi.py @@ -29,8 +29,8 @@ import os import sys from qt import SIGNAL, QVBoxLayout, QLabel -from kdecore import i18n, KAboutData, KApplication, KGlobal, KIcon, KCmdLineArgs -from kdeui import KDockWidget, KListBox, KStdAction +from tdecore import i18n, KAboutData, KApplication, KGlobal, KIcon, KCmdLineArgs +from tdeui import KDockWidget, KListBox, KStdAction try: from kmdi import KMdi, KMdiMainFrm, KMdiChildView diff --git a/examples/uimodules/uidialogs.py b/examples/uimodules/uidialogs.py index 0f86072..a08e44d 100644 --- a/examples/uimodules/uidialogs.py +++ b/examples/uimodules/uidialogs.py @@ -1,9 +1,9 @@ from qt import QVBox, QLabel, QLineEdit, QString, QPixmap, QPushButton, QColor, SIGNAL, QButtonGroup,\ QRadioButton, Qt, QWidget -from kdecore import KAccel, i18n +from tdecore import KAccel, i18n -from kdeui import KAboutDialog, KAboutKDE, KBugReport, KColorDialog, KDialog, KDialogBase, KFontDialog,\ +from tdeui import KAboutDialog, KAboutKDE, KBugReport, KColorDialog, KDialog, KDialogBase, KFontDialog,\ KPasswordDialog, KMessageBox, KLineEditDlg, KKeyDialog, KWizard # despite what the docs say, there is no enum (in 2.1.1 anyway) diff --git a/examples/uimodules/uimenus.py b/examples/uimodules/uimenus.py index 19173b3..6f98769 100644 --- a/examples/uimodules/uimenus.py +++ b/examples/uimodules/uimenus.py @@ -2,7 +2,7 @@ import os from qt import QLabel -from kdecore import KApplication +from tdecore import KApplication class PageLaunch: def __init__ (self, parent): diff --git a/examples/uimodules/uimisc.py b/examples/uimodules/uimisc.py index 31f7c18..7f39b86 100644 --- a/examples/uimodules/uimisc.py +++ b/examples/uimodules/uimisc.py @@ -2,7 +2,7 @@ import os, time from qt import QImage, QLabel, QPixmap, QPushButton, SIGNAL, QColor, QValidator -from kdeui import KMessageBox, KDateValidator, KFloatValidator, KIntValidator, KLineEdit, KLed +from tdeui import KMessageBox, KDateValidator, KFloatValidator, KIntValidator, KLineEdit, KLed diff --git a/examples/uimodules/uiwidgets.py b/examples/uimodules/uiwidgets.py index b12df10..54573bf 100644 --- a/examples/uimodules/uiwidgets.py +++ b/examples/uimodules/uiwidgets.py @@ -3,8 +3,8 @@ import time, sys from qt import QLabel, QFrame, QColor, QPushButton, SIGNAL, QButtonGroup, QRadioButton, Qt, QString, QChar,\ QWidget, QTimer -from kdecore import KApplication -from kdeui import KEdit, KComboBox, KColorCombo, KEditListBox, KListBox, KLineEdit, KRestrictedLine,\ +from tdecore import KApplication +from tdeui import KEdit, KComboBox, KColorCombo, KEditListBox, KListBox, KLineEdit, KRestrictedLine,\ KSqueezedTextLabel, KFontChooser, KButtonBox, KColorButton, KColorCells,\ KColorPatch, KDualColorButton,\ KRootPermsIcon, KWritePermsIcon, KCharSelect, KDialog, KLed, KRootPixmap,\ diff --git a/examples/uimodules/uixml.py b/examples/uimodules/uixml.py index baa6c86..8dbd4d3 100644 --- a/examples/uimodules/uixml.py +++ b/examples/uimodules/uixml.py @@ -2,7 +2,7 @@ import os from qt import QLabel -from kdecore import KApplication +from tdecore import KApplication class PageLaunch: def __init__ (self, parent): diff --git a/examples/uiqxembed.py b/examples/uiqxembed.py index 4f223b7..6b50945 100644 --- a/examples/uiqxembed.py +++ b/examples/uiqxembed.py @@ -6,9 +6,9 @@ import sys from qt import QIconSet, QProcess, QTimer, SIGNAL, SLOT -from kdecore import KAboutData, KApplication, KCmdLineArgs, KGlobal, KIcon -from kdecore import KWin, KWinModule -from kdeui import KComboBox, KMainWindow, KPushButton, QXEmbed +from tdecore import KAboutData, KApplication, KCmdLineArgs, KGlobal, KIcon +from tdecore import KWin, KWinModule +from tdeui import KComboBox, KMainWindow, KPushButton, QXEmbed ## add the missing items to the pyuic-generated module diff --git a/examples/uisampler.py b/examples/uisampler.py index 00dd006..af61e93 100644 --- a/examples/uisampler.py +++ b/examples/uisampler.py @@ -3,8 +3,8 @@ sys.path.append ("./uimodules") from qt import QSplitter, QWidgetStack, QWidget, QListViewItem, SIGNAL, QCString , QScrollView, QRect, Qt -from kdecore import KApplication, KCmdLineArgs, KAboutData -from kdeui import KMainWindow, KListView +from tdecore import KApplication, KCmdLineArgs, KAboutData +from tdeui import KMainWindow, KListView from uidialogs import * from uiwidgets import * diff --git a/examples/xmlmenudemo.py b/examples/xmlmenudemo.py index ab91dd5..f9b70b3 100644 --- a/examples/xmlmenudemo.py +++ b/examples/xmlmenudemo.py @@ -43,8 +43,8 @@ import sys, os from qt import QPopupMenu, SIGNAL, QLabel, QIconSet -from kdecore import KApplication, KCmdLineArgs, KAboutData, i18n, KIcon, KIconLoader, KShortcut, KGlobal -from kdeui import KMainWindow, KMessageBox, KStdAction, KAction, KToggleAction, KFontSizeAction, KFontAction, KRadioAction,\ +from tdecore import KApplication, KCmdLineArgs, KAboutData, i18n, KIcon, KIconLoader, KShortcut, KGlobal +from tdeui import KMainWindow, KMessageBox, KStdAction, KAction, KToggleAction, KFontSizeAction, KFontAction, KRadioAction,\ KActionSeparator, KActionMenu, KWindowListMenu, KXMLGUIClient, KActionCollection STATUSBAR_LEFT = 1 -- cgit v1.2.3