Move tile.cpp, tile.h, tilinglayout.cpp and tiling.h to directory tiling/

The three files are moved to the directory tiling/ and the includes were
adjusted as well as the CMakeLists.txt file.
This commit is contained in:
Arthur Arlt 2011-07-28 13:36:25 +02:00
parent 1326316049
commit 8c3a0e218a
15 changed files with 19 additions and 22 deletions

View file

@ -182,23 +182,20 @@ endif(KWIN_BUILD_TABBOX)
if(KWIN_BUILD_TILING)
set(
kwin_KDEINIT_SRCS ${kwin_KDEINIT_SRCS}
tile.cpp
tilinglayout.cpp
tiling/tile.cpp
tiling/tiling.cpp
tiling/tilinglayout.cpp
tilinglayoutfactory.cpp
# tiling layouts
# spiral
#tilinglayouts/spiral/spiralfactory.cpp
tilinglayouts/spiral/spiral.cpp
# columns
#tilinglayouts/columns/columnsfactory.cpp
tilinglayouts/columns/columns.cpp
# floating
tilinglayouts/floating/floating.cpp
tiling/tiling.cpp
)
endif(KWIN_BUILD_TILING)

View file

@ -29,8 +29,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <KActionCollection>
#include <KDE/KAction>
#include "tile.h"
#include "tilinglayout.h"
#include "tiling/tile.h"
#include "tiling/tilinglayout.h"
#include "tilinglayoutfactory.h"
#include "workspace.h"

View file

@ -18,12 +18,12 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*********************************************************************/
#include "tilinglayout.h"
#include "tiling/tilinglayout.h"
#include <QCursor>
#include "client.h"
#include "tile.h"
#include "tiling/tile.h"
#include "workspace.h"
#include "tiling/tiling.h"

View file

@ -26,7 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <kdebug.h>
#include "notifications.h"
#include "tile.h"
#include "tiling/tile.h"
#include "client.h"
#include "tilinglayouts/spiral/spiral.h"

View file

@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "columns.h"
#include "client.h"
#include "tile.h"
#include "tiling/tile.h"
#include <kdecoration.h>

View file

@ -23,7 +23,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <Qt>
#include "tilinglayout.h"
#include "tiling/tilinglayout.h"
namespace KWin
{

View file

@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "floating.h"
#include "tile.h"
#include "tiling/tile.h"
#include "client.h"
namespace KWin

View file

@ -24,8 +24,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <Qt>
#include <QSet>
#include "tilinglayout.h"
#include "tile.h"
#include "tiling/tilinglayout.h"
#include "tiling/tile.h"
namespace KWin
{

View file

@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "spiral.h"
#include "client.h"
#include "tile.h"
#include "tiling/tile.h"
namespace KWin
{

View file

@ -23,7 +23,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <Qt>
#include "tilinglayout.h"
#include "tiling/tilinglayout.h"
namespace KWin
{

View file

@ -31,8 +31,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "workspace.h"
#include "effects.h"
#ifdef KWIN_BUILD_TILING
#include "tile.h"
#include "tilinglayout.h"
#include "tiling/tile.h"
#include "tiling/tilinglayout.h"
#include "tiling/tiling.h"
#endif

View file

@ -62,8 +62,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "effects.h"
#include "overlaywindow.h"
#ifdef KWIN_BUILD_TILING
#include "tile.h"
#include "tilinglayout.h"
#include "tiling/tile.h"
#include "tiling/tilinglayout.h"
#include "tiling/tiling.h"
#endif
#ifdef KWIN_BUILD_SCRIPTING