summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kpalettetest.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-06 15:56:40 -0600
committerTimothy Pearson <[email protected]>2011-11-06 15:56:40 -0600
commite16866e072f94410321d70daedbcb855ea878cac (patch)
treeee3f52eabde7da1a0e6ca845fb9c2813cf1558cf /kdeui/tests/kpalettetest.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 'kdeui/tests/kpalettetest.cpp')
-rw-r--r--kdeui/tests/kpalettetest.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/kdeui/tests/kpalettetest.cpp b/kdeui/tests/kpalettetest.cpp
deleted file mode 100644
index 32b91ff96..000000000
--- a/kdeui/tests/kpalettetest.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-
-#include <kapplication.h>
-#include <tqwidget.h>
-#include <tqtimer.h>
-#include <stdlib.h>
-#include "kpalette.h"
-#include "kledtest.h"
-#include <stdio.h>
-
-#include <tqstringlist.h>
-
-
-int main( int argc, char **argv )
-{
- KApplication a( argc, argv, "KPalettetest" );
-
- TQStringList palettes = KPalette::getPaletteList();
- for(TQStringList::ConstIterator it = palettes.begin();
- it != palettes.end(); it++)
- {
- printf("Palette = %s\n", (*it).ascii());
-
- KPalette myPalette = KPalette(*it);
-
- printf("Palette Name = \"%s\"\n", myPalette.name().ascii());
- printf("Description:\n\"%s\"\n", myPalette.description().ascii());
- printf("Nr of Colors = %d\n", myPalette.nrColors());
- for(int i = 0; i < myPalette.nrColors(); i++)
- {
- int r,g,b;
- myPalette.color(i).rgb(&r, &g, &b);
- printf("#%d Name = \"%s\" #%02x%02x%02x\n",
- i, myPalette.colorName(i).ascii(), r,g,b);
- }
- }
-}
-
-