ishowcourses.h
818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef ISHOWCOURSES_H
#define ISHOWCOURSES_H
#include <QWidget>
#include <QTreeWidget>
namespace Ui {
class IshowCourses;
}
class IshowCourses : public QWidget
{
Q_OBJECT
public:
explicit IshowCourses(QWidget *parent = 0);
~IshowCourses();
void go_now_courses();
private slots:
void on_pushButton_next_clicked();
void onAddNoteFront();
void onAddNoteNext();
void onAddChild();
void onDelNode();
QTreeWidgetItem * AddTreeRoot(QString name);
QTreeWidgetItem * AddTreeNode(QTreeWidgetItem *parent, QString name);
void slotOpenCourses(QTreeWidgetItem* item1, int columns);
void updateCoursesPpt(int cmd, int, QString, QString result);//刷新课程
void on_pushButton_last_clicked();
private:
Ui::IshowCourses *ui;
};
#endif // ISHOWCOURSES_H