Subversion Repositories svn1-original

Rev

Rev 98 | Rev 131 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 98 Rev 130
Line 12... Line 12...
12
class MainWindow : public QMainWindow {
12
class MainWindow : public QMainWindow {
13
    Q_OBJECT
13
    Q_OBJECT
14
public:
14
public:
15
    MainWindow(QWidget *parent = 0);
15
    MainWindow(QWidget *parent = 0);
16
    ~MainWindow();
16
    ~MainWindow();
17
    void clearScreen(void);
-
 
18
    void setPosn( int x, int y);
-
 
19
    void insertText( const char * text);
-
 
20
 
17
 
21
protected:
18
protected:
22
    void changeEvent(QEvent *e);
19
    void changeEvent(QEvent *e);
23
 
20
 
24
private:
21
private:
25
    Ui::MainWindow *ui;
22
    Ui::MainWindow *ui;
-
 
23
 
26
    QTextDocument * document;
24
public slots:
27
    QTextCursor *cr;
25
    void setStartTimes(void);
28
};
26
};
29
 
27
 
30
#endif // MAINWINDOW_H
28
#endif // MAINWINDOW_H