~ubuntu-branches/ubuntu/wily/flrig/wily

« back to all changes in this revision

Viewing changes to src/images.cxx

  • Committer: Package Import Robot
  • Author(s): Kamal Mostafa
  • Date: 2014-10-25 11:17:10 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20141025111710-n32skgya3l9u1brw
Tags: 1.3.17-1
* New upstream release (Closes: #761839)
* Debian Standards-Version: 3.9.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 "images.h"
22
 
 
23
 
//#include "dbm.xbm"
24
 
//#include "rev.xbm"
25
 
//#include "swr.xbm"
26
 
//#include "mvolts.xbm"
27
 
//#include "smeter.xbm"
28
 
 
29
 
#include "images/P25.xbm"
30
 
#include "images/P50.xbm"
31
 
#include "images/P100.xbm"
32
 
#include "images/P200.xbm"
33
 
#include "images/P200log.xbm"
34
 
 
35
 
#include "images/S60.xbm"
36
 
#include "images/SWR.xbm"
37
 
#include "images/alc.xbm"
38
 
 
39
 
Fl_Bitmap image_p25(P25_bits, P25_width, P25_height);
40
 
Fl_Bitmap image_p50(P50_bits, P50_width, P50_height);
41
 
Fl_Bitmap image_p100(P100_bits, P100_width, P100_height);
42
 
Fl_Bitmap image_p200(P200_bits, P200_width, P200_height);
43
 
Fl_Bitmap image_p200log(P200log_bits, P200log_width, P200log_height);
44
 
 
45
 
Fl_Bitmap image_smeter(S60_bits, S60_width, S60_height);
46
 
Fl_Bitmap image_swr(SWR_bits, SWR_width, SWR_height);
47
 
Fl_Bitmap image_alc(alc_bits, alc_width, alc_height);
48
 
 
49
 
 
50