1e6b30a3dSAndrew Rist /************************************************************** 2*1b03b6a4SMatthias Seidel * 3e6b30a3dSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4e6b30a3dSAndrew Rist * or more contributor license agreements. See the NOTICE file 5e6b30a3dSAndrew Rist * distributed with this work for additional information 6e6b30a3dSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7e6b30a3dSAndrew Rist * to you under the Apache License, Version 2.0 (the 8e6b30a3dSAndrew Rist * "License"); you may not use this file except in compliance 9e6b30a3dSAndrew Rist * with the License. You may obtain a copy of the License at 10*1b03b6a4SMatthias Seidel * 11e6b30a3dSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*1b03b6a4SMatthias Seidel * 13e6b30a3dSAndrew Rist * Unless required by applicable law or agreed to in writing, 14e6b30a3dSAndrew Rist * software distributed under the License is distributed on an 15e6b30a3dSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16e6b30a3dSAndrew Rist * KIND, either express or implied. See the License for the 17e6b30a3dSAndrew Rist * specific language governing permissions and limitations 18e6b30a3dSAndrew Rist * under the License. 19*1b03b6a4SMatthias Seidel * 20e6b30a3dSAndrew Rist *************************************************************/ 21e6b30a3dSAndrew Rist 22*1b03b6a4SMatthias Seidel 23cdf0e10cSrcweir #define paintbrush_curs_width 16 24cdf0e10cSrcweir #define paintbrush_curs_height 16 25cdf0e10cSrcweir #define paintbrush_curs_x_hot 0 26cdf0e10cSrcweir #define paintbrush_curs_y_hot 10 27*1b03b6a4SMatthias Seidel 2830c1b1efSHerbert Dürr static const unsigned char paintbrush_curs_bits[] = { 29*1b03b6a4SMatthias Seidel 0x00,0x80, 30*1b03b6a4SMatthias Seidel 0x00,0x40, 31*1b03b6a4SMatthias Seidel 0x00,0x20, 32*1b03b6a4SMatthias Seidel 0x00,0x90, 33*1b03b6a4SMatthias Seidel 0x80,0xcb, 34*1b03b6a4SMatthias Seidel 0x60,0x64, 35*1b03b6a4SMatthias Seidel 0x90,0x34, 36*1b03b6a4SMatthias Seidel 0x08,0x19, 37*1b03b6a4SMatthias Seidel 0x06,0x22, 38*1b03b6a4SMatthias Seidel 0x11,0x24, 39*1b03b6a4SMatthias Seidel 0x09,0x18, 40*1b03b6a4SMatthias Seidel 0x46,0x14, 41*1b03b6a4SMatthias Seidel 0x24,0x0a, 42*1b03b6a4SMatthias Seidel 0x18,0x05, 43*1b03b6a4SMatthias Seidel 0x90,0x02, 44*1b03b6a4SMatthias Seidel 0xe0,0x01}; 45