summaryrefslogtreecommitdiffstats
path: root/tdeui/tests/kcolortest.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
commite16866e072f94410321d70daedbcb855ea878cac (patch)
treeee3f52eabde7da1a0e6ca845fb9c2813cf1558cf /tdeui/tests/kcolortest.cpp
parenta58c20c1a7593631a1b50213c805507ebc16adaf (diff)
downloadtdelibs-e16866e072f94410321d70daedbcb855ea878cac.tar.gz
tdelibs-e16866e072f94410321d70daedbcb855ea878cac.zip
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'tdeui/tests/kcolortest.cpp')
-rw-r--r--tdeui/tests/kcolortest.cpp169
1 files changed, 169 insertions, 0 deletions
diff --git a/tdeui/tests/kcolortest.cpp b/tdeui/tests/kcolortest.cpp
new file mode 100644
index 000000000..46f5b42bc
--- /dev/null
+++ b/tdeui/tests/kcolortest.cpp
@@ -0,0 +1,169 @@
+
+#include "kcolortest.h"
+#include <kapplication.h>
+#include <kimageeffect.h>
+#include <stdio.h>
+#include <tqdatetime.h>
+
+bool fullscreen = false, oldway = false, intvsfade = false;
+int max = 20; // how many steps
+
+KColorWidget::KColorWidget(TQWidget *parent, const char *name)
+ : TQWidget(parent, name)
+{
+
+ if (fullscreen || intvsfade) {
+ TQPixmap shot = TQPixmap::grabWindow(TQApplication::desktop()->winId());
+ original = shot.convertToImage();
+ }
+ else
+ original = TQImage("testimage.png");
+ resize(original.width(), original.height());
+}
+
+void KColorWidget::paintEvent(TQPaintEvent *)
+{
+ if(!pixmap.isNull())
+ bitBlt(this, 0, 0, &pixmap, 0, 0, pixmap.width(), pixmap.height(),
+ Qt::CopyROP, true);
+}
+
+void KColorWidget::doIntensityLoop()
+{
+ int count;
+
+ int start, stop;
+ TQTime t;
+
+ t.start();
+
+ image = original; image.detach();
+
+ if (fullscreen){
+ start = t.elapsed();
+ for(count=0; count < max; ++count){
+ if (!oldway)
+ KImageEffect::intensity(image, -1./max);
+ else {
+ uint *qptr=(uint *)image.bits();
+ QRgb qrgb;
+ int size=pixmap.width()*pixmap.height();
+ for (int i=0;i<size; i++, qptr++)
+ {
+ qrgb=*(QRgb *)qptr;
+ *qptr=tqRgb((int)(tqRed(qrgb)*1./max),
+ (int)(tqGreen(qrgb)*1./max),
+ (int)(tqBlue(qrgb)*1./max));
+ }
+ }
+ pixmap.convertFromImage(image);
+ bitBlt(this, 0, 0, &pixmap, 0, 0, pixmap.width(), pixmap.height(),
+ Qt::CopyROP, true);
+ }
+ stop = t.elapsed();
+ qDebug ("Total fullscreen %s dim time for %d steps : %f s",
+ oldway?"(antonio)":"(intensity)", count, (stop - start)*1e-3);
+
+ if (intvsfade) {
+ image = original; image.detach();
+ start = t.elapsed();
+ for(count=0; count < max; ++count){
+ KImageEffect::fade(image, 1./max, black);
+ pixmap.convertFromImage(image);
+ bitBlt(this, 0, 0, &pixmap, 0, 0, pixmap.width(), pixmap.height(),
+ Qt::CopyROP, true);
+ }
+ }
+ stop = t.elapsed();
+ qDebug ("Total fullscreen (fade) dim time for %d steps : %f s",
+ count, (stop - start)*1e-3);
+
+ }
+
+ else {
+ image = original; image.detach();
+ qDebug("Intensity test");
+ for(count=0; count < max; ++count){
+ KImageEffect::intensity(image, 1./max);
+ pixmap.convertFromImage(image);
+ bitBlt(this, 0, 0, &pixmap, 0, 0, pixmap.width(), pixmap.height(),
+ Qt::CopyROP, true);
+ }
+
+ for(count=0; count < max; ++count){
+ KImageEffect::intensity(image, -1./max);
+ pixmap.convertFromImage(image);
+ bitBlt(this, 0, 0, &pixmap, 0, 0, pixmap.width(), pixmap.height(),
+ Qt::CopyROP, true);
+ }
+
+ image = original; image.detach();
+ qDebug("Red channel intensity test");
+ for(count=0; count < max; ++count){
+ KImageEffect::channelIntensity(image, -1./max, KImageEffect::Red);
+ pixmap.convertFromImage(image);
+ bitBlt(this, 0, 0, &pixmap, 0, 0, pixmap.width(), pixmap.height(),
+ Qt::CopyROP, true);
+ }
+ for(count=0; count < max; ++count){
+ KImageEffect::channelIntensity(image, 1./max, KImageEffect::Red);
+ pixmap.convertFromImage(image);
+ bitBlt(this, 0, 0, &pixmap, 0, 0, pixmap.width(), pixmap.height(),
+ Qt::CopyROP, true);
+ }
+
+ image = original; image.detach();
+ qDebug("Green channel intensity test");
+ for(count=0; count < max; ++count){
+ KImageEffect::channelIntensity(image, -1./max, KImageEffect::Green);
+ pixmap.convertFromImage(image);
+ bitBlt(this, 0, 0, &pixmap, 0, 0, pixmap.width(), pixmap.height(),
+ Qt::CopyROP, true);
+ }
+ for(count=0; count < max; ++count){
+ KImageEffect::channelIntensity(image, 1./max, KImageEffect::Green);
+ pixmap.convertFromImage(image);
+ bitBlt(this, 0, 0, &pixmap, 0, 0, pixmap.width(), pixmap.height(),
+ Qt::CopyROP, true);
+ }
+
+ image = original; image.detach();
+ qDebug("Blue channel intensity test");
+ for(count=0; count < max; ++count){
+ KImageEffect::channelIntensity(image, -1./max, KImageEffect::Blue);
+ pixmap.convertFromImage(image);
+ bitBlt(this, 0, 0, &pixmap, 0, 0, pixmap.width(), pixmap.height(),
+ Qt::CopyROP, true);
+ }
+ for(count=0; count < max; ++count){
+ KImageEffect::channelIntensity(image, 1./max, KImageEffect::Blue);
+ pixmap.convertFromImage(image);
+ bitBlt(this, 0, 0, &pixmap, 0, 0, pixmap.width(), pixmap.height(),
+ Qt::CopyROP, true);
+ }
+ }
+}
+
+int main(int argc, char **argv)
+{
+ if (argc > 1) {
+ if (!strcmp(argv[1], "fullscreen"))
+ {
+ fullscreen = true;
+ if (!strcmp(argv[2], "old_way"))
+ oldway = true;
+ }
+ else if (!strcmp(argv[1], "int_vs_fade")) {
+ intvsfade = fullscreen = true;
+ oldway = false;
+ }
+ else
+ printf("Usage: %s [int_vs_fade | fullscreen [old_way]]\n ", argv[0]);
+ }
+ KApplication *app = new KApplication(argc, argv, "KColorTest");
+ KColorWidget w;
+ app->setMainWidget(&w);
+ w.show();
+ w.doIntensityLoop();
+ return(app->exec());
+}