// MyHQWidget.h - public interface for the
HOOPS/Qt class MyHQWidget
// // More about this class #ifndef MYHQWIDGET_H
// Qt Includes
// HOOPS/Qt Includes
class MyHQWidget : public HQWidget
Q_OBJECT public: MyHQWidget(QWidget*
parent, const char* name ,
public slots: void OnLoad();
// etc..
protected: void SetupView();
void OnRightButtonDown(); private: void load(const char * filename); // menu stuff
QPopupMenu * manipulate_menu;
// etc.. };
#endif
|