X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.0%2Fcinelerra%2Fsignalstatus.h;fp=cinelerra-5.0%2Fcinelerra%2Fsignalstatus.h;h=0000000000000000000000000000000000000000;hb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;hp=279898c456758cc8da3f8e2dd51d93e663fc62a1;hpb=52fcc46226f9df46f9ce9d0566dc568455a7db0b;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.0/cinelerra/signalstatus.h b/cinelerra-5.0/cinelerra/signalstatus.h deleted file mode 100644 index 279898c4..00000000 --- a/cinelerra-5.0/cinelerra/signalstatus.h +++ /dev/null @@ -1,51 +0,0 @@ -#ifndef _SIGNALSTATUS_H_ -#define _SIGNALSTATUS_H_ - -#include "bcwindowbase.h" -#include "bcsubwindow.h" -#include "bctitle.inc" -#include "channel.inc" -#include "devicedvbinput.inc" - - -class SignalStatus : public BC_SubWindow -{ - friend DeviceDVBInput; - enum { pad0 = 3, pad1 = 8, - lck_w = 5, lck_h = 5, - crr_w = 5, crr_h = 5, - pwr_w = 32, pwr_h = 4, - snr_w = 32, snr_h = 4, - ber_w = 32, ber_h = 4, - unc_w = 32, unc_h = 4, - }; - - DeviceDVBInput *dvb_input; - BC_Title *channel_title; - int lck_x, lck_y; - int crr_x, crr_y; - int pwr_x, pwr_y; - int snr_x, snr_y; - int ber_x, ber_y; - int unc_x, unc_y; - - void update_lck(int v); - void update_crr(int v); - void update_pwr(int v); - void update_snr(int v); - void update_ber(int v); - void update_unc(int v); -public: - BC_WindowBase *wdw; - - void create_objects(); - static int calculate_w(BC_WindowBase *wdw); - static int calculate_h(BC_WindowBase *wdw); - void disconnect() { dvb_input = 0; } - void update(); - - SignalStatus(BC_WindowBase *wdw, int x, int y); - ~SignalStatus(); -}; - -#endif