X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fwidgetbase.hh;fp=src%2Fwidgetbase.hh;h=46aacb9f93e2f162d9cc3e6e69498bd47b198505;hb=997f94cf8657201ea9d1f2497e4ec4f56342e22f;hp=d83075747e18ab8abdd6d4218c5f18b4676a2403;hpb=02d6362111a9e679b0a2f108d396f105243da4b5;p=chaz%2Fopenbox diff --git a/src/widgetbase.hh b/src/widgetbase.hh index d8307574..46aacb9f 100644 --- a/src/widgetbase.hh +++ b/src/widgetbase.hh @@ -32,34 +32,34 @@ public: inline WidgetType type() const { return _type; } - inline MouseContext mcontext() const { + inline MouseContext::MC mcontext() const { switch (_type) { case Type_Frame: - return MC_Frame; + return MouseContext::Frame; case Type_Titlebar: - return MC_Titlebar; + return MouseContext::Titlebar; case Type_Handle: - return MC_Handle; + return MouseContext::Handle; case Type_Plate: - return MC_Window; + return MouseContext::Window; case Type_Label: - return MC_Titlebar; + return MouseContext::Titlebar; case Type_MaximizeButton: - return MC_MaximizeButton; + return MouseContext::MaximizeButton; case Type_CloseButton: - return MC_CloseButton; + return MouseContext::CloseButton; case Type_IconifyButton: - return MC_IconifyButton; + return MouseContext::IconifyButton; case Type_AllDesktopsButton: - return MC_AllDesktopsButton; + return MouseContext::AllDesktopsButton; case Type_LeftGrip: - return MC_Grip; + return MouseContext::Grip; case Type_RightGrip: - return MC_Grip; + return MouseContext::Grip; case Type_Client: - return MC_Window; + return MouseContext::Window; case Type_Root: - return MC_Root; + return MouseContext::Root; default: assert(false); // unhandled type }