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 d03fd4942f
Replace Q_SIGNALS and Q_SLOTS
2 months ago
..
freecell-solver Replace Q_SIGNALS and Q_SLOTS 2 months ago
icons Fix invalid headers in PNG files and optimize for size 8 years ago
AUTHORS Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
CHANGES Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 11 years ago
CMakeL10n.txt Desktop file translations: 4 years ago
CMakeLists.txt Desktop file translations: 4 years ago
Makefile.am LIB_QT -> LIB_TQT conversion to align to updated admin module 6 years ago
README Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
README.tkcTrump Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
TODO Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
card.cpp Remove additional unneeded tq method conversions 12 years ago
card.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
cardmaps.cpp Removed additional code formatting modelines. 4 years ago
cardmaps.h Removed additional code formatting modelines. 4 years ago
clock.cpp Rename additional header files to avoid conflicts with KDE4 11 years ago
clock.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
computation.cpp Removed additional code formatting modelines. 4 years ago
computation.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
copyright.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
dealer.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 months ago
dealer.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
deck.cpp Update various qt function definitions and static methods for tqt3 12 years ago
deck.h rename the following methods: 13 years ago
fortyeight.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 months ago
fortyeight.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
freecell.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 months ago
freecell.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
gamestats.ui Replace Q_SIGNALS and Q_SLOTS 2 months ago
gamestatsimpl.cpp Rename additional header files to avoid conflicts with KDE4 11 years ago
gamestatsimpl.h Trinity Qt initial conversion 14 years ago
golf.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 months ago
golf.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
grandf.cpp Removed additional code formatting modelines. 4 years ago
grandf.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
green.png Fix invalid headers in PNG files and optimize for size 8 years ago
gypsy.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 months ago
gypsy.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
hint.h Trinity Qt initial conversion 14 years ago
idiot.cpp Rename additional header files to avoid conflicts with KDE4 11 years ago
idiot.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
kings.cpp Rename additional header files to avoid conflicts with KDE4 11 years ago
kings.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
klondike.cpp Removed additional code formatting modelines. 4 years ago
klondike.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
kpat.desktop Desktop file translations: 4 years ago
kpatui.rc Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
main.cpp Rename common header files for consistency with class renaming 11 years ago
mod3.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 months ago
mod3.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
napoleon.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 months ago
napoleon.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
pile.cpp Rename old tq methods that no longer need a unique name 12 years ago
pile.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
pile_algorithms.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
pwidget.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 months ago
pwidget.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
simon.cpp Rename additional header files to avoid conflicts with KDE4 11 years ago
simon.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
speeds.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
spider.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 months ago
spider.h Replace Q_OBJECT with TQ_OBJECT 8 months ago
version.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
yukon.cpp Rename additional header files to avoid conflicts with KDE4 11 years ago
yukon.h Replace Q_OBJECT with TQ_OBJECT 8 months ago

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.