-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRessources.h
More file actions
45 lines (38 loc) · 1.84 KB
/
Ressources.h
File metadata and controls
45 lines (38 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef __HEADER_RESSOURCES__
#define __HEADER_RESSOURCES__
/////////////////////////////////////////////////////////////////////////////
// Ressources
/////////////////////////////////////////////////////////////////////////////
// Define our main icon
#define IcoMain_xpm "Ressources/Main.ico"
// Other icons
#define IcoConnect_xpm "Ressources/DroneConnect.ico"
#define IcoDisconnect_xpm "Ressources/DroneDisconnect.ico"
#define IcoEmergency_xpm "Ressources/DroneEmergency.ico"
#define IcoTrim_xpm "Ressources/DroneTrim.ico"
#define IcoTakeOff_xpm "Ressources/DroneTakeOff.ico"
#define IcoRecord_xpm "Ressources/DroneRecord.ico"
#define IcoScreenshot_xpm "Ressources/DroneScreenshot.ico"
#define IcoFullscreen_xpm "Ressources/DroneFullscreen.ico"
#define IcoCamera_xpm "Ressources/DroneCamera.ico"
#define IcoHome_xpm "Ressources/DroneHome.ico"
#define IcoHomeReset_xpm "Ressources/DroneHomeReset.ico"
// Sound files
#define WavBeep "Ressources/Beep.wav"
#define WavBeeps "Ressources/Beeps.wav"
// PNG files used as overlay
#define PngWifiGreen "Ressources/WifiGreen.png"
#define PngWifiYellow "Ressources/WifiYellow.png"
#define PngWifiOrange "Ressources/WifiOrange.png"
#define PngWifiRed "Ressources/WifiRed.png"
#define PngBatteryGreen "Ressources/BatteryGreen.png"
#define PngBatteryYellow "Ressources/BatteryYellow.png"
#define PngBatteryOrange "Ressources/BatteryOrange.png"
#define PngBatteryRed "Ressources/BatteryRed.png"
#define PngRecord "Ressources/Record.png"
#define PngHome "Ressources/Home.png"
// set this to 1 if you don't want to use manifest resource (manifest resource
// is needed to enable visual styles on Windows XP - see docs/msw/winxp.txt
// for more information)
#define wxUSE_NO_MANIFEST 0
#endif