From ec7ce1e029b45c25dcee60dad093b678edc0a96e Mon Sep 17 00:00:00 2001 From: mathias Date: Mon, 27 Feb 2006 20:58:16 +0000 Subject: cosmetic changes from php-coder (copyright, header) --- ChangeLog | 5 +++++ src/FbTk/Select2nd.hh | 23 +++++++++++++++++++++++ src/FbTk/stringstream.hh | 23 +++++++++++++++++++++++ src/LayerMenu.cc | 23 +++++++++++++++++++++++ src/Parser.cc | 23 +++++++++++++++++++++++ src/PlacementStrategy.hh | 24 ++++++++++++++++++++++++ src/Slit.cc | 4 ++++ src/Toolbar.cc | 4 ++++ src/WindowCmd.cc | 23 +++++++++++++++++++++++ src/WindowCmd.hh | 23 +++++++++++++++++++++++ 10 files changed, 175 insertions(+) diff --git a/ChangeLog b/ChangeLog index d167b70..7ff058e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ (Format: Year/Month/Day) Changes for 0.9.15: +*06/02/27: + * minor cosmetic issues (thanx php-coder) + Slit.cc WindowCmd.cc PlacementStrategy.hh stringstream.hh + Select2nd.hh Parser.cc LayerMenu.cc Toolbar.cc + WindowCmd.hh *06/02/20: * Moved resource helper class Layer out from class Fluxbox. Reduced some dependencies. diff --git a/src/FbTk/Select2nd.hh b/src/FbTk/Select2nd.hh index e74ea0b..7c0b2e6 100644 --- a/src/FbTk/Select2nd.hh +++ b/src/FbTk/Select2nd.hh @@ -1,3 +1,26 @@ +// Select2nd.hh +// Copyright (c) 2005 - 2006 Fluxbox Team (fluxgen at fluxbox dot org) +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the "Software"), +// to deal in the Software without restriction, including without limitation +// the rights to use, copy, modify, merge, publish, distribute, sublicense, +// and/or sell copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// 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$ + #ifndef FBTK_SELECT2ND_HH #define FBTK_SELECT2ND_HH diff --git a/src/FbTk/stringstream.hh b/src/FbTk/stringstream.hh index e1884f2..bc0ecfc 100644 --- a/src/FbTk/stringstream.hh +++ b/src/FbTk/stringstream.hh @@ -1,3 +1,26 @@ +// stringstream.hh +// Copyright (c) 2005 - 2006 Fluxbox Team (fluxgen at fluxbox dot org) +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the "Software"), +// to deal in the Software without restriction, including without limitation +// the rights to use, copy, modify, merge, publish, distribute, sublicense, +// and/or sell copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// 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$ + #ifndef FBTK_STRINGSTREAM_HH #define FBTK_STRINGSTREAM_HH diff --git a/src/LayerMenu.cc b/src/LayerMenu.cc index cec0c59..4eee2c6 100644 --- a/src/LayerMenu.cc +++ b/src/LayerMenu.cc @@ -1,3 +1,26 @@ +// LayerMenu.cc +// Copyright (c) 2005 - 2006 Fluxbox Team (fluxgen at fluxbox dot org) +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the "Software"), +// to deal in the Software without restriction, including without limitation +// the rights to use, copy, modify, merge, publish, distribute, sublicense, +// and/or sell copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// 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$ + #include "LayerMenu.hh" #include "FbCommands.hh" diff --git a/src/Parser.cc b/src/Parser.cc index 4a9b176..3461c0e 100644 --- a/src/Parser.cc +++ b/src/Parser.cc @@ -1,3 +1,26 @@ +// Parser.cc +// Copyright (c) 2004 - 2006 Fluxbox Team (fluxgen at fluxbox dot org) +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the "Software"), +// to deal in the Software without restriction, including without limitation +// the rights to use, copy, modify, merge, publish, distribute, sublicense, +// and/or sell copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// 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$ + #include "Parser.hh" const Parser::Item Parser::s_empty_item("", ""); diff --git a/src/PlacementStrategy.hh b/src/PlacementStrategy.hh index 6c782f4..19376ca 100644 --- a/src/PlacementStrategy.hh +++ b/src/PlacementStrategy.hh @@ -1,7 +1,31 @@ +// PlacementStrategy.hh +// Copyright (c) 2006 Fluxbox Team (fluxgen at fluxbox dot org) +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the "Software"), +// to deal in the Software without restriction, including without limitation +// the rights to use, copy, modify, merge, publish, distribute, sublicense, +// and/or sell copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// 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$ + #ifndef PLACEMENTSTRATEGY_HH #define PLACEMENTSTRATEGY_HH #include + class FluxboxWindow; struct PlacementStrategy { diff --git a/src/Slit.cc b/src/Slit.cc index d8f886b..e6ceb57 100644 --- a/src/Slit.cc +++ b/src/Slit.cc @@ -50,7 +50,11 @@ #include "FbMenu.hh" #include "Transparent.hh" #include "IntResMenuItem.hh" + +#ifdef XINERAMA #include "Xinerama.hh" +#endif // XINERAMA + #include "SlitTheme.hh" #include "SlitClient.hh" #include "Xutil.hh" diff --git a/src/Toolbar.cc b/src/Toolbar.cc index a735188..1b14855 100644 --- a/src/Toolbar.cc +++ b/src/Toolbar.cc @@ -36,7 +36,11 @@ #include "Screen.hh" #include "IntResMenuItem.hh" #include "BoolMenuItem.hh" + +#ifdef XINERAMA #include "Xinerama.hh" +#endif // XINERAMA + #include "Strut.hh" #include "CommandParser.hh" #include "Layer.hh" diff --git a/src/WindowCmd.cc b/src/WindowCmd.cc index c84849f..7a9c8f0 100644 --- a/src/WindowCmd.cc +++ b/src/WindowCmd.cc @@ -1,3 +1,26 @@ +// WindowCmd.cc +// Copyright (c) 2005 - 2006 Fluxbox Team (fluxgen at fluxbox dot org) +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the "Software"), +// to deal in the Software without restriction, including without limitation +// the rights to use, copy, modify, merge, publish, distribute, sublicense, +// and/or sell copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// 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$ + #include "WindowCmd.hh" FluxboxWindow *WindowCmd_base::s_win = 0; diff --git a/src/WindowCmd.hh b/src/WindowCmd.hh index 309e62b..5eca723 100644 --- a/src/WindowCmd.hh +++ b/src/WindowCmd.hh @@ -1,3 +1,26 @@ +// WindowCmd.hh +// Copyright (c) 2005 - 2006 Fluxbox Team (fluxgen at fluxbox dot org) +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the "Software"), +// to deal in the Software without restriction, including without limitation +// the rights to use, copy, modify, merge, publish, distribute, sublicense, +// and/or sell copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// 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$ + #ifndef WINDOWCMD_HH #define WINDOWCMD_HH -- cgit v0.11.2