|
|
// -*- c++ -*- #ifndef CHANNELEDITOR_H #define CHANNELEDITOR_H #includeclass ChannelStore; class Channel; /** * Channeleditor shell for QtVision. * * @version $Id: channeleditor.h,v 1.3 2002/03/18 20:45:33 rich Exp $ */ class ChannelEditor : public KListView { Q_OBJECT public: ChannelEditor(QWidget* parent = 0, const char* name = 0 ); ~ChannelEditor(); public slots: void setChannels( ChannelStore *chans ); signals: void channelModified( Channel *chan ); void channelSelected( Channel *chan ); protected: void createItems(); private: ChannelStore *cs; }; #endif // CHANNELEDITOR_H
Generated by: rich on pegasus on Wed Mar 20 03:16:53 2002, using kdoc 2.0a53. |