/*
 * Copyright (C) 2003 Fredrik H�glund <fredrik@kde.org>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#ifndef __BITMAPS_H
#define __BITMAPS_H


static const char* const arrow_large_black_xpm[] = {
"24 24 3 1",
"# c None",
"a c #000000",
". c #ffffff",
"#####..#################",
"#####.a.################",
"#####.aa.###############",
"#####.aaa.##############",
"#####.aaaa.#############",
"#####.aaaaa.############",
"#####.aaaaaa.###########",
"#####.aaaaaaa.##########",
"#####.aaaaaaaa.#########",
"#####.aaaaaaaaa.########",
"#####.aaaaaaaaaa.#######",
"#####.aaaaaaaaaaa.######",
"#####.aaaaaaaaaaaa.#####",
"#####.aaaaaaaa....######",
"#####.aaaaaaa.##########",
"#####.aaa.aaaa.#########",
"#####.aa.#.aaa.#########",
"#####.a.##.aaaa.########",
"#####..####.aaa.########",
"###########.aaaa.#######",
"############.aaa.#######",
"############.aaa.#######",
"#############...########",
"########################"};


static const char* const arrow_small_black_xpm[]={
"24 24 3 1",
"# c None",
"a c #000000",
". c #ffffff",
"########################",
"########################",
"########################",
"########################",
"#######..###############",
"#######.a.##############",
"#######.aa.#############",
"#######.aaa.############",
"#######.aaaa.###########",
"#######.aaaaa.##########",
"#######.aaaaaa.#########",
"#######.aaaaaaa.########",
"#######.aaaaaaaa.#######",
"#######.aaaaa....#######",
"#######.aa.aa.##########",
"#######.a.#.aa.#########",
"#######..##.aa.#########",
"############.aa.########",
"############.aa.########",
"#############..#########",
"########################",
"########################",
"########################",
"########################"};


static const char* const arrow_large_white_xpm[] = {
"24 24 3 1",
"# c None",
"a c #ffffff",
". c #000000",
"#####..#################",
"#####.a.################",
"#####.aa.###############",
"#####.aaa.##############",
"#####.aaaa.#############",
"#####.aaaaa.############",
"#####.aaaaaa.###########",
"#####.aaaaaaa.##########",
"#####.aaaaaaaa.#########",
"#####.aaaaaaaaa.########",
"#####.aaaaaaaaaa.#######",
"#####.aaaaaaaaaaa.######",
"#####.aaaaaaaaaaaa.#####",
"#####.aaaaaaaa....######",
"#####.aaaaaaa.##########",
"#####.aaa.aaaa.#########",
"#####.aa.#.aaa.#########",
"#####.a.##.aaaa.########",
"#####..####.aaa.########",
"###########.aaaa.#######",
"############.aaa.#######",
"############.aaa.#######",
"#############...########",
"########################"};


static const char* const arrow_small_white_xpm[]={
"24 24 3 1",
"# c None",
"a c #ffffff",
". c #000000",
"########################",
"########################",
"########################",
"########################",
"#######..###############",
"#######.a.##############",
"#######.aa.#############",
"#######.aaa.############",
"#######.aaaa.###########",
"#######.aaaaa.##########",
"#######.aaaaaa.#########",
"#######.aaaaaaa.########",
"#######.aaaaaaaa.#######",
"#######.aaaaa....#######",
"#######.aa.aa.##########",
"#######.a.#.aa.#########",
"#######..##.aa.#########",
"############.aa.########",
"############.aa.########",
"#############..#########",
"########################",
"########################",
"########################",
"########################"};

#endif