all repos — fluxbox @ 872ba855943de8d522337295fab9fb5d6d413c48

custom fork of the fluxbox windowmanager

add some comments to better describe the difference between the 2
decoration-related enumerations
rathnor rathnor
commit

872ba855943de8d522337295fab9fb5d6d413c48

parent

df8a780df164e4ed3b69a53a49686f51f2e96c04

1 files changed, 7 insertions(+), 2 deletions(-)

jump to
M src/Window.hhsrc/Window.hh

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Window.hh,v 1.62 2003/04/26 05:42:36 rathnor Exp $ +// $Id: Window.hh,v 1.63 2003/04/26 14:05:47 rathnor Exp $ #ifndef WINDOW_HH #define WINDOW_HH

@@ -65,7 +65,7 @@

/// Creates the window frame and handles any window event for it class FluxboxWindow : public FbTk::TimeoutHandler, public FbTk::EventHandler { public: - /// decoration bit + /// Represents certain "preset" sets of decorations. enum Decoration { DECOR_NONE=0, ///< no decor at all DECOR_NORMAL, ///< normal normal

@@ -204,6 +204,11 @@

void setDecoration(Decoration decoration); void toggleDecoration(); + /** + This enumeration represents individual decoration + attributes, they can be OR-d together to get a mask. + Useful for saving. + */ enum DecorationMask { DECORM_TITLEBAR = (1<<0), DECORM_HANDLE = (1<<1),