No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
tdegames/kpat
Michele Calgaro d45d96cd06
Fix FTBFS caused by invalid cast. This resolves issue #38.
hace 4 semanas
..
freecell-solver Fix FTBFS caused by invalid cast. This resolves issue #38. hace 4 semanas
icons Fix invalid headers in PNG files and optimize for size hace 8 años
AUTHORS Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
CHANGES Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 hace 11 años
CMakeL10n.txt Desktop file translations: hace 4 años
CMakeLists.txt Desktop file translations: hace 4 años
Makefile.am LIB_QT -> LIB_TQT conversion to align to updated admin module hace 6 años
README Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
README.tkcTrump Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
TODO Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
card.cpp Remove additional unneeded tq method conversions hace 13 años
card.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
cardmaps.cpp Removed additional code formatting modelines. hace 4 años
cardmaps.h Removed additional code formatting modelines. hace 4 años
clock.cpp Rename additional header files to avoid conflicts with KDE4 hace 11 años
clock.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
computation.cpp Removed additional code formatting modelines. hace 4 años
computation.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
copyright.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
dealer.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines hace 4 meses
dealer.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
deck.cpp Update various qt function definitions and static methods for tqt3 hace 12 años
deck.h rename the following methods: hace 13 años
fortyeight.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines hace 4 meses
fortyeight.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
freecell.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines hace 4 meses
freecell.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
gamestats.ui Replace Q_SIGNALS and Q_SLOTS hace 3 meses
gamestatsimpl.cpp Rename additional header files to avoid conflicts with KDE4 hace 11 años
gamestatsimpl.h Trinity Qt initial conversion hace 14 años
golf.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines hace 4 meses
golf.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
grandf.cpp Removed additional code formatting modelines. hace 4 años
grandf.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
green.png Fix invalid headers in PNG files and optimize for size hace 8 años
gypsy.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines hace 4 meses
gypsy.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
hint.h Trinity Qt initial conversion hace 14 años
idiot.cpp Rename additional header files to avoid conflicts with KDE4 hace 11 años
idiot.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
kings.cpp Rename additional header files to avoid conflicts with KDE4 hace 11 años
kings.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
klondike.cpp Removed additional code formatting modelines. hace 4 años
klondike.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
kpat.desktop Desktop file translations: hace 4 años
kpatui.rc Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
main.cpp Rename common header files for consistency with class renaming hace 11 años
mod3.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines hace 4 meses
mod3.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
napoleon.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines hace 4 meses
napoleon.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
pile.cpp Rename old tq methods that no longer need a unique name hace 13 años
pile.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
pile_algorithms.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
pwidget.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines hace 4 meses
pwidget.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
simon.cpp Rename additional header files to avoid conflicts with KDE4 hace 11 años
simon.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
speeds.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
spider.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines hace 4 meses
spider.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses
version.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
yukon.cpp Rename additional header files to avoid conflicts with KDE4 hace 11 años
yukon.h Replace Q_OBJECT with TQ_OBJECT hace 10 meses

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.