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/libkdegames/kgame
Timothy Pearson 898d80dfae
Rename kde libraries to tde
13 years ago
..
dialogs Rename kde libraries to tde 13 years ago
COMPAT TQt4 port kdegames 13 years ago
DESIGN TQt4 port kdegames 13 years ago
Makefile.am Rename kde libraries to tde 13 years ago
README.LIB 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
kgame.cpp Fix remaining instances of tqStatus embedded in user visible strings 13 years ago
kgame.h rename the following methods: 13 years ago
kgamechat.cpp rename the following methods: 13 years ago
kgamechat.h rename the following methods: 13 years ago
kgameerror.cpp TQt4 port kdegames 13 years ago
kgameerror.h Trinity Qt initial conversion 14 years ago
kgameio.cpp rename the following methods: 13 years ago
kgameio.h rename the following methods: 13 years ago
kgamemessage.cpp TQt4 port kdegames 13 years ago
kgamemessage.h TQt4 port kdegames 13 years ago
kgamenetwork.cpp rename the following methods: 13 years ago
kgamenetwork.h rename the following methods: 13 years ago
kgameprocess.cpp TQt4 port kdegames 13 years ago
kgameprocess.h TQt4 port kdegames 13 years ago
kgameproperty.cpp rename the following methods: 13 years ago
kgameproperty.h rename the following methods: 13 years ago
kgamepropertyarray.h Trinity Qt initial conversion 14 years ago
kgamepropertyhandler.cpp rename the following methods: 13 years ago
kgamepropertyhandler.h rename the following methods: 13 years ago
kgamepropertylist.h rename the following methods: 13 years ago
kgamesequence.cpp Trinity Qt initial conversion 14 years ago
kgamesequence.h TQt4 port kdegames 13 years ago
kgameversion.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kmessageclient.cpp rename the following methods: 13 years ago
kmessageclient.h rename the following methods: 13 years ago
kmessageio.cpp rename the following methods: 13 years ago
kmessageio.h rename the following methods: 13 years ago
kmessageserver.cpp rename the following methods: 13 years ago
kmessageserver.h rename the following methods: 13 years ago
kmessageserver.png Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kplayer.cpp rename the following methods: 13 years ago
kplayer.h rename the following methods: 13 years ago
libkdegames.html Rename kde libraries to tde 13 years ago
messages.txt Rename kde libraries to tde 13 years ago
scenario0.png Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
scenario1.png Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
scenario2.png Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago

README.LIB

some thoughts and comments about the lib - usually for KGame hackers

- setMin/MaxPlayers() etc. use KGameProperty::changeValue() which is slightly
  unclean but as these functions can only called by the ADMIN it doesn't matter.
- AB: KGamePropertyList && KGamePropertyArray:
     for PolicyClean||PolicyDirty the values are streamed into a QDataStream as usual
     for PolicyDirty||PolicyLocal the values are streamed as well but
     additionally command() is called immediately. The values are read from
     the stream there. This is some kind of performance loss as it would be
     faster *not* to stream it but imediately call e.g. insert(). But it will
     probably save a *lot* of bugs!