Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Games
lskat
Commits
63a241ff
Commit
63a241ff
authored
Apr 14, 2006
by
Martin Heni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added copyright headers to all files
svn path=/trunk/KDE/kdegames/lskat/; revision=529694
parent
3dc8ba4e
Changes
43
Hide whitespace changes
Inline
Side-by-side
Showing
43 changed files
with
832 additions
and
16 deletions
+832
-16
src/Makefile.am
src/Makefile.am
+9
-7
src/abstractdisplay.cpp
src/abstractdisplay.cpp
+20
-0
src/abstractdisplay.h
src/abstractdisplay.h
+19
-0
src/abstractengine.cpp
src/abstractengine.cpp
+20
-0
src/abstractengine.h
src/abstractengine.h
+19
-0
src/abstractinput.cpp
src/abstractinput.cpp
+20
-0
src/abstractinput.h
src/abstractinput.h
+19
-0
src/aiinput.cpp
src/aiinput.cpp
+20
-0
src/aiinput.h
src/aiinput.h
+19
-0
src/canvasview.cpp
src/canvasview.cpp
+20
-0
src/canvasview.h
src/canvasview.h
+19
-0
src/cardsprite.cpp
src/cardsprite.cpp
+20
-0
src/cardsprite.h
src/cardsprite.h
+19
-0
src/config_two.cpp
src/config_two.cpp
+20
-0
src/config_two.h
src/config_two.h
+19
-0
src/deck.cpp
src/deck.cpp
+21
-0
src/deck.h
src/deck.h
+19
-0
src/display_intro.cpp
src/display_intro.cpp
+20
-0
src/display_intro.h
src/display_intro.h
+19
-0
src/display_two.cpp
src/display_two.cpp
+21
-1
src/display_two.h
src/display_two.h
+19
-0
src/engine_two.cpp
src/engine_two.cpp
+21
-1
src/engine_two.h
src/engine_two.h
+19
-0
src/gameview.cpp
src/gameview.cpp
+20
-0
src/gameview.h
src/gameview.h
+19
-0
src/lskatui.rc
src/lskatui.rc
+24
-0
src/main.cpp
src/main.cpp
+18
-0
src/mainwindow.cpp
src/mainwindow.cpp
+19
-7
src/mainwindow.h
src/mainwindow.h
+18
-0
src/mouseinput.cpp
src/mouseinput.cpp
+20
-0
src/mouseinput.h
src/mouseinput.h
+19
-0
src/namedialogwidget.cpp
src/namedialogwidget.cpp
+20
-0
src/namedialogwidget.h
src/namedialogwidget.h
+19
-0
src/pixmapsprite.cpp
src/pixmapsprite.cpp
+20
-0
src/pixmapsprite.h
src/pixmapsprite.h
+19
-0
src/player.cpp
src/player.cpp
+20
-0
src/player.h
src/player.h
+19
-0
src/playerstatuswidget.cpp
src/playerstatuswidget.cpp
+20
-0
src/playerstatuswidget.h
src/playerstatuswidget.h
+19
-0
src/rectanglesprite.cpp
src/rectanglesprite.cpp
+20
-0
src/rectanglesprite.h
src/rectanglesprite.h
+19
-0
src/textsprite.cpp
src/textsprite.cpp
+20
-0
src/textsprite.h
src/textsprite.h
+19
-0
No files found.
src/Makefile.am
View file @
63a241ff
AM_CPPFLAGS
=
-DSRCDIR
=
"
\"
/home/kde/kde35/KDE/kdegames/lskat
\"
"
#AM_CPPFLAGS = -DSRCDIR="\"/home/kde/kde35/KDE/kdegames/lskat\""
AM_CPPFLAGS
=
-DSRCDIR
=
"
\"
$(srcdir)
/..
\"
"
bin_PROGRAMS
=
lskat
lskat_SOURCES
=
playerstatusform.ui playerstatuswidget.cpp
\
namedialog.ui namedialogwidget.cpp
\
main.cpp mainwindow.cpp gameview.cpp canvasview.cpp
\
deck.cpp abstractdisplay.cpp display_two.cpp player.cpp
\
cardsprite.cpp abstractinput.cpp mouseinput.cpp
\
abstractengine.cpp engine_two.cpp textsprite.cpp
\
display_intro.cpp aiinput.cpp rectanglesprite.cpp
\
pixmapsprite.cpp config_two.cpp
gameview.cpp canvasview.cpp
\
mainwindow.cpp main.cpp deck.cpp config_two.cpp
\
abstractdisplay.cpp display_intro.cpp display_two.cpp
\
cardsprite.cpp pixmapsprite.cpp rectanglesprite.cpp textsprite.cpp
\
abstractengine.cpp engine_two.cpp
\
player.cpp abstractinput.cpp mouseinput.cpp aiinput.cpp
lskat_LDADD
=
$(LIB_KFILE)
$(LIB_KDEGAMES)
lskat_DEPENDENCIES
=
$(LIB_KDEGAMES_DEP)
...
...
src/abstractdisplay.cpp
View file @
63a241ff
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
// KDE includes
...
...
src/abstractdisplay.h
View file @
63a241ff
#ifndef ABSTRACT_DISPLAY_H
#define ABSTRACT_DISPLAY_H
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <Q3Canvas>
...
...
src/abstractengine.cpp
View file @
63a241ff
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
// KDE includes
...
...
src/abstractengine.h
View file @
63a241ff
#ifndef ABSTGRACT_ENGINE_H
#define ABSTGRACT_ENGINE_H
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <QString>
...
...
src/abstractinput.cpp
View file @
63a241ff
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
// KDE includes
...
...
src/abstractinput.h
View file @
63a241ff
#ifndef ABSTRACT_INPUT_H
#define ABSTRACT_INPUT_H
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <QObject>
...
...
src/aiinput.cpp
View file @
63a241ff
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <QPixmap>
#include <QTimer>
...
...
src/aiinput.h
View file @
63a241ff
#ifndef AI_INPUT_H
#define AI_INPUT_H
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// KDE includes
#include <kdebug.h>
...
...
src/canvasview.cpp
View file @
63a241ff
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <qpoint.h>
#include <qfont.h>
...
...
src/canvasview.h
View file @
63a241ff
#ifndef CANVAS_VIEW_H
#define CANVAS_VIEW_H
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <QWidget>
...
...
src/cardsprite.cpp
View file @
63a241ff
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// General includes
#include <math.h>
...
...
src/cardsprite.h
View file @
63a241ff
#ifndef CARD_SPRITE_H
#define CARD_SPRITE_H
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <Q3CanvasSprite>
...
...
src/config_two.cpp
View file @
63a241ff
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
// KDE includes
...
...
src/config_two.h
View file @
63a241ff
#ifndef CONFIG_TWO_H
#define CONFIG_TWO_H
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <QHash>
...
...
src/deck.cpp
View file @
63a241ff
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
// KDE includes
#include <klocale.h>
#include <kdebug.h>
#include <klocalizedstring.h>
// Local includes
#include "deck.h"
...
...
src/deck.h
View file @
63a241ff
#ifndef DECK_H
#define DECK_H
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <QObject>
...
...
src/display_intro.cpp
View file @
63a241ff
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// General includes
#include <math.h>
...
...
src/display_intro.h
View file @
63a241ff
#ifndef DISPLAY_INTRO_H
#define DISPLAY_INTRO_H
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <Q3Canvas>
...
...
src/display_two.cpp
View file @
63a241ff
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <QSize>
#include <QPoint>
...
...
@@ -6,8 +26,8 @@
#include <QLinearGradient>
// KDE includes
#include <klocale.h>
#include <kdebug.h>
#include <klocalizedstring.h>
// Local includes
#include "display_two.h"
...
...
src/display_two.h
View file @
63a241ff
#ifndef DISPLAY_TWO_H
#define DISPLAY_TWO_H
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <Q3Canvas>
...
...
src/engine_two.cpp
View file @
63a241ff
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <QTimer>
// KDE includes
#include <kdebug.h>
#include <klocal
e
.h>
#include <klocal
izedstring
.h>
// Local includes
#include "engine_two.h"
...
...
src/engine_two.h
View file @
63a241ff
#ifndef ENGINE_TWO_H
#define ENGINE_TWO_H
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <QObject>
...
...
src/gameview.cpp
View file @
63a241ff
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
// Qt includes
#include <QLabel>
#include <QPalette>
...
...
src/gameview.h
View file @
63a241ff
#ifndef GAMEVIEW_H
#define GAMEVIEW_H
/*
This file is part of the KDE games lskat program
Copyright (c) 2006 Martin Heni <kde@heni-online.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of