00001 // Keyed Combo Box 00002 00003 class QKComboBox : public QComboBox { 00004 00005 Q_OBJECT 00006 00007 QKComboBox(QWidget * parent = 0, const char * name = 0); 00008 ~QKComboBox(); 00009 00010 private: 00011 QMap mapa(QString, QString); 00012 00013 public: 00014 void insertItem(QString, QString); 00015 virtual void clear(); 00016 virtual void removeItem(int); 00017 00018 }