summaryrefslogtreecommitdiffstats
path: root/python/pykde/examples/pykde-sampler/dialogs/color.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pykde/examples/pykde-sampler/dialogs/color.py')
-rw-r--r--python/pykde/examples/pykde-sampler/dialogs/color.py42
1 files changed, 0 insertions, 42 deletions
diff --git a/python/pykde/examples/pykde-sampler/dialogs/color.py b/python/pykde/examples/pykde-sampler/dialogs/color.py
deleted file mode 100644
index b749cce4..00000000
--- a/python/pykde/examples/pykde-sampler/dialogs/color.py
+++ /dev/null
@@ -1,42 +0,0 @@
-iconName = 'colorize'
-labelText = 'KColorDialog'
-
-
-from qt import QFrame, QHBoxLayout, QVBoxLayout, SIGNAL
-from kdecore import i18n
-from kdeui import KPushButton, KColorDialog, KColorPatch, KTextEdit
-
-
-helpText = ("KDE provides a nifty common color selection dialog."
- "The color selection in the dialog is tracked via a SIGNAL "
- "connected to the KColorPatch area below.")
-
-
-class MainFrame(QFrame):
- def __init__(self, parent=None):
- QFrame.__init__(self, parent)
- self.button = KPushButton(i18n('Show Color Dialog'), self)
- self.help = KTextEdit(helpText, '', self)
- self.patch = KColorPatch(self)
- layout = QVBoxLayout(self, 4)
- layout.addWidget(self.help)
- buttonlayout = QHBoxLayout(layout, 4)
- buttonlayout.addWidget(self.button)
- buttonlayout.addStretch(1)
- layout.addWidget(self.patch, 10)
- layout.addStretch(1)
- self.connect(self.button, SIGNAL('clicked()'), self.showColorDialog)
-
- def showColorDialog(self):
- dlg = KColorDialog(self)
-
- ## this connection is made so that there's a default color
- self.connect(dlg, SIGNAL('colorSelected(const QColor &)'),
- self.patch.setPaletteBackgroundColor)
- dlg.setColor(self.patch.paletteBackgroundColor())
-
- ## this connection is the one that changes the patch color to match
- ## the color selected in the dialog
- self.connect(dlg, SIGNAL('colorSelected(const QColor &)'),
- self.patch.setColor)
- dlg.exec_loop()