Menu

[c54480]: / slideeditor.h  Maximize  Restore  History

Download this file

38 lines (29 with data), 630 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
#ifndef SLIDEEDITOR_H
#define SLIDEEDITOR_H
#include <QItemSelection>
#include <QWidget>
class SlideModel;
class QTreeView;
class SlideControlWidget;
class VymModel;
class SlideEditor: public QWidget
{
Q_OBJECT
public:
SlideEditor (VymModel *);
public slots:
void previousSlide();
void nextSlide();
void addSlide();
void editSlide();
void deleteSlide();
void moveSlideUp();
void moveSlideDown();
void updateSelection(QItemSelection ,QItemSelection);
private:
VymModel *vymModel;
SlideModel *slideModel;
QTreeView *view;
SlideControlWidget *slideControl;
};
#endif
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.