kformula
formulastring.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef FORMULASTRING_H
00021 #define FORMULASTRING_H
00022
00023 #include <qvariant.h>
00024 #include <qdialog.h>
00025
00026 class QGridLayout;
00027 class QHBoxLayout;
00028 class QLabel;
00029 class QPushButton;
00030 class QTextEdit;
00031 class QVBoxLayout;
00032
00033 class KFormulaPartView;
00034
00035 class FormulaString : public QDialog
00036 {
00037 Q_OBJECT
00038
00039 public:
00040 FormulaString( KFormulaPartView* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00041 ~FormulaString();
00042
00043 QTextEdit* textWidget;
00044 QPushButton* buttonHelp;
00045 QPushButton* buttonOk;
00046 QPushButton* buttonCancel;
00047 QLabel* position;
00048
00049 protected slots:
00050
00051 virtual void accept ();
00052 void helpButtonClicked();
00053
00054 void cursorPositionChanged ( int para, int pos );
00055
00056 private:
00057 KFormulaPartView* view;
00058 };
00059
00060 #endif // FORMULASTRING_H
|