KVIrc
4.9.2
DeveloperAPIs
|
A fast pointer hash table implementation. More...
#include <KviPointerHashTable.h>
Public Member Functions | |
void | clear () |
Removes all the items from the hash table. More... | |
void | copyFrom (KviPointerHashTable< Key, T > &t) |
Removes all items in the hash table and then makes a complete shallow copy of the data contained in t. More... | |
unsigned int | count () const |
Returns the number of items in this hash table. More... | |
T * | current () |
Returns the data value pointer pointed by the hash table iterator. More... | |
KviPointerHashTableEntry< Key, T > * | currentEntry () |
Returns the entry pointed by the hash table iterator. More... | |
const Key & | currentKey () |
Returns the key pointed by the hash table iterator. More... | |
T * | find (const Key &hKey) |
Returns the item associated to the key. More... | |
KviPointerHashTableEntry< Key, T > * | findRef (const T *pRef) |
Searches for the item pointer pRef. More... | |
T * | first () |
Places the hash table iterator at the first entry. More... | |
KviPointerHashTableEntry< Key, T > * | firstEntry () |
Places the hash table iterator at the first entry and returns it. More... | |
void | insert (const Key &hKey, T *pData) |
Inserts the item pData at the position specified by the key hKey. More... | |
void | insert (KviPointerHashTable< Key, T > &t) |
Inserts a complete shallow copy of the data contained in t. More... | |
bool | isEmpty () const |
Returns true if the hash table is empty. More... | |
KviPointerHashTable (unsigned int uSize=32, bool bCaseSensitive=true, bool bDeepCopyKeys=true) | |
Creates an empty hash table. More... | |
KviPointerHashTable (KviPointerHashTable< Key, T > &t) | |
First creates an empty hash table and then inserts a copy of all the item pointers present in t. More... | |
T * | next () |
Places the hash table iterator at the next entry and returns the associated data value pointer. More... | |
KviPointerHashTableEntry< Key, T > * | nextEntry () |
Places the hash table iterator at the next entry and returns it. More... | |
T * | operator[] (const Key &hKey) |
Returns the item associated to the key hKey. More... | |
bool | remove (const Key &hKey) |
Removes the item pointer associated to the key hKey, if such an item exists in the hash table. More... | |
bool | removeRef (const T *pRef) |
Removes the first occurrence of the item pointer pRef. More... | |
void | replace (const Key &hKey, T *pData) |
Inserts the item pData at the position specified by the key hKey. More... | |
void | setAutoDelete (bool bAutoDelete) |
Enables or disabled the autodeletion feature. More... | |
~KviPointerHashTable () | |
Destroys the hash table and all the items contained within. More... | |
Protected Attributes | |
bool | m_bAutoDelete |
bool | m_bCaseSensitive |
bool | m_bDeepCopyKeys |
KviPointerList < KviPointerHashTableEntry < Key, T > > ** | m_pDataArray |
unsigned int | m_uCount |
unsigned int | m_uIteratorIdx |
unsigned int | m_uSize |
Friends | |
class | KviPointerHashTableIterator< Key, T > |
A fast pointer hash table implementation.
A very cool, very fast hash table implementation :P
To use this hash table you need to provide implementations for the following functions:
* unsigned int kvi_hash_hash(const Key & hKey, bool bCaseSensitive); * bool kvi_hash_key_equal(const Key & hKey1, const Key & hKey2, bool * bCaseSensitive); * void kvi_hash_key_copy(const Key & hKeyFrom, Key & hKeyTo, bool bDeepCopy); * void kvi_hash_key_destroy(Key & hKey, bool bIsDeepCopy); * const Key & kvi_hash_key_default(Key *); *
Implementations for the most likey Key data types are provided below. KviPointerHashTable will automagically work with const char, QString, KviCString and integer types as keys.
For string Key types, the hash table may or may not be case sensitive. For other Key types the case sensitive flag has no meaning and will (hopefully) be optimized out by the compiler.
For pointer based keys the hash table may or may not maintain deep copies of Key data. For example, with char * keys, if deep copying is enabled then a private copy of the string data will be maintained. With deep copying disabled only char * pointers will be kept. For types that do not have meaning of deep copy the deep copying code will (hopefully) be optimized out by the compiler.
The hashtable maintains an array of KviPointerList based buckets. The number of buckets may be specified by the application user and does NOT need to be a prime number. Yet better to have it a power of two so the memory allocation routines will feel better and are less likely to waste space.
|
inline |
Creates an empty hash table.
Automatic deletion is enabled.
uSize | The number of hash buckets: does NOT necesairly need to be prime |
bCaseSensitive | Are the key comparisons case sensitive ? |
bDeepCopyKeys | Do we need to maintain deep copies of keys ? |
|
inline |
First creates an empty hash table and then inserts a copy of all the item pointers present in t.
The autodelete feature is automatically disabled (take care!).
t | The data to copy |
|
inline |
Destroys the hash table and all the items contained within.
Items are deleted if autodeletion is enabled.
|
inline |
Removes all the items from the hash table.
The items are deleted if autodeletion is enabled. Invalidates the hash table iterator.
Referenced by KviIsOnNotifyListManager::buildRegUserDict(), KviWatchNotifyListManager::buildRegUserDict(), KviCustomToolBarManager::clear(), KviIrcServerDataBase::clear(), KviKvsHash::clear(), KviKvsScriptAddonManager::clear(), KviTextIconManager::clear(), KviIconManager::clearCache(), KviRegisteredUserDataBase::copyFrom(), KviUserIdentityManager::copyFrom(), KviPointerHashTable< QString, KviActionCategory >::copyFrom(), KviKvsPopupManager::load(), KviKvsAliasManager::load(), KviUserIdentityManager::load(), KviTextIconManager::load(), RegisteredUserPropertiesDialog::okClicked(), KviKvsParser::parse(), KviKvsParser::parseAsExpression(), KviKvsParser::parseAsParameter(), KviPackageReader::readHeaderInternal(), KviUserListView::removeAllEntries(), KviIsOnNotifyListManager::stop(), KviWatchNotifyListManager::stop(), ClassEditorWidget::~ClassEditorWidget(), and KviPointerHashTable< QString, KviActionCategory >::~KviPointerHashTable().
|
inline |
Removes all items in the hash table and then makes a complete shallow copy of the data contained in t.
The removed items are deleted if autodeletion is enabled. The hash table iterator is invalidated. Does not change autodelete flag: make sure you don't delete the items twice :)
t | The data to copy |
Referenced by KviPointerHashTable< QString, KviActionCategory >::KviPointerHashTable().
|
inline |
Returns the number of items in this hash table.
Referenced by KviConfigurationFile::clearKey(), RegisteredUsersDialog::exportClicked(), RegisteredUserPropertiesDialog::fillData(), OptionsWidget_textIcons::fillTable(), KviIrcServerDataBase::networkCount(), KviPackageWriter::packInternal(), perlcore_module_can_unload(), reguser_kvs_cmd_showlist(), KviConfigurationFile::save(), KviKvsHash::size(), KviUserListView::updateUsersLabel(), KviUserListView::userStats(), and DccDescriptor::~DccDescriptor().
|
inline |
Returns the data value pointer pointed by the hash table iterator.
This function must be preceded by a call to firstEntry(), first() or findRef().
|
inline |
Returns the entry pointed by the hash table iterator.
This function must be preceded by a call to firstEntry(), first() or findRef().
|
inline |
Returns the key pointed by the hash table iterator.
This function must be preceded by a call to firstEntry(), first() or findRef().
|
inline |
Returns the item associated to the key.
Returns NULL if no such item exists in the hash table. Places the hash table iterator at the position of the item found.
hKey | The key to find |
Referenced by KviRegisteredUserDataBase::addGroup(), KviRegisteredUserDataBase::addMask(), KviApplication::addRecentChannel(), KviKvsTimerManager::addTimer(), KviRegisteredUserDataBase::addUser(), AliasEditorWidget::aliasRefresh(), KviUserListView::avatarChanged(), ClassEditorWidget::build(), KviApplication::buildRecentChannels(), KviActionManager::category(), KviTextIconManager::checkDefaultAssociations(), ClassEditorWidget::classExists(), KviLocale::codecForName(), config_kvs_cmd_clear(), config_kvs_cmd_clearsection(), config_kvs_cmd_close(), config_kvs_cmd_flush(), config_kvs_cmd_setsection(), config_kvs_cmd_write(), config_kvs_fnc_filename(), config_kvs_fnc_hassection(), config_kvs_fnc_keylist(), config_kvs_fnc_read(), config_kvs_fnc_readonly(), config_kvs_fnc_section(), config_kvs_fnc_sectionlist(), KviActionManager::coreActionExists(), KviCustomToolBarManager::create(), KviStatusBar::createApplet(), ClassEditorWidget::currentItemChanged(), KviIrcServerDataBase::currentNetwork(), KviUserIdentityManager::defaultIdentity(), KviKvsTimerManager::deleteTimer(), KviCustomToolBarManager::destroyDescriptor(), KviKvsDnsManager::dnsLookupTerminated(), KviIsOnNotifyListManager::doMatchUser(), KviWatchNotifyListManager::doMatchUser(), RegisteredUserEntryDialog::editAllPropertiesClicked(), KviUserListView::ensureVisible(), ClassEditorWidget::exportClasses(), KviActionDrawer::fill(), RegisteredUsersDialog::fillList(), DccDescriptor::find(), KviKvsHash::find(), KviKvsScriptAddonManager::findAddon(), KviModuleManager::findModule(), KviIrcServerDataBase::findNetwork(), DccBroker::findZeroPortTag(), KviUserListView::flags(), KviKvsHash::get(), KviActionManager::getAction(), KviRegisteredUser::getBoolProperty(), KviLocale::getLoadedCatalogue(), KviModuleManager::getModule(), KviIconManager::getPixmapWithCache(), KviIconManager::getPixmapWithCacheScaleOnLoad(), PluginManager::getPlugin(), KviRegisteredUser::getProperty(), KviIconManager::getSmallIconIdFromName(), KviKvsTreeNodeSwitchList::getStandardRebindingSwitch(), KviPackageReader::getStringInfoField(), KviRegisteredUserDataBase::getUser(), KviUserListView::getUserJoinTime(), KviUserListView::getUserLastActionTime(), KviUserListView::getUserModeLevel(), KviWatchNotifyListManager::handleWatchReply(), KviConfigurationFile::hasKey(), KviCustomToolBarManager::idForNewToolBar(), KviIrcUserDataBase::insertUser(), AddonFunctions::installAddonPackage(), ThemeFunctions::installThemePackage(), PluginManager::isPluginLoaded(), KviUserListView::join(), KviKvsObjectClass::KviKvsObjectClass(), KviRegisteredUserDataBase::load(), KviTextIconManager::load(), KviLocale::loadCatalogue(), KviKvsObjectController::lookupClass(), KviKvsObject::lookupFunctionHandler(), KviIrcServerDataBase::makeCurrentServer(), KviActionManager::nameForAutomaticAction(), KviUserListView::nickChange(), KviPointerHashTable< QString, KviActionCategory >::operator[](), options_kvs_cmd_close(), options_kvs_cmd_dialog(), options_kvs_fnc_isdialog(), package_kvs_cmd_extractField(), KviKvsParser::parsePercent(), KviUserListView::partInternal(), KviSoundPlayer::play(), PopupEditorWidget::popupRefresh(), KviHttpRequest::processHeader(), KviConfigurationFile::readBoolEntry(), KviConfigurationFile::readCharEntry(), KviConfigurationFile::readColorEntry(), KviConfigurationFile::readEntry(), KviConfigurationFile::readFontEntry(), KviConfigurationFile::readIntEntry(), KviConfigurationFile::readIntListEntry(), KviConfigurationFile::readMsgTypeEntry(), KviConfigurationFile::readPixmapEntry(), KviConfigurationFile::readRectEntry(), KviConfigurationFile::readStringListEntry(), KviConfigurationFile::readUCharEntry(), KviConfigurationFile::readUIntEntry(), KviConfigurationFile::readUShortEntry(), KviApplication::recentChannelsForNetwork(), KviActionManager::registerAction(), KviRegisteredUserDataBase::removeUser(), KviCustomToolBarManager::renameDescriptor(), KviUserListView::select(), KviKvsTimerManager::timerEvent(), KviMessageCatalogue::translate(), KviLocale::translate(), KviMessageCatalogue::translateToQString(), KviLocale::translateToQString(), KviCustomToolBar::unfilterChild(), KviActionManager::unregisterAction(), KviUserListView::userAction(), and KviUserListView::userActionVerifyMask().
|
inline |
Searches for the item pointer pRef.
Returns its hash table entry, if found, and NULL otherwise. The hash table iterator is placed at the item found.
pRef | The pointer to search |
Referenced by KviKvsObjectController::clearUserClasses(), and ClassEditorWidget::renameNamespace().
|
inline |
Places the hash table iterator at the first entry.
It returns the associated data value pointer.
Referenced by KviTextIconManager::applyOptions(), ChannelsJoinDialog::deleteClicked(), RegisteredUsersDialog::editGroup(), RegisteredUsersDialog::fillList(), ChannelsJoinDialog::fillListView(), KviPointerHashTable< QString, KviActionCategory >::find(), KviPointerHashTable< QString, KviActionCategory >::findRef(), KviPointerHashTable< QString, KviActionCategory >::insert(), KviPointerHashTable< QString, KviActionCategory >::remove(), and KviPointerHashTable< QString, KviActionCategory >::removeRef().
|
inline |
Places the hash table iterator at the first entry and returns it.
Referenced by KviPointerHashTable< QString, KviActionCategory >::copyFrom(), RegisteredUsersDialog::exportClicked(), KviPointerHashTable< QString, KviActionCategory >::insert(), and RegisteredUsersDialog::rightButtonPressed().
|
inline |
Inserts the item pData at the position specified by the key hKey.
Replaces any previous item with the same key The replaced item is deleted if autodelete is enabled. The hash table iterator is placed at the newly inserted item.
hKey | The key where to insert data |
pData | The data to insert |
Referenced by KviApplication::addRecentChannel(), KviKvsTimerManager::addTimer(), KviIconManager::addToCache(), DccBroker::addZeroPortTag(), KviApplication::buildRecentChannels(), config_kvs_fnc_open(), KviPointerHashTable< QString, KviActionCategory >::copyFrom(), ClassEditorWidget::createFullClass(), ClassEditorWidget::currentItemChanged(), RegisteredUsersDialog::editGroup(), RegisteredUsersDialog::fillList(), KviCustomToolBar::filterChild(), KviKvsObjectController::init(), KviPointerHashTable< QString, KviActionCategory >::insert(), KviIrcUserDataBase::insertUser(), KviUserListView::insertUserEntry(), KviKvsObjectClass::KviKvsObjectClass(), KviSoundPlayer::KviSoundPlayer(), KviKvsPopupManager::load(), KviMessageCatalogue::load(), KviKvsAliasManager::load(), KviLocale::loadCatalogue(), KviModuleManager::loadModule(), ClassEditorWidget::loadNotBuiltClasses(), PluginManager::loadPlugin(), ClassEditorWidget::newClass(), objects_kvs_fnc_classes(), ClassEditorWidget::oneTimeSetup(), options_kvs_cmd_dialog(), KviActionManager::registerAction(), KviKvsObjectController::registerClass(), RegisteredUserEntryDialog::RegisteredUserEntryDialog(), KviKvsObjectController::registerObject(), ClassEditorWidget::renameClass(), ClassEditorWidget::renameNamespace(), KviPointerHashTable< QString, KviActionCategory >::replace(), KviLocale::translate(), KviMessageCatalogue::translateToQString(), and KviLocale::translateToQString().
|
inline |
Inserts a complete shallow copy of the data contained in t.
The hash table iterator is invalidated.
t | The data to insert |
|
inline |
Returns true if the hash table is empty.
Referenced by config_module_can_unload(), KviKvsTimerManager::deleteAllTimers(), KviKvsHash::isEmpty(), options_module_can_unload(), KviKvsObject::registerPrivateImplementation(), KviPointerHashTable< QString, KviActionCategory >::remove(), KviPointerHashTable< QString, KviActionCategory >::removeRef(), KviIsOnNotifyListManager::start(), and KviModuleManager::unloadModule().
|
inline |
Places the hash table iterator at the next entry and returns the associated data value pointer.
This function must be preceded by a call to firstEntry(), first() or findRef().
Referenced by KviTextIconManager::applyOptions(), ChannelsJoinDialog::deleteClicked(), RegisteredUsersDialog::editGroup(), RegisteredUsersDialog::fillList(), and ChannelsJoinDialog::fillListView().
|
inline |
Places the hash table iterator at the next entry and returns it.
This function must be preceded by a call to firstEntry(), first() or findRef().
Referenced by KviPointerHashTable< QString, KviActionCategory >::copyFrom(), RegisteredUsersDialog::exportClicked(), KviPointerHashTable< QString, KviActionCategory >::insert(), and RegisteredUsersDialog::rightButtonPressed().
|
inline |
Returns the item associated to the key hKey.
Returns NULL if no such item exists in the hash table. Places the hash table iterator at the position of the item found. This is an alias to find().
hKey | The key to find |
|
inline |
Removes the item pointer associated to the key hKey, if such an item exists in the hash table.
The item is deleted if autodeletion is enabled. Returns true if the item was found and removed and false if it wasn't found. Invalidates the hash table iterator.
hKey | The key where to remove the pointer |
Referenced by KviActionManager::actionDestroyed(), PluginManager::checkUnload(), KviConfigurationFile::clearKey(), PopupEditorWidget::commit(), config_kvs_cmd_close(), KviKvsTimerManager::deleteTimer(), KviCustomToolBarManager::destroyDescriptor(), KviKvsDnsManager::dnsLookupTerminated(), RegisteredUserEntryDialog::editAllPropertiesClicked(), RegisteredUsersDialog::editGroup(), KviCustomToolBar::filteredChildDestroyed(), DccBroker::findZeroPortTag(), KviKvsTreeNodeSwitchList::getStandardRebindingSwitch(), KviWatchNotifyListManager::handleWatchReply(), RegisteredUserEntryDialog::okClicked(), KviUserListView::partInternal(), KviKvsObject::registerPrivateImplementation(), KviRegisteredUserDataBase::removeGroup(), KviRegisteredUserDataBase::removeUser(), KviIrcUserDataBase::removeUser(), DccBroker::removeZeroPortTag(), KviCustomToolBarManager::renameDescriptor(), KviRegisteredUser::setProperty(), texticons_kvs_cmd_set(), PluginManager::unloadAll(), KviLocale::unloadCatalogue(), KviModuleManager::unloadModule(), KviActionManager::unregisterAction(), KviKvsScriptAddonManager::unregisterAddon(), KviKvsObjectController::unregisterClass(), KviKvsObjectController::unregisterObject(), KviKvsHash::unset(), DccDescriptor::~DccDescriptor(), and OptionsDialog::~OptionsDialog().
|
inline |
Removes the first occurrence of the item pointer pRef.
The item is deleted if autodeletion is enabled. Returns true if the pointer was found and false otherwise. Invalidates the hash table iterator.
pRef | The pointer to remove the first occurrence |
Referenced by ClassEditorWidget::removeItem(), ClassEditorWidget::removeItemChildren(), ClassEditorWidget::renameClass(), and ClassEditorWidget::renameNamespace().
|
inline |
Inserts the item pData at the position specified by the key hKey.
Replaces any previous item with the same key. The replaced item is deleted if autodelete is enabled. The hash table iterator is placed at the newly inserted item. This is just an alias to insert() with a different name.
hKey | The key where to insert data |
pData | The new data to insert |
Referenced by KviKvsPopupManager::add(), KviKvsAliasManager::add(), KviKvsDnsManager::addDns(), KviRegisteredUserDataBase::addGroup(), KviPackageWriter::addInfoField(), KviKvsSwitchList::addLong(), KviKvsTreeNodeSwitchList::addLong(), KviIrcServerDataBase::addNetwork(), KviKvsSwitchList::addShort(), KviKvsTreeNodeSwitchList::addShort(), KviRegisteredUserDataBase::addUser(), KviIsOnNotifyListManager::buildRegUserDict(), KviWatchNotifyListManager::buildRegUserDict(), KviLocale::codecForName(), DccDescriptor::copyFrom(), KviUserIdentityManager::copyFrom(), KviCustomToolBarManager::create(), DccDescriptor::DccDescriptor(), KviUserIdentityManager::defaultIdentity(), KviKvsScriptAddonManager::delayedLoad(), RegisteredUserEntryDialog::editAllPropertiesClicked(), KviActionDrawer::fill(), KviKvsHash::get(), KviIconManager::getSmallIconIdFromName(), KviRegisteredUserDataBase::getUser(), KviTextIconManager::insert(), KviKvsHash::KviKvsHash(), KviKvsModuleInterface::kvsRegisterCallbackCommand(), KviKvsModuleInterface::kvsRegisterFunction(), KviKvsModuleInterface::kvsRegisterSimpleCommand(), KviCustomToolBarManager::load(), KviConfigurationFile::load(), KviUserIdentityManager::load(), KviTextIconManager::load(), KviIrcServerDataBase::makeCurrentServer(), RegisteredUserPropertiesDialog::okClicked(), KviKvsParser::parseSpecialCommandGlobal(), KviHttpRequest::processHeader(), KviPackageReader::readHeaderInternal(), KviKvsScriptAddonManager::registerAddon(), KviStatusBar::registerAppletDescriptor(), KviKvsObjectClass::registerFunctionHandler(), KviKvsObject::registerPrivateImplementation(), KviKvsObjectClass::registerStandardFalseReturnFunctionHandler(), KviKvsObjectClass::registerStandardNothingReturnFunctionHandler(), KviKvsObjectClass::registerStandardTrueReturnFunctionHandler(), KviCustomToolBarManager::renameDescriptor(), KviKvsHash::set(), KviRegisteredUser::setProperty(), and KviConfigurationFile::writeEntry().
|
inline |
Enables or disabled the autodeletion feature.
Items are deleted upon removal when the feature is enabled.
bAutoDelete | Set the autodelete state |
Referenced by KviKvsDnsManager::addDns(), KviKvsSwitchList::addLong(), KviKvsTreeNodeSwitchList::addLong(), KviKvsSwitchList::addShort(), KviKvsTreeNodeSwitchList::addShort(), KviCustomToolBar::beginCustomize(), KviApplication::buildRecentChannels(), ClassEditorWidget::ClassEditorWidget(), KviIrcUserDataBase::clear(), KviKvsObjectController::clearInstances(), PopupEditorWidget::commit(), config_module_init(), DccDescriptor::copyFrom(), ClassEditorWidget::currentItemChanged(), DccBroker::DccBroker(), DccDescriptor::DccDescriptor(), RegisteredUsersDialog::editGroup(), KviActionDrawer::fill(), RegisteredUsersDialog::fillList(), KviChannelWindow::getChannelActivityStats(), KviConfigurationFile::getCurrentGroup(), KviIconManager::getSmallIconIdFromName(), KviKvsTreeNodeSwitchList::getStandardRebindingSwitch(), KviActionManager::KviActionManager(), KviCustomToolBarManager::KviCustomToolBarManager(), KviIconManager::KviIconManager(), KviIrcServerDataBase::KviIrcServerDataBase(), KviIrcUserDataBase::KviIrcUserDataBase(), KviIsOnNotifyListManager::KviIsOnNotifyListManager(), KviKvsAliasManager::KviKvsAliasManager(), KviKvsHash::KviKvsHash(), KviKvsModuleInterface::KviKvsModuleInterface(), KviKvsObjectClass::KviKvsObjectClass(), KviKvsObjectController::KviKvsObjectController(), KviKvsPopupManager::KviKvsPopupManager(), KviKvsScriptAddonManager::KviKvsScriptAddonManager(), KviKvsTimerManager::KviKvsTimerManager(), KviLocale::KviLocale(), KviMessageCatalogue::KviMessageCatalogue(), KviModuleManager::KviModuleManager(), KviPackageIOEngine::KviPackageIOEngine(), KviRegisteredUserDataBase::KviRegisteredUserDataBase(), KviSoundPlayer::KviSoundPlayer(), KviStatusBar::KviStatusBar(), KviTextIconManager::KviTextIconManager(), KviUserIdentityManager::KviUserIdentityManager(), KviUserListView::KviUserListView(), KviWatchNotifyListManager::KviWatchNotifyListManager(), KviMessageCatalogue::load(), KviConfigurationFile::load(), objects_kvs_fnc_classes(), options_module_init(), KviKvsParser::parseSpecialCommandGlobal(), perlcore_module_init(), PluginManager::PluginManager(), KviHttpRequest::processHeader(), RegisteredUserEntryDialog::RegisteredUserEntryDialog(), KviKvsObject::registerPrivateImplementation(), KviCustomToolBarManager::renameDescriptor(), KviRegisteredUser::setProperty(), KviKvsScriptAddonManager::unregisterAddon(), and KviKvsTimerManager::~KviKvsTimerManager().
|
friend |
|
protected |
Referenced by KviPointerHashTable< QString, KviActionCategory >::clear(), KviPointerHashTable< QString, KviActionCategory >::insert(), KviPointerHashTable< QString, KviActionCategory >::KviPointerHashTable(), KviPointerHashTable< QString, KviActionCategory >::remove(), KviPointerHashTable< QString, KviActionCategory >::removeRef(), and KviPointerHashTable< QString, KviActionCategory >::setAutoDelete().
|
protected |
|
protected |
Referenced by KviPointerHashTable< QString, KviActionCategory >::clear(), KviPointerHashTable< QString, KviActionCategory >::insert(), KviPointerHashTable< QString, KviActionCategory >::KviPointerHashTable(), KviPointerHashTable< QString, KviActionCategory >::remove(), and KviPointerHashTable< QString, KviActionCategory >::removeRef().
|
protected |
Referenced by KviPointerHashTable< QString, KviActionCategory >::clear(), KviPointerHashTable< QString, KviActionCategory >::current(), KviPointerHashTable< QString, KviActionCategory >::currentEntry(), KviPointerHashTable< QString, KviActionCategory >::currentKey(), KviPointerHashTable< QString, KviActionCategory >::find(), KviPointerHashTable< QString, KviActionCategory >::findRef(), KviPointerHashTable< QString, KviActionCategory >::first(), KviPointerHashTable< QString, KviActionCategory >::firstEntry(), KviPointerHashTable< QString, KviActionCategory >::insert(), KviPointerHashTable< QString, KviActionCategory >::KviPointerHashTable(), KviPointerHashTable< QString, KviActionCategory >::next(), KviPointerHashTable< QString, KviActionCategory >::nextEntry(), KviPointerHashTable< QString, KviActionCategory >::remove(), KviPointerHashTable< QString, KviActionCategory >::removeRef(), and KviPointerHashTable< QString, KviActionCategory >::~KviPointerHashTable().
|
protected |
Referenced by KviPointerHashTable< QString, KviActionCategory >::clear(), KviPointerHashTable< QString, KviActionCategory >::count(), KviPointerHashTable< QString, KviActionCategory >::insert(), KviPointerHashTable< QString, KviActionCategory >::isEmpty(), KviPointerHashTable< QString, KviActionCategory >::KviPointerHashTable(), KviPointerHashTable< QString, KviActionCategory >::remove(), and KviPointerHashTable< QString, KviActionCategory >::removeRef().
|
protected |
Referenced by KviPointerHashTable< QString, KviActionCategory >::current(), KviPointerHashTable< QString, KviActionCategory >::currentEntry(), KviPointerHashTable< QString, KviActionCategory >::currentKey(), KviPointerHashTable< QString, KviActionCategory >::find(), KviPointerHashTable< QString, KviActionCategory >::findRef(), KviPointerHashTable< QString, KviActionCategory >::first(), KviPointerHashTable< QString, KviActionCategory >::firstEntry(), KviPointerHashTable< QString, KviActionCategory >::next(), and KviPointerHashTable< QString, KviActionCategory >::nextEntry().
|
protected |
Referenced by KviPointerHashTable< QString, KviActionCategory >::clear(), KviPointerHashTable< QString, KviActionCategory >::current(), KviPointerHashTable< QString, KviActionCategory >::currentEntry(), KviPointerHashTable< QString, KviActionCategory >::currentKey(), KviPointerHashTable< QString, KviActionCategory >::find(), KviPointerHashTable< QString, KviActionCategory >::findRef(), KviPointerHashTable< QString, KviActionCategory >::first(), KviPointerHashTable< QString, KviActionCategory >::firstEntry(), KviPointerHashTable< QString, KviActionCategory >::insert(), KviPointerHashTable< QString, KviActionCategory >::KviPointerHashTable(), KviPointerHashTable< QString, KviActionCategory >::next(), KviPointerHashTable< QString, KviActionCategory >::nextEntry(), KviPointerHashTable< QString, KviActionCategory >::remove(), and KviPointerHashTable< QString, KviActionCategory >::removeRef().