X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=pirkeysetmanager.cpp;fp=pirkeysetmanager.cpp;h=611d78bcafcfe77f4d503a2426f8cdd48f0f4d1e;hb=ba2bdf24764a4fdda9acf6526ca07c653e142ad4;hp=e0f6f15682d57f9bcf5e69eddf1ba65cd6a2b636;hpb=d724312c55dabe2c72175e88abf694880312fac4;p=pierogi diff --git a/pirkeysetmanager.cpp b/pirkeysetmanager.cpp index e0f6f15..611d78b 100644 --- a/pirkeysetmanager.cpp +++ b/pirkeysetmanager.cpp @@ -15,6 +15,7 @@ #include "keysets/bush.h" #include "keysets/cambridge.h" #include "keysets/canon.h" +#include "keysets/compro.h" #include "keysets/daewoo.h" #include "keysets/dell.h" #include "keysets/denon.h" @@ -41,6 +42,7 @@ #include "keysets/humax.h" #include "keysets/hyundai.h" #include "keysets/jvc.h" +#include "keysets/kaon.h" #include "keysets/kathrein.h" #include "keysets/kenwood.h" #include "keysets/lg.h" @@ -57,6 +59,7 @@ #include "keysets/philips.h" #include "keysets/pinnacle.h" #include "keysets/pioneer.h" +#include "keysets/qnap.h" #include "keysets/raite.h" #include "keysets/rca.h" #include "keysets/roku.h" @@ -94,7 +97,6 @@ extern QMutex stopRepeatingMutex; // Global helper objects: PIRMakeMgr makeManager; -PIRDeviceTypeMgr deviceManager; // Now, on to the actual method definitions: @@ -152,6 +154,8 @@ PIRKeysetManager::PIRKeysetManager() setupKeyset(new CanonCamcorder1(counter++)); setupKeyset(new CanonPowershot1(counter++)); + setupKeyset(new ComproTVCard1(counter++)); + setupKeyset(new DaewooTV1(counter++)); setupKeyset(new DaewooTV2(counter++)); setupKeyset(new DaewooTV3(counter++)); @@ -309,6 +313,8 @@ PIRKeysetManager::PIRKeysetManager() setupKeyset(new JVCAudio2(counter++)); setupKeyset(new JVCDVD1(counter++)); + setupKeyset(new KaonSat1(counter++)); + setupKeyset(new KathreinSat1(counter++)); setupKeyset(new KathreinSat2(counter++)); setupKeyset(new KathreinSat3(counter++)); @@ -447,6 +453,8 @@ PIRKeysetManager::PIRKeysetManager() setupKeyset(new PioneerLaserDisc1(counter++)); setupKeyset(new PioneerDVD1(counter++)); + setupKeyset(new QNAPPlayer1(counter++)); + setupKeyset(new RaiteDVD1(counter++)); setupKeyset(new RCATV1(counter++)); @@ -763,9 +771,8 @@ void PIRKeysetManager::setupKeyset( } -void PIRKeysetManager::populateSelectionWidgets( - PIRSelectKeysetForm *skf, - PIRSelectDeviceForm *sdf) const +void PIRKeysetManager::populateSelectionWidget( + PIRSelectKeysetForm *skf) const { PIRMakeName make; PIRKeysetWidgetItem *kwi; @@ -782,9 +789,6 @@ void PIRKeysetManager::populateSelectionWidgets( kwi = new PIRKeysetWidgetItem(tempString, i->first, make); skf->addWidgetItem(kwi); - // Create widgets for the devices: - i->second->populateDevices(i->first, sdf); - ++i; } }