X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2FVideo.hh;h=0199bc51dc43e3a38508fae9da2d81149b4a7ac0;hp=193274f5fb5b7a82cee5611eb62d1e3bacc4c338;hb=987971a961454d97082c6448fdc0bbeb540281bb;hpb=8a1acac01b444dccf8b57cedf08392ada2e473c1 diff --git a/src/Moof/Video.hh b/src/Moof/Video.hh index 193274f..0199bc5 100644 --- a/src/Moof/Video.hh +++ b/src/Moof/Video.hh @@ -35,6 +35,8 @@ #include +#include + namespace Mf { @@ -72,6 +74,10 @@ public: bool cursorGrab; Attributes(); + + private: + + Backend backend; }; @@ -94,6 +100,8 @@ public: void setCaption(const std::string& caption); std::string getCaption() const; + const std::string& getIcon() const; + void setFull(bool full); void toggleFull(); bool isFull() const; @@ -110,7 +118,6 @@ public: void toggleCursorGrab(); bool isCursorGrab() const; - void makeActive(); void swap(); int getWidth() const; @@ -133,6 +140,9 @@ private: }; +extern Video* video; + + } // namespace Mf #endif // _MOOF_VIDEO_HH_