author | drw <drw> | 2004-03-08 19:07:39 (UTC) |
---|---|---|
committer | drw <drw> | 2004-03-08 19:07:39 (UTC) |
commit | 64f05e3c2733a0b696ca008baad335073ef927cb (patch) (unidiff) | |
tree | 7eda90d8d509ca1d13fd116cb393b97824149f0f | |
parent | 5c0d3f0db722ad2b81bdab1a2a06d45c198ed975 (diff) | |
download | opie-64f05e3c2733a0b696ca008baad335073ef927cb.zip opie-64f05e3c2733a0b696ca008baad335073ef927cb.tar.gz opie-64f05e3c2733a0b696ca008baad335073ef927cb.tar.bz2 |
Consolidate Opie logo images. Apps should use common logo: pics/logo/opielogo.png
-rw-r--r-- | core/pim/today/todaybase.cpp | 5 | ||||
-rw-r--r-- | library/inlinepics_p.h | 82 | ||||
-rw-r--r-- | pics/Example.png | bin | 6926 -> 0 bytes | |||
-rw-r--r-- | pics/inline/about.png | bin | 2482 -> 0 bytes | |||
-rw-r--r-- | pics/logo/opielogo.png | bin | 12347 -> 6926 bytes | |||
-rw-r--r-- | pics/today/opiezilla.png | bin | 3885 -> 0 bytes |
6 files changed, 6 insertions, 81 deletions
diff --git a/core/pim/today/todaybase.cpp b/core/pim/today/todaybase.cpp index 14cdfd9..7f1915c 100644 --- a/core/pim/today/todaybase.cpp +++ b/core/pim/today/todaybase.cpp | |||
@@ -1,60 +1,63 @@ | |||
1 | /* | 1 | /* |
2 | * todaybase.cpp | 2 | * todaybase.cpp |
3 | * | 3 | * |
4 | * copyright : (c) 2002, 2003, 2004 by Maximilian Reiß | 4 | * copyright : (c) 2002, 2003, 2004 by Maximilian Reiß |
5 | * email : harlekin@handhelds.org | 5 | * email : harlekin@handhelds.org |
6 | * | 6 | * |
7 | */ | 7 | */ |
8 | /*************************************************************************** | 8 | /*************************************************************************** |
9 | * * | 9 | * * |
10 | * This program is free software; you can redistribute it and/or modify * | 10 | * This program is free software; you can redistribute it and/or modify * |
11 | * it under the terms of the GNU General Public License as published by * | 11 | * it under the terms of the GNU General Public License as published by * |
12 | * the Free Software Foundation; either version 2 of the License, or * | 12 | * the Free Software Foundation; either version 2 of the License, or * |
13 | * (at your option) any later version. * | 13 | * (at your option) any later version. * |
14 | * * | 14 | * * |
15 | ***************************************************************************/ | 15 | ***************************************************************************/ |
16 | 16 | ||
17 | #include "todaybase.h" | 17 | #include "todaybase.h" |
18 | 18 | ||
19 | #include <qpe/resource.h> | 19 | #include <qpe/resource.h> |
20 | 20 | ||
21 | #include <qvbox.h> | 21 | #include <qvbox.h> |
22 | #include <qwhatsthis.h> | 22 | #include <qwhatsthis.h> |
23 | 23 | ||
24 | TodayBase::TodayBase( QWidget* parent, const char* name, WFlags ) | 24 | TodayBase::TodayBase( QWidget* parent, const char* name, WFlags ) |
25 | : QWidget( parent, name, WStyle_ContextHelp ) { | 25 | : QWidget( parent, name, WStyle_ContextHelp ) { |
26 | 26 | ||
27 | QPixmap logo = Resource::loadPixmap( "today/today_logo"); // logo | 27 | QPixmap logo = Resource::loadPixmap( "today/today_logo"); // logo |
28 | QPixmap opiezilla = Resource::loadPixmap("today/opiezilla" ); //the opiezilla | 28 | QImage opiezillaimage = QImage( Resource::loadImage("logo/opielogo" ) ); |
29 | opiezillaimage = opiezillaimage.smoothScale( 45, 45 ); | ||
30 | QPixmap opiezilla; //the opiezilla | ||
31 | opiezilla.convertFromImage( opiezillaimage ); | ||
29 | QPixmap config = Resource::loadPixmap( "SettingsIcon" ); // config icon | 32 | QPixmap config = Resource::loadPixmap( "SettingsIcon" ); // config icon |
30 | 33 | ||
31 | layout = 0L; | 34 | layout = 0L; |
32 | 35 | ||
33 | QPalette pal = this->palette(); | 36 | QPalette pal = this->palette(); |
34 | QColor col = pal.color( QPalette::Active, QColorGroup::Background ); | 37 | QColor col = pal.color( QPalette::Active, QColorGroup::Background ); |
35 | pal.setColor( QPalette::Active, QColorGroup::Button, col ); | 38 | pal.setColor( QPalette::Active, QColorGroup::Button, col ); |
36 | pal.setColor( QPalette::Inactive, QColorGroup::Button, col ); | 39 | pal.setColor( QPalette::Inactive, QColorGroup::Button, col ); |
37 | pal.setColor( QPalette::Normal, QColorGroup::Button, col ); | 40 | pal.setColor( QPalette::Normal, QColorGroup::Button, col ); |
38 | pal.setColor( QPalette::Disabled, QColorGroup::Button, col ); | 41 | pal.setColor( QPalette::Disabled, QColorGroup::Button, col ); |
39 | this->setPalette( pal ); | 42 | this->setPalette( pal ); |
40 | 43 | ||
41 | // --- logo Section --- | 44 | // --- logo Section --- |
42 | QPalette pal2; | 45 | QPalette pal2; |
43 | QColorGroup cg; | 46 | QColorGroup cg; |
44 | cg.setColor( QColorGroup::Text, white ); | 47 | cg.setColor( QColorGroup::Text, white ); |
45 | cg.setBrush( QColorGroup::Background, QBrush( QColor( 238, 238, 230 ), logo ) ); | 48 | cg.setBrush( QColorGroup::Background, QBrush( QColor( 238, 238, 230 ), logo ) ); |
46 | pal2.setActive( cg ); | 49 | pal2.setActive( cg ); |
47 | 50 | ||
48 | // today logo | 51 | // today logo |
49 | Frame = new QLabel( this, "Frame" ); | 52 | Frame = new QLabel( this, "Frame" ); |
50 | Frame->setPalette( pal2 ); | 53 | Frame->setPalette( pal2 ); |
51 | Frame->setFrameShape( QFrame::StyledPanel ); | 54 | Frame->setFrameShape( QFrame::StyledPanel ); |
52 | Frame->setFrameShadow( QFrame::Raised ); | 55 | Frame->setFrameShadow( QFrame::Raised ); |
53 | Frame->setLineWidth( 0 ); | 56 | Frame->setLineWidth( 0 ); |
54 | 57 | ||
55 | QHBoxLayout *frameLayout = new QHBoxLayout( Frame ); | 58 | QHBoxLayout *frameLayout = new QHBoxLayout( Frame ); |
56 | QVBox *box1 = new QVBox( Frame ); | 59 | QVBox *box1 = new QVBox( Frame ); |
57 | 60 | ||
58 | // Today text | 61 | // Today text |
59 | TodayLabel = new QLabel( box1, "TodayText" ); | 62 | TodayLabel = new QLabel( box1, "TodayText" ); |
60 | QFont TodayLabel_font( TodayLabel->font() ); | 63 | QFont TodayLabel_font( TodayLabel->font() ); |
diff --git a/library/inlinepics_p.h b/library/inlinepics_p.h index 0168f13..5c74e5e 100644 --- a/library/inlinepics_p.h +++ b/library/inlinepics_p.h | |||
@@ -1,131 +1,54 @@ | |||
1 | /* Generated by qembed */ | 1 | /* Generated by qembed */ |
2 | #ifndef _1753585026 | 2 | #ifndef _325529251 |
3 | #define _1753585026 | 3 | #define _325529251 |
4 | #include <qimage.h> | 4 | #include <qimage.h> |
5 | #include <stdlib.h> | 5 | #include <stdlib.h> |
6 | static const QRgb _to1_data[] = { | 6 | static const QRgb _to1_data[] = { |
7 | 0x0,0x0,0x1c9191aa,0x7daeaec1,0xaabfbfcd,0xa3c5c5d3,0x63bfbfce,0x8b6b6c7,0x0,0x0,0x0,0x0,0x0,0x0, | 7 | 0x0,0x0,0x1c9191aa,0x7daeaec1,0xaabfbfcd,0xa3c5c5d3,0x63bfbfce,0x8b6b6c7,0x0,0x0,0x0,0x0,0x0,0x0, |
8 | 0x0,0x478c8ca6,0xeca3a9c1,0xf9bbd1e5,0xf7d0e5f5,0xf8d9e7f4,0xfbccd9ea,0xccc9cad8,0x19babaca,0x0,0x0,0x0,0x0,0x0, | 8 | 0x0,0x478c8ca6,0xeca3a9c1,0xf9bbd1e5,0xf7d0e5f5,0xf8d9e7f4,0xfbccd9ea,0xccc9cad8,0x19babaca,0x0,0x0,0x0,0x0,0x0, |
9 | 0x1c747493,0xea8f95b4,0xf4a3d0f4,0xf5c6efff,0xf5d6f4ff,0xf5dbf5ff,0xf5d2f3ff,0xf5b9d8f2,0xbbc9cad8,0x1b8b8c9,0x0,0x0,0x0,0x0, | 9 | 0x1c747493,0xea8f95b4,0xf4a3d0f4,0xf5c6efff,0xf5d6f4ff,0xf5dbf5ff,0xf5d2f3ff,0xf5b9d8f2,0xbbc9cad8,0x1b8b8c9,0x0,0x0,0x0,0x0, |
10 | 0x7d7e7e9a,0xf38881b1,0xf7a8acd4,0xf5b3e3ff,0xf5c2edff,0xf5c6efff,0xf6c1d9ed,0xf7b6a3c3,0xf5b7c7e4,0x31b5b5c6,0x0,0x0,0x0,0x0, | 10 | 0x7d7e7e9a,0xf38881b1,0xf7a8acd4,0xf5b3e3ff,0xf5c2edff,0xf5c6efff,0xf6c1d9ed,0xf7b6a3c3,0xf5b7c7e4,0x31b5b5c6,0x0,0x0,0x0,0x0, |
11 | 0xab7b7b98,0xbc435dbe,0xe6a45a8b,0xdf92cafe,0xf1b495b7,0xdaa4bae3,0xde9cc3f1,0xf9b36189,0xee9dbdeb,0x60b9b9c9,0x0,0x0,0x0,0x0, | 11 | 0xab7b7b98,0xbc435dbe,0xe6a45a8b,0xdf92cafe,0xf1b495b7,0xdaa4bae3,0xde9cc3f1,0xf9b36189,0xee9dbdeb,0x60b9b9c9,0x0,0x0,0x0,0x0, |
12 | 0xa3717190,0xbc4b65bc,0xcea43e71,0x9975b2fc,0xc0ab6592,0xa597a3d9,0x9d7cabf0,0xdba84172,0xe49cb3e1,0x56afafc2,0x0,0x0,0x0,0x0, | 12 | 0xa3717190,0xbc4b65bc,0xcea43e71,0x9975b2fc,0xc0ab6592,0xa597a3d9,0x9d7cabf0,0xdba84172,0xe49cb3e1,0x56afafc2,0x0,0x0,0x0,0x0, |
13 | 0x61636385,0xe97e5c87,0xbb9f699d,0x9ba5d2f9,0xacc9b2c4,0x9fc7dcec,0xa7b3b2d3,0xc0a46a9a,0xf2b5a7be,0x1aa3a3b8,0x0,0x0,0x0,0x0, | 13 | 0x61636385,0xe97e5c87,0xbb9f699d,0x9ba5d2f9,0xacc9b2c4,0x9fc7dcec,0xa7b3b2d3,0xc0a46a9a,0xf2b5a7be,0x1aa3a3b8,0x0,0x0,0x0,0x0, |
14 | 0x857577b,0xc966678a,0xc07d9dca,0x9ac3edfe,0x99eafeff,0x99ecfeff,0x9dc6edfc,0xdca5b5d2,0xdfb2b2c4,0x3b7b7c8,0x0,0x0,0x0,0x0, | 14 | 0x857577b,0xc966678a,0xc07d9dca,0x9ac3edfe,0x99eafeff,0x99ecfeff,0x9dc6edfc,0xdca5b5d2,0xdfb2b2c4,0x3b7b7c8,0x0,0x0,0x0,0x0, |
15 | 0x0,0x1958587c,0xb8696a8b,0xe5878faa,0xceb0b7c8,0xd3b6bbcb,0xeb9ea2b9,0xcd9595ad,0xeea3a3b7,0xb1cb9f58,0x4ee4991e,0x0,0x0,0x0, | 15 | 0x0,0x1958587c,0xb8696a8b,0xe5878faa,0xceb0b7c8,0xd3b6bbcb,0xeb9ea2b9,0xcd9595ad,0xeea3a3b7,0xb1cb9f58,0x4ee4991e,0x0,0x0,0x0, |
16 | 0x0,0x0,0x5b5b7e,0x2f606083,0x5e6e6e8e,0x54747493,0x1a777795,0x0,0xb1a57239,0xfff7d37d,0xf7f7d46f,0x4fe4991e,0x0,0x0, | 16 | 0x0,0x0,0x5b5b7e,0x2f606083,0x5e6e6e8e,0x54747493,0x1a777795,0x0,0xb1a57239,0xfff7d37d,0xf7f7d46f,0x4fe4991e,0x0,0x0, |
17 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x449f5b0e,0xf3dd921d,0xfffddc87,0xf7f7d36f,0x4fe4991e,0x0, | 17 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x449f5b0e,0xf3dd921d,0xfffddc87,0xf7f7d36f,0x4fe4991e,0x0, |
18 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x459f5b0e,0xf3dd921d,0xfffddc87,0xf6f7d36f,0x4de4991e, | 18 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x459f5b0e,0xf3dd921d,0xfffddc87,0xf6f7d36f,0x4de4991e, |
19 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x459f5b0e,0xf3dd921c,0xfff0c975,0xa8cdab7a, | 19 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x459f5b0e,0xf3dd921c,0xfff0c975,0xa8cdab7a, |
20 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x449f5b0e,0xaa977354,0x4a8787a1 | 20 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x449f5b0e,0xaa977354,0x4a8787a1 |
21 | }; | 21 | }; |
22 | 22 | ||
23 | static const QRgb about_data[] = { | ||
24 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10a4a4a7,0x59929292,0x9b8d939a,0xcc7e8fa9, | ||
25 | 0xec778fb3,0xfc738eb5,0xfc718db5,0xec6f8ab1,0xcc7186a9,0x9b798394,0x59828383,0x107c7c7c,0x0,0x0,0x0,0x0,0x0,0x0, | ||
26 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x269c9ea4,0x9d9699a0, | ||
27 | 0xf57f96b8,0xff6b98d4,0xff5e9cea,0xff5fa2f1,0xff62a7f5,0xff63aaf7,0xff63aaf7,0xff61a8f6,0xff5ca2f2,0xff5799ec,0xff588ed8,0xf56384b7,0x9d748098,0x267c7a7a, | ||
28 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | ||
29 | 0xbb3b3bd,0x8d9ea1a6,0xf9849dc0,0xff679ee5,0xff64a7f4,0xff86befb,0xffb5d8fe,0xffd8eaff,0xffeef6ff,0xfff7fbff,0xfff8fbff,0xfff3f8ff,0xffe1eeff,0xffc2dffe, | ||
30 | 0xff97c7fc,0xff65a9f6,0xff5496e8,0xf95e86c1,0x8d748095,0xb79797c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | ||
31 | 0x0,0x0,0x0,0x27a4a9b4,0xd299a3b3,0xff76a1dd,0xff67a8f5,0xff86bffd,0xffd6e8ff,0xfff5f8ff,0xfff5f9ff,0xfff6f9ff,0xfff6f9ff,0xfff6faff, | ||
32 | 0xfff6faff,0xfff6faff,0xfff6f9ff,0xfff5f9ff,0xfff5f9ff,0xffe8f1ff,0xffa2cefe,0xff62a9f6,0xff5491e2,0xd26983ab,0x277f7f7f,0x0,0x0,0x0, | ||
33 | 0x0,0x0,0x0,0x0,0x0,0x0,0x31a7aab1,0xe899a8be,0xff71a6ea,0xff6ab0fa,0xff96c9ff,0xffe8f1ff,0xffecf4ff,0xffecf4ff, | ||
34 | 0xffedf5ff,0xffedf6ff,0xffedf6ff,0xffedf6ff,0xffedf6ff,0xffedf6ff,0xffedf6ff,0xffedf5ff,0xffecf5ff,0xffecf4ff,0xffebf3ff,0xffbcdbff,0xff6bb4fc,0xff589bed, | ||
35 | 0xe86286bc,0x317e8086,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27acaeb8,0xe89dabc0,0xff72a8ee,0xff6db3fc,0xff7dc1ff, | ||
36 | 0xffdae9ff,0xffe2eeff,0xffe2f0ff,0xffe2f1ff,0xffe4f2ff,0xffe4f2ff,0xffe4f2ff,0xffe4f2ff,0xffe4f2ff,0xffe3f1fe,0xffaacac7,0xffcddde6,0xffe3f1ff,0xffe2f0ff, | ||
37 | 0xffe2f0ff,0xffe1eeff,0xff9bceff,0xff6eb7fe,0xff5ba0f0,0xe86287bf,0x277f7f81,0x0,0x0,0x0,0x0,0x0,0xba9b4d6,0xd2a7afbd, | ||
38 | 0xff7aabec,0xff6db3fc,0xff78c0ff,0xff98d1ff,0xffd6eaff,0xffd7ebff,0xffd8ecff,0xffd8edff,0xffd8eeff,0xffd9eeff,0xffd9efff,0xffd9efff,0xffd8eefe,0xffaac8cd, | ||
39 | 0xff6ebca0,0xffb6ced8,0xffd8eeff,0xffd8edff,0xffd7ecff,0xffd6eaff,0xffb6dcff,0xff7dc4ff,0xff6fb8fe,0xff599dee,0xd26885b1,0xb7c7c7b,0x0,0x0, | ||
40 | 0x0,0x0,0x8dadb1ba,0xff8cafe2,0xff6eb1fb,0xff76beff,0xff84caff,0xff96d5ff,0xffc9e6ff,0xffcbe8ff,0xffcbe9ff,0xffcceaff,0xffccebff,0xffccecff, | ||
41 | 0xffcdecff,0xffbfddee,0xff8ac3b8,0xff72b6a2,0xff6aa395,0xffb8d4e5,0xffcceaff,0xffcceaff,0xffcbe8ff,0xffcae7ff,0xffacdcff,0xff88ceff,0xff7cc3ff,0xff6bb4fd, | ||
42 | 0xff5694e5,0x8d74849f,0x0,0x0,0x0,0x26c4c4cb,0xf9a4b5cd,0xff74aff6,0xff72baff,0xff81c7ff,0xff8cd1ff,0xff8cbcda,0xffacb5b8,0xffb0cddd, | ||
43 | 0xffbfe6ff,0xffc0e7ff,0xffc0e8ff,0xffc1e8ff,0xffb8def2,0xff7bc1b2,0xff69c2a6,0xff68bfa4,0xff66b9a1,0xff8cb6bc,0xff8cc2c4,0xff9ac7d2,0xffbfe6ff,0xffb9e3ff, | ||
44 | 0xff98daff,0xff8fd4ff,0xff86ccff,0xff77c0ff,0xff64acf8,0xf95e8bcc,0x26848383,0x0,0x0,0x9daeb2bd,0xff8bb3ec,0xff6fb4fd,0xff7bc2ff,0xff89ceff, | ||
45 | 0xff8abbdc,0xffbf9587,0xffcab27e,0xffa0b39f,0xff9cc7da,0xffacdcf3,0xffb4e6ff,0xffb3e5fd,0xff7ebdb9,0xff64c0a7,0xff62bea4,0xff62bda4,0xff61bda4,0xff5faa9a, | ||
46 | 0xff5eb19c,0xff8ec2cf,0xffaee3ff,0xff9fdeff,0xff98dbff,0xff94d8ff,0xff8dd2ff,0xff80c8ff,0xff70b9fe,0xff599cec,0x9d7387a9,0x0,0x10bac3e3,0xf5abb8ce, | ||
47 | 0xff78b2f7,0xff73bbff,0xff83c9ff,0xff8ed3ff,0xff96abbb,0xffcaa980,0xffc6c37b,0xff8cbcc6,0xff9ec7a7,0xffbad883,0xffa4cbae,0xff84bcc3,0xff5eae9e,0xff5cb6a1, | ||
48 | 0xff5caa9a,0xff5cbaa2,0xff5cbda4,0xff5ab8a1,0xff70a7ae,0xffa2e1fd,0xff9fe1ff,0xff9ddfff,0xff9bddff,0xff98daff,0xff92d6ff,0xff88ceff,0xff79c1ff,0xff65acf9, | ||
49 | 0xf5648dc7,0x10808081,0x59bcbdc5,0xffa0bae2,0xff72b4fc,0xff79c1ff,0xff88ceff,0xff92d6ff,0xff91b6c6,0xffbeb480,0xff91ab93,0xff83b2bd,0xff88bdd1,0xff9ac09c, | ||
50 | 0xffb6d580,0xffb4d581,0xff7cb890,0xff5ab7a1,0xff5abda4,0xff5abda4,0xff59bda4,0xff59bca3,0xff72b6b9,0xff9ad9f3,0xff9dddf9,0xff9ee0ff,0xff9cdeff,0xff9adcff, | ||
51 | 0xff95d8ff,0xff8dd2ff,0xff80c7ff,0xff6eb7fe,0xff5a96e5,0x59878b95,0x9bb9bcc3,0xff8fb8f2,0xff70b7fe,0xff7fc6ff,0xff8dd2ff,0xff94d8ff,0xff96d8fa,0xff86aeb4, | ||
52 | 0xff96d3f0,0xff9fe0fc,0xff97d4ed,0xff90c8df,0xff888282,0xff9db380,0xffbcda80,0xff76b08e,0xff5abda4,0xff5abda4,0xff5abda4,0xff5abda4,0xff58a798,0xff55b49e, | ||
53 | 0xff75b6be,0xff9fe2ff,0xff9ee0ff,0xff9bddff,0xff96daff,0xff90d5ff,0xff85cbff,0xff74bdff,0xff5ea2f0,0x9b768db1,0xccbac0ce,0xff84b5f7,0xff72bbff,0xff83c9ff, | ||
54 | 0xff8fd4ff,0xff96daff,0xff9addff,0xff9de0ff,0xff9fe2ff,0xffa0e3ff,0xffa1e2fd,0xff81bcc8,0xff957780,0xffa37980,0xff93b280,0xff5cb49e,0xff5abda4,0xff5abda4, | ||
55 | 0xff5abda4,0xff5abda4,0xff58ae9c,0xff6dacaf,0xff9edef8,0xffa0e2ff,0xff9ee0ff,0xff9cdeff,0xff98dbff,0xff92d7ff,0xff88ceff,0xff78c1ff,0xff64aaf6,0xcc7292c0, | ||
56 | 0xecb4bed2,0xff7fb5fa,0xff75beff,0xff86ccff,0xff91d5ff,0xff97daff,0xff9cdeff,0xff9ee0ff,0xffa0e2ff,0xff9bdaf4,0xff67b0a7,0xff6ac0ad,0xff8a9c82,0xff93a780, | ||
57 | 0xff66af96,0xff5abda4,0xff5abda4,0xff5abda4,0xff5abda4,0xff5bbca4,0xff59af9d,0xff84bbcc,0xff9cdbf4,0xffa0e2ff,0xff9ee1ff,0xff9cdeff,0xff99dcff,0xff94d8ff, | ||
58 | 0xff8bd0ff,0xff7cc4ff,0xff68b0fa,0xec7195c6,0xfcb4c0d9,0xff7fb7fb,0xff76bfff,0xff87cdff,0xff92d6ff,0xff97dbff,0xff9cdeff,0xff9ee0ff,0xffa0e2ff,0xff94d1e8, | ||
59 | 0xff63b3a4,0xff6dd2b8,0xff60a394,0xff5fa597,0xff5ab29f,0xff5abda4,0xff5abda4,0xff5abda4,0xff5abda4,0xff5bbea6,0xff60bea8,0xff62b2a4,0xff60a49c,0xff97d4ee, | ||
60 | 0xff9fe2ff,0xff9cdfff,0xff9adcff,0xff94d8ff,0xff8cd1ff,0xff7dc4ff,0xff6ab2fb,0xfc7599cb,0xfcb8c3d9,0xff8cbbfc,0xff76bfff,0xff87cdff,0xff91d6ff,0xff97dbff, | ||
61 | 0xff9cdeff,0xff9ee0ff,0xffa0e2ff,0xff92cee6,0xff6db4aa,0xff7ed7c3,0xff84eed1,0xff85f1d3,0xff82e7cc,0xff74c9b7,0xff5db5a1,0xff5abda4,0xff5abda4,0xff5abda4, | ||
62 | 0xff5abda4,0xff5abea5,0xff61c6ac,0xff76bbbe,0xff9fe2ff,0xff9cdfff,0xff9adcff,0xff94d8ff,0xff8cd1ff,0xff7dc4ff,0xff6bb2fb,0xfc779ccc,0xecbac2d4,0xffa2c4fa, | ||
63 | 0xff81c1ff,0xff85ccff,0xff91d5ff,0xff97daff,0xff9bdeff,0xff9ee0ff,0xffa0e2ff,0xff92cde4,0xff83e4cd,0xff68f0c4,0xff57f1bc,0xff56f1bc,0xff5af1be,0xff66f1c4, | ||
64 | 0xff7be2c6,0xff60b5a2,0xff5abda4,0xff5abda4,0xff5abda4,0xff59bda4,0xff57b6a0,0xff85c2d4,0xff9bdbf8,0xff98d7f6,0xff94d4f6,0xff94d8ff,0xff8ad0ff,0xff7bc3ff, | ||
65 | 0xff6ab0fa,0xec7b9cca,0xccbcc2d0,0xffb6ccf9,0xff9fc9ff,0xff8acbff,0xff8fd4ff,0xff96daff,0xff9addff,0xff9de0ff,0xff9fe2ff,0xff89cad6,0xff78efcd,0xff54f0bb, | ||
66 | 0xff54f1bb,0xff54f1bb,0xff55f1bb,0xff55f1bb,0xff58f1bc,0xff64ddb9,0xff5ab5a0,0xff5abda4,0xff5abda4,0xff58baa2,0xff57a397,0xff8ac7dc,0xff629da0,0xff6ba9ae, | ||
67 | 0xff96d8fb,0xff92d7ff,0xff88ceff,0xff78c0ff,0xff69acf6,0xcc839dc4,0x9bb4b9c8,0xffc7d6f6,0xffb3d0fe,0xffaad3ff,0xff92d3ff,0xff94d8ff,0xff99dcff,0xff96d5f4, | ||
68 | 0xff9cddfb,0xff7eb1b5,0xff70c8a0,0xff54f0bb,0xff54f0bb,0xff54f1bb,0xff54f1bb,0xff54f1bb,0xff54f1bb,0xff54eeba,0xff59b09d,0xff5abda4,0xff59bda4,0xff57b39f, | ||
69 | 0xff5a9491,0xff62aea4,0xff5db7a6,0xff77b8c6,0xff96daff,0xff90d5ff,0xff84cbff,0xff74bdff,0xff69a8f2,0x9b90a0ba,0x59aab3cc,0xffced6e8,0xffc4d7fd,0xffbcd8ff, | ||
70 | 0xffb4daff,0xff9ed9ff,0xff98daff,0xff91c3c3,0xffa9cb8a,0xff88aa8c,0xff9dc082,0xff56deb2,0xff54f0bb,0xff54f0bb,0xff54f0bb,0xff54f0bb,0xff54f0bb,0xff55dcb2, | ||
71 | 0xff59b8a2,0xff59bda4,0xff59bca4,0xff58b6a0,0xff5abca5,0xff58b8a3,0xff5eaaa5,0xff95d6f7,0xff95d8ff,0xff8cd2ff,0xff7fc6ff,0xff6fb7fe,0xff72a5e8,0x59a1a4a7, | ||
72 | 0x10bcc6ed,0xf5c9cdd8,0xffd3defb,0xffc8ddff,0xffc2deff,0xffbde0ff,0xff99b9ac,0xff8ab3aa,0xffaece80,0xffb2d280,0xffb1d080,0xff73be95,0xff54f0bb,0xff54f0bb, | ||
73 | 0xff54f0bb,0xff54f0bb,0xff54f0bb,0xff57c2a6,0xff59bca4,0xff59bca4,0xff58bca4,0xff57b9a2,0xff55b4a0,0xff5caaa2,0xff8fcdea,0xff97daff,0xff91d6ff,0xff87cdff, | ||
74 | 0xff78c0ff,0xff6cb0f9,0xf588a6d1,0x10949494,0x0,0x9dc2c5d0,0xffdce2f4,0xffd5e2fe,0xffcee2ff,0xffc9e3ff,0xffaec7c9,0xffc1d480,0xffb2cb80,0xffb5d380, | ||
75 | 0xffb4d380,0xff94b882,0xff53e8b8,0xff53efbb,0xff54f0bb,0xff54f0bb,0xff54dfb3,0xff58b29e,0xff58baa2,0xff57b7a1,0xff55b49f,0xff54af9d,0xff66adae,0xff92d1f0, | ||
76 | 0xff98dbff,0xff94d8ff,0xff8cd2ff,0xff80c7ff,0xff71b9fe,0xff72aaf0,0x9d9fa9bc,0x0,0x0,0x26cdd1e7,0xf9d1d4dc,0xffe1e8fb,0xffdae6ff,0xffd4e6ff, | ||
77 | 0xffc9e0f8,0xffb3c38e,0xffc4d580,0xffc0d480,0xffbcd480,0xffa6c280,0xff55c8a8,0xff53dcb2,0xff53ddb2,0xff53d7af,0xff55aa9a,0xff55ac9a,0xff56a898,0xff5aa595, | ||
78 | 0xff63a390,0xff7db7ca,0xff9adcfd,0xff98dbff,0xff95d8ff,0xff8ed3ff,0xff84caff,0xff76beff,0xff6fb0f9,0xf98eadd8,0x26a2a2a0,0x0,0x0,0x0, | ||
79 | 0x8dceced5,0xffdfe2ec,0xffe4ebfd,0xffdeeaff,0xffd8e8ff,0xffbed0da,0xffbdcb82,0xffc4d480,0xffbfd180,0xff9fb685,0xff96c6da,0xff8cc6d8,0xff87c5d8,0xff88c5db, | ||
80 | 0xff94b88a,0xffa0bf80,0xffaaca80,0xffadcd80,0xff92b58a,0xff98d9fa,0xff98dbff,0xff94d8ff,0xff90d4ff,0xff87cdff,0xff7ac2ff,0xff6fb5fd,0xff7faeec,0x8da7adb9, | ||
81 | 0x0,0x0,0x0,0x0,0xbd3dcff,0xd2c3c6d3,0xffe7ebf6,0xffe7eefe,0xffe2ecff,0xffdcebff,0xffc3d3de,0xffaebda6,0xffa8ba9e,0xffacc9d4, | ||
82 | 0xffb9e4ff,0xffb1e2ff,0xffa9e0ff,0xff9fdbfa,0xff90bcb0,0xff8eb69d,0xff94b78c,0xffa8c780,0xff8abbc2,0xff96daff,0xff93d7ff,0xff8ed3ff,0xff86ccff,0xff7bc3ff, | ||
83 | 0xff70b7fe,0xff7ab0f3,0xd2a3b2c9,0xb9c9f9e,0x0,0x0,0x0,0x0,0x0,0x27c2c7e0,0xe8c9ccd6,0xffeaeef6,0xffeaf0fe,0xffe5eeff, | ||
84 | 0xffdfecff,0xffd9eaff,0xffd2e8ff,0xffcbe6ff,0xffc4e5ff,0xffbce3ff,0xffb3e1ff,0xffaadfff,0xffa2deff,0xff96d3f4,0xff94d6f9,0xff87bfd8,0xff92d5fc,0xff90d4ff, | ||
85 | 0xff8bd0ff,0xff83caff,0xff79c1ff,0xff70b7fe,0xff7bb1f4,0xe8a2b4d1,0x27a4a7a4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | ||
86 | 0x31adb9d6,0xe8c6cad5,0xffebeef5,0xffecf1fd,0xffe8efff,0xffe2ecff,0xffdceaff,0xffd5e8ff,0xffcee6ff,0xffc6e4ff,0xffbee2ff,0xffb5dfff,0xffacdcff,0xffa1daff, | ||
87 | 0xff97d6ff,0xff8fd3ff,0xff8ad0ff,0xff84cbff,0xff7dc4ff,0xff75bcff,0xff72b5fd,0xff83b4f3,0xe8a7b7d1,0x31a9abaa,0x0,0x0,0x0,0x0, | ||
88 | 0x0,0x0,0x0,0x0,0x0,0x27b2bcdd,0xd2c3c7d4,0xffe4e7ed,0xffeef2fb,0xffeaf0fe,0xffe4edff,0xffdeeaff,0xffd7e7ff,0xffd0e4ff, | ||
89 | 0xffc8e2ff,0xffbfdeff,0xffb5daff,0xffaad6ff,0xff9dd2ff,0xff8ecbff,0xff7fc4ff,0xff75bdff,0xff71b7fe,0xff7ab4fa,0xff95b9ed,0xd2afb8c9,0x27abadae,0x0, | ||
90 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba1b2e9,0x8db9bfd0,0xf9d3d6dd,0xffeaedf4, | ||
91 | 0xffecf0fb,0xffe6edfe,0xffe0eafe,0xffd9e6ff,0xffd1e2ff,0xffc8deff,0xffbed9ff,0xffb4d3ff,0xffa6cdff,0xff96c5ff,0xff88befd,0xff86b9fa,0xff94bbf3,0xf9adbed9, | ||
92 | 0x8db4b7bd,0xba8acb8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | ||
93 | 0x0,0x0,0x26d1d5ea,0x9dbdc1cf,0xf5cbced8,0xffe0e2ea,0xffe6ebf7,0xffe3eafa,0xffdde6fb,0xffd6e1fc,0xffcddcfd,0xffc4d6fb,0xffbcd0fa,0xffb8ccf6, | ||
94 | 0xffb9caeb,0xf5b6c1d6,0x9db7bcc3,0x26a8adba,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | ||
95 | 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10a4b5ed,0x59b4bbd1,0x9bbbbeca,0xccc7cad6,0xeccbced8,0xfcc8cddb, | ||
96 | 0xfcc7cedd,0xecc1c8d7,0xccbfc5d2,0x9bbabec7,0x59b3b6c1,0x10b2b9d2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | ||
97 | 0x0,0x0 | ||
98 | }; | ||
99 | |||
100 | static const QRgb accessories_data[] = { | 23 | static const QRgb accessories_data[] = { |
101 | 0x0,0x0,0x0,0x2fcac00,0x49feb50d,0xd2ffd436,0x68e2a50e,0x4f7a500,0x8afabb25,0x3edd9508,0x0,0x0,0x0,0x0, | 24 | 0x0,0x0,0x0,0x2fcac00,0x49feb50d,0xd2ffd436,0x68e2a50e,0x4f7a500,0x8afabb25,0x3edd9508,0x0,0x0,0x0,0x0, |
102 | 0x0,0xfdad00,0x31feb007,0xb9ffd147,0xfdfff275,0xffffff72,0xe6f8d235,0xa0f5be35,0xfffff883,0xf3f9dc4d,0x53d6890a,0x301b00,0x0,0x0, | 25 | 0x0,0xfdad00,0x31feb007,0xb9ffd147,0xfdfff275,0xffffff72,0xe6f8d235,0xa0f5be35,0xfffff883,0xf3f9dc4d,0x53d6890a,0x301b00,0x0,0x0, |
103 | 0x2f3a600,0x97fec53f,0xfcffec94,0xffffffa4,0xffffff87,0xffffe951,0xfffed131,0xfffbc232,0xfffef974,0xfffff55e,0xfaf7cb35,0x6bd27f08,0x1522b00,0x0, | 26 | 0x2f3a600,0x97fec53f,0xfcffec94,0xffffffa4,0xffffff87,0xffffe951,0xfffed131,0xfffbc232,0xfffef974,0xfffff55e,0xfaf7cb35,0x6bd27f08,0x1522b00,0x0, |
104 | 0x2e09900,0x97f9c240,0xfffffdba,0xfffff082,0xffffcf34,0xffffd534,0xffffed52,0xfffec724,0xfff6bd27,0xfffce047,0xffffd636,0xfdf8b418,0x77c56901,0x1000000, | 27 | 0x2e09900,0x97f9c240,0xfffffdba,0xfffff082,0xffffcf34,0xffffd534,0xffffed52,0xfffec724,0xfff6bd27,0xfffce047,0xffffd636,0xfdf8b418,0x77c56901,0x1000000, |
105 | 0xa3f6ab09,0xbcfac646,0xffffc635,0xffffc01a,0xffffd332,0xffffe649,0xfffff761,0xffffd939,0xffffdd40,0xfff1b92b,0xfff9bd21,0xf1e6960c,0x517a3c00,0x1000000, | 28 | 0xa3f6ab09,0xbcfac646,0xffffc635,0xffffc01a,0xffffd332,0xffffe649,0xfffff761,0xffffd939,0xffffdd40,0xfff1b92b,0xfff9bd21,0xf1e6960c,0x517a3c00,0x1000000, |
106 | 0x12bb8001,0xbcf6c643,0xffffea66,0xfffdc421,0xffffde40,0xfffff057,0xfffffe79,0xffffe94e,0xffffef55,0xfffcea56,0xffe3981c,0xd3cd790b,0x84c75e02,0x279c3d00, | 29 | 0x12bb8001,0xbcf6c643,0xffffea66,0xfffdc421,0xffffde40,0xfffff057,0xfffffe79,0xffffe94e,0xffffef55,0xfffcea56,0xffe3981c,0xd3cd790b,0x84c75e02,0x279c3d00, |
107 | 0x0,0xdb57b00,0xe6f9bb1a,0xfffdd73b,0xfff8c52d,0xfffff865,0xfff8d75b,0xfff9d943,0xfff1cb44,0xffefc33b,0xfff9d03a,0xe7d78b14,0x76904202,0x11260f00, | 30 | 0x0,0xdb57b00,0xe6f9bb1a,0xfffdd73b,0xfff8c52d,0xfffff865,0xfff8d75b,0xfff9d943,0xfff1cb44,0xffefc33b,0xfff9d03a,0xe7d78b14,0x76904202,0x11260f00, |
108 | 0x0,0x2e89700,0xdcfab310,0xfff8b417,0xfff5ac13,0xffea960a,0xffe88f05,0xffecb64c,0xfffaee74,0xffecbc39,0xfada7f0c,0x36512100,0x1000000,0x0, | 31 | 0x0,0x2e89700,0xdcfab310,0xfff8b417,0xfff5ac13,0xffea960a,0xffe88f05,0xffecb64c,0xfffaee74,0xffecbc39,0xfada7f0c,0x36512100,0x1000000,0x0, |
109 | 0x0,0x2e28d00,0xdcf8bc20,0xffffd635,0xfffed334,0xfff8c631,0xfff2b630,0xffefb22e,0xffedad28,0xfffbc325,0xfae89e19,0x295c2200,0x0,0x0, | 32 | 0x0,0x2e28d00,0xdcf8bc20,0xffffd635,0xfffed334,0xfff8c631,0xfff2b630,0xffefb22e,0xffedad28,0xfffbc325,0xfae89e19,0x295c2200,0x0,0x0, |
110 | 0x0,0x1d88300,0xcdf0b124,0xffffe84e,0xffffeb50,0xffffec54,0xffffe552,0xffffe043,0xffffdf41,0xffffdd3f,0xfae7aa2a,0x295b2200,0x0,0x0, | 33 | 0x0,0x1d88300,0xcdf0b124,0xffffe84e,0xffffeb50,0xffffec54,0xffffe552,0xffffe043,0xffffdf41,0xffffdd3f,0xfae7aa2a,0x295b2200,0x0,0x0, |
111 | 0x0,0x0,0x25bc6c02,0xd6e7ac2f,0xfffef667,0xfffffd70,0xfffff668,0xfffff35b,0xfffff158,0xfef5cf47,0xd0c1741d,0x1b3e1700,0x0,0x0, | 34 | 0x0,0x0,0x25bc6c02,0xd6e7ac2f,0xfffef667,0xfffffd70,0xfffff668,0xfffff35b,0xfffff158,0xfef5cf47,0xd0c1741d,0x1b3e1700,0x0,0x0, |
112 | 0x0,0x0,0x0,0x1aa65600,0xc9dc952f,0xfffdf18f,0xfffffe86,0xfff9e161,0xe1d08d2d,0x70883a06,0x11140700,0x0,0x0,0x0, | 35 | 0x0,0x0,0x0,0x1aa65600,0xc9dc952f,0xfffdf18f,0xfffffe86,0xfff9e161,0xe1d08d2d,0x70883a06,0x11140700,0x0,0x0,0x0, |
113 | 0x0,0x0,0x0,0x0,0x10924200,0xb9cf7a2f,0xedd99445,0x8695420b,0x1b2c1000,0x1000000,0x0,0x0,0x0,0x0, | 36 | 0x0,0x0,0x0,0x0,0x10924200,0xb9cf7a2f,0xedd99445,0x8695420b,0x1b2c1000,0x1000000,0x0,0x0,0x0,0x0, |
114 | 0x0,0x0,0x0,0x0,0x0,0xa782e00,0x214b1c00,0x2000000,0x0,0x0,0x0,0x0,0x0,0x0 | 37 | 0x0,0x0,0x0,0x0,0x0,0xa782e00,0x214b1c00,0x2000000,0x0,0x0,0x0,0x0,0x0,0x0 |
115 | }; | 38 | }; |
116 | 39 | ||
117 | static const QRgb appearance_data[] = { | 40 | static const QRgb appearance_data[] = { |
118 | 0x0,0x0,0x0,0x0,0x0,0x6e5c528,0x95f2e089,0x51d3bf5a,0x0,0x0,0x0,0x0,0x0,0x0, | 41 | 0x0,0x0,0x0,0x0,0x0,0x6e5c528,0x95f2e089,0x51d3bf5a,0x0,0x0,0x0,0x0,0x0,0x0, |
119 | 0x0,0x0,0x0,0x0,0x0,0x68efd96a,0xfffefae1,0xeef3e9b4,0x20847319,0x0,0x0,0x0,0x0,0x0, | 42 | 0x0,0x0,0x0,0x0,0x0,0x68efd96a,0xfffefae1,0xeef3e9b4,0x20847319,0x0,0x0,0x0,0x0,0x0, |
120 | 0x0,0x0,0x0,0x0,0x10e6c626,0xe6f8ecaa,0xfffffcd8,0xfffffbd7,0x9ed6c56a,0x1090909,0x0,0x0,0x0,0x0, | 43 | 0x0,0x0,0x0,0x0,0x10e6c626,0xe6f8ecaa,0xfffffcd8,0xfffffbd7,0x9ed6c56a,0x1090909,0x0,0x0,0x0,0x0, |
121 | 0x0,0x0,0x1efdf8d,0x11e4c322,0xa6f3e078,0xfffff9c6,0xfffffbc5,0xfffffbc7,0xfaf9f0ae,0x59ceb843,0x5bea322,0x0,0x0,0x0, | 44 | 0x0,0x0,0x1efdf8d,0x11e4c322,0xa6f3e078,0xfffff9c6,0xfffffbc5,0xfffffbc7,0xfaf9f0ae,0x59ceb843,0x5bea322,0x0,0x0,0x0, |
122 | 0x41ecd14b,0x93f3df73,0xc9f6e686,0xf1f9ed98,0xfffbf3b3,0xfffbf5d0,0xfffbf296,0xfffbf4bf,0xfffaf2be,0xfefcf4ab,0xe2f6e78e,0xb3f3e17e,0x7debd462,0x18c5aa23, | 45 | 0x41ecd14b,0x93f3df73,0xc9f6e686,0xf1f9ed98,0xfffbf3b3,0xfffbf5d0,0xfffbf296,0xfffbf4bf,0xfffaf2be,0xfefcf4ab,0xe2f6e78e,0xb3f3e17e,0x7debd462,0x18c5aa23, |
123 | 0xdef3d84a,0xfffdeb57,0xfffef150,0xfffef345,0xfffbf4ba,0xffffffff,0xffffffff,0xffffffff,0xfffffefc,0xfffbee52,0xfffef24a,0xfffdef54,0xfffde657,0x93bba42f, | 46 | 0xdef3d84a,0xfffdeb57,0xfffef150,0xfffef345,0xfffbf4ba,0xffffffff,0xffffffff,0xffffffff,0xfffffefc,0xfffbee52,0xfffef24a,0xfffdef54,0xfffde657,0x93bba42f, |
124 | 0x57d7b91e,0xfaf9e136,0xfffef142,0xfffff442,0xfff2ebbd,0xff6f6f6f,0xffdedede,0xff858585,0xffbebebd,0xfffbef60,0xfffff343,0xfffded40,0xe6dbc128,0x35483d09, | 47 | 0x57d7b91e,0xfaf9e136,0xfffef142,0xfffff442,0xfff2ebbd,0xff6f6f6f,0xffdedede,0xff858585,0xffbebebd,0xfffbef60,0xfffff343,0xfffded40,0xe6dbc128,0x35483d09, |
125 | 0x0,0x6ad5ba27,0xfdfbe84d,0xfffef45a,0xfff9ef7c,0xff8a866f,0xffede7bc,0xff9c987f,0xffd8d196,0xfffef459,0xfffef159,0xede3cc39,0x4654480c,0x0, | 48 | 0x0,0x6ad5ba27,0xfdfbe84d,0xfffef45a,0xfff9ef7c,0xff8a866f,0xffede7bc,0xff9c987f,0xffd8d196,0xfffef459,0xfffef159,0xede3cc39,0x4654480c,0x0, |
126 | 0x0,0x14d420c,0xa4e9d141,0xfffef371,0xffefe58e,0xfff0e8ab,0xfff1eaad,0xfff0e8ab,0xffeee7a9,0xfff8ee71,0xfef9e962,0x69786814,0x1040404,0x0, | 49 | 0x0,0x14d420c,0xa4e9d141,0xfffef371,0xffefe58e,0xfff0e8ab,0xfff1eaad,0xfff0e8ab,0xffeee7a9,0xfff8ee71,0xfef9e962,0x69786814,0x1040404,0x0, |
127 | 0x0,0x0,0x6bebd142,0xfffef386,0xfff0e9ad,0xffe8e8e8,0xffe7e7e7,0xffe8e8e8,0xffedebe0,0xfffbf288,0xfaf3e26b,0x2b413807,0x0,0x0, | 50 | 0x0,0x0,0x6bebd142,0xfffef386,0xfff0e9ad,0xffe8e8e8,0xffe7e7e7,0xffe8e8e8,0xffedebe0,0xfffbf288,0xfaf3e26b,0x2b413807,0x0,0x0, |
128 | 0x0,0x0,0x82f0d854,0xfffef59f,0xfff9f29e,0xffeae4c3,0xffede7c9,0xffede8c9,0xfff0e8ad,0xfffff9a3,0xfcf7e983,0x376e5e0f,0x0,0x0, | 51 | 0x0,0x0,0x82f0d854,0xfffef59f,0xfff9f29e,0xffeae4c3,0xffede7c9,0xffede8c9,0xfff0e8ad,0xfffff9a3,0xfcf7e983,0x376e5e0f,0x0,0x0, |
129 | 0x0,0x0,0xa1f4df6f,0xfffef7b5,0xfffef8b4,0xfffcf19c,0xf1e6d776,0xf8f1e383,0xfffef6ab,0xfffef8b7,0xfffdf1a2,0x53927e19,0x0,0x0, | 52 | 0x0,0x0,0xa1f4df6f,0xfffef7b5,0xfffef8b4,0xfffcf19c,0xf1e6d776,0xf8f1e383,0xfffef6ab,0xfffef8b7,0xfffdf1a2,0x53927e19,0x0,0x0, |
130 | 0x0,0x0,0x9befd761,0xfcf7e896,0xd2cdbc5d,0x6a7f6f1c,0x1c1b1703,0x215e500d,0x80c6b140,0xe5ebda7c,0xfdf9e78f,0x5986741a,0x0,0x0, | 53 | 0x0,0x0,0x9befd761,0xfcf7e896,0xd2cdbc5d,0x6a7f6f1c,0x1c1b1703,0x215e500d,0x80c6b140,0xe5ebda7c,0xfdf9e78f,0x5986741a,0x0,0x0, |
131 | 0x0,0x0,0x16937e18,0x456a5b13,0xf050401,0x1b1b1b,0x0,0x0,0x222222,0x11574a0a,0x487b6a18,0xf100e02,0x0,0x0 | 54 | 0x0,0x0,0x16937e18,0x456a5b13,0xf050401,0x1b1b1b,0x0,0x0,0x222222,0x11574a0a,0x487b6a18,0xf100e02,0x0,0x0 |
@@ -2978,65 +2901,64 @@ static struct EmbedImage { | |||
2978 | const unsigned char *data; | 2901 | const unsigned char *data; |
2979 | int numColors; | 2902 | int numColors; |
2980 | const QRgb *colorTable; | 2903 | const QRgb *colorTable; |
2981 | bool alpha; | 2904 | bool alpha; |
2982 | const char *name; | 2905 | const char *name; |
2983 | } embed_image_vec[] = { | 2906 | } embed_image_vec[] = { |
2984 | { 14, 14, 32, (const unsigned char*)_to1_data, 0, 0, TRUE, "1to1" }, | 2907 | { 14, 14, 32, (const unsigned char*)_to1_data, 0, 0, TRUE, "1to1" }, |
2985 | { 14, 14, 32, (const unsigned char*)AppsIcon_data, 0, 0, TRUE, "AppsIcon" }, | 2908 | { 14, 14, 32, (const unsigned char*)AppsIcon_data, 0, 0, TRUE, "AppsIcon" }, |
2986 | { 32, 32, 32, (const unsigned char*)Calibrate_data, 0, 0, TRUE, "Calibrate" }, | 2909 | { 32, 32, 32, (const unsigned char*)Calibrate_data, 0, 0, TRUE, "Calibrate" }, |
2987 | { 32, 32, 32, (const unsigned char*)Clock_data, 0, 0, TRUE, "Clock" }, | 2910 | { 32, 32, 32, (const unsigned char*)Clock_data, 0, 0, TRUE, "Clock" }, |
2988 | { 14, 14, 32, (const unsigned char*)CloseButton_data, 0, 0, TRUE, "CloseButton" }, | 2911 | { 14, 14, 32, (const unsigned char*)CloseButton_data, 0, 0, TRUE, "CloseButton" }, |
2989 | { 14, 14, 32, (const unsigned char*)DocsIcon_data, 0, 0, TRUE, "DocsIcon" }, | 2912 | { 14, 14, 32, (const unsigned char*)DocsIcon_data, 0, 0, TRUE, "DocsIcon" }, |
2990 | { 32, 32, 32, (const unsigned char*)DocumentTypeExcel_data, 0, 0, TRUE, "DocumentTypeExcel" }, | 2913 | { 32, 32, 32, (const unsigned char*)DocumentTypeExcel_data, 0, 0, TRUE, "DocumentTypeExcel" }, |
2991 | { 32, 32, 32, (const unsigned char*)DocumentTypeNone_data, 0, 0, TRUE, "DocumentTypeNone" }, | 2914 | { 32, 32, 32, (const unsigned char*)DocumentTypeNone_data, 0, 0, TRUE, "DocumentTypeNone" }, |
2992 | { 32, 32, 32, (const unsigned char*)DocumentTypePowerPoint_data, 0, 0, TRUE, "DocumentTypePowerPoint" }, | 2915 | { 32, 32, 32, (const unsigned char*)DocumentTypePowerPoint_data, 0, 0, TRUE, "DocumentTypePowerPoint" }, |
2993 | { 32, 32, 32, (const unsigned char*)DocumentTypeWord_data, 0, 0, TRUE, "DocumentTypeWord" }, | 2916 | { 32, 32, 32, (const unsigned char*)DocumentTypeWord_data, 0, 0, TRUE, "DocumentTypeWord" }, |
2994 | { 14, 14, 32, (const unsigned char*)Games_data, 0, 0, TRUE, "Games" }, | 2917 | { 14, 14, 32, (const unsigned char*)Games_data, 0, 0, TRUE, "Games" }, |
2995 | { 12, 12, 32, (const unsigned char*)Go_black_data, 0, 0, TRUE, "Go-black" }, | 2918 | { 12, 12, 32, (const unsigned char*)Go_black_data, 0, 0, TRUE, "Go-black" }, |
2996 | { 12, 12, 32, (const unsigned char*)Go_black_highlight_data, 0, 0, TRUE, "Go-black-highlight" }, | 2919 | { 12, 12, 32, (const unsigned char*)Go_black_highlight_data, 0, 0, TRUE, "Go-black-highlight" }, |
2997 | { 12, 12, 32, (const unsigned char*)Go_white_data, 0, 0, TRUE, "Go-white" }, | 2920 | { 12, 12, 32, (const unsigned char*)Go_white_data, 0, 0, TRUE, "Go-white" }, |
2998 | { 14, 14, 32, (const unsigned char*)HelpButton_data, 0, 0, TRUE, "HelpButton" }, | 2921 | { 14, 14, 32, (const unsigned char*)HelpButton_data, 0, 0, TRUE, "HelpButton" }, |
2999 | { 32, 32, 32, (const unsigned char*)Language_data, 0, 0, TRUE, "Language" }, | 2922 | { 32, 32, 32, (const unsigned char*)Language_data, 0, 0, TRUE, "Language" }, |
3000 | { 32, 32, 32, (const unsigned char*)MPEGPlayer_data, 0, 0, TRUE, "MPEGPlayer" }, | 2923 | { 32, 32, 32, (const unsigned char*)MPEGPlayer_data, 0, 0, TRUE, "MPEGPlayer" }, |
3001 | { 28, 14, 32, (const unsigned char*)OKButton_data, 0, 0, TRUE, "OKButton" }, | 2924 | { 28, 14, 32, (const unsigned char*)OKButton_data, 0, 0, TRUE, "OKButton" }, |
3002 | { 32, 32, 32, (const unsigned char*)Rotation_data, 0, 0, TRUE, "Rotation" }, | 2925 | { 32, 32, 32, (const unsigned char*)Rotation_data, 0, 0, TRUE, "Rotation" }, |
3003 | { 14, 14, 32, (const unsigned char*)SettingsIcon_data, 0, 0, TRUE, "SettingsIcon" }, | 2926 | { 14, 14, 32, (const unsigned char*)SettingsIcon_data, 0, 0, TRUE, "SettingsIcon" }, |
3004 | { 32, 32, 32, (const unsigned char*)Shutdown_data, 0, 0, TRUE, "Shutdown" }, | 2927 | { 32, 32, 32, (const unsigned char*)Shutdown_data, 0, 0, TRUE, "Shutdown" }, |
3005 | { 32, 32, 32, (const unsigned char*)Sound_data, 0, 0, TRUE, "Sound" }, | 2928 | { 32, 32, 32, (const unsigned char*)Sound_data, 0, 0, TRUE, "Sound" }, |
3006 | { 32, 32, 32, (const unsigned char*)SoundPlayer_data, 0, 0, TRUE, "SoundPlayer" }, | 2929 | { 32, 32, 32, (const unsigned char*)SoundPlayer_data, 0, 0, TRUE, "SoundPlayer" }, |
3007 | { 32, 32, 32, (const unsigned char*)Spreadsheet_data, 0, 0, TRUE, "Spreadsheet" }, | 2930 | { 32, 32, 32, (const unsigned char*)Spreadsheet_data, 0, 0, TRUE, "Spreadsheet" }, |
3008 | { 32, 32, 32, (const unsigned char*)Tux_data, 0, 0, TRUE, "Tux" }, | 2931 | { 32, 32, 32, (const unsigned char*)Tux_data, 0, 0, TRUE, "Tux" }, |
3009 | { 14, 14, 32, (const unsigned char*)UtilsIcon_data, 0, 0, TRUE, "UtilsIcon" }, | 2932 | { 14, 14, 32, (const unsigned char*)UtilsIcon_data, 0, 0, TRUE, "UtilsIcon" }, |
3010 | { 32, 32, 32, (const unsigned char*)about_data, 0, 0, TRUE, "about" }, | ||
3011 | { 14, 14, 32, (const unsigned char*)accessories_data, 0, 0, TRUE, "accessories" }, | 2933 | { 14, 14, 32, (const unsigned char*)accessories_data, 0, 0, TRUE, "accessories" }, |
3012 | { 14, 14, 32, (const unsigned char*)appearance_data, 0, 0, TRUE, "appearance" }, | 2934 | { 14, 14, 32, (const unsigned char*)appearance_data, 0, 0, TRUE, "appearance" }, |
3013 | { 14, 14, 32, (const unsigned char*)back_data, 0, 0, TRUE, "back" }, | 2935 | { 14, 14, 32, (const unsigned char*)back_data, 0, 0, TRUE, "back" }, |
3014 | { 14, 14, 32, (const unsigned char*)back_inactive_data, 0, 0, TRUE, "back_inactive" }, | 2936 | { 14, 14, 32, (const unsigned char*)back_inactive_data, 0, 0, TRUE, "back_inactive" }, |
3015 | { 14, 14, 32, (const unsigned char*)beam_data, 0, 0, TRUE, "beam" }, | 2937 | { 14, 14, 32, (const unsigned char*)beam_data, 0, 0, TRUE, "beam" }, |
3016 | { 14, 14, 32, (const unsigned char*)bell_data, 0, 0, TRUE, "bell" }, | 2938 | { 14, 14, 32, (const unsigned char*)bell_data, 0, 0, TRUE, "bell" }, |
3017 | { 14, 14, 32, (const unsigned char*)binary_data, 0, 0, TRUE, "binary" }, | 2939 | { 14, 14, 32, (const unsigned char*)binary_data, 0, 0, TRUE, "binary" }, |
3018 | { 14, 14, 32, (const unsigned char*)bold_data, 0, 0, TRUE, "bold" }, | 2940 | { 14, 14, 32, (const unsigned char*)bold_data, 0, 0, TRUE, "bold" }, |
3019 | { 14, 14, 32, (const unsigned char*)c_src_data, 0, 0, TRUE, "c_src" }, | 2941 | { 14, 14, 32, (const unsigned char*)c_src_data, 0, 0, TRUE, "c_src" }, |
3020 | { 14, 14, 32, (const unsigned char*)calculator_data, 0, 0, TRUE, "calculator" }, | 2942 | { 14, 14, 32, (const unsigned char*)calculator_data, 0, 0, TRUE, "calculator" }, |
3021 | { 14, 14, 32, (const unsigned char*)center_data, 0, 0, TRUE, "center" }, | 2943 | { 14, 14, 32, (const unsigned char*)center_data, 0, 0, TRUE, "center" }, |
3022 | { 14, 14, 32, (const unsigned char*)citytime_icon_data, 0, 0, TRUE, "citytime_icon" }, | 2944 | { 14, 14, 32, (const unsigned char*)citytime_icon_data, 0, 0, TRUE, "citytime_icon" }, |
3023 | { 14, 14, 32, (const unsigned char*)close_data, 0, 0, TRUE, "close" }, | 2945 | { 14, 14, 32, (const unsigned char*)close_data, 0, 0, TRUE, "close" }, |
3024 | { 14, 14, 32, (const unsigned char*)copy_data, 0, 0, TRUE, "copy" }, | 2946 | { 14, 14, 32, (const unsigned char*)copy_data, 0, 0, TRUE, "copy" }, |
3025 | { 14, 14, 32, (const unsigned char*)copy_inactive_data, 0, 0, TRUE, "copy_inactive" }, | 2947 | { 14, 14, 32, (const unsigned char*)copy_inactive_data, 0, 0, TRUE, "copy_inactive" }, |
3026 | { 14, 14, 32, (const unsigned char*)cut_data, 0, 0, TRUE, "cut" }, | 2948 | { 14, 14, 32, (const unsigned char*)cut_data, 0, 0, TRUE, "cut" }, |
3027 | { 14, 14, 32, (const unsigned char*)cut_inactive_data, 0, 0, TRUE, "cut_inactive" }, | 2949 | { 14, 14, 32, (const unsigned char*)cut_inactive_data, 0, 0, TRUE, "cut_inactive" }, |
3028 | { 14, 14, 32, (const unsigned char*)datebook_icon_data, 0, 0, TRUE, "datebook_icon" }, | 2950 | { 14, 14, 32, (const unsigned char*)datebook_icon_data, 0, 0, TRUE, "datebook_icon" }, |
3029 | { 14, 14, 32, (const unsigned char*)day_data, 0, 0, TRUE, "day" }, | 2951 | { 14, 14, 32, (const unsigned char*)day_data, 0, 0, TRUE, "day" }, |
3030 | { 14, 14, 32, (const unsigned char*)done_data, 0, 0, TRUE, "done" }, | 2952 | { 14, 14, 32, (const unsigned char*)done_data, 0, 0, TRUE, "done" }, |
3031 | { 14, 14, 32, (const unsigned char*)down_data, 0, 0, TRUE, "down" }, | 2953 | { 14, 14, 32, (const unsigned char*)down_data, 0, 0, TRUE, "down" }, |
3032 | { 14, 14, 32, (const unsigned char*)edit_data, 0, 0, TRUE, "edit" }, | 2954 | { 14, 14, 32, (const unsigned char*)edit_data, 0, 0, TRUE, "edit" }, |
3033 | { 14, 14, 32, (const unsigned char*)editdelete_data, 0, 0, TRUE, "editdelete" }, | 2955 | { 14, 14, 32, (const unsigned char*)editdelete_data, 0, 0, TRUE, "editdelete" }, |
3034 | { 14, 14, 32, (const unsigned char*)enter_data, 0, 0, TRUE, "enter" }, | 2956 | { 14, 14, 32, (const unsigned char*)enter_data, 0, 0, TRUE, "enter" }, |
3035 | { 14, 14, 32, (const unsigned char*)exec_data, 0, 0, TRUE, "exec" }, | 2957 | { 14, 14, 32, (const unsigned char*)exec_data, 0, 0, TRUE, "exec" }, |
3036 | { 14, 14, 32, (const unsigned char*)fastback_data, 0, 0, TRUE, "fastback" }, | 2958 | { 14, 14, 32, (const unsigned char*)fastback_data, 0, 0, TRUE, "fastback" }, |
3037 | { 14, 14, 32, (const unsigned char*)fastforward_data, 0, 0, TRUE, "fastforward" }, | 2959 | { 14, 14, 32, (const unsigned char*)fastforward_data, 0, 0, TRUE, "fastforward" }, |
3038 | { 14, 14, 32, (const unsigned char*)fileopen_data, 0, 0, TRUE, "fileopen" }, | 2960 | { 14, 14, 32, (const unsigned char*)fileopen_data, 0, 0, TRUE, "fileopen" }, |
3039 | { 14, 14, 32, (const unsigned char*)find_data, 0, 0, TRUE, "find" }, | 2961 | { 14, 14, 32, (const unsigned char*)find_data, 0, 0, TRUE, "find" }, |
3040 | { 14, 14, 32, (const unsigned char*)finish_data, 0, 0, TRUE, "finish" }, | 2962 | { 14, 14, 32, (const unsigned char*)finish_data, 0, 0, TRUE, "finish" }, |
3041 | { 14, 14, 32, (const unsigned char*)folder_data, 0, 0, TRUE, "folder" }, | 2963 | { 14, 14, 32, (const unsigned char*)folder_data, 0, 0, TRUE, "folder" }, |
3042 | { 14, 14, 32, (const unsigned char*)folder_open_data, 0, 0, TRUE, "folder_open" }, | 2964 | { 14, 14, 32, (const unsigned char*)folder_open_data, 0, 0, TRUE, "folder_open" }, |
diff --git a/pics/Example.png b/pics/Example.png deleted file mode 100644 index 791d97c..0000000 --- a/pics/Example.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/pics/inline/about.png b/pics/inline/about.png deleted file mode 100644 index f3a2eaf..0000000 --- a/pics/inline/about.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/pics/logo/opielogo.png b/pics/logo/opielogo.png index 0adc183..791d97c 100644 --- a/pics/logo/opielogo.png +++ b/pics/logo/opielogo.png | |||
Binary files differ | |||
diff --git a/pics/today/opiezilla.png b/pics/today/opiezilla.png deleted file mode 100644 index bd81702..0000000 --- a/pics/today/opiezilla.png +++ b/dev/null | |||
Binary files differ | |||