You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/kpat
Michele Calgaro 5d8b924a62
Removed explicit usage of the 'register' keyword.
5 years ago
..
freecell-solver Removed explicit usage of the 'register' keyword. 5 years ago
icons Fix invalid headers in PNG files and optimize for size 8 years ago
AUTHORS
CHANGES
CMakeL10n.txt Add CMakeL10n rules. 6 years ago
CMakeLists.txt Initial cmake conversion 9 years ago
Makefile.am LIB_QT -> LIB_TQT conversion to align to updated admin module 6 years ago
README
README.tkcTrump
TODO
card.cpp
card.h
cardmaps.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
cardmaps.h
clock.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
clock.h
computation.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
computation.h
copyright.h
dealer.cpp Fix forward classes declaration in kpat/dealer.h 8 years ago
dealer.h Fix forward classes declaration in kpat/dealer.h 8 years ago
deck.cpp
deck.h
fortyeight.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
fortyeight.h
freecell.cpp Initial cmake conversion 9 years ago
freecell.h
gamestats.ui
gamestatsimpl.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
gamestatsimpl.h
golf.cpp Initial cmake conversion 9 years ago
golf.h
grandf.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
grandf.h
green.png Fix invalid headers in PNG files and optimize for size 8 years ago
gypsy.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
gypsy.h
hint.h
idiot.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
idiot.h
kings.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
kings.h
klondike.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
klondike.h
kpat.desktop Fix ServiceTypes, ExcludeServiceTypes, and DocPath desktop file entries to match XDG specifications 10 years ago
kpatui.rc
main.cpp
mod3.cpp Initial cmake conversion 9 years ago
mod3.h
napoleon.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
napoleon.h
pile.cpp
pile.h
pile_algorithms.cpp
pwidget.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
pwidget.h
simon.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
simon.h
speeds.h
spider.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
spider.h
version.h
yukon.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
yukon.h

README

Hello,

this is the very first release of kpat, the KDE solitaire patience game.

It is an almost unchanged "patience" from Paul Olav Tvete, who uploaded
this stuff some months ago on www.troll.no.

My changes are so far:

    - renamed the stuff kpat-0.1
    - improved drag'n'drop (no more weird jumping of cards)
    - improved look (shaded borders around the cards and piles)
    - hopefully improved cards-background 
    - "very easy"-option for klondike to give only one card. 
    - unset wholeColumn for klondike, but this all belongs into OPTIONS

Anway, kpat is IMO already yet the best X-based solitaire-like game,
thanks to Paul Olav Tvete and Qt :-)


Greets,

  Matthias



----- original README (probably Paul):

This is an implementation of patience (solitaire). It consists of a
general class library and six games implemented using it.

I wrote this program when learning Qt. There are a number of things I
would have done differently now. One of the silliest is that all the
intelligence lies in the cards (which are individual widgets, by the way)
instead of in a Patience class.

There are a lot of static variables. Don't try to instantiate more than one
dealer at a time -- that way lies madness.

The general base classes could doubtlessly have been a lot more general.