mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 17:01:15 +02:00
instead of including framebuffer.h almost everywhere, replace it with class CFrameBuffer forward declarations and/or generic system includes. Add a hack to define fb_pixel_t to config.h (one reason for framebuffer.h includes was the fb_pixel_t define)
95 lines
2.5 KiB
C++
95 lines
2.5 KiB
C++
/*
|
|
Neutrino-GUI - DBoxII-Project
|
|
|
|
Copyright (C) 2001 Steffen Hehn 'McClean'
|
|
Homepage: http://dbox.cyberphoria.org/
|
|
|
|
Kommentar:
|
|
|
|
Diese GUI wurde von Grund auf neu programmiert und sollte nun vom
|
|
Aufbau und auch den Ausbaumoeglichkeiten gut aussehen. Neutrino basiert
|
|
auf der Client-Server Idee, diese GUI ist also von der direkten DBox-
|
|
Steuerung getrennt. Diese wird dann von Daemons uebernommen.
|
|
|
|
|
|
License: GPL
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
|
|
#ifndef __motorcontrol__
|
|
#define __motorcontrol__
|
|
|
|
#include <gui/widget/menue.h>
|
|
#include <gui/components/cc.h>
|
|
#include <string>
|
|
#include <zapit/femanager.h>
|
|
|
|
#define STEP_MODE_OFF 0
|
|
#define STEP_MODE_AUTO 1
|
|
#define STEP_MODE_ON 2
|
|
#define STEP_MODE_TIMED 3
|
|
|
|
class CFrameBuffer;
|
|
class CMotorControl : public CMenuTarget
|
|
{
|
|
private:
|
|
void Init(void);
|
|
CFrameBuffer *frameBuffer;
|
|
CFrontend *frontend;
|
|
bool rotor_swap;
|
|
int x;
|
|
int y;
|
|
int width;
|
|
int height;
|
|
int hheight,mheight; // head/menu font height
|
|
int ypos;
|
|
int ypos_status;
|
|
Font* m_font;
|
|
int8_t stepSize;
|
|
int32_t stepDelay;
|
|
int stepMode;
|
|
bool installerMenue;
|
|
uint8_t motorPosition;
|
|
int32_t satellitePosition;
|
|
int satfindpid;
|
|
int g_sig, g_snr, last_snr, moving;
|
|
std::string network;
|
|
CSignalBox *signalbox;
|
|
void paintHead(void);
|
|
void paintMenu(void);
|
|
void paintStatus(void);
|
|
void paintLine(int x, int *y, int width, const char *txt);
|
|
void paintLine(int x, int y, int width, const char *txt);
|
|
void paintLine(int ix, int tx, int *y, int pwidth, const char *icon, const char *txt);
|
|
void paintSeparator(int xpos, int * ypos, int width, const char *txt);
|
|
void motorStep(bool west);
|
|
void startSatFind(void);
|
|
void stopSatFind(void);
|
|
void showSNR(void);
|
|
void readNetwork(void);
|
|
|
|
public:
|
|
|
|
CMotorControl(int tnum = 0);
|
|
~CMotorControl();
|
|
void hide();
|
|
int exec(CMenuTarget* parent, const std::string & actionKey);
|
|
};
|
|
|
|
|
|
#endif
|