File: testpatternselection.h

package info (click to toggle)
qsstv 9.5.8-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,928 kB
  • sloc: cpp: 47,579; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (5)
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
#ifndef TESTPATTERNSELECTION_H
#define TESTPATTERNSELECTION_H

#include <QDialog>

enum etpSelect {TPBLACK,TPWHITE,TPGRAY,TPRASTER};

namespace Ui {
class testPatternSelection;
}

class testPatternSelection : public QDialog
{
  Q_OBJECT

public:
  explicit testPatternSelection(QWidget *parent = 0);
  ~testPatternSelection();
  etpSelect getSelection();

private:
  Ui::testPatternSelection *ui;
};

#endif // TESTPATTERNSELECTION_H