Lines Matching refs:m_pool

1040     if (!m_pool.contains(indicatorType))
1044 QIStatusBarIndicator *pIndicator = m_pool.value(indicatorType);
1081 if (m_pool.contains(IndicatorType_HardDisks))
1083 if (m_pool.contains(IndicatorType_OpticalDisks))
1085 if (m_pool.contains(IndicatorType_FloppyDisks))
1087 if (m_pool.contains(IndicatorType_USB))
1089 if (m_pool.contains(IndicatorType_Network))
1091 if (m_pool.contains(IndicatorType_SharedFolders))
1093 if (m_pool.contains(IndicatorType_Display))
1109 case KDeviceType_HardDisk: pIndicator = m_pool.value(IndicatorType_HardDisks); break;
1110 case KDeviceType_DVD: pIndicator = m_pool.value(IndicatorType_OpticalDisks); break;
1111 case KDeviceType_Floppy: pIndicator = m_pool.value(IndicatorType_FloppyDisks); break;
1112 case KDeviceType_USB: pIndicator = m_pool.value(IndicatorType_USB); break;
1113 case KDeviceType_Network: pIndicator = m_pool.value(IndicatorType_Network); break;
1114 case KDeviceType_SharedFolder: pIndicator = m_pool.value(IndicatorType_SharedFolders); break;
1115 case KDeviceType_Graphics3D: pIndicator = m_pool.value(IndicatorType_Display); break;
1126 foreach (IndicatorType indicatorType, m_pool.keys())
1127 if (m_pool[indicatorType] == pIndicator)
1187 while (!m_pool.isEmpty())
1189 const IndicatorType firstType = m_pool.keys().first();
1190 delete m_pool.value(firstType);
1191 m_pool.remove(firstType);
1202 if (m_pool.contains(indicatorType))
1204 delete m_pool.value(indicatorType);
1205 m_pool.remove(indicatorType);
1232 if (m_pool.contains(indicatorType))
1235 QIStatusBarIndicator *pIndicator = m_pool.value(indicatorType);
1252 case IndicatorType_HardDisks: m_pool[indicatorType] = new UIIndicatorHardDrive(m_pSession); break;
1253 case IndicatorType_OpticalDisks: m_pool[indicatorType] = new UIIndicatorOpticalDisks(m_pSession); break;
1254 case IndicatorType_FloppyDisks: m_pool[indicatorType] = new UIIndicatorFloppyDisks(m_pSession); break;
1255 case IndicatorType_Network: m_pool[indicatorType] = new UIIndicatorNetwork(m_pSession); break;
1256 case IndicatorType_USB: m_pool[indicatorType] = new UIIndicatorUSB(m_pSession); break;
1257 case IndicatorType_SharedFolders: m_pool[indicatorType] = new UIIndicatorSharedFolders(m_pSession); break;
1258 case IndicatorType_Display: m_pool[indicatorType] = new UIIndicatorDisplay(m_pSession); break;
1259 case IndicatorType_VideoCapture: m_pool[indicatorType] = new UIIndicatorVideoCapture(m_pSession); break;
1260 case IndicatorType_Features: m_pool[indicatorType] = new UIIndicatorFeatures(m_pSession); break;
1261 case IndicatorType_Mouse: m_pool[indicatorType] = new UIIndicatorMouse(m_pSession); break;
1262 case IndicatorType_Keyboard: m_pool[indicatorType] = new UIIndicatorKeyboard(m_pSession); break;
1263 case IndicatorType_KeyboardExtension: m_pool[indicatorType] = new UIIndicatorKeyboardExtension; break;
1267 connect(m_pool.value(indicatorType), SIGNAL(sigContextMenuRequest(QIStatusBarIndicator*, QContextMenuEvent*)),
1270 m_pMainLayout->insertWidget(indicatorPosition(indicatorType), m_pool.value(indicatorType));
1289 while (!m_pool.isEmpty())
1291 const IndicatorType firstType = m_pool.keys().first();
1292 delete m_pool.value(firstType);
1293 m_pool.remove(firstType);