From e16866e072f94410321d70daedbcb855ea878cac Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 15:56:40 -0600 Subject: Actually move the kde files that were renamed in the last commit --- tdeui/tests/kpalettetest.cpp | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 tdeui/tests/kpalettetest.cpp (limited to 'tdeui/tests/kpalettetest.cpp') diff --git a/tdeui/tests/kpalettetest.cpp b/tdeui/tests/kpalettetest.cpp new file mode 100644 index 000000000..32b91ff96 --- /dev/null +++ b/tdeui/tests/kpalettetest.cpp @@ -0,0 +1,38 @@ + +#include +#include +#include +#include +#include "kpalette.h" +#include "kledtest.h" +#include + +#include + + +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); + } + } +} + + -- cgit v1.2.1