123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #ifndef CHANGEPACKET_H
- #define CHANGEPACKET_H
- #include <QDialog>
- #include "sequenz.h"
- namespace Ui
- {
- class ChangePacket;
- }
- class ChangePacket : public QDialog
- {
- Q_OBJECT
- public:
-
-
-
-
- explicit ChangePacket(ObjectPolygon p,
- Sequenz *s,
- QWidget *parent = 0);
- ~ChangePacket();
- protected:
-
-
- void keyReleaseEvent(QKeyEvent *e) override;
-
-
- void mousePressEvent(QMouseEvent *e) override;
- private slots:
-
- void on_packetList_currentIndexChanged(const QString& arg1);
-
- void on_previousePicture_clicked();
-
- void on_nextPicture_clicked();
-
- void on_abbrechen_clicked();
-
- void on_speichern_clicked();
- private:
-
- void updatePreview();
- Ui::ChangePacket *ui;
- Sequenz *seq;
- ObjectPolygon object;
- int count;
- int max;
- static int lastId;
- };
- #endif
|