diff options
author | natural <natural> | 2006-12-24 10:20:10 +0000 |
---|---|---|
committer | natural <natural> | 2006-12-24 10:20:10 +0000 |
commit | efa1df0939d879cf18e0cf9fa342aaf86d3e9ea1 (patch) | |
tree | 486d072a630c5720689ccb13f48a76485e346e6c /kberylsettings/lib.py | |
parent | 5dbd7720a4e446d8f12c1456584e354a3facdd7c (diff) | |
download | kberylsettings-efa1df0939d879cf18e0cf9fa342aaf86d3e9ea1.tar.gz kberylsettings-efa1df0939d879cf18e0cf9fa342aaf86d3e9ea1.tar.bz2 |
Updates for most recent berylsettings.pyx.
Added setting widget for strings with fewer than 5 restrictions; uses
radio buttons instead of a list box.
Added profile menus to main.py (not yet functional).
Changed color setting widgets; they now work!
Other minor fixes and changes.
Enabled "Defaults" and "Reset" buttons.
Diffstat (limited to 'kberylsettings/lib.py')
-rw-r--r-- | kberylsettings/lib.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kberylsettings/lib.py b/kberylsettings/lib.py index 16096a8..2eebdd3 100644 --- a/kberylsettings/lib.py +++ b/kberylsettings/lib.py @@ -40,8 +40,9 @@ class Signals: pluginAbout = PYSIGNAL('pluginAbout') showSettings = PYSIGNAL('showSettings') statusMessage = PYSIGNAL('statusMessage') - somethingChanged = PYSIGNAL('somethingChanged') + someChange = PYSIGNAL('someChange') clicked = SIGNAL('clicked()') + clickedId = SIGNAL('clicked(int)') changed = SIGNAL('changed()') itemClicked = SIGNAL('clicked(QListViewItem *)') itemSelected = SIGNAL('selectionChanged(QListViewItem *)') |