diff options
author | Kristopher Ives <kris@leetbook2.(none)> | 2009-10-24 23:53:22 -0700 |
---|---|---|
committer | Kristopher Ives <kris@leetbook2.(none)> | 2009-10-24 23:53:22 -0700 |
commit | b6a417d2bc02f23897cebfe83cd7d11defa2c726 (patch) | |
tree | 7b24519d76e7d4a144eb2b56fd4b3edcd9f03a69 /include | |
parent | 63e779552c4c5c07369d954891714e151e7073be (diff) | |
download | zcomp-b6a417d2bc02f23897cebfe83cd7d11defa2c726.tar.gz zcomp-b6a417d2bc02f23897cebfe83cd7d11defa2c726.tar.bz2 |
Added some TODO comments for WindowInterface and helper struct/enums.
Diffstat (limited to 'include')
-rw-r--r-- | include/core/window.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/include/core/window.h b/include/core/window.h index 6628252..bc46dfc 100644 --- a/include/core/window.h +++ b/include/core/window.h @@ -154,7 +154,9 @@ struct CompStartupSequence; #define CompWindowGrabMoveMask (1 << 2) #define CompWindowGrabResizeMask (1 << 3) - +/** + * TODO + */ enum CompStackingUpdateMode { CompStackingUpdateModeNone = 0, CompStackingUpdateModeNormal, @@ -163,6 +165,9 @@ enum CompStackingUpdateMode { CompStackingUpdateModeInitialMapDeniedFocus }; +/** + * TODO + */ enum CompWindowNotify { CompWindowNotifyMap, CompWindowNotifyUnmap, @@ -186,6 +191,9 @@ enum CompWindowNotify { CompWindowNotifyLeaveShowDesktopMode }; +/** + * TODO + */ struct CompWindowExtents { int left; int right; @@ -193,6 +201,9 @@ struct CompWindowExtents { int bottom; }; +/** + * TODO + */ struct CompStruts { XRectangle left; XRectangle right; @@ -200,6 +211,9 @@ struct CompStruts { XRectangle bottom; }; +/** + * TODO + */ class WindowInterface : public WrapableInterface<CompWindow, WindowInterface> { public: |