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

« back to all changes in this revision

Viewing changes to .pc/0001-License-Declaration.patch/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
 
#include "images.h"
2
 
 
3
 
//#include "dbm.xbm"
4
 
//#include "rev.xbm"
5
 
//#include "swr.xbm"
6
 
//#include "mvolts.xbm"
7
 
//#include "smeter.xbm"
8
 
 
9
 
#include "images/P25.xbm"
10
 
#include "images/P50.xbm"
11
 
#include "images/P100.xbm"
12
 
#include "images/P200.xbm"
13
 
#include "images/P200log.xbm"
14
 
 
15
 
#include "images/S60.xbm"
16
 
#include "images/SWR.xbm"
17
 
#include "images/alc.xbm"
18
 
 
19
 
Fl_Bitmap image_p25(P25_bits, P25_width, P25_height);
20
 
Fl_Bitmap image_p50(P50_bits, P50_width, P50_height);
21
 
Fl_Bitmap image_p100(P100_bits, P100_width, P100_height);
22
 
Fl_Bitmap image_p200(P200_bits, P200_width, P200_height);
23
 
Fl_Bitmap image_p200log(P200log_bits, P200log_width, P200log_height);
24
 
 
25
 
Fl_Bitmap image_smeter(S60_bits, S60_width, S60_height);
26
 
Fl_Bitmap image_swr(SWR_bits, SWR_width, SWR_height);
27
 
Fl_Bitmap image_alc(alc_bits, alc_width, alc_height);
28
 
 
29
 
 
30