#ifndef SCROLLVIEW_H #define SCROLLVIEW_H #include #include "kformuladefs.h" class KFormulaWidget; using namespace KFormula; class ScrollView : public TQScrollView { Q_OBJECT TQ_OBJECT public: ScrollView(); virtual void addChild(KFormulaWidget* c, int x=0, int y=0); protected: virtual void focusInEvent(TQFocusEvent* event); protected slots: void cursorChanged(bool visible, bool selecting); private: KFormulaWidget* child; }; #endif // SCROLLVIEW_H