diff options
author | natural <natural> | 2006-12-28 13:30:24 +0000 |
---|---|---|
committer | natural <natural> | 2006-12-28 13:30:24 +0000 |
commit | 6353813802ba776b05241f07cb8fee9c90310c40 (patch) | |
tree | bbdb3641c28de20c9c6164748436d7411be468ff /kberylsettings/lib.py | |
parent | c8ad4394c474f9f6854904f377ab28a38172b867 (diff) | |
download | kberylsettings-6353813802ba776b05241f07cb8fee9c90310c40.tar.gz kberylsettings-6353813802ba776b05241f07cb8fee9c90310c40.tar.bz2 |
Support for plugin categories.
Fixed scroll view layouts.
Many other bug fixes and enhancements.
Diffstat (limited to 'kberylsettings/lib.py')
-rw-r--r-- | kberylsettings/lib.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/kberylsettings/lib.py b/kberylsettings/lib.py index 2eebdd3..a9986ff 100644 --- a/kberylsettings/lib.py +++ b/kberylsettings/lib.py @@ -37,8 +37,9 @@ class Signals: berylContextChanged = PYSIGNAL('berylContextChanged') berylSettingChanged = PYSIGNAL('berylSettingChanged') berylPluginEnabled = PYSIGNAL('berylPluginEnabled') - pluginAbout = PYSIGNAL('pluginAbout') + showAbout = PYSIGNAL('showAbout') showSettings = PYSIGNAL('showSettings') + showGroups = PYSIGNAL('showGroups') statusMessage = PYSIGNAL('statusMessage') someChange = PYSIGNAL('someChange') clicked = SIGNAL('clicked()') @@ -59,6 +60,8 @@ class Signals: colorChanged = SIGNAL('changed(const QColor &)') contextMenuRequest = \ SIGNAL('contextMenuRequested(QListViewItem*,const QPoint&,int)') + searchInput = PYSIGNAL('searchInput') + selectPrevious = PYSIGNAL('selectPrevious') class Slots: @@ -175,3 +178,4 @@ def buildPart(parent, servicetype, constraint, writable=False): if part: break return part + |