1 // ----------------------------------------------------------------------------
2 // Copyright (C) 2014
3 //              David Freese, W1HKJ
4 //
5 // This file is part of flrig.
6 //
7 // flrig is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation; either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // flrig is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 // ----------------------------------------------------------------------------
20 
21 #include <FL/Fl_Bitmap.H>
22 
23 static unsigned char s2n_data[] = {
24    0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
25    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x01, 0x00,
26    0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,
27    0x01, 0x00, 0x01, 0x80, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,
28    0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x80,
29    0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,
30    0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x80, 0x01, 0x00, 0x01, 0x00,
31    0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,
32    0x01, 0x00, 0x01, 0x80, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,
33    0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x80,
34    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
35    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
36    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
37    0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0x40, 0x0c, 0x00,
38    0x00, 0x80, 0x03, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0x80, 0x0c, 0x00,
39    0x00, 0x90, 0x12, 0x00, 0x00, 0x60, 0x12, 0x00, 0x00, 0x40, 0x04, 0x00,
40    0x00, 0x90, 0x12, 0x00, 0x00, 0xc0, 0x12, 0x00, 0x00, 0x80, 0x12, 0x00,
41    0x00, 0x40, 0x12, 0x00, 0x00, 0x40, 0x04, 0x00, 0x00, 0x80, 0x12, 0x00,
42    0x00, 0xa0, 0x12, 0x00, 0x00, 0x46, 0x12, 0x00, 0x00, 0x4c, 0x12, 0x00,
43    0x00, 0x40, 0x04, 0x00, 0x00, 0x40, 0x12, 0x00, 0x00, 0x90, 0x12, 0x00,
44    0x00, 0x20, 0x12, 0x00, 0x00, 0x40, 0x12, 0x00, 0x00, 0x40, 0x04, 0x00,
45    0x00, 0x20, 0x12, 0x00, 0x00, 0xf0, 0x12, 0x00, 0x00, 0x10, 0x12, 0x00,
46    0x00, 0x40, 0x12, 0x00, 0x00, 0x40, 0x04, 0x00, 0x00, 0x10, 0x12, 0x00,
47    0x00, 0x80, 0x12, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0xe0, 0x0c, 0x00,
48    0x00, 0x80, 0x03, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x80, 0x0c, 0x00,
49    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
50    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
51 
52 Fl_Bitmap image_s2n(s2n_data, 160, 16);
53