summaryrefslogtreecommitdiffstats
path: root/src/util/clientGUIUtils.h
blob: b04d3fe5e4853ee35cb56c14829104fed08d22ff (plain) (blame)
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
#ifndef _BLANKSCREEN_H_
#define _BLANKSCREEN_H_

#include "src/util/consoleLogger.h"
#include <assert.h>
#include <unistd.h>
#include <stdio.h>


#define REFRESH_RATE 0.15
class BlankScreen_Sysdep;

class BlankScreen
{
public:
    BlankScreen();
    virtual ~BlankScreen();
    void draw(bool force = false);
    bool lock();
    bool unlock();
    void setLogMsg(QString msg);
    bool lock_inputs();

private:
    BlankScreen_Sysdep* _sysdep;
};

#endif