9 #ifndef DISPLAYFORREGIONEXAMPLE_H_
10 #define DISPLAYFORREGIONEXAMPLE_H_
26 clockDisplay(
bool pub =
false,
bool cw =
true,
27 bool showReg =
true,
int zone = 0 );
29 clockDisplay(clockDisplay& data);
32 void initializeQTDisplay();
36 float upperBoundRegion();
37 float lowerBoundRegion();
38 bool areRegionsDisplayed();
41 void toggleClockWise();
43 void setHasAClock(
bool newVal);
45 void setZone(
int newZone);
48 void setBoundsRegionInSeconds(
int lower,
int upper);
50 void setTime(
int seconds);
51 void setTime(
float hour,
float min,
float sec);
64 float myUpperBoundRegion;
65 float myLowerBoundRegion;
66 bool myAreRegionsDisplayed;
74 inline float clockDisplay::upperBoundRegion()
76 return myUpperBoundRegion;
79 inline float clockDisplay::lowerBoundRegion()
81 return myLowerBoundRegion;
84 inline bool clockDisplay::areRegionsDisplayed()
86 return myAreRegionsDisplayed;
89 inline bool clockDisplay::isPublisher()
94 inline bool clockDisplay::hasAClock()
99 inline void clockDisplay::setHasAClock(
bool newVal)
101 myHaveAClock = newVal;
104 #endif // SIMPLEDDMGUI
106 #endif // DISPLAYFORREGIONEXAMPLE_H_
The analogClock class defines a QT GUI display of the current time / subscription information in the ...
Definition: simpleDDMAclock.h:39