選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
tdegames/libtdegames
Michele Calgaro d03fd4942f
Replace Q_SIGNALS and Q_SLOTS
3ヶ月前
..
carddecks Simplify CMake rules for desktop file translations. 4年前
highscore Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
kgame Replace Q_SIGNALS and Q_SLOTS 3ヶ月前
pics Fix invalid headers in PNG files and optimize for size 8年前
CMakeL10n.txt Desktop file translations: 4年前
CMakeLists.txt Add a pkgconfig file for libtdegames. 4年前
Makefile.am Renaming of files in preparation for code style tools. 3年前
README Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4 11年前
TODO Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version 7ヶ月前
configure.in.in Actually move the kde files that were renamed in the last commit 13年前
kcanvasrootpixmap.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
kcanvasrootpixmap.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
kcarddialog.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
kcarddialog.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
kcarddialog.png Fix invalid headers in PNG files and optimize for size 8年前
kchat.cpp Rename additional header files to avoid conflicts with KDE4 11年前
kchat.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
kchatbase.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
kchatbase.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
kchatdialog.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
kchatdialog.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
kgamelcd.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
kgamelcd.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
kgamemisc.cpp Rename additional header files to avoid conflicts with KDE4 11年前
kgamemisc.h Branding cleanup: KDE -> TDE 12年前
kgameprogress.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
kgameprogress.h Replace Qt with TQt 6ヶ月前
kgrid2d.h Rename additional header files to avoid conflicts with KDE4 11年前
kstdgameaction.cpp Updated icon names (undo → edit-undo, redo → edit-redo). 3年前
kstdgameaction.h Rename a number of classes to enhance compatibility with KDE4 11年前
libtdegames.pc.cmake Add a pkgconfig file for libtdegames. 4年前

README

This directory contains the library for the tdegames packege.
It is a collection of functions used by some games or which
are useful for other games.

Packagers note: it is recommended to put the directory "carddecks" into a separate
package, as not all games using libtdegames use the carddecks as well.

Contents:
  kcarddialog: Access to carddeck selection and administration
               for cardgames
  kstdgameaction: just like kstdaction this provides some default action for
                  kde games. games often use different entries than other apps
                  (like "game" instead of "file"), so use this if possible
  kgamemisc: some static method i didn't know a good class name for. it
             currently features "randomName()" which will just give you a random name from
             a list (translators note: happy translating ;) i copied kde-common/accounts
             for this so there are nearly 300 entries...)
  kgame: this is a complete network/game handling library. it constists of a lot
         of classes which are explained in the kgame docu (as soon as it is
         written)
if you use libtdegames in your game please also add
TDEGlobal::locale()->insertCatalogue("libtdegames");
to main()
This will add libtdegames.pot to your game and therefore all libtdegames 
strings get translated.